src/Controller/ResetPasswordController.php line 44

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 Doctrine\ORM\EntityManagerInterface;
  7. use Symfony\Bridge\Twig\Mime\TemplatedEmail;
  8. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  9. use Symfony\Component\HttpFoundation\RedirectResponse;
  10. use Symfony\Component\HttpFoundation\Request;
  11. use Symfony\Component\HttpFoundation\Response;
  12. use Symfony\Component\Mailer\MailerInterface;
  13. use Symfony\Component\Mime\Address;
  14. use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
  15. use Symfony\Component\Routing\Annotation\Route;
  16. use Symfony\Contracts\Translation\TranslatorInterface;
  17. use SymfonyCasts\Bundle\ResetPassword\Controller\ResetPasswordControllerTrait;
  18. use SymfonyCasts\Bundle\ResetPassword\Exception\ResetPasswordExceptionInterface;
  19. use SymfonyCasts\Bundle\ResetPassword\ResetPasswordHelperInterface;
  20. /**
  21.  * @Route({
  22.  *     "en": "/reset-password",
  23.  *     "es": "/es/reset-password"
  24.  * })
  25.  */
  26. class ResetPasswordController extends AbstractController
  27. {
  28.     use ResetPasswordControllerTrait;
  29.     public function __construct(
  30.         private ResetPasswordHelperInterface $resetPasswordHelper,
  31.         private EntityManagerInterface $entityManager
  32.     ) {
  33.     }
  34.     /**
  35.      * Display & process form to request a password reset.
  36.      */
  37.     #[Route(''name'app_forgot_password_request')]
  38.     public function request(Request $requestMailerInterface $mailerTranslatorInterface $translator): Response
  39.     {
  40.         $form $this->createForm(ResetPasswordRequestFormType::class);
  41.         $form->handleRequest($request);
  42.         if ($form->isSubmitted() && $form->isValid()) {
  43.             return $this->processSendingPasswordResetEmail(
  44.                 $form->get('email')->getData(),
  45.                 $mailer,
  46.                 $translator
  47.             );
  48.         }
  49.         return $this->render('reset_password/request.html.twig', [
  50.             'requestForm' => $form->createView(),
  51.         ]);
  52.     }
  53.     /**
  54.      * Confirmation page after a user has requested a password reset.
  55.      */
  56.     #[Route('/check-email'name'app_check_email')]
  57.     public function checkEmail(): Response
  58.     {
  59.         // Generate a fake token if the user does not exist or someone hit this page directly.
  60.         // This prevents exposing whether or not a user was found with the given email address or not
  61.         if (null === ($resetToken $this->getTokenObjectFromSession())) {
  62.             $resetToken $this->resetPasswordHelper->generateFakeResetToken();
  63.         }
  64.         return $this->render('reset_password/check_email.html.twig', [
  65.             'resetToken' => $resetToken,
  66.         ]);
  67.     }
  68.     /**
  69.      * Validates and process the reset URL that the user clicked in their email.
  70.      */
  71.     #[Route('/reset/{token}'name'app_reset_password')]
  72.     public function reset(Request $requestUserPasswordHasherInterface $passwordHasherTranslatorInterface $translatorstring $token null): Response
  73.     {
  74.         if ($token) {
  75.             // We store the token in session and remove it from the URL, to avoid the URL being
  76.             // loaded in a browser and potentially leaking the token to 3rd party JavaScript.
  77.             $this->storeTokenInSession($token);
  78.             return $this->redirectToRoute('app_reset_password');
  79.         }
  80.         $token $this->getTokenFromSession();
  81.         if (null === $token) {
  82.             throw $this->createNotFoundException('No reset password token found in the URL or in the session.');
  83.         }
  84.         try {
  85.             $user $this->resetPasswordHelper->validateTokenAndFetchUser($token);
  86.         } catch (ResetPasswordExceptionInterface $e) {
  87.             $this->addFlash('reset_password_error'sprintf(
  88.                 '%s - %s',
  89.                 $translator->trans(ResetPasswordExceptionInterface::MESSAGE_PROBLEM_VALIDATE, [], 'ResetPasswordBundle'),
  90.                 $translator->trans($e->getReason(), [], 'ResetPasswordBundle')
  91.             ));
  92.             return $this->redirectToRoute('app_forgot_password_request');
  93.         }
  94.         // The token is valid; allow the user to change their password.
  95.         $form $this->createForm(ChangePasswordFormType::class);
  96.         $form->handleRequest($request);
  97.         if ($form->isSubmitted() && $form->isValid()) {
  98.             // A password reset token should be used only once, remove it.
  99.             $this->resetPasswordHelper->removeResetRequest($token);
  100.             // Encode(hash) the plain password, and set it.
  101.             $encodedPassword $passwordHasher->hashPassword(
  102.                 $user,
  103.                 $form->get('plainPassword')->getData()
  104.             );
  105.             $user->setPassword($encodedPassword);
  106.             $this->entityManager->flush();
  107.             // The session is cleaned up after the password has been changed.
  108.             $this->cleanSessionAfterReset();
  109.             $this->addFlash('success'$translator->trans('preuser.reset.success'));
  110.             return $this->redirectToRoute('app_login');
  111.         }
  112.         return $this->render('reset_password/reset.html.twig', [
  113.             'resetForm' => $form->createView(),
  114.         ]);
  115.     }
  116.     private function processSendingPasswordResetEmail(string $emailFormDataMailerInterface $mailerTranslatorInterface $translator): RedirectResponse
  117.     {
  118.         $user $this->entityManager->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.             //     '%s - %s',
  134.             //     $translator->trans(ResetPasswordExceptionInterface::MESSAGE_PROBLEM_HANDLE, [], 'ResetPasswordBundle'),
  135.             //     $translator->trans($e->getReason(), [], 'ResetPasswordBundle')
  136.             // ));
  137.             return $this->redirectToRoute('app_check_email');
  138.         }
  139.         $email = (new TemplatedEmail())
  140.             ->from(new Address('amb@clubtickets.com''Ambassadors'))
  141.             ->to($user->getEmail())
  142.             ->subject($translator->trans('preuser.reset.email.subject'))
  143.             ->htmlTemplate('reset_password/email.html.twig')
  144.             ->context([
  145.                 'resetToken' => $resetToken,
  146.             ])
  147.         ;
  148.         $mailer->send($email);
  149.         // Store the token object in session for retrieval in check-email route.
  150.         $this->setTokenObjectInSession($resetToken);
  151.         return $this->redirectToRoute('app_check_email');
  152.     }
  153. }