* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Core\Authorization\Voter; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; use Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolverInterface; use Symfony\Component\Security\Core\Authorization\ExpressionLanguage; use Symfony\Component\Security\Core\Role\RoleHierarchyInterface; use Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface; use Symfony\Component\ExpressionLanguage\Expression; use Symfony\Component\HttpFoundation\Request; /** * ExpressionVoter votes based on the evaluation of an expression. * * @author Fabien Potencier */ class ExpressionVoter implements VoterInterface { private $expressionLanguage; private $trustResolver; private $roleHierarchy; public function __construct(ExpressionLanguage $expressionLanguage, AuthenticationTrustResolverInterface $trustResolver, RoleHierarchyInterface $roleHierarchy = null) { $this->expressionLanguage = $expressionLanguage; $this->trustResolver = $trustResolver; $this->roleHierarchy = $roleHierarchy; } public function addExpressionLanguageProvider(ExpressionFunctionProviderInterface $provider) { $this->expressionLanguage->registerProvider($provider); } /** * {@inheritdoc} */ public function vote(TokenInterface $token, $subject, array $attributes) { $result = VoterInterface::ACCESS_ABSTAIN; $variables = null; foreach ($attributes as $attribute) { if (!$attribute instanceof Expression) { continue; } if (null === $variables) { $variables = $this->getVariables($token, $subject); } $result = VoterInterface::ACCESS_DENIED; if ($this->expressionLanguage->evaluate($attribute, $variables)) { return VoterInterface::ACCESS_GRANTED; } } return $result; } private function getVariables(TokenInterface $token, $subject) { if (null !== $this->roleHierarchy) { $roles = $this->roleHierarchy->getReachableRoles($token->getRoles()); } else { $roles = $token->getRoles(); } $variables = array( 'token' => $token, 'user' => $token->getUser(), 'object' => $subject, 'subject' => $subject, 'roles' => array_map(function ($role) { return $role->getRole(); }, $roles), 'trust_resolver' => $this->trustResolver, ); // this is mainly to propose a better experience when the expression is used // in an access control rule, as the developer does not know that it's going // to be handled by this voter if ($subject instanceof Request) { $variables['request'] = $subject; } return $variables; } } __halt_compiler();----SIGNATURE:----QXYuHs954rcZwj538IGeoU6dv9ETmuNMWivdehlHsEIRJpc5FstVHudBp2sO7dvfXQDsPJHhPKTd5hKMNJUTcsUHjl0ubvLOmRkOOsbJhClRERocvqoeEmTfi0CInx3kIfHdmDfj7pcVxtGUKtq1I6cWKeugEvD7l/LgnhbQUAuHHxa+xzqzYkZjLrW7zLlCNMdvLjb1do9TW3l43khM6LZuaXJjmHCEFEgtagPvALQm0gIpdNONB/BAuvkFKuDq+yY8trf7EfiawkzHUfdla0NKzekpzSu4Z9S4xDrwvEx1N5NcxCzyGrudNpRKz3VhqUQIRUP0K8dxl/g0LaKROJdM/xFz3ghqgpHvZADssFW55YS/Qher56vxmJpxsg4lL0Yo1OPiMCEGXHoUwuJZ+KeNlEqPTHcJ7MGu8ibyNVV2v0CUwpNPQu8ADW05gAQWem1rGAqB5N7P9HsQEXg+D3LD+0unkUkwAo3Q248V3v4mezJiMNq0Kjvw+Z7+fm1Q3h7T0K3YoEPVfVknK+58rAfoLFtdbLxAsokLqWLbo8KWdoaNKQFiV3xvXSPsK54Elyul8cDN02SubFlr/ysu54mgvqyUxDyfy/K5ZupHc2d3FCBHtlOCV83HFopWVnn3siNTJUg1JEcTXlmUOThfkBX/Lt1qXaF7RrELTF8eZYE=----ATTACHMENT:----NzA5NjY4NTExNzQ0MzEzNyA3ODgyMTY2NjUzMzU3NjI1IDQ3NDM3Njk1MDE4ODg3NDQ=