src/Controller/ResetPasswordController.php line 47

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\User;
  4. use Symfony\Component\Mime\Address;
  5. use App\Form\ChangePasswordFormType;
  6. use Doctrine\Persistence\ManagerRegistry;
  7. use App\Form\ResetPasswordRequestFormType;
  8. use Symfony\Bridge\Twig\Mime\TemplatedEmail;
  9. use Symfony\Component\HttpFoundation\Request;
  10. use Symfony\Component\Mailer\MailerInterface;
  11. use Symfony\Component\HttpFoundation\Response;
  12. use Symfony\Component\Routing\Annotation\Route;
  13. use Symfony\Component\HttpFoundation\RedirectResponse;
  14. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  15. use SymfonyCasts\Bundle\ResetPassword\ResetPasswordHelperInterface;
  16. use Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface;
  17. use SymfonyCasts\Bundle\ResetPassword\Controller\ResetPasswordControllerTrait;
  18. use SymfonyCasts\Bundle\ResetPassword\Exception\ResetPasswordExceptionInterface;
  19. /**
  20.  * @Route("/reset-password")
  21.  */
  22. class ResetPasswordController extends AbstractController
  23. {
  24.     use ResetPasswordControllerTrait;
  25.     private $resetPasswordHelper;
  26.     /** 
  27.      * @var  ManagerRegistry 
  28.     */
  29.     private $managerRegistry;
  30.     public function __construct(ResetPasswordHelperInterface $resetPasswordHelperManagerRegistry $managerRegistry)
  31.     {
  32.         $this->resetPasswordHelper $resetPasswordHelper;
  33.         $this->managerRegistry $managerRegistry;
  34.     }
  35.     /**
  36.      * Display & process form to request a password reset.
  37.      *
  38.      * @Route("", name="app_forgot_password_request")
  39.      */
  40.     public function request(Request $requestMailerInterface $mailer): Response
  41.     {
  42.         $form $this->createForm(ResetPasswordRequestFormType::class);
  43.         $form->handleRequest($request);
  44.         if ($form->isSubmitted() && $form->isValid()) {
  45.             return $this->processSendingPasswordResetEmail(
  46.                 $form->get('email')->getData(),
  47.                 $mailer
  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.         // We prevent users from directly accessing this page
  62.         if (null === ($resetToken $this->getTokenObjectFromSession())) {
  63.             return $this->redirectToRoute('app_forgot_password_request');
  64.         }
  65.         return $this->render('reset_password/check_email.html.twig', [
  66.             'resetToken' => $resetToken,
  67.         ]);
  68.     }
  69.     /**
  70.      * Validates and process the reset URL that the user clicked in their email.
  71.      *
  72.      * @Route("/reset/{token}", name="app_reset_password")
  73.      */
  74.     public function reset(Request $requestUserPasswordEncoderInterface $passwordEncoderstring $token null): Response
  75.     {
  76.         if ($token) {
  77.             // We store the token in session and remove it from the URL, to avoid the URL being
  78.             // loaded in a browser and potentially leaking the token to 3rd party JavaScript.
  79.             $this->storeTokenInSession($token);
  80.             return $this->redirectToRoute('app_reset_password');
  81.         }
  82.         $token $this->getTokenFromSession();
  83.         if (null === $token) {
  84.             throw $this->createNotFoundException('No reset password token found in the URL or in the session.');
  85.         }
  86.         try {
  87.             $user $this->resetPasswordHelper->validateTokenAndFetchUser($token);
  88.         } catch (ResetPasswordExceptionInterface $e) {
  89.             $this->addFlash('reset_password_error'sprintf(
  90.                 'There was a problem validating your reset request - %s',
  91.                 $e->getReason()
  92.             ));
  93.             return $this->redirectToRoute('app_forgot_password_request');
  94.         }
  95.         // The token is valid; allow the user to change their password.
  96.         $form $this->createForm(ChangePasswordFormType::class);
  97.         $form->handleRequest($request);
  98.         if ($form->isSubmitted() && $form->isValid()) {
  99.             // A password reset token should be used only once, remove it.
  100.             $this->resetPasswordHelper->removeResetRequest($token);
  101.             // Encode the plain password, and set it.
  102.             $encodedPassword $passwordEncoder->encodePassword(
  103.                 $user,
  104.                 $form->get('plainPassword')->getData()
  105.             );
  106.             $user->setPassword($encodedPassword);
  107.             $this->managerRegistry->getManager()->flush();
  108.             // The session is cleaned up after the password has been changed.
  109.             $this->cleanSessionAfterReset();
  110.             return $this->redirectToRoute('client_tdb');
  111.         }
  112.         return $this->render('reset_password/reset.html.twig', [
  113.             'resetForm' => $form->createView(),
  114.         ]);
  115.     }
  116.     private function processSendingPasswordResetEmail(string $emailFormDataMailerInterface $mailer): RedirectResponse
  117.     {
  118.         $user $this->managerRegistry->getRepository(User::class)->findOneBy([
  119.             'email' => $emailFormData,
  120.         ]);
  121.         // Do not reveal whether a user account was found or not.
  122.         if (!$user) {
  123.             return $this->redirectToRoute('app_check_email');
  124.         }
  125.         try {
  126.             $resetToken $this->resetPasswordHelper->generateResetToken($user);
  127.         } catch (ResetPasswordExceptionInterface $e) {
  128.             // If you want to tell the user why a reset email was not sent, uncomment
  129.             // the lines below and change the redirect to 'app_forgot_password_request'.
  130.             // Caution: This may reveal if a user is registered or not.
  131.             //
  132.             // $this->addFlash('reset_password_error', sprintf(
  133.             //     'There was a problem handling your password reset request - %s',
  134.             //     $e->getReason()
  135.             // ));
  136.             return $this->redirectToRoute('app_check_email');
  137.         }
  138.         $email = (new TemplatedEmail())
  139.             ->from(new Address($this->getParameter('mail_from'), 'No Reply'))
  140.             ->to($user->getEmail())
  141.             ->subject('Votre demande de nouveau mot de passe')
  142.             ->htmlTemplate('reset_password/email.html.twig')
  143.             ->context([
  144.                 'resetToken' => $resetToken,
  145.             ])
  146.         ;
  147.         $mailer->send($email);
  148.         // Store the token object in session for retrieval in check-email route.
  149.         $this->setTokenObjectInSession($resetToken);
  150.         return $this->redirectToRoute('app_check_email');
  151.     }
  152. }