src/Controller/ResetPasswordController.php line 35

  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\User;
  4. use Doctrine\ORM\EntityManagerInterface;
  5. use Symfony\Bridge\Twig\Mime\TemplatedEmail;
  6. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  7. use Symfony\Component\HttpFoundation\RedirectResponse;
  8. use Symfony\Component\HttpFoundation\Request;
  9. use Symfony\Component\HttpFoundation\Response;
  10. use Symfony\Component\Mailer\MailerInterface;
  11. use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
  12. use Symfony\Component\Routing\Annotation\Route;
  13. use Symfony\Contracts\Translation\TranslatorInterface;
  14. use SymfonyCasts\Bundle\ResetPassword\Controller\ResetPasswordControllerTrait;
  15. use SymfonyCasts\Bundle\ResetPassword\Exception\ResetPasswordExceptionInterface;
  16. use SymfonyCasts\Bundle\ResetPassword\ResetPasswordHelperInterface;
  17. #[Route('/reset-password')]
  18. class ResetPasswordController extends AbstractController
  19. {
  20.     use ResetPasswordControllerTrait;
  21.     public function __construct(
  22.         private ResetPasswordHelperInterface $resetPasswordHelper,
  23.         private EntityManagerInterface $em,private MailerInterface $mailer
  24.     ) {
  25.     }
  26.     /**
  27.      * Display & process form to request a password reset.
  28.      */
  29.     #[Route(''name'app_forgot_password_request')]
  30.     public function request(Request $requestMailerInterface $mailerTranslatorInterface $translator): Response
  31.     {
  32.         // $form = $this->createForm(ResetPasswordRequestFormType::class);
  33.         // $form->handleRequest($request);
  34.         
  35.         if ($request->isMethod('POST')) {
  36.             
  37.             $user $this->em->getRepository(User::class)->findOneBy(["email"=>$request->request->get('email')]);
  38.             
  39.             if (!$user) {
  40.                 
  41.                 $this->addFlash('error_login'$translator->trans("Votre adresse email est incorrecte"));
  42.                 return $this->redirectToRoute('app_forgot_password_request');
  43.             }
  44.             // Sinon si l'utilisateur existe et que son statut est 2, retourne une exception
  45.             elseif ($user->getStatus() == ) {
  46.                 $this->addFlash('error_login'$translator->trans("Votre compte est temporairement désactivé. Veuillez contacter le support pour plus d'information"));
  47.                 return $this->redirectToRoute('app_forgot_password_request');
  48.             }
  49.             elseif ($user->isVerified() != true ) {
  50.                 $this->addFlash('error_login'$translator->trans("Veuillez valider votre email d'abord et réessayer."));
  51.                 return $this->redirectToRoute('app_forgot_password_request');
  52.             }
  53.             
  54.             else 
  55.            
  56.             return $this->processSendingPasswordResetEmail(
  57.                 $request->request->get('email'),
  58.                 $mailer,
  59.                 $translator
  60.             );
  61.         }
  62.         return $this->render('reset_password/request.html.twig');
  63.     }
  64.     /**
  65.      * Confirmation page after a user has requested a password reset.
  66.      */
  67.     #[Route('/check-email'name'app_check_email')]
  68.     public function checkEmail(): Response
  69.     {
  70.         // Generate a fake token if the user does not exist or someone hit this page directly.
  71.         // This prevents exposing whether or not a user was found with the given email address or not
  72.         if (null === ($resetToken $this->getTokenObjectFromSession())) {
  73.             $resetToken $this->resetPasswordHelper->generateFakeResetToken();
  74.         }
  75.         return $this->render('reset_password/check_email.html.twig', [
  76.             'resetToken' => $resetToken,
  77.         ]);
  78.     }
  79.     /**
  80.      * Validates and process the reset URL that the user clicked in their email.
  81.      */
  82.     #[Route('/reset/{token}'name'app_reset_password')]
  83.     public function reset(Request $requestUserPasswordHasherInterface $passwordHasherTranslatorInterface $translatorstring $token null): Response
  84.     {
  85.         if ($token) {
  86.             // We store the token in session and remove it from the URL, to avoid the URL being
  87.             // loaded in a browser and potentially leaking the token to 3rd party JavaScript.
  88.             $this->storeTokenInSession($token);
  89.             return $this->redirectToRoute('app_reset_password');
  90.         }
  91.         $token $this->getTokenFromSession();
  92.         if (null === $token) {
  93.             
  94.             $this->addFlash('error_login'$translator->trans("Aucun jeton de réinitialisation du mot de passe n'a été trouvé dans l'URL ou dans la session."));
  95.             
  96.             // throw $this->createNotFoundException('No reset password token found in the URL or in the session.');
  97.             return $this->redirectToRoute('app_forgot_password_request');
  98.         }
  99.         try {
  100.             $user $this->resetPasswordHelper->validateTokenAndFetchUser($token);
  101.         } catch (ResetPasswordExceptionInterface $e) {
  102.             $this->addFlash('error_login'sprintf(
  103.                 '%s - %s',
  104.                 $translator->trans(ResetPasswordExceptionInterface::MESSAGE_PROBLEM_VALIDATE, [], 'ResetPasswordBundle'),
  105.                 $translator->trans($e->getReason(), [], 'ResetPasswordBundle')
  106.             ));
  107.             
  108.             return $this->redirectToRoute('app_forgot_password_request');
  109.         }
  110.         // The token is valid; allow the user to change their password.
  111.         
  112.         if ($request->isMethod('POST') && $request->request->get('valid') == 100) {
  113.             
  114.             // A password reset token should be used only once, remove it.
  115.             // $this->resetPasswordHelper->removeResetRequest($token);
  116.             // Encode(hash) the plain password, and set it.
  117.             $encodedPassword $passwordHasher->hashPassword(
  118.                 $user,
  119.                 $request->request->get('password')
  120.             );
  121.             $user->setPassword($encodedPassword);
  122.             $user->setIsVerified(true);
  123.             $this->em->persist($user);
  124.             $this->em->flush();
  125.             // The session is cleaned up after the password has been changed.
  126.             // $this->cleanSessionAfterReset();
  127.             try {
  128.                 $email = (new TemplatedEmail())
  129.                     ->to($user->getEmail())
  130.                     ->subject($translator->trans("Confirmation de la réinitialisation de votre mot de passe sur FILMAFRIK"))
  131.                     ->htmlTemplate('reset_password/email.html.twig')
  132.                     ->context([
  133.                         "title"         =>  $translator->trans("Cher/Chère")." ".$user->getFirstname()." ".$user->getLastname().", ",
  134.                         'text'          =>  $translator->trans("Nous vous confirmons que votre mot de passe sur FILMAFRIK a bien été réinitialisé avec succès. Vous pouvez maintenant accéder à votre compte en utilisant votre nouveau mot de passe.
  135.                         Si vous n'avez pas récemment demandé la réinitialisation de votre mot de passe, veuillez contacter notre équipe d'assistance immédiatement afin que nous puissions prendre les mesures nécessaires."),
  136.                     ])
  137.                 ;
  138.                 $this->mailer->send($email);
  139.             } catch (\Throwable $th) {
  140.                 //throw $th;
  141.             }
  142.             $this->addFlash('success'$translator->trans("Votre mot de passe a été réinitialisé avec succès, vous pouvez vous connecter."));
  143.             return $this->redirectToRoute('app_login');
  144.         }
  145.        
  146.         return $this->render('reset_password/reset.html.twig');
  147.     }
  148.     private function processSendingPasswordResetEmail(string $emailFormDataMailerInterface $mailerTranslatorInterface $translator): RedirectResponse
  149.     {
  150.         $user $this->em->getRepository(User::class)->findOneBy([
  151.             'email' => $emailFormData,
  152.         ]);
  153.         // Do not reveal whether a user account was found or not.
  154.         if (!$user) {
  155.             return $this->redirectToRoute('app_check_email');
  156.         }
  157.         try {
  158.             $resetToken $this->resetPasswordHelper->generateResetToken($user);
  159.         } catch (ResetPasswordExceptionInterface $e) {
  160.             // If you want to tell the user why a reset email was not sent, uncomment
  161.             // the lines below and change the redirect to 'app_forgot_password_request'.
  162.             // Caution: This may reveal if a user is registered or not.
  163.             //
  164.             // $this->addFlash('reset_password_error', sprintf(
  165.             //     '%s - %s',
  166.             //     $translator->trans(ResetPasswordExceptionInterface::MESSAGE_PROBLEM_HANDLE, [], 'ResetPasswordBundle'),
  167.             //     $translator->trans($e->getReason(), [], 'ResetPasswordBundle')
  168.             // ));
  169.             return $this->redirectToRoute('app_check_email');
  170.         }
  171.         try {
  172.             $email = (new TemplatedEmail())
  173.             ->to($user->getEmail())
  174.             ->subject($translator->trans("Réinitialisation du mot de passe"))
  175.             ->htmlTemplate('reset_password/email.html.twig')
  176.             ->context([
  177.                 "title"         =>  $translator->trans("Cher/Chère")." ".$user->getFirstname()." ".$user->getLastname().", ",
  178.                 'resetToken'    =>  $resetToken,
  179.                 'text'          =>  $translator->trans("Nous avons bien reçu votre demande de réinitialisation de votre mot de passe sur FILMAFRIK. Pour procéder à la réinitialisation, veuillez cliquer sur le bouton ci-dessous :"),
  180.                 'textBtn'       =>  $translator->trans('Réinitialiser'),
  181.                 'expireText'    =>  $translator->trans("Ce lien expirera dans ")
  182.             ]);
  183.             $mailer->send($email);
  184.         } catch (\Throwable $th) {
  185.             //throw $th;
  186.             
  187.         }
  188.         // Store the token object in session for retrieval in check-email route.
  189.         $this->setTokenObjectInSession($resetToken);
  190.         return $this->redirectToRoute('app_check_email');
  191.     }
  192. }