src/Controller/ResetPasswordController.php line 38

  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\User;
  4. use App\Form\ChangePasswordFormType;
  5. use App\Form\ResetPasswordRequestFormType;
  6. use App\Repository\UserRepository;
  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\PasswordHasher\Hasher\UserPasswordHasherInterface;
  15. use Symfony\Component\Routing\Annotation\Route;
  16. use SymfonyCasts\Bundle\ResetPassword\Controller\ResetPasswordControllerTrait;
  17. use SymfonyCasts\Bundle\ResetPassword\Exception\ResetPasswordExceptionInterface;
  18. use SymfonyCasts\Bundle\ResetPassword\ResetPasswordHelperInterface;
  19. #[Route(path'/reset-password')]
  20. class ResetPasswordController extends AbstractController
  21. {
  22.     use ResetPasswordControllerTrait;
  23.     private $resetPasswordHelper;
  24.     public function __construct(ResetPasswordHelperInterface $resetPasswordHelper)
  25.     {
  26.         $this->resetPasswordHelper $resetPasswordHelper;
  27.     }
  28.     /**
  29.      * Display & process form to request a password reset.
  30.      */
  31.     #[Route(path''name'app_forgot_password_request')]
  32.     public function request(Request $requestMailerInterface $mailerUserRepository $userRepository): Response
  33.     {
  34.         $form $this->createForm(ResetPasswordRequestFormType::class);
  35.         $form->handleRequest($request);
  36.         if ($form->isSubmitted() && $form->isValid()) {
  37.             return $this->processSendingPasswordResetEmail(
  38.                 $form->get('email')->getData(),
  39.                 $mailer,
  40.                 $userRepository
  41.             );
  42.         }
  43.         return $this->render('reset_password/request.html.twig', [
  44.             'requestForm' => $form->createView(),
  45.         ]);
  46.     }
  47.     /**
  48.      * Confirmation page after a user has requested a password reset.
  49.      */
  50.     #[Route(path'/check-email'name'app_check_email')]
  51.     public function checkEmail(): Response
  52.     {
  53.         // We prevent users from directly accessing this page
  54.         if (!$this->canCheckEmail()) {
  55.             return $this->redirectToRoute('app_forgot_password_request');
  56.         }
  57.         return $this->render('reset_password/check_email.html.twig', [
  58.             'tokenLifetime' => $this->resetPasswordHelper->getTokenLifetime(),
  59.         ]);
  60.     }
  61.     /**
  62.      * Validates and process the reset URL that the user clicked in their email.
  63.      */
  64.     #[Route(path'/reset/{token?}'name'app_reset_password')]
  65.     public function reset(Request $requestUserPasswordHasherInterface $passwordEncoderstring $token nullEntityManagerInterface $em): Response
  66.     {
  67.         if ($token) {
  68.             // We store the token in session and remove it from the URL, to avoid the URL being
  69.             // loaded in a browser and potentially leaking the token to 3rd party JavaScript.
  70.             $this->storeTokenInSession($token);
  71.             return $this->redirectToRoute('app_reset_password');
  72.         }
  73.         $token $this->getTokenFromSession();
  74.         if (null === $token) {
  75.             throw $this->createNotFoundException('No reset password token found in the URL or in the session.');
  76.         }
  77.         try {
  78.             $user $this->resetPasswordHelper->validateTokenAndFetchUser($token);
  79.         } catch (ResetPasswordExceptionInterface $e) {
  80.             $this->addFlash('reset_password_error'sprintf(
  81.                 'There was a problem validating your reset request - %s',
  82.                 $e->getReason()
  83.             ));
  84.             return $this->redirectToRoute('app_forgot_password_request');
  85.         }
  86.         // The token is valid; allow the user to change their password.
  87.         $form $this->createForm(ChangePasswordFormType::class);
  88.         $form->handleRequest($request);
  89.         if ($form->isSubmitted() && $form->isValid()) {
  90.             // A password reset token should be used only once, remove it.
  91.             $this->resetPasswordHelper->removeResetRequest($token);
  92.             // Encode the plain password, and set it.
  93.             $encodedPassword $passwordEncoder->hashPassword(
  94.                 $user,
  95.                 $form->get('plainPassword')->getData()
  96.             );
  97.             $user->setPassword($encodedPassword);
  98.             $em->flush();
  99.             // The session is cleaned up after the password has been changed.
  100.             $this->cleanSessionAfterReset();
  101.             return $this->redirectToRoute('document_index');
  102.         }
  103.         return $this->render('reset_password/reset.html.twig', [
  104.             'resetForm' => $form->createView(),
  105.         ]);
  106.     }
  107.     private function processSendingPasswordResetEmail(string $emailFormDataMailerInterface $mailerUserRepository $userRepository): RedirectResponse
  108.     {
  109.         $user $userRepository->findOneBy([
  110.             'email' => $emailFormData,
  111.         ]);
  112.         // Marks that you are allowed to see the app_check_email page.
  113.         $this->setCanCheckEmailInSession();
  114.         // Do not reveal whether a user account was found or not.
  115.         if (!$user) {
  116.             return $this->redirectToRoute('app_check_email');
  117.         }
  118.         try {
  119.             $resetToken $this->resetPasswordHelper->generateResetToken($user);
  120.         } catch (ResetPasswordExceptionInterface $e) {
  121.             $this->addFlash('reset_password_error'sprintf(
  122.                 'There was a problem handling your password reset request - %s',
  123.                 $e->getReason()
  124.             ));
  125.             return $this->redirectToRoute('app_forgot_password_request');
  126.         }
  127.         $email = (new TemplatedEmail())
  128.             ->from($this->getParameter('app.mailer.sender'))
  129.             ->to($user->getEmail())
  130.             ->subject('Your password reset request')
  131.             ->htmlTemplate('reset_password/email.html.twig')
  132.             ->context([
  133.                 'resetToken' => $resetToken,
  134.                 'tokenLifetime' => $this->resetPasswordHelper->getTokenLifetime(),
  135.             ]);
  136.         $mailer->send($email);
  137.         return $this->redirectToRoute('app_check_email');
  138.     }
  139. }