src/Controller/ResetPasswordController.php line 41

  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\Settings;
  4. use App\Entity\User;
  5. use App\Flexy\FrontBundle\Entity\Page;
  6. use App\Form\ChangePasswordFormType;
  7. use App\Form\ResetPasswordRequestFormType;
  8. use App\Repository\SettingsRepository;
  9. use Doctrine\ORM\EntityManagerInterface;
  10. use Symfony\Bridge\Twig\Mime\TemplatedEmail;
  11. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  12. use Symfony\Component\HttpFoundation\RedirectResponse;
  13. use Symfony\Component\HttpFoundation\Request;
  14. use Symfony\Component\HttpFoundation\Response;
  15. use Symfony\Component\Mailer\MailerInterface;
  16. use Symfony\Component\Mime\Address;
  17. use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
  18. use Symfony\Component\Routing\Annotation\Route;
  19. use Symfony\Contracts\Translation\TranslatorInterface;
  20. use SymfonyCasts\Bundle\ResetPassword\Controller\ResetPasswordControllerTrait;
  21. use SymfonyCasts\Bundle\ResetPassword\Exception\ResetPasswordExceptionInterface;
  22. use SymfonyCasts\Bundle\ResetPassword\ResetPasswordHelperInterface;
  23. #[Route('/{_locale}/reset-password')]
  24. class ResetPasswordController extends AbstractController
  25. {
  26.     use ResetPasswordControllerTrait;
  27.     public function __construct(
  28.         private ResetPasswordHelperInterface $resetPasswordHelper,
  29.         private EntityManagerInterface $entityManager
  30.     ) {
  31.     }
  32.     /**
  33.      * Display & process form to request a password reset.
  34.      */
  35.     #[Route(''name'app_forgot_password_request')]
  36.     public function request(Request $requestMailerInterface $mailerTranslatorInterface $translator,SettingsRepository $settingsRepository): Response
  37.     {
  38.         $form $this->createForm(ResetPasswordRequestFormType::class);
  39.         $form->handleRequest($request);
  40.         if ($form->isSubmitted() && $form->isValid()) {
  41.             return $this->processSendingPasswordResetEmail(
  42.                 $form->get('username')->getData(),
  43.                 $mailer,
  44.                 $translator
  45.             );
  46.         }
  47.         $settingsMain $settingsRepository->findOneBy(["code"=>"main"]);
  48.         
  49.         
  50.         
  51.         $templatesPath "@Flexy/FrontBundle/Themes/".$settingsMain->getAssetFolderName()."/templates/reset_password/request.html.twig";
  52.         return $this->render($templatesPath, [
  53.             'requestForm' => $form->createView(),
  54.             'background_body'=>"url('/themes/".strtolower($settingsMain->getAssetFolderName())."/admin/images/bg-body.jpg')",
  55.         ]);
  56.     }
  57.     /**
  58.      * Confirmation page after a user has requested a password reset.
  59.      */
  60.     #[Route('/check-email'name'app_check_email')]
  61.     public function checkEmail(SettingsRepository $settingsRepository): Response
  62.     {
  63.         // Generate a fake token if the user does not exist or someone hit this page directly.
  64.         // This prevents exposing whether or not a user was found with the given email address or not
  65.         if (null === ($resetToken $this->getTokenObjectFromSession())) {
  66.             $resetToken $this->resetPasswordHelper->generateFakeResetToken();
  67.         }
  68.         $settingsMain $settingsRepository->findOneBy(["code"=>"main"]);
  69.         
  70.         
  71.         $templatesPath "@Flexy/FrontBundle/Themes/".$settingsMain->getAssetFolderName()."/templates/reset_password/check_email.html.twig";
  72.         
  73.         return $this->render($templatesPath, [
  74.             'resetToken' => $resetToken,
  75.             'background_body'=>"url('/themes/".strtolower($settingsMain->getAssetFolderName())."/admin/images/bg-body.jpg')",
  76.         ]);
  77.     }
  78.     /**
  79.      * Validates and process the reset URL that the user clicked in their email.
  80.      */
  81.     #[Route('/reset/{token}'name'app_reset_password')]
  82.     public function reset(string $token null,Request $requestUserPasswordHasherInterface $passwordHasherTranslatorInterface $translatorSettingsRepository $settingsRepository): Response
  83.     {
  84.         if ($token) {
  85.             // We store the token in session and remove it from the URL, to avoid the URL being
  86.             // loaded in a browser and potentially leaking the token to 3rd party JavaScript.
  87.             $this->storeTokenInSession($token);
  88.             //return $this->redirectToRoute('app_reset_password');
  89.         }
  90.         $token $this->getTokenFromSession();
  91.         if (null === $token) {
  92.             throw $this->createNotFoundException('No reset password token found in the URL or in the session.');
  93.         }
  94.         try {
  95.             $user $this->resetPasswordHelper->validateTokenAndFetchUser($token);
  96.         } catch (ResetPasswordExceptionInterface $e) {
  97.             $this->addFlash('reset_password_error'sprintf(
  98.                 '%s - %s',
  99.                 $translator->trans(ResetPasswordExceptionInterface::MESSAGE_PROBLEM_VALIDATE, [], 'ResetPasswordBundle'),
  100.                 $translator->trans($e->getReason(), [], 'ResetPasswordBundle')
  101.             ));
  102.             return $this->redirectToRoute('app_forgot_password_request');
  103.         }
  104.         // The token is valid; allow the user to change their password.
  105.         $form $this->createForm(ChangePasswordFormType::class);
  106.         $form->handleRequest($request);
  107.         if ($form->isSubmitted() && $form->isValid()) {
  108.             // A password reset token should be used only once, remove it.
  109.             $this->resetPasswordHelper->removeResetRequest($token);
  110.             // Encode(hash) the plain password, and set it.
  111.             $encodedPassword $passwordHasher->hashPassword(
  112.                 $user,
  113.                 $form->get('plainPassword')->getData()
  114.             );
  115.             $user->setPassword($encodedPassword);
  116.             $this->entityManager->flush();
  117.             // The session is cleaned up after the password has been changed.
  118.             $this->cleanSessionAfterReset();
  119.             return $this->redirectToRoute('login',["passwordUpdated"=>true]);
  120.         }
  121.         $settingsMain $settingsRepository->findOneBy(["code"=>"main"]);
  122.         
  123.         
  124.         $templatesPath "@Flexy/FrontBundle/Themes/".$settingsMain->getAssetFolderName()."/templates/reset_password/reset.html.twig";
  125.         
  126.         return $this->render($templatesPath, [
  127.             'resetForm' => $form->createView(),
  128.             'background_body'=>"url('/themes/".strtolower($settingsMain->getAssetFolderName())."/admin/images/bg-body.jpg')",
  129.         ]);
  130.     }
  131.     private function processSendingPasswordResetEmail(string $emailFormDataMailerInterface $mailerTranslatorInterface $translator): RedirectResponse
  132.     {
  133.         $settingsMain $this->entityManager->getRepository(Settings::class)->findOneBy(["code"=>"main"]);
  134.         $user $this->entityManager->getRepository(User::class)->findOneBy([
  135.             'username' => $emailFormData,
  136.         ]);
  137.         // Do not reveal whether a user account was found or not.
  138.         if (!$user) {
  139.             return $this->redirectToRoute('app_check_email');
  140.         }
  141.         try {
  142.             $resetToken $this->resetPasswordHelper->generateResetToken($user);
  143.         } catch (ResetPasswordExceptionInterface $e) {
  144.             // If you want to tell the user why a reset email was not sent, uncomment
  145.             // the lines below and change the redirect to 'app_forgot_password_request'.
  146.             // Caution: This may reveal if a user is registered or not.
  147.             //
  148.             // $this->addFlash('reset_password_error', sprintf(
  149.             //     '%s - %s',
  150.             //     $translator->trans(ResetPasswordExceptionInterface::MESSAGE_PROBLEM_HANDLE, [], 'ResetPasswordBundle'),
  151.             //     $translator->trans($e->getReason(), [], 'ResetPasswordBundle')
  152.             // ));
  153.             return $this->redirectToRoute('app_check_email');
  154.         }
  155.         $mailPageInstance $this->entityManager->getRepository(Page::class)->findOneBy(["slug"=>"reset-password"]);
  156.         
  157.         $linkPath $settingsMain->getRootUrl().$this->generateUrl("app_reset_password",["token"=>$resetToken->getToken()]);
  158.         
  159.         $pathTemplate '@Flexy/FrontBundle/Themes/'.$settingsMain->getAssetFolderName().'/templates/pages/mailPage.html.twig';
  160.         if($settingsMain->getAssetFolderName() == "Taxiciel"){
  161.             $pathTemplate '@Flexy/FrontBundle/Themes/'.$settingsMain->getAssetFolderName().'/templates/front/pages/mailPage.html.twig';
  162.             
  163.         }
  164.         
  165.         $email = (new TemplatedEmail())
  166.             ->from(new Address($settingsMain->getEmail(), $settingsMain->getProjectName()))
  167.             ->to($user->getUsername())
  168.             //->cc("new Address('samir.mengadi@gmail.com', $settingsMain->getProjectName())")
  169.             ->subject('Votre demande de rĂ©initialisation de mot de passe')
  170.             ->htmlTemplate($pathTemplate)
  171.             ->context([
  172.                 'page' => $mailPageInstance,
  173.                 "entity"=>["resetTokenLink"=>'<a href="'.$linkPath.'">Cliquez ici pour confirmer la rĂ©initialisation de mot de passe </a>']
  174.                 
  175.                 ,
  176.             ])
  177.         ;
  178.         $mailer->send($email);
  179.         // Store the token object in session for retrieval in check-email route.
  180.         $this->setTokenObjectInSession($resetToken);
  181.         return $this->redirectToRoute('app_check_email');
  182.     }
  183. }