12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\Security\Http\Authenticator;
- use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
- use Symfony\Component\Security\Core\Exception\LogicException;
- use Symfony\Component\Security\Http\Authenticator\Passport\PassportInterface;
- use Symfony\Component\Security\Http\Authenticator\Passport\UserPassportInterface;
- use Symfony\Component\Security\Http\Authenticator\Token\PostAuthenticationToken;
- /**
- * An optional base class that creates the necessary tokens for you.
- *
- * @author Ryan Weaver <ryan@symfonycasts.com>
- *
- * @experimental in 5.2
- */
- abstract class AbstractAuthenticator implements AuthenticatorInterface
- {
- /**
- * Shortcut to create a PostAuthenticationToken for you, if you don't really
- * care about which authenticated token you're using.
- *
- * @return PostAuthenticationToken
- */
- public function createAuthenticatedToken(PassportInterface $passport, string $firewallName): TokenInterface
- {
- if (!$passport instanceof UserPassportInterface) {
- throw new LogicException(sprintf('Passport does not contain a user, overwrite "createAuthenticatedToken()" in "%s" to create a custom authenticated token.', static::class));
- }
- return new PostAuthenticationToken($passport->getUser(), $firewallName, $passport->getUser()->getRoles());
- }
- }
|