* * 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:----EGsZXiqTaND3o2glCWPIBbi3TYU7T/V9o/StcPK7LMOMXsYMg8tHFB2RVdhNb8wLHKQNI+nYy4MKx3C3fzbCGkU8Oniir4cx+t9YiBERJMXy61ez50QSKOXUCWtNXJasCu6OrT8xyR9Nng0ATXYpzGTAX0ZPhnqB0q6XlSXNp3E8qoS3zFvO8lLQOfMwouc2HfzPiq1TZnejXJE3kthrq7PUjVqX9NOmGnTAX3wUCG4/g5aP+lr2pZpxoDmq35qO0PFEBEEmk3RW+OUl7loR/6mZppJpi9f9W3ePE3SdYA28MF1LtaBJJBRW6jv2J9V6aTMJVcU6dbslDg1isxgqwfuVKQVFnebm1tx/1Zeh4cY1pHHYzBmmS9jJXo1qpG7vDZU8qL/G7E+C5P75D+8VGDLgsXbsInT56EOAURO++y4/lU0AjTfGXJO6WDcdR8togLYwHHDQihj43E19meVl300SkcmUjvnHP2i9njsy21I15A4x74X6k0kv3htAu2l+hha1IrlIFkqCxwnDtAWBQuQ1Gp7OtR9E1q/f7fLuuHvlPvCCAkUtVzYCnySkvYtnzjNFUPgMHtW3snPh8CYcBFsHF1T26OGER/aHJ0o0vGCxa+a1C1EgAztoY+mQ2WaO8q12D+AWJ9eGR2ch/29yp+FdM0pLJnFs1BQXsEJdgsE=----ATTACHMENT:----NzgzODI4NTM2OTY5ODcyOSA5NzAyNTc3NDk3MzUyMTMwIDIyMzIyOTM1ODI3NDQwNzQ=