src/Controller/ResetPasswordController.php line 40

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\JsonResponse;
  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('/reset-password')]
  22. class ResetPasswordController extends AbstractController
  23. {
  24.     use ResetPasswordControllerTrait;
  25.     private $resetPasswordHelper;
  26.     private $entityManager;
  27.     public function __construct(ResetPasswordHelperInterface $resetPasswordHelperEntityManagerInterface $entityManager)
  28.     {
  29.         $this->resetPasswordHelper $resetPasswordHelper;
  30.         $this->entityManager $entityManager;
  31.     }
  32.     
  33.     #[Route(''name'app_forgot_password_request')]
  34.     public function request(Request $requestMailerInterface $mailerTranslatorInterface $translator): Response
  35.     {
  36.         $form $this->createForm(ResetPasswordRequestFormType::class);
  37.         $form->handleRequest($request);
  38.         if ($form->isSubmitted() && $form->isValid()) {
  39.             $success $this->processSendingPasswordResetEmail(
  40.                 $form->get('email')->getData(),
  41.                 $mailer,
  42.                 $translator
  43.             );
  44.         }
  45.         $html $this->renderView('reset_password/request.html.twig', [
  46.             'requestForm' => $form->createView(),
  47.         ]);
  48.         if ($request->isXmlHttpRequest()) {
  49.             return new JsonResponse([
  50.                 'html' => $html,
  51.                 'success' => $success,
  52.                 'redirectTo' => $this->generateUrl('homepage')
  53.             ]);
  54.         } else {
  55.             return $this->render('reset_password/request.html.twig', [
  56.                 'requestForm' => $form->createView(),
  57.             ]);
  58.         }
  59.     }
  60.    
  61.     #[Route('/check-email'name'app_check_email')]
  62.     public function checkEmail(): Response
  63.     {
  64.         // Generate a fake token if the user does not exist or someone hit this page directly.
  65.         // This prevents exposing whether or not a user was found with the given email address or not
  66.         if (null === ($resetToken $this->getTokenObjectFromSession())) {
  67.             $resetToken $this->resetPasswordHelper->generateFakeResetToken();
  68.         }
  69.         return $this->render('reset_password/check_email.html.twig', [
  70.             'resetToken' => $resetToken,
  71.         ]);
  72.     }
  73.     
  74.     #[Route('/reset/{token}'name'app_reset_password')]
  75.     public function reset(Request $requestUserPasswordHasherInterface $userPasswordHasherTranslatorInterface $translatorstring $token null): Response
  76.     {
  77.         if ($token) {
  78.             // We store the token in session and remove it from the URL, to avoid the URL being
  79.             // loaded in a browser and potentially leaking the token to 3rd party JavaScript.
  80.             $this->storeTokenInSession($token);
  81.             return $this->redirectToRoute('app_reset_password');
  82.         }
  83.         $token $this->getTokenFromSession();
  84.         if (null === $token) {
  85.             throw $this->createNotFoundException('Aucun jeton de réinitialisation du mot de passe trouvé dans l\'URL ou dans la session.');
  86.         }
  87.         try {
  88.             $user $this->resetPasswordHelper->validateTokenAndFetchUser($token);
  89.         } catch (ResetPasswordExceptionInterface $e) {
  90.             $this->addFlash('reset_password_error'sprintf(
  91.                 '%s - %s',
  92.                 $translator->trans(ResetPasswordExceptionInterface::MESSAGE_PROBLEM_VALIDATE, [], 'ResetPasswordBundle'),
  93.                 $translator->trans($e->getReason(), [], 'ResetPasswordBundle')
  94.             ));
  95.             return $this->redirectToRoute('app_forgot_password_request');
  96.         }
  97.         // The token is valid; allow the user to change their password.
  98.         $form $this->createForm(ChangePasswordFormType::class);
  99.         $form->handleRequest($request);
  100.         if ($form->isSubmitted() && $form->isValid()) {
  101.             // A password reset token should be used only once, remove it.
  102.             $this->resetPasswordHelper->removeResetRequest($token);
  103.             // Encode(hash) the plain password, and set it.
  104.             $encodedPassword $userPasswordHasher->hashPassword(
  105.                 $user,
  106.                 $form->get('plainPassword')->getData()
  107.             );
  108.             $user->setPassword($encodedPassword);
  109.             $this->entityManager->flush();
  110.             // The session is cleaned up after the password has been changed.
  111.             $this->cleanSessionAfterReset();
  112.             return $this->redirectToRoute('homepage');
  113.         }
  114.         return $this->render('reset_password/reset.html.twig', [
  115.             'resetForm' => $form->createView(),
  116.         ]);
  117.     }
  118.     private function processSendingPasswordResetEmail(string $emailFormDataMailerInterface $mailerTranslatorInterface $translator): bool
  119.     {
  120.         $user $this->entityManager->getRepository(User::class)->findOneBy([
  121.             'email' => $emailFormData,
  122.         ]);
  123.         // Do not reveal whether a user account was found or not.
  124.         if (!$user) {
  125.             $this->addFlash('reset_password_error'sprintf(
  126.                 '%s - %s',
  127.                 'Un problème est survenu lors du traitement de votre demande de réinitialisation de mot de passe',
  128.                 'Veuillez vérifier votre e-mail ou réessayer bientôt.'
  129.             ));
  130.             return false;
  131.         }
  132.         try {
  133.             $resetToken $this->resetPasswordHelper->generateResetToken($user);
  134.         } catch (ResetPasswordExceptionInterface $e) {
  135.             // If you want to tell the user why a reset email was not sent, uncomment
  136.             // the lines below and change the redirect to 'app_forgot_password_request'.
  137.             // Caution: This may reveal if a user is registered or not.
  138.              $this->addFlash('reset_password_error'sprintf(
  139.                  '%s - %s',
  140.                  'Un problème est survenu lors du traitement de votre demande de réinitialisation de mot de passe',
  141.                  'Vous avez déjà demandé un e-mail de réinitialisation de mot de passe. Veuillez vérifier votre e-mail ou réessayer bientôt.'
  142.              ));
  143.             return false;
  144.         }
  145.         $email = (new TemplatedEmail())
  146.             ->from(new Address('no-reply@tuchassou.fr''Tuchassou'))
  147.             ->to($user->getEmail())
  148.             ->subject('Votre demande de réinitialisation de mot de passe')
  149.             ->htmlTemplate('reset_password/email.html.twig')
  150.             ->context([
  151.                 'resetToken' => $resetToken,
  152.                 'user' => $user
  153.             ])
  154.         ;
  155.         $mailer->send($email);
  156.         // Store the token object in session for retrieval in check-email route.
  157.         $this->setTokenObjectInSession($resetToken);
  158.         return true;
  159.     }
  160. }