vendor/friendsofsymfony/user-bundle/Controller/SecurityController.php line 75

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the FOSUserBundle package.
  4.  *
  5.  * (c) FriendsOfSymfony <http://friendsofsymfony.github.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 FOS\UserBundle\Controller;
  11. use Symfony\Bundle\FrameworkBundle\Controller\Controller;
  12. use Symfony\Component\HttpFoundation\Request;
  13. use Symfony\Component\HttpFoundation\Response;
  14. use Symfony\Component\HttpFoundation\Session\Session;
  15. use Symfony\Component\Security\Core\Exception\AuthenticationException;
  16. use Symfony\Component\Security\Core\Security;
  17. use Symfony\Component\Security\Csrf\CsrfTokenManagerInterface;
  18. /**
  19.  * Controller managing security.
  20.  *
  21.  * @author Thibault Duplessis <thibault.duplessis@gmail.com>
  22.  * @author Christophe Coevoet <stof@notk.org>
  23.  */
  24. class SecurityController extends Controller {
  25.     private $tokenManager;
  26.     public function __construct(CsrfTokenManagerInterface $tokenManager null) {
  27.         $this->tokenManager $tokenManager;
  28.     }
  29.     /**
  30.      * @param Request $request
  31.      *
  32.      * @return Response
  33.      */
  34.     public function loginAction(Request $request) {
  35.         /** @var $session Session */
  36.         $session $request->getSession();
  37.         $authErrorKey Security::AUTHENTICATION_ERROR;
  38.         $lastUsernameKey Security::LAST_USERNAME;
  39.         // get the error if any (works with forward and redirect -- see below)
  40.         if ($request->attributes->has($authErrorKey)) {
  41.             $error $request->attributes->get($authErrorKey);
  42.         } elseif (null !== $session && $session->has($authErrorKey)) {
  43.             $error $session->get($authErrorKey);
  44.             $session->remove($authErrorKey);
  45.         } else {
  46.             $error null;
  47.         }
  48.         if (!$error instanceof AuthenticationException) {
  49.             $error null// The value does not come from the security component.
  50.         }
  51.         // last username entered by the user
  52.         $lastUsername = (null === $session) ? '' $session->get($lastUsernameKey);
  53.         $csrfToken $this->tokenManager $this->tokenManager->getToken('authenticate')->getValue() : null;
  54.         return $this->renderLogin(array(
  55.                     'last_username' => $lastUsername,
  56.                     'error' => $error,
  57.                     'csrf_token' => $csrfToken,
  58.         ));
  59.     }
  60.     public function checkAction() {
  61.         throw new \RuntimeException('You must configure the check path to be handled by the firewall using form_login in your security firewall configuration.');
  62.     }
  63.     public function logoutAction() {
  64.         throw new \RuntimeException('You must activate the logout in your security firewall configuration.');
  65.     }
  66.     /**
  67.      * Renders the login template with the given parameters. Overwrite this function in
  68.      * an extended controller to provide additional data for the login template.
  69.      *
  70.      * @param array $data
  71.      *
  72.      * @return Response
  73.      */
  74.     protected function renderLogin(array $data) {
  75.         return $this->render('@FOSUser/Security/login.html.twig'$data);
  76.     }
  77. }