LoginFormAuthenticator.php 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. namespace App\Security;
  3. use App\Entity\User;
  4. use Doctrine\ORM\EntityManagerInterface;
  5. use Symfony\Component\HttpFoundation\RedirectResponse;
  6. use Symfony\Component\HttpFoundation\Request;
  7. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  8. use Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface;
  9. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  10. use Symfony\Component\Security\Core\Exception\CustomUserMessageAuthenticationException;
  11. use Symfony\Component\Security\Core\Exception\InvalidCsrfTokenException;
  12. use Symfony\Component\Security\Core\Security;
  13. use Symfony\Component\Security\Core\User\UserInterface;
  14. use Symfony\Component\Security\Core\User\UserProviderInterface;
  15. use Symfony\Component\Security\Csrf\CsrfToken;
  16. use Symfony\Component\Security\Csrf\CsrfTokenManagerInterface;
  17. use Symfony\Component\Security\Guard\Authenticator\AbstractFormLoginAuthenticator;
  18. use Symfony\Component\Security\Http\Util\TargetPathTrait;
  19. class LoginFormAuthenticator extends AbstractFormLoginAuthenticator
  20. {
  21. use TargetPathTrait;
  22. private $entityManager;
  23. private $urlGenerator;
  24. private $csrfTokenManager;
  25. private $passwordEncoder;
  26. public function __construct(EntityManagerInterface $entityManager, UrlGeneratorInterface $urlGenerator, CsrfTokenManagerInterface $csrfTokenManager, UserPasswordEncoderInterface $passwordEncoder)
  27. {
  28. $this->entityManager = $entityManager;
  29. $this->urlGenerator = $urlGenerator;
  30. $this->csrfTokenManager = $csrfTokenManager;
  31. $this->passwordEncoder = $passwordEncoder;
  32. }
  33. public function supports(Request $request)
  34. {
  35. return 'app_login' === $request->attributes->get('_route')
  36. && $request->isMethod('POST');
  37. }
  38. public function getCredentials(Request $request)
  39. {
  40. $credentials = [
  41. 'username' => $request->request->get('username'),
  42. 'password' => $request->request->get('password'),
  43. 'csrf_token' => $request->request->get('_csrf_token'),
  44. ];
  45. $request->getSession()->set(
  46. Security::LAST_USERNAME,
  47. $credentials['username']
  48. );
  49. return $credentials;
  50. }
  51. public function getUser($credentials, UserProviderInterface $userProvider)
  52. {
  53. $token = new CsrfToken('authenticate', $credentials['csrf_token']);
  54. if (!$this->csrfTokenManager->isTokenValid($token)) {
  55. throw new InvalidCsrfTokenException();
  56. }
  57. $user = $this->entityManager->getRepository(User::class)->findOneBy(['username' => $credentials['username']]);
  58. if (!$user) {
  59. // fail authentication with a custom error
  60. throw new CustomUserMessageAuthenticationException('Login not found');
  61. }
  62. return $user;
  63. }
  64. public function checkCredentials($credentials, UserInterface $user)
  65. {
  66. // Check the user's password or other credentials and return true or false
  67. // If there are no credentials to check, you can just return true
  68. return $this->passwordEncoder->isPasswordValid($user, $credentials['password']);
  69. }
  70. public function onAuthenticationSuccess(Request $request, TokenInterface $token, $providerKey)
  71. {
  72. if ($targetPath = $this->getTargetPath($request->getSession(), $providerKey)) {
  73. return new RedirectResponse($targetPath);
  74. }
  75. return new RedirectResponse($this->urlGenerator->generate('videotheque_liste'));
  76. }
  77. protected function getLoginUrl()
  78. {
  79. return $this->urlGenerator->generate('app_login');
  80. }
  81. }