Capture d’écran 2022-12-19 à 14.13.47.png

Transmission de l’url à appeler lors d’une authentification réussie

use App\\Service\\EZDS_Authentification;
use Symfony\\Component\\HttpFoundation\\RequestStack;
use Symfony\\Component\\Routing\\Generator\\UrlGeneratorInterface;

public function auth(RequestStack $requestStack, EZDS_Authentification $ezds_auth, UrlGeneratorInterface $urlgenerator){

  // --- Paramétrage de l'url à appeler après l'authentification réussie

	Solution1) On souhaite renseigner le nom d'une route
	$requestStack->getSession()->set('auth_redirect_to_route', 'app_formation');
	$requestStack->getSession()->set('auth_redirect_to_url', '');
	$retour = $ezds_auth->check();
  if ( $retour ) {
		return $this->redirect($retour);
	}

  Solution2) On indique une url
  $requestStack->getSession()->set('auth_redirect_to_route', '');
	$requestStack->getSession()->set('auth_redirect_to_url', $urlgenerator->generate('app_ez_forms_web', [], UrlGeneratorInterface::ABSOLUTE_URL));
	$retour = $ezds_auth->check();
  if ( $retour ) {
		return $this->redirect($retour);
	}

	// --- Redirection sur le formulaire d'authentification si pas connecté
	$retour = $ezds_auth->check();
  if ( $retour ) {
		return $this->redirect($retour);
	}
}

Personnalisation avec les variables de session

$requestStack->getSession()->set('auth_background', 'url du logo');
$requestStack->getSession()->set('auth_logo', '/ezds/resources/authentification/logo.png');

Récupération des variables de session

$requestStack->getSession()->get('session_id');
$requestStack->getSession()->get('secusr_id');
$requestStack->getSession()->get('ezged_childinstance_httport');
$requestStack->getSession()->get('secusrpar_wwwdir');
$requestStack->getSession()->get('auth_isauthenticated');
$requestStack->getSession()->get('auth_method');

Personnalisation avec les css via la fichier public/resources/custom.css

body.ezds_authentification .container-logo {
    background: linear-gradient(45deg, #3fbcf6 29.25%, #ffffff 100%) no-repeat fixed !important;
    background-color: #5d27e7 !important;
}

body.ezds_authentification .container-logo img {
    content: url("url du background");
}

body.ezds_authentification .message {
    color: #3fbcf6 !important;
}

body.ezds_authentification .error {
    color: #3fbcf6 !important;
}

body.ezds_authentification .btn-submit,
body.ezds_authentification .btn-submit:hover {
    background-color: #3fbcf6 !important;
    border-color: #3fbcf6 !important;
}

body.ezds_authentification .btn-submit:hover {
    background-color: #73d0fb !important;
    border-color: #73d0fb !important;
}

Tâches à effectuer