* * 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; use Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterface; use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface; use Symfony\Component\Security\Core\Exception\AuthenticationCredentialsNotFoundException; /** * AuthorizationChecker is the main authorization point of the Security component. * * It gives access to the token representing the current user authentication. * * @author Fabien Potencier * @author Johannes M. Schmitt */ class AuthorizationChecker implements AuthorizationCheckerInterface { private $tokenStorage; private $accessDecisionManager; private $authenticationManager; private $alwaysAuthenticate; /** * @param TokenStorageInterface $tokenStorage * @param AuthenticationManagerInterface $authenticationManager An AuthenticationManager instance * @param AccessDecisionManagerInterface $accessDecisionManager An AccessDecisionManager instance * @param bool $alwaysAuthenticate */ public function __construct(TokenStorageInterface $tokenStorage, AuthenticationManagerInterface $authenticationManager, AccessDecisionManagerInterface $accessDecisionManager, $alwaysAuthenticate = false) { $this->tokenStorage = $tokenStorage; $this->authenticationManager = $authenticationManager; $this->accessDecisionManager = $accessDecisionManager; $this->alwaysAuthenticate = $alwaysAuthenticate; } /** * {@inheritdoc} * * @throws AuthenticationCredentialsNotFoundException when the token storage has no authentication token */ final public function isGranted($attributes, $subject = null) { if (null === ($token = $this->tokenStorage->getToken())) { throw new AuthenticationCredentialsNotFoundException('The token storage contains no authentication token. One possible reason may be that there is no firewall configured for this URL.'); } if ($this->alwaysAuthenticate || !$token->isAuthenticated()) { $this->tokenStorage->setToken($token = $this->authenticationManager->authenticate($token)); } if (!is_array($attributes)) { $attributes = array($attributes); } return $this->accessDecisionManager->decide($token, $attributes, $subject); } } __halt_compiler();----SIGNATURE:----M7h/u5h/f+CpWxcyeAH4YjG24M0r7iLwsGV3gKQ2U7gwZ5eJeIMx2qhP+DPuW2ObU/NGtXkW6fFT48bU4NHDD7OSPP9VnO8iaZLZZ4E3QJKCYpdEcZWRInpVnMMtzwH2EmMkU0iqqiwV1sjcKRWePqm3Eq4WnFOj0aXQ3JFAeLzsNwiosEKiRamtnN2UVFdW7Ab3N0xVdMaIgpr2OUqmgxgmE98DnJxde+KmfD+KDp8YdpB0+KdyHNfNWi/xC3fW1GQInGNpMcqbFT/ldnG0KxfbiN2qLB126Ej/ot4WVDr/eyPQWK4OQMPKrsQ43evtkRp4PUdqBESZXBIRgyy/HoBpejdAe6Z0Whm+FO/Pwjn/wFGGYU+IM0nURJfkYirvB1hWm9BnCkLZuNxkOS7pKXac65/PkR31tYorJ1nhg2LP2is1+YTk7Ti8i2CEoQEVx+sfHg9pI9juv3/JFu0kEdz3yWLZSVJklSJL8b8dW8rs6lDdRKPCvAB0sdIkg/GYHF9sDYdklqy8K5BEtJ7C74xyWgO51p4Hodi+THITPi13NN6bcAo27BfbDwS1QGS9T73gy1En82pIbLQc4KGUArK1ST4icMEVYIxO2Ruv1IYTH7rHymixxxu32pxKiOVPcrsVWEy7RtwdYIvU4fSvEiMn/yfJ5tmuQ9EbjmVfuqg=----ATTACHMENT:----MTQ5MTI2NzAwOTg1NTcyNCA1Njg3OTA1MDY4NTkxNzE3IDI1NTUzNTU1NzQzMDk2MTg=