vendor/symfony/security-http/Firewall/LogoutListener.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 Symfony\Component\Security\Http\Firewall;
  11. use Symfony\Component\HttpFoundation\Request;
  12. use Symfony\Component\HttpFoundation\Response;
  13. use Symfony\Component\HttpKernel\Event\RequestEvent;
  14. use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
  15. use Symfony\Component\Security\Core\Exception\LogoutException;
  16. use Symfony\Component\Security\Csrf\CsrfToken;
  17. use Symfony\Component\Security\Csrf\CsrfTokenManagerInterface;
  18. use Symfony\Component\Security\Http\HttpUtils;
  19. use Symfony\Component\Security\Http\Logout\LogoutHandlerInterface;
  20. use Symfony\Component\Security\Http\Logout\LogoutSuccessHandlerInterface;
  21. use Symfony\Component\Security\Http\ParameterBagUtils;
  22. /**
  23.  * LogoutListener logout users.
  24.  *
  25.  * @author Fabien Potencier <fabien@symfony.com>
  26.  *
  27.  * @final
  28.  */
  29. class LogoutListener extends AbstractListener
  30. {
  31.     private $tokenStorage;
  32.     private $options;
  33.     private $handlers;
  34.     private $successHandler;
  35.     private $httpUtils;
  36.     private $csrfTokenManager;
  37.     /**
  38.      * @param array $options An array of options to process a logout attempt
  39.      */
  40.     public function __construct(TokenStorageInterface $tokenStorageHttpUtils $httpUtilsLogoutSuccessHandlerInterface $successHandler, array $options = [], CsrfTokenManagerInterface $csrfTokenManager null)
  41.     {
  42.         $this->tokenStorage $tokenStorage;
  43.         $this->httpUtils $httpUtils;
  44.         $this->options array_merge([
  45.             'csrf_parameter' => '_csrf_token',
  46.             'csrf_token_id' => 'logout',
  47.             'logout_path' => '/logout',
  48.         ], $options);
  49.         $this->successHandler $successHandler;
  50.         $this->csrfTokenManager $csrfTokenManager;
  51.         $this->handlers = [];
  52.     }
  53.     public function addHandler(LogoutHandlerInterface $handler)
  54.     {
  55.         $this->handlers[] = $handler;
  56.     }
  57.     /**
  58.      * {@inheritdoc}
  59.      */
  60.     public function supports(Request $request): ?bool
  61.     {
  62.         return $this->requiresLogout($request);
  63.     }
  64.     /**
  65.      * Performs the logout if requested.
  66.      *
  67.      * If a CsrfTokenManagerInterface instance is available, it will be used to
  68.      * validate the request.
  69.      *
  70.      * @throws LogoutException   if the CSRF token is invalid
  71.      * @throws \RuntimeException if the LogoutSuccessHandlerInterface instance does not return a response
  72.      */
  73.     public function authenticate(RequestEvent $event)
  74.     {
  75.         $request $event->getRequest();
  76.         if (null !== $this->csrfTokenManager) {
  77.             $csrfToken ParameterBagUtils::getRequestParameterValue($request$this->options['csrf_parameter']);
  78.             if (false === $this->csrfTokenManager->isTokenValid(new CsrfToken($this->options['csrf_token_id'], $csrfToken))) {
  79.                 throw new LogoutException('Invalid CSRF token.');
  80.             }
  81.         }
  82.         $response $this->successHandler->onLogoutSuccess($request);
  83.         if (!$response instanceof Response) {
  84.             throw new \RuntimeException('Logout Success Handler did not return a Response.');
  85.         }
  86.         // handle multiple logout attempts gracefully
  87.         if ($token $this->tokenStorage->getToken()) {
  88.             foreach ($this->handlers as $handler) {
  89.                 $handler->logout($request$response$token);
  90.             }
  91.         }
  92.         $this->tokenStorage->setToken(null);
  93.         $event->setResponse($response);
  94.     }
  95.     /**
  96.      * Whether this request is asking for logout.
  97.      *
  98.      * The default implementation only processed requests to a specific path,
  99.      * but a subclass could change this to logout requests where
  100.      * certain parameters is present.
  101.      */
  102.     protected function requiresLogout(Request $request): bool
  103.     {
  104.         return isset($this->options['logout_path']) && $this->httpUtils->checkRequestPath($request$this->options['logout_path']);
  105.     }
  106. }