LoginFormAuthenticator.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. namespace App\Security;
  3. use Symfony\Component\HttpFoundation\RedirectResponse;
  4. use Symfony\Component\HttpFoundation\Request;
  5. use Symfony\Component\HttpFoundation\Response;
  6. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  7. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  8. use Symfony\Component\Security\Core\Security;
  9. use Symfony\Component\Security\Core\User\UserInterface;
  10. use Symfony\Component\Security\Http\Authenticator\AbstractLoginFormAuthenticator;
  11. use Symfony\Component\Security\Http\Authenticator\Passport\Badge\CsrfTokenBadge;
  12. use Symfony\Component\Security\Http\Authenticator\Passport\Badge\UserBadge;
  13. use Symfony\Component\Security\Http\Authenticator\Passport\Credentials\PasswordCredentials;
  14. use Symfony\Component\Security\Http\Authenticator\Passport\Passport;
  15. use Symfony\Component\Security\Http\Authenticator\Passport\PassportInterface;
  16. use Symfony\Component\Security\Http\Util\TargetPathTrait;
  17. class LoginFormAuthenticator extends AbstractLoginFormAuthenticator
  18. {
  19. use TargetPathTrait;
  20. public const LOGIN_ROUTE = 'app_login';
  21. private $urlGenerator;
  22. public function __construct(UrlGeneratorInterface $urlGenerator)
  23. {
  24. $this->urlGenerator = $urlGenerator;
  25. }
  26. public function authenticate(Request $request): PassportInterface
  27. {
  28. $username = $request->request->get('username', '');
  29. $request->getSession()->set(Security::LAST_USERNAME, $username);
  30. return new Passport(
  31. new UserBadge($username),
  32. new PasswordCredentials($request->request->get('password', '')),
  33. [
  34. new CsrfTokenBadge('authenticate', $request->get('_csrf_token')),
  35. ]
  36. );
  37. }
  38. public function checkCredentials($credentials, UserInterface $user)
  39. {
  40. // Check the user's password or other credentials and return true or false
  41. // If there are no credentials to check, you can just return true
  42. return $this->passwordEncoder->isPasswordValid($user, $credentials['password']);
  43. }
  44. public function onAuthenticationSuccess(Request $request, TokenInterface $token, string $firewallName): ?Response
  45. {
  46. if ($targetPath = $this->getTargetPath($request->getSession(), $firewallName)) {
  47. return new RedirectResponse($targetPath);
  48. }
  49. // For example:
  50. return new RedirectResponse($this->urlGenerator->generate('videotheque_liste'));
  51. }
  52. protected function getLoginUrl(Request $request): string
  53. {
  54. return $this->urlGenerator->generate(self::LOGIN_ROUTE);
  55. }
  56. }