src/Controller/ResetPasswordController.php line 44

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 App\Services\GalosoftMailerInterface;
  7. use Doctrine\ORM\EntityManagerInterface;
  8. use Symfony\Bridge\Twig\Mime\TemplatedEmail;
  9. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  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 SymfonyCasts\Bundle\ResetPassword\Controller\ResetPasswordControllerTrait;
  18. use SymfonyCasts\Bundle\ResetPassword\Exception\ResetPasswordExceptionInterface;
  19. use SymfonyCasts\Bundle\ResetPassword\ResetPasswordHelperInterface;
  20. /**
  21.  * @Route("/reset-password")
  22.  */
  23. class ResetPasswordController extends AbstractController
  24. {
  25.     use ResetPasswordControllerTrait;
  26.     private ResetPasswordHelperInterface $resetPasswordHelper;
  27.     private EntityManagerInterface $entityManager;
  28.     public function __construct(ResetPasswordHelperInterface $resetPasswordHelperEntityManagerInterface $entityManager)
  29.     {
  30.         $this->resetPasswordHelper $resetPasswordHelper;
  31.         $this->entityManager $entityManager;
  32.     }
  33.     /**
  34.      * Display & process form to request a password reset.
  35.      *
  36.      * @Route("", name="app_forgot_password_request")
  37.      */
  38.     public function request(Request $requestGalosoftMailerInterface $mailer): Response
  39.     {
  40.         $form $this->createForm(ResetPasswordRequestFormType::class);
  41.         $form->handleRequest($request);
  42.         if ($form->isSubmitted() && $form->isValid()) {
  43.             return $this->processSendingPasswordResetEmail(
  44.                 $form->get('email')->getData(),
  45.                 $mailer
  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 $userPasswordHasherstring $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.             //$user->setActive(true);
  88.         } catch (ResetPasswordExceptionInterface $e) {
  89.             $this->addFlash('reset_password_error'sprintf(
  90.                 '%s - %s',
  91.                 ResetPasswordExceptionInterface::MESSAGE_PROBLEM_VALIDATE,
  92.                 $e->getReason()
  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 $userPasswordHasher->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('app_homepage');
  112.         }
  113.         return $this->render('reset_password/reset.html.twig', [
  114.             'resetForm' => $form->createView(),
  115.         ]);
  116.     }
  117.     private function processSendingPasswordResetEmail(string $emailFormDataGalosoftMailerInterface $mailer): RedirectResponse
  118.     {
  119.         $user $this->entityManager->getRepository(User::class)->findOneBy([
  120.             'email' => $emailFormData,
  121.         ]);
  122.         // Do not reveal whether a user account was found or not.
  123.         if (!$user) {
  124.             return $this->redirectToRoute('app_check_email');
  125.         }
  126.         try {
  127.             $resetToken $this->resetPasswordHelper->generateResetToken($user);
  128.         } catch (ResetPasswordExceptionInterface $e) {
  129.             // If you want to tell the user why a reset email was not sent, uncomment
  130.             // the lines below and change the redirect to 'app_forgot_password_request'.
  131.             // Caution: This may reveal if a user is registered or not.
  132.             //
  133.             // $this->addFlash('reset_password_error', sprintf(
  134.             //     '%s - %s',
  135.             //     ResetPasswordExceptionInterface::MESSAGE_PROBLEM_HANDLE,
  136.             //     $e->getReason()
  137.             // ));
  138.             return $this->redirectToRoute('app_check_email');
  139.         }
  140.         $resetTplId $this->getParameter('RESET_PASSWORD_TPL_SENDGRID_ID');
  141.         if(strlen($resetTplId) > 0) {
  142.             $mailer->send([
  143.                 "template_id" => $resetTplId,
  144.                 "from" => array(
  145.                     "name" => "EFS",
  146.                     "email" => "info@efsgroup.cz"
  147.                 ),
  148.                 "personalizations" => array(
  149.                     array(
  150.                         "dynamic_template_data" => [
  151.                             'resetTokenLink' => $this->generateUrl('app_reset_password', [
  152.                                 'token' => $resetToken->getToken()
  153.                             ], 0), // 0 - absolute url
  154.                         ],
  155.                         "to" => array(
  156.                             array(
  157.                                 "email" => $user->getEmail()
  158.                             ),
  159.                         )
  160.                     )
  161.                 )
  162.             ]);
  163.             $arrToken = [];
  164.         }else{
  165.             // pokud neni nastaven mailer, zobrazuju token v url - uzito hlavne pro debug
  166.             $arrToken = ['token' => $resetToken->getToken()];
  167.         }
  168.         // Store the token object in session for retrieval in check-email route.
  169.         $this->setTokenObjectInSession($resetToken);
  170.         return $this->redirectToRoute('app_check_email'$arrToken);
  171.     }
  172. }