src/Controller/SecurityController.php line 33

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace App\Controller;
  11. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  12. use Symfony\Component\HttpFoundation\Request;
  13. use Symfony\Component\HttpFoundation\Response;
  14. use Symfony\Component\Routing\Annotation\Route;
  15. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  16. use Symfony\Component\Security\Http\Util\TargetPathTrait;
  17. /**
  18.  * Controller used to manage the application security.
  19.  * See https://symfony.com/doc/current/security/form_login_setup.html.
  20.  *
  21.  * @author Ryan Weaver <weaverryan@gmail.com>
  22.  * @author Javier Eguiluz <javier.eguiluz@gmail.com>
  23.  */
  24. class SecurityController extends AbstractController
  25. {
  26.     use TargetPathTrait;
  27.     #[Route('/login'name'security_login')]
  28.     public function login(Request $requestAuthenticationUtils $helper): Response
  29.     {
  30.         // if user is already logged in, don't display the login page again
  31.         if ($this->getUser()) {
  32.             return $this->redirectToRoute('blog_index');
  33.         }
  34.         // this statement solves an edge-case: if you change the locale in the login
  35.         // page, after a successful login you are redirected to a page in the previous
  36.         // locale. This code regenerates the referrer URL whenever the login page is
  37.         // browsed, to ensure that its locale is always the current one.
  38.         $this->saveTargetPath($request->getSession(), 'main'$this->generateUrl('admin_index'));
  39.         return $this->render('security/login.html.twig', [
  40.             // last username entered by the user (if any)
  41.             'last_username' => $helper->getLastUsername(),
  42.             // last authentication error (if any)
  43.             'error' => $helper->getLastAuthenticationError(),
  44.         ]);
  45.     }
  46.     /**
  47.      * This is the route the user can use to logout.
  48.      *
  49.      * But, this will never be executed. Symfony will intercept this first
  50.      * and handle the logout automatically. See logout in config/packages/security.yaml
  51.      */
  52.     #[Route('/logout'name'security_logout')]
  53.     public function logout(): void
  54.     {
  55.         throw new \Exception('This should never be reached!');
  56.     }
  57. }