Some checks failed
Cadoles/hydra-sql/pipeline/pr-develop There was a failure building this commit
104 lines
4.1 KiB
PHP
104 lines
4.1 KiB
PHP
<?php
|
|
|
|
namespace App\Security;
|
|
|
|
use App\Entity\User;
|
|
use App\Pdo\Exception\InvalidPasswordException;
|
|
use App\Services\PdoService;
|
|
use PDOException;
|
|
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\Core\Exception\AuthenticationException;
|
|
use Symfony\Component\Security\Core\Security;
|
|
use Symfony\Component\Security\Http\Authenticator\AbstractAuthenticator;
|
|
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\Passport;
|
|
use Symfony\Component\Security\Http\Authenticator\Passport\SelfValidatingPassport;
|
|
|
|
class PdoUserAuthenticator extends AbstractAuthenticator
|
|
{
|
|
public const LOGIN_ROUTE = 'app_login';
|
|
public const ERROR_LOGIN = 'error_login';
|
|
public const ERROR_PASSWORD = 'error_password';
|
|
public const ERROR_PDO = 'error_pdo';
|
|
|
|
protected string $baseUrl;
|
|
private PdoService $pdoService;
|
|
private UrlGeneratorInterface $router;
|
|
|
|
public function __construct(string $baseUrl, PdoService $pdoService, UrlGeneratorInterface $router)
|
|
{
|
|
$this->baseUrl = $baseUrl;
|
|
$this->pdoService = $pdoService;
|
|
$this->router = $router;
|
|
}
|
|
|
|
/**
|
|
* Called on every request to decide if this authenticator should be
|
|
* used for the request. Returning `false` will cause this authenticator
|
|
* to be skipped.
|
|
*/
|
|
public function supports(Request $request): bool
|
|
{
|
|
return self::LOGIN_ROUTE === $request->attributes->get('_route') && $request->isMethod('POST');
|
|
}
|
|
|
|
public function onAuthenticationSuccess(Request $request, TokenInterface $token, $providerKey): ?Response
|
|
{
|
|
return new RedirectResponse($this->baseUrl.'/connect/login-accept');
|
|
}
|
|
|
|
public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response
|
|
{
|
|
$request->getSession()->set(Security::AUTHENTICATION_ERROR, $exception);
|
|
|
|
return new RedirectResponse(
|
|
$this->router->generate('app_login')
|
|
);
|
|
}
|
|
|
|
public function authenticate(Request $request): Passport
|
|
{
|
|
$form = $request->request->get('login');
|
|
$login = $form['login'];
|
|
$password = $form['password'];
|
|
$rememberMe = isset($form['_remember_me']) ? true : false;
|
|
try {
|
|
// requête préparée
|
|
$remoteHashedPassword = $this->pdoService->fetchPassword($login);
|
|
} catch (PDOException $e) {
|
|
$request->getSession()->set(self::ERROR_PDO, true);
|
|
throw new AuthenticationException();
|
|
}
|
|
if ($remoteHashedPassword) {
|
|
try {
|
|
$this->pdoService->verifyPassword($password, $remoteHashedPassword);
|
|
$attributes = $this->pdoService->fetchDatas($login);
|
|
$user = new User($login, $password, $attributes, $rememberMe);
|
|
$loader = function (string $userIdentifier) use ($user) {
|
|
return $user->getLogin() == $userIdentifier ? $user : null;
|
|
};
|
|
$passport = new SelfValidatingPassport(new UserBadge($login, $loader));
|
|
if ($rememberMe) {
|
|
$passport->addBadge(new RememberMeBadge());
|
|
}
|
|
$passport->setAttribute('attributes', $user->getAttributes());
|
|
|
|
return $passport;
|
|
} catch (InvalidPasswordException $e) {
|
|
$request->getSession()->set(self::ERROR_PASSWORD, true);
|
|
throw new AuthenticationException();
|
|
} catch (PDOException $e) {
|
|
$request->getSession()->set(self::ERROR_PDO, true);
|
|
throw new AuthenticationException();
|
|
}
|
|
}
|
|
$request->getSession()->set(self::ERROR_LOGIN, true);
|
|
throw new AuthenticationException();
|
|
}
|
|
}
|