src/Controller/TinyKnightGames/Authentication/ResetPasswordController.php line 38

  1. <?php
  2. namespace App\Controller\TinyKnightGames\Authentication;
  3. use App\Entity\User;
  4. use App\Form\ChangePasswordFormType;
  5. use App\Form\ResetPasswordRequestFormType;
  6. use Doctrine\Persistence\ManagerRegistry;
  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 SymfonyCasts\Bundle\ResetPassword\Controller\ResetPasswordControllerTrait;
  17. use SymfonyCasts\Bundle\ResetPassword\Exception\ResetPasswordExceptionInterface;
  18. use SymfonyCasts\Bundle\ResetPassword\ResetPasswordHelperInterface;
  19. #[Route('/reset-password')]
  20. class ResetPasswordController extends AbstractController
  21. {
  22.     use ResetPasswordControllerTrait;
  23.     private $resetPasswordHelper;
  24.     public function __construct(private ManagerRegistry $doctrineResetPasswordHelperInterface $resetPasswordHelper)
  25.     {
  26.         $this->resetPasswordHelper $resetPasswordHelper;
  27.     }
  28.     /**
  29.      * Display & process form to request a password reset.
  30.      */
  31.     #[Route(''name'app_forgot_password_request')]
  32.     public function request(Request $requestMailerInterface $mailer): 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.             );
  41.         }
  42.         return $this->render('reset_password/request.html.twig', [
  43.             'requestForm' => $form->createView(),
  44.         ]);
  45.     }
  46.     /**
  47.      * Confirmation page after a user has requested a password reset.
  48.      */
  49.     #[Route('/check-email'name'app_check_email')]
  50.     public function checkEmail(): Response
  51.     {
  52.         // Generate a fake token if the user does not exist or someone hit this page directly.
  53.         // This prevents exposing whether or not a user was found with the given email address or not
  54.         if (null === ($resetToken $this->getTokenObjectFromSession())) {
  55.             $resetToken $this->resetPasswordHelper->generateFakeResetToken();
  56.         }
  57.         return $this->render('reset_password/check_email.html.twig', [
  58.             'resetToken' => $resetToken,
  59.         ]);
  60.     }
  61.     /**
  62.      * Validates and process the reset URL that the user clicked in their email.
  63.      */
  64.     #[Route('/reset/{token}'name'app_reset_password')]
  65.     public function reset(Request $requestUserPasswordHasherInterface $userPasswordHasherInterfacestring $token null): 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(hash) the plain password, and set it.
  93.             $encodedPassword $userPasswordHasherInterface->hashPassword(
  94.                 $user,
  95.                 $form->get('plainPassword')->getData()
  96.             );
  97.             $user->setPassword($encodedPassword);
  98.             $this->doctrine->getManager()->flush();
  99.             // The session is cleaned up after the password has been changed.
  100.             $this->cleanSessionAfterReset();
  101.             return $this->redirectToRoute('default');
  102.         }
  103.         return $this->render('reset_password/reset.html.twig', [
  104.             'resetForm' => $form->createView(),
  105.         ]);
  106.     }
  107.     private function processSendingPasswordResetEmail(string $emailFormDataMailerInterface $mailer): RedirectResponse
  108.     {
  109.         $em $this->doctrine->getManager();
  110.         $user $em->getRepository(User::class)->findOneBy([
  111.             'email' => $emailFormData,
  112.         ]);
  113.         // Do not reveal whether a user account was found or not.
  114.         if (!$user) {
  115.             return $this->redirectToRoute('app_check_email');
  116.         }
  117.         try {
  118.             $resetToken $this->resetPasswordHelper->generateResetToken($user);
  119.         } catch (ResetPasswordExceptionInterface $e) {
  120.             // If you want to tell the user why a reset email was not sent, uncomment
  121.             // the lines below and change the redirect to 'app_forgot_password_request'.
  122.             // Caution: This may reveal if a user is registered or not.
  123.             //
  124.             // $this->addFlash('reset_password_error', sprintf(
  125.             //     'There was a problem handling your password reset request - %s',
  126.             //     $e->getReason()
  127.             // ));
  128.             return $this->redirectToRoute('app_check_email');
  129.         }
  130.         $email = (new TemplatedEmail())
  131.             ->from(new Address('tinyknightgames@gmail.com''Fisher\'s Quest'))
  132.             ->to($user->getEmail())
  133.             ->subject('Your password reset request')
  134.             ->htmlTemplate('reset_password/email.html.twig')
  135.             ->context([
  136.                 'resetToken' => $resetToken,
  137.             ])
  138.         ;
  139.         $mailer->send($email);
  140.         // Store the token object in session for retrieval in check-email route.
  141.         $this->setTokenObjectInSession($resetToken);
  142.         return $this->redirectToRoute('app_check_email');
  143.     }
  144. }