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('/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.         return $this->render('reset_password/request.html.twig', [
  49.             'requestForm' => $form->createView(),
  50.             'background_body'=>"url('/themes/".strtolower($settingsMain->getAssetFolderName())."/admin/images/bg-body.jpg')",
  51.         ]);
  52.     }
  53.     /**
  54.      * Confirmation page after a user has requested a password reset.
  55.      */
  56.     #[Route('/check-email'name'app_check_email')]
  57.     public function checkEmail(SettingsRepository $settingsRepository): 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.         $settingsMain $settingsRepository->findOneBy(["code"=>"main"]);
  65.         return $this->render('reset_password/check_email.html.twig', [
  66.             'resetToken' => $resetToken,
  67.             'background_body'=>"url('/themes/".strtolower($settingsMain->getAssetFolderName())."/admin/images/bg-body.jpg')",
  68.         ]);
  69.     }
  70.     /**
  71.      * Validates and process the reset URL that the user clicked in their email.
  72.      */
  73.     #[Route('/reset/{token}'name'app_reset_password')]
  74.     public function reset(string $token null,Request $requestUserPasswordHasherInterface $passwordHasherTranslatorInterface $translatorSettingsRepository $settingsRepository): Response
  75.     {
  76.         if ($token) {
  77.             // We store the token in session and remove it from the URL, to avoid the URL being
  78.             // loaded in a browser and potentially leaking the token to 3rd party JavaScript.
  79.             $this->storeTokenInSession($token);
  80.             //return $this->redirectToRoute('app_reset_password');
  81.         }
  82.         $token $this->getTokenFromSession();
  83.         if (null === $token) {
  84.             throw $this->createNotFoundException('No reset password token found in the URL or in the session.');
  85.         }
  86.         try {
  87.             $user $this->resetPasswordHelper->validateTokenAndFetchUser($token);
  88.         } catch (ResetPasswordExceptionInterface $e) {
  89.             $this->addFlash('reset_password_error'sprintf(
  90.                 '%s - %s',
  91.                 $translator->trans(ResetPasswordExceptionInterface::MESSAGE_PROBLEM_VALIDATE, [], 'ResetPasswordBundle'),
  92.                 $translator->trans($e->getReason(), [], 'ResetPasswordBundle')
  93.             ));
  94.             return $this->redirectToRoute('app_forgot_password_request');
  95.         }
  96.         // The token is valid; allow the user to change their password.
  97.         $form $this->createForm(ChangePasswordFormType::class);
  98.         $form->handleRequest($request);
  99.         if ($form->isSubmitted() && $form->isValid()) {
  100.             // A password reset token should be used only once, remove it.
  101.             $this->resetPasswordHelper->removeResetRequest($token);
  102.             // Encode(hash) the plain password, and set it.
  103.             $encodedPassword $passwordHasher->hashPassword(
  104.                 $user,
  105.                 $form->get('plainPassword')->getData()
  106.             );
  107.             $user->setPassword($encodedPassword);
  108.             $this->entityManager->flush();
  109.             // The session is cleaned up after the password has been changed.
  110.             $this->cleanSessionAfterReset();
  111.             return $this->redirectToRoute('login',["passwordUpdated"=>true]);
  112.         }
  113.         $settingsMain $settingsRepository->findOneBy(["code"=>"main"]);
  114.         return $this->render('reset_password/reset.html.twig', [
  115.             'resetForm' => $form->createView(),
  116.             'background_body'=>"url('/themes/".strtolower($settingsMain->getAssetFolderName())."/admin/images/bg-body.jpg')",
  117.         ]);
  118.     }
  119.     private function processSendingPasswordResetEmail(string $emailFormDataMailerInterface $mailerTranslatorInterface $translator): RedirectResponse
  120.     {
  121.         $settingsMain $this->entityManager->getRepository(Settings::class)->findOneBy(["code"=>"main"]);
  122.         $user $this->entityManager->getRepository(User::class)->findOneBy([
  123.             'username' => $emailFormData,
  124.         ]);
  125.         // Do not reveal whether a user account was found or not.
  126.         if (!$user) {
  127.             return $this->redirectToRoute('app_check_email');
  128.         }
  129.         try {
  130.             $resetToken $this->resetPasswordHelper->generateResetToken($user);
  131.         } catch (ResetPasswordExceptionInterface $e) {
  132.             // If you want to tell the user why a reset email was not sent, uncomment
  133.             // the lines below and change the redirect to 'app_forgot_password_request'.
  134.             // Caution: This may reveal if a user is registered or not.
  135.             //
  136.             // $this->addFlash('reset_password_error', sprintf(
  137.             //     '%s - %s',
  138.             //     $translator->trans(ResetPasswordExceptionInterface::MESSAGE_PROBLEM_HANDLE, [], 'ResetPasswordBundle'),
  139.             //     $translator->trans($e->getReason(), [], 'ResetPasswordBundle')
  140.             // ));
  141.             return $this->redirectToRoute('app_check_email');
  142.         }
  143.         $mailPageInstance $this->entityManager->getRepository(Page::class)->findOneBy(["slug"=>"reset-password"]);
  144.         
  145.         $linkPath $settingsMain->getRootUrl().$this->generateUrl("app_reset_password",["token"=>$resetToken->getToken()]);
  146.         
  147.         
  148.         $email = (new TemplatedEmail())
  149.             ->from(new Address($settingsMain->getEmail(), $settingsMain->getProjectName()))
  150.             ->to($user->getUsername())
  151.             //->cc("new Address('samir.mengadi@gmail.com', $settingsMain->getProjectName())")
  152.             ->subject('Votre demande de rĂ©initialisation de mot de passe')
  153.             ->htmlTemplate('@Flexy/FrontBundle/Themes/IlaveU/templates/pages/mailPage.html.twig')
  154.             ->context([
  155.                 'page' => $mailPageInstance,
  156.                 "entity"=>["resetTokenLink"=>'<a href="'.$linkPath.'">Cliquez ici pour confirmer la rĂ©initialisation de mot de passe </a>']
  157.                 
  158.                 ,
  159.             ])
  160.         ;
  161.         $mailer->send($email);
  162.         // Store the token object in session for retrieval in check-email route.
  163.         $this->setTokenObjectInSession($resetToken);
  164.         return $this->redirectToRoute('app_check_email');
  165.     }
  166. }