vendor/symfony/security-core/Authorization/Voter/ExpressionVoter.php line 28

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\Voter;
  11. use Symfony\Component\ExpressionLanguage\Expression;
  12. use Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface;
  13. use Symfony\Component\HttpFoundation\Request;
  14. use Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolverInterface;
  15. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  16. use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface;
  17. use Symfony\Component\Security\Core\Authorization\ExpressionLanguage;
  18. use Symfony\Component\Security\Core\Role\RoleHierarchyInterface;
  19. /**
  20.  * ExpressionVoter votes based on the evaluation of an expression.
  21.  *
  22.  * @author Fabien Potencier <fabien@symfony.com>
  23.  */
  24. class ExpressionVoter implements VoterInterface
  25. {
  26.     private $expressionLanguage;
  27.     private $trustResolver;
  28.     private $authChecker;
  29.     private $roleHierarchy;
  30.     /**
  31.      * @param AuthorizationCheckerInterface $authChecker
  32.      */
  33.     public function __construct(ExpressionLanguage $expressionLanguageAuthenticationTrustResolverInterface $trustResolver$authChecker nullRoleHierarchyInterface $roleHierarchy null)
  34.     {
  35.         if ($authChecker instanceof RoleHierarchyInterface) {
  36.             @trigger_error(sprintf('Passing a RoleHierarchyInterface to "%s()" is deprecated since Symfony 4.2. Pass an AuthorizationCheckerInterface instead.'__METHOD__), E_USER_DEPRECATED);
  37.             $roleHierarchy $authChecker;
  38.             $authChecker null;
  39.         } elseif (null === $authChecker) {
  40.             @trigger_error(sprintf('Argument 3 passed to "%s()" should be an instance of AuthorizationCheckerInterface, not passing it is deprecated since Symfony 4.2.'__METHOD__), E_USER_DEPRECATED);
  41.         } elseif (!$authChecker instanceof AuthorizationCheckerInterface) {
  42.             throw new \TypeError(sprintf('Argument 3 passed to %s() must be an instance of %s or null, %s given.'__METHOD__AuthorizationCheckerInterface::class, \is_object($authChecker) ? \get_class($authChecker) : \gettype($authChecker)));
  43.         }
  44.         $this->expressionLanguage $expressionLanguage;
  45.         $this->trustResolver $trustResolver;
  46.         $this->authChecker $authChecker;
  47.         $this->roleHierarchy $roleHierarchy;
  48.     }
  49.     /**
  50.      * @deprecated since Symfony 4.1, register the provider directly on the injected ExpressionLanguage instance instead.
  51.      */
  52.     public function addExpressionLanguageProvider(ExpressionFunctionProviderInterface $provider)
  53.     {
  54.         @trigger_error(sprintf('The "%s()" method is deprecated since Symfony 4.1, register the provider directly on the injected ExpressionLanguage instance instead.'__METHOD__), E_USER_DEPRECATED);
  55.         $this->expressionLanguage->registerProvider($provider);
  56.     }
  57.     /**
  58.      * {@inheritdoc}
  59.      */
  60.     public function vote(TokenInterface $token$subject, array $attributes)
  61.     {
  62.         $result VoterInterface::ACCESS_ABSTAIN;
  63.         $variables null;
  64.         foreach ($attributes as $attribute) {
  65.             if (!$attribute instanceof Expression) {
  66.                 continue;
  67.             }
  68.             if (null === $variables) {
  69.                 $variables $this->getVariables($token$subject);
  70.             }
  71.             $result VoterInterface::ACCESS_DENIED;
  72.             if ($this->expressionLanguage->evaluate($attribute$variables)) {
  73.                 return VoterInterface::ACCESS_GRANTED;
  74.             }
  75.         }
  76.         return $result;
  77.     }
  78.     private function getVariables(TokenInterface $token$subject)
  79.     {
  80.         if (null !== $this->roleHierarchy) {
  81.             $roles $this->roleHierarchy->getReachableRoles($token->getRoles());
  82.         } else {
  83.             $roles $token->getRoles();
  84.         }
  85.         $variables = [
  86.             'token' => $token,
  87.             'user' => $token->getUser(),
  88.             'object' => $subject,
  89.             'subject' => $subject,
  90.             'roles' => array_map(function ($role) { return $role->getRole(); }, $roles),
  91.             'trust_resolver' => $this->trustResolver,
  92.             'auth_checker' => $this->authChecker,
  93.         ];
  94.         // this is mainly to propose a better experience when the expression is used
  95.         // in an access control rule, as the developer does not know that it's going
  96.         // to be handled by this voter
  97.         if ($subject instanceof Request) {
  98.             $variables['request'] = $subject;
  99.         }
  100.         return $variables;
  101.     }
  102. }