src/Controller/ResetPasswordController.php line 47

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\User;
  4. use App\Form\ChangePasswordFormType;
  5. use App\Form\ResetPasswordRequestFormType;
  6. use App\Services\Emailing;
  7. use Doctrine\ORM\EntityManagerInterface;
  8. use Symfony\Bridge\Twig\Mime\TemplatedEmail;
  9. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  10. use Symfony\Component\HttpFoundation\RedirectResponse;
  11. use Symfony\Component\HttpFoundation\Request;
  12. use Symfony\Component\HttpFoundation\Response;
  13. use Symfony\Component\Mailer\MailerInterface;
  14. use Symfony\Component\Mime\Address;
  15. use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
  16. use Symfony\Component\Routing\Annotation\Route;
  17. use Symfony\Contracts\Translation\TranslatorInterface;
  18. use SymfonyCasts\Bundle\ResetPassword\Controller\ResetPasswordControllerTrait;
  19. use SymfonyCasts\Bundle\ResetPassword\Exception\ResetPasswordExceptionInterface;
  20. use SymfonyCasts\Bundle\ResetPassword\ResetPasswordHelperInterface;
  21. /**
  22. * @Route("/reset-password")
  23. */
  24. class ResetPasswordController extends AbstractController
  25. {
  26. use ResetPasswordControllerTrait;
  27. private ResetPasswordHelperInterface $resetPasswordHelper;
  28. private EntityManagerInterface $entityManager;
  29. private $emailing;
  30. public function __construct(ResetPasswordHelperInterface $resetPasswordHelper, EntityManagerInterface $entityManager,Emailing $emailing)
  31. {
  32. $this->resetPasswordHelper = $resetPasswordHelper;
  33. $this->entityManager = $entityManager;
  34. $this->emailing = $emailing;
  35. }
  36. /**
  37. * Display & process form to request a password reset.
  38. *
  39. * @Route("", name="app_forgot_password_request")
  40. */
  41. public function request(Request $request): Response
  42. {
  43. $form = $this->createForm(ResetPasswordRequestFormType::class);
  44. $form->handleRequest($request);
  45. if ($form->isSubmitted() && $form->isValid()) {
  46. return $this->processSendingPasswordResetEmail(
  47. $form->get('email')->getData(),
  48. );
  49. }
  50. return $this->render('reset_password/request.html.twig', [
  51. 'requestForm' => $form->createView(),
  52. ]);
  53. }
  54. /**
  55. * Confirmation page after a user has requested a password reset.
  56. *
  57. * @Route("/check-email", name="app_check_email")
  58. */
  59. public function checkEmail(): Response
  60. {
  61. // Generate a fake token if the user does not exist or someone hit this page directly.
  62. // This prevents exposing whether or not a user was found with the given email address or not
  63. if (null === ($resetToken = $this->getTokenObjectFromSession())) {
  64. $resetToken = $this->resetPasswordHelper->generateFakeResetToken();
  65. }
  66. return $this->render('reset_password/check_email.html.twig', [
  67. 'resetToken' => $resetToken,
  68. ]);
  69. }
  70. /**
  71. * Validates and process the reset URL that the user clicked in their email.
  72. *
  73. * @Route("/reset/{token}", name="app_reset_password")
  74. */
  75. public function reset(Request $request, UserPasswordHasherInterface $userPasswordHasher, TranslatorInterface $translator, string $token = null): Response
  76. {
  77. if ($token) {
  78. // We store the token in session and remove it from the URL, to avoid the URL being
  79. // loaded in a browser and potentially leaking the token to 3rd party JavaScript.
  80. $this->storeTokenInSession($token);
  81. return $this->redirectToRoute('app_reset_password');
  82. }
  83. $token = $this->getTokenFromSession();
  84. if (null === $token) {
  85. throw $this->createNotFoundException('No reset password token found in the URL or in the session.');
  86. }
  87. try {
  88. $user = $this->resetPasswordHelper->validateTokenAndFetchUser($token);
  89. } catch (ResetPasswordExceptionInterface $e) {
  90. $this->addFlash('reset_password_error', sprintf(
  91. '%s - %s',
  92. $translator->trans(ResetPasswordExceptionInterface::MESSAGE_PROBLEM_VALIDATE, [], 'ResetPasswordBundle'),
  93. $translator->trans($e->getReason(), [], 'ResetPasswordBundle')
  94. ));
  95. return $this->redirectToRoute('app_forgot_password_request');
  96. }
  97. // The token is valid; allow the user to change their password.
  98. $form = $this->createForm(ChangePasswordFormType::class);
  99. $form->handleRequest($request);
  100. if ($form->isSubmitted() && $form->isValid()) {
  101. // A password reset token should be used only once, remove it.
  102. $this->resetPasswordHelper->removeResetRequest($token);
  103. // Encode(hash) the plain password, and set it.
  104. $encodedPassword = $userPasswordHasher->hashPassword(
  105. $user,
  106. $form->get('plainPassword')->getData()
  107. );
  108. $user->setPassword($encodedPassword);
  109. $this->entityManager->flush();
  110. // The session is cleaned up after the password has been changed.
  111. $this->cleanSessionAfterReset();
  112. return $this->redirectToRoute('app_login');
  113. }
  114. return $this->render('reset_password/reset.html.twig', [
  115. 'resetForm' => $form->createView(),
  116. ]);
  117. }
  118. private function processSendingPasswordResetEmail(string $emailFormData): RedirectResponse
  119. {
  120. $user = $this->entityManager->getRepository(User::class)->findOneBy([
  121. 'email' => $emailFormData,
  122. ]);
  123. // Do not reveal whether a user account was found or not.
  124. if (!$user) {
  125. return $this->redirectToRoute('app_check_email');
  126. }
  127. try {
  128. $resetToken = $this->resetPasswordHelper->generateResetToken($user);
  129. } catch (ResetPasswordExceptionInterface $e) {
  130. return $this->redirectToRoute('app_check_email');
  131. }
  132. $params = ['resetToken' => $resetToken, 'tokenLifetime' => $this->resetPasswordHelper->getTokenLifetime()];
  133. $this->emailing->resetPassword($user->getEmail(), $params);
  134. return $this->redirectToRoute('app_check_email');
  135. }
  136. }