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\DependencyInjection\ParameterBag\ParameterBagInterface;
  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. #[Route('/{_locale<%app.supported_locales%>}/reset-password')]
  22. class ResetPasswordController extends AbstractController
  23. {
  24.     use ResetPasswordControllerTrait;
  25.     private $resetPasswordHelper;
  26.     private $entityManager;
  27.     private $mailer_sender;
  28.     public function __construct(ResetPasswordHelperInterface $resetPasswordHelperEntityManagerInterface $entityManagerParameterBagInterface $params)
  29.     {
  30.         $this->resetPasswordHelper $resetPasswordHelper;
  31.         $this->entityManager $entityManager;
  32.         $this->mailer_sender $params->get('app.mailer_sender');
  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 $userPasswordHasherTranslatorInterface $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 $userPasswordHasher->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.             return $this->redirectToRoute('app_login');
  110.         }
  111.         return $this->render('reset_password/reset.html.twig', [
  112.             'resetForm' => $form->createView(),
  113.         ]);
  114.     }
  115.     private function processSendingPasswordResetEmail(string $emailFormDataMailerInterface $mailerTranslatorInterface $translator): RedirectResponse
  116.     {
  117.         $user $this->entityManager->getRepository(User::class)->findOneBy([
  118.             'email' => $emailFormData,
  119.         ]);
  120.         // Do not reveal whether a user account was found or not.
  121.         if (!$user) {
  122.             return $this->redirectToRoute('app_check_email');
  123.         }
  124.         try {
  125.             $resetToken $this->resetPasswordHelper->generateResetToken($user);
  126.         } catch (ResetPasswordExceptionInterface $e) {
  127.             // If you want to tell the user why a reset email was not sent, uncomment
  128.             // the lines below and change the redirect to 'app_forgot_password_request'.
  129.             // Caution: This may reveal if a user is registered or not.
  130.             //
  131.            $this->addFlash('reset_password_error'sprintf(
  132.                  '%s - %s',
  133.                  $translator->trans(ResetPasswordExceptionInterface::MESSAGE_PROBLEM_HANDLE, [], 'ResetPasswordBundle'),
  134.                  $translator->trans($e->getReason(), [], 'ResetPasswordBundle')
  135.              ));
  136.             return $this->redirectToRoute('app_check_email');
  137.         }
  138.         $email = (new TemplatedEmail())
  139.             ->from(new Address($this->mailer_sender'Bak2'))
  140.             ->to($user->getEmail())
  141.             ->subject('Your password reset request')
  142.             ->htmlTemplate('reset_password/email.html.twig')
  143.             ->context([
  144.                 'resetToken' => $resetToken,
  145.             ])
  146.         ;
  147.         try {
  148.             $mailer->send($email);
  149.         } catch (TransportExceptionInterface $e) {
  150.             var_dump($e);
  151.             // some error prevented the email sending; display an
  152.             // error message or try to resend the message
  153.         }
  154.         // Store the token object in session for retrieval in check-email route.
  155.         $this->setTokenObjectInSession($resetToken);
  156.         return $this->redirectToRoute('app_check_email');
  157.     }
  158. }