vendor/symfony/security-http/Firewall/AccessListener.php line 27

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\HttpKernel\Event\GetResponseEvent;
  12. use Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterface;
  13. use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
  14. use Symfony\Component\Security\Core\Authorization\AccessDecisionManagerInterface;
  15. use Symfony\Component\Security\Core\Exception\AccessDeniedException;
  16. use Symfony\Component\Security\Core\Exception\AuthenticationCredentialsNotFoundException;
  17. use Symfony\Component\Security\Http\AccessMapInterface;
  18. /**
  19.  * AccessListener enforces access control rules.
  20.  *
  21.  * @author Fabien Potencier <fabien@symfony.com>
  22.  */
  23. class AccessListener implements ListenerInterface {
  24.     private $tokenStorage;
  25.     private $accessDecisionManager;
  26.     private $map;
  27.     private $authManager;
  28.     public function __construct(TokenStorageInterface $tokenStorageAccessDecisionManagerInterface $accessDecisionManagerAccessMapInterface $mapAuthenticationManagerInterface $authManager) {
  29.         $this->tokenStorage $tokenStorage;
  30.         $this->accessDecisionManager $accessDecisionManager;
  31.         $this->map $map;
  32.         $this->authManager $authManager;
  33.     }
  34.     /**
  35.      * Handles access authorization.
  36.      *
  37.      * @throws AccessDeniedException
  38.      * @throws AuthenticationCredentialsNotFoundException
  39.      */
  40.     public function handle(GetResponseEvent $event) {
  41.         if (null === $token $this->tokenStorage->getToken()) {
  42.             throw new AuthenticationCredentialsNotFoundException('A Token was not found in the TokenStorage.');
  43.         }
  44.         $request $event->getRequest();
  45.         list($attributes) = $this->map->getPatterns($request);
  46.         if (null === $attributes) {
  47.             return;
  48.         }
  49.         if (!$token->isAuthenticated()) {
  50.             $token $this->authManager->authenticate($token);
  51.             $this->tokenStorage->setToken($token);
  52.         }
  53.         if (!$this->accessDecisionManager->decide($token$attributes$request)) {
  54.             $exception = new AccessDeniedException();
  55.             $exception->setAttributes($attributes);
  56.             $exception->setSubject($request);
  57.             throw $exception;
  58.         }
  59.     }
  60. }