* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Guard\Token; use Symfony\Component\Security\Core\Authentication\Token\AbstractToken; use Symfony\Component\Security\Core\Role\Role; use Symfony\Component\Security\Core\User\UserInterface; /** * Used as an "authenticated" token, though it could be set to not-authenticated later. * * If you're using Guard authentication, you *must* use a class that implements * GuardTokenInterface as your authenticated token (like this class). * * @author Ryan Weaver */ class PostAuthenticationGuardToken extends AbstractToken implements GuardTokenInterface { private $providerKey; /** * @param UserInterface $user The user! * @param string $providerKey The provider (firewall) key * @param (Role|string)[] $roles An array of roles * * @throws \InvalidArgumentException */ public function __construct(UserInterface $user, $providerKey, array $roles) { parent::__construct($roles); if (empty($providerKey)) { throw new \InvalidArgumentException('$providerKey (i.e. firewall key) must not be empty.'); } $this->setUser($user); $this->providerKey = $providerKey; // this token is meant to be used after authentication success, so it is always authenticated // you could set it as non authenticated later if you need to parent::setAuthenticated(true); } /** * This is meant to be only an authenticated token, where credentials * have already been used and are thus cleared. * * {@inheritdoc} */ public function getCredentials() { return array(); } /** * Returns the provider (firewall) key. * * @return string */ public function getProviderKey() { return $this->providerKey; } /** * {@inheritdoc} */ public function serialize() { return serialize(array($this->providerKey, parent::serialize())); } /** * {@inheritdoc} */ public function unserialize($serialized) { list($this->providerKey, $parentStr) = unserialize($serialized); parent::unserialize($parentStr); } } __halt_compiler();----SIGNATURE:----Uo++UoVape1qKivxcpNMpEk6bs+r9Oett5SU1+/0yT5n+dDHBJJ/KXL7iLF+jEdqsQ4I0l8GGw5nKXGKJiIcbyCQY2SLS3swWw8Bh4Y8zkbJ+cfC8av5wHnCflHgn5AElWyObN8n420V5kJkM1vcRIVbJYiGrAu6zKXS6zP3eB7s/YcvuHSTTaxbJrm/0FAmzdU5JvNdrEMqvDllDJSqp0Jvpow9tUhW8A3phgbZuQcpLHzRfyIfQACAWydHcn39/TgV/GqdQDqMeT/hp+PlwtOddCH75kc+2xU4gTMG32yyrFvp7QKsV4g3RKu8IkDZjVQuopWKhMk+B90rtfpWnyTugEwzl+v14ehYCFhHsn7eLwcxpc8GOUE1Pt+hNmB/25CpMEFP6tG265uZ76ywokiYWcRUsnW+o4kW6X8fr6B4nEIaq/+/cDo1jtV/I+BWAL4esXQ5wxh7fQrqlmRXrqTX2+8MmMYeOINRJEBTXuZIi4gvWP+q/kbiWTdtYrCPTGeMZijARcH3laTIDC2oTc8RTLLQqG0VBOqbLKfP94BXyj+3AauLOb4hNMtteXvv6VBoYllBXpQ9adHn3BQVSKKYiyefNE0fut/f9Zs+jxvm9MuwQYn19gJpIV2tWCC1bjG+KEaJiCMKIYJVvzRvLtZnGuzFuJ9CLHaoAJEEedM=----ATTACHMENT:----MjExMzMwOTIwNDMwNzU2NCA2NjYzNjgzNTk3MTgxNDc4IDE2MTIzMjE2NTE0OTAzMzg=