vendor/symfony/security-core/Authorization/AuthorizationChecker.php line 49

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\Core\Authorization;
  11. use Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterface;
  12. use Symfony\Component\Security\Core\Authentication\Token\NullToken;
  13. use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
  14. use Symfony\Component\Security\Core\Exception\AuthenticationCredentialsNotFoundException;
  15. /**
  16.  * AuthorizationChecker is the main authorization point of the Security component.
  17.  *
  18.  * It gives access to the token representing the current user authentication.
  19.  *
  20.  * @author Fabien Potencier <fabien@symfony.com>
  21.  * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  22.  */
  23. class AuthorizationChecker implements AuthorizationCheckerInterface
  24. {
  25.     private $tokenStorage;
  26.     private $accessDecisionManager;
  27.     private $authenticationManager;
  28.     private $alwaysAuthenticate;
  29.     private $exceptionOnNoToken;
  30.     public function __construct(TokenStorageInterface $tokenStorageAuthenticationManagerInterface $authenticationManagerAccessDecisionManagerInterface $accessDecisionManagerbool $alwaysAuthenticate falsebool $exceptionOnNoToken true)
  31.     {
  32.         $this->tokenStorage $tokenStorage;
  33.         $this->authenticationManager $authenticationManager;
  34.         $this->accessDecisionManager $accessDecisionManager;
  35.         $this->alwaysAuthenticate $alwaysAuthenticate;
  36.         $this->exceptionOnNoToken $exceptionOnNoToken;
  37.     }
  38.     /**
  39.      * {@inheritdoc}
  40.      *
  41.      * @throws AuthenticationCredentialsNotFoundException when the token storage has no authentication token and $exceptionOnNoToken is set to true
  42.      */
  43.     final public function isGranted($attribute$subject null): bool
  44.     {
  45.         if (null === ($token $this->tokenStorage->getToken())) {
  46.             if ($this->exceptionOnNoToken) {
  47.                 throw new AuthenticationCredentialsNotFoundException('The token storage contains no authentication token. One possible reason may be that there is no firewall configured for this URL.');
  48.             }
  49.             $token = new NullToken();
  50.         } else {
  51.             if ($this->alwaysAuthenticate || !$token->isAuthenticated()) {
  52.                 $this->tokenStorage->setToken($token $this->authenticationManager->authenticate($token));
  53.             }
  54.         }
  55.         return $this->accessDecisionManager->decide($token, [$attribute], $subject);
  56.     }
  57. }