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