src/Controller/ResetPasswordController.php line 58

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\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. /**
  20.  * @Route("/reset-password")
  21.  */
  22. class ResetPasswordController extends AbstractController
  23. {
  24.     use ResetPasswordControllerTrait;
  25.     private ResetPasswordHelperInterface $resetPasswordHelper;
  26.     private string $emailSenderAddress;
  27.     public function __construct(ResetPasswordHelperInterface $resetPasswordHelperstring $emailSenderAddress)
  28.     {
  29.         $this->resetPasswordHelper $resetPasswordHelper;
  30.         $this->emailSenderAddress $emailSenderAddress;
  31.     }
  32.     /**
  33.      * Display & process form to request a password reset.
  34.      *
  35.      * @Route("", name="app_forgot_password_request")
  36.      */
  37.     public function request(Request $requestMailerInterface $mailerManagerRegistry $doctrine): Response
  38.     {
  39.         $form $this->createForm(ResetPasswordRequestFormType::class);
  40.         $form->handleRequest($request);
  41.         if ($form->isSubmitted() && $form->isValid()) {
  42.             return $this->processSendingPasswordResetEmail(
  43.                 $form->get('email')->getData(),
  44.                 $mailer,
  45.                 $doctrine
  46.             );
  47.         }
  48.         return $this->render('reset_password/request.html.twig', [
  49.             'requestForm' => $form->createView(),
  50.         ]);
  51.     }
  52.     /**
  53.      * Confirmation page after a user has requested a password reset.
  54.      *
  55.      * @Route("/check-email", name="app_check_email")
  56.      */
  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.      */
  73.     public function reset(Request $requestUserPasswordHasherInterface $userPasswordHasherInterfaceManagerRegistry $doctrinestring $token null): Response
  74.     {
  75.         if ($token) {
  76.             // We store the token in session and remove it from the URL, to avoid the URL being
  77.             // loaded in a browser and potentially leaking the token to 3rd party JavaScript.
  78.             $this->storeTokenInSession($token);
  79.             return $this->redirectToRoute('app_reset_password');
  80.         }
  81.         $token $this->getTokenFromSession();
  82.         if (null === $token) {
  83.             throw $this->createNotFoundException('No reset password token found in the URL or in the session.');
  84.         }
  85.         try {
  86.             $user $this->resetPasswordHelper->validateTokenAndFetchUser($token);
  87.         } catch (ResetPasswordExceptionInterface $e) {
  88.             $this->addFlash('reset_password_error'sprintf(
  89.                 'There was a problem validating your reset request - %s',
  90.                 $e->getReason()
  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 $userPasswordHasherInterface->hashPassword(
  102.                 $user,
  103.                 $form->get('plainPassword')->getData()
  104.             );
  105.             $user->setPassword($encodedPassword);
  106.             $doctrine->getManager()->flush();
  107.             // The session is cleaned up after the password has been changed.
  108.             $this->cleanSessionAfterReset();
  109.             $this->addFlash('success''Mot de passe renouvelé avec succès');
  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 $mailerManagerRegistry $doctrine): RedirectResponse
  117.     {
  118.         $user $doctrine->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->emailSenderAddress'Girci go'))
  140.             ->to($user->getEmail())
  141.             ->subject('Demande de réinitialisation de 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. }