61 lines
2.3 KiB
PHP
61 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace App\Security;
|
|
|
|
use Symfony\Component\HttpFoundation\RedirectResponse;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
|
|
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
|
|
use Symfony\Component\Security\Http\Authenticator\AbstractLoginFormAuthenticator;
|
|
use Symfony\Component\Security\Http\Authenticator\Passport\Badge\CsrfTokenBadge;
|
|
use Symfony\Component\Security\Http\Authenticator\Passport\Badge\RememberMeBadge;
|
|
use Symfony\Component\Security\Http\Authenticator\Passport\Badge\UserBadge;
|
|
use Symfony\Component\Security\Http\Authenticator\Passport\Credentials\PasswordCredentials;
|
|
use Symfony\Component\Security\Http\Authenticator\Passport\Passport;
|
|
use Symfony\Component\Security\Http\SecurityRequestAttributes;
|
|
use Symfony\Component\Security\Http\Util\TargetPathTrait;
|
|
|
|
class UserAuthenticator extends AbstractLoginFormAuthenticator
|
|
{
|
|
use TargetPathTrait;
|
|
|
|
public const LOGIN_ROUTE = 'app_login';
|
|
|
|
public function __construct(private UrlGeneratorInterface $urlGenerator)
|
|
{
|
|
}
|
|
|
|
public function authenticate(Request $request): Passport
|
|
{
|
|
$nickname = $request->getPayload()->getString('nickname');
|
|
|
|
$request->getSession()->set(SecurityRequestAttributes::LAST_USERNAME, $nickname);
|
|
|
|
return new Passport(
|
|
new UserBadge($nickname),
|
|
new PasswordCredentials($request->getPayload()->getString('password')),
|
|
[
|
|
new CsrfTokenBadge('authenticate', $request->getPayload()->getString('_csrf_token')),
|
|
new RememberMeBadge(),
|
|
]
|
|
);
|
|
}
|
|
|
|
public function onAuthenticationSuccess(Request $request, TokenInterface $token, string $firewallName): ?Response
|
|
{
|
|
if ($targetPath = $this->getTargetPath($request->getSession(), $firewallName)) {
|
|
return new RedirectResponse($targetPath);
|
|
}
|
|
|
|
// For example:
|
|
return new RedirectResponse($this->urlGenerator->generate('index'));
|
|
//throw new \Exception('TODO: provide a valid redirect inside '.__FILE__);
|
|
}
|
|
|
|
protected function getLoginUrl(Request $request): string
|
|
{
|
|
return $this->urlGenerator->generate(self::LOGIN_ROUTE);
|
|
}
|
|
}
|