123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
-
-
-
- namespace JMS\SecurityExtraBundle\Security\Authentication\Provider;
-
- use Symfony\Component\Security\Core\Exception\BadCredentialsException;
- use JMS\SecurityExtraBundle\Security\Authentication\Token\RunAsUserToken;
- use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
- use Symfony\Component\Security\Core\Authentication\Provider\AuthenticationProviderInterface;
-
-
- class RunAsAuthenticationProvider implements AuthenticationProviderInterface
- {
- private $key;
-
- public function __construct($key)
- {
- $this->key = $key;
- }
-
- public function authenticate(TokenInterface $token)
- {
- if (!$this->supports($token)) {
- return null;
- }
-
- if ($token->getKey() === $this->key) {
- return $token;
- } else {
- throw new BadCredentialsException('The keys do not match.');
- }
- }
-
- public function supports(TokenInterface $token)
- {
- return $token instanceof RunAsUserToken;
- }
- }
|