src/Controller/SecurityController.php line 67

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\User;
  4. use App\Form\ForgottenPassType;
  5. use App\Form\ResetPasswordType;
  6. use App\Repository\UserRepository;
  7. use App\Service\MailerService;
  8. use Doctrine\ORM\EntityManagerInterface;
  9. use Karser\Recaptcha3Bundle\Validator\Constraints\Recaptcha3;
  10. use Karser\Recaptcha3Bundle\Validator\Constraints\Recaptcha3Validator;
  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\PasswordHasher\Hasher\UserPasswordHasherInterface;
  16. use Symfony\Component\Routing\Annotation\Route;
  17. use Symfony\Component\Security\Csrf\TokenGenerator\TokenGeneratorInterface;
  18. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  19. class SecurityController extends AbstractController
  20. {
  21.     public function __construct(
  22.         private EntityManagerInterface $entityManager
  23.     ) {
  24.     }
  25.     #[Route(path'/login'name'app_login')]
  26.     public function login(AuthenticationUtils $authenticationUtils): Response
  27.     {
  28.         // if ($this->getUser()) {
  29.         //     return $this->redirectToRoute('target_path');
  30.         // }
  31.         // get the login error if there is one
  32.         $error $authenticationUtils->getLastAuthenticationError();
  33.         // last username entered by the user
  34.         $lastUsername $authenticationUtils->getLastUsername();
  35.         return $this->render('security/loginNew.html.twig', ['last_username' => $lastUsername'error' => $error]);
  36.     }
  37.     #[Route(path'/login_new'name'login_new')]
  38.     public function loginNew(AuthenticationUtils $authenticationUtils): Response
  39.     {
  40.         // if ($this->getUser()) {
  41.         //     return $this->redirectToRoute('target_path');
  42.         // }
  43.         // get the login error if there is one
  44.         $error $authenticationUtils->getLastAuthenticationError();
  45.         // last username entered by the user
  46.         $lastUsername $authenticationUtils->getLastUsername();
  47.         return $this->render('security/loginNew.html.twig', ['last_username' => $lastUsername'error' => $error]);
  48.     }
  49.     #[Route(path'/logout'name'app_logout')]
  50.     public function logout(): never
  51.     {
  52.         throw new \LogicException('This method can be blank - it will be intercepted by the logout key on your firewall.');
  53.     }
  54.     #[Route(path'/'name'index')]
  55.     public function index(): Response
  56.     {
  57.         if($this->getUser()){
  58.             $user $this->getUser();
  59.             $roles $user->getRoles();
  60.             if(in_array('ROLE_SUPER_ADMIN'$roles) || in_array('ROLE_ADMIN'$roles)){
  61.                 return $this->redirectToRoute('admin');
  62.             }else{
  63.                 $entities $user->getUserEntities();
  64.                 $slug $entities[0]->getEntity()->getSlug();
  65.                 return $this->redirectToRoute('booking_index',['slug' => $slug]);
  66.             }
  67.         }else{
  68.             return $this->redirectToRoute('app_login');
  69.         }
  70.     }
  71.     #[Route(path'/reset_password/{token}'name'app_reset_password')]
  72.     public function resetPassword(Request $requeststring $token,  UserPasswordHasherInterface $userPasswordHasher): Response
  73.     {
  74.         $user $this->entityManager->getRepository(User::class)->findOneBy(['resetToken' => $token]);
  75.         if ($user === null){
  76.             return $this->redirectToRoute('app_login');
  77.         }
  78.         $form $this->createForm(ResetPasswordType::class, $user);
  79.         $form->handleRequest($request);
  80.         if ($form->isSubmitted() && $form->isValid()) {
  81.             $user->setResetToken(null);
  82.             $password $userPasswordHasher->hashPassword(
  83.                 $user,
  84.                 $user->getPassword()
  85.             );
  86.             $user->setPassword($password);
  87.             $this->entityManager->persist($user);
  88.             $this->entityManager->flush();
  89.             return $this->redirectToRoute('app_login');
  90.         }
  91.         return $this->render('security/reset-password.twig', [
  92.             'form' => $form->createView(),
  93.             'title' => 'Nouveau mot de passe',
  94.             'user' => $user
  95.         ]);
  96.     }
  97.     #[Route(path'/forgotten-password'name'forgotten-password')]
  98.     public function forgottenPassword(Request $requestTokenGeneratorInterface $tokenGeneratorUserRepository $userRepositoryRecaptcha3Validator $recaptcha3ValidatorMailerService $emailService): Response
  99.     {
  100.         $user = new User();
  101.         $form $this->createForm(ForgottenPassType::class, $user);
  102.         $form->handleRequest($request);
  103.         if ($form->isSubmitted() && $form->isValid()) {
  104.             $score $recaptcha3Validator->getLastResponse()->getScore();
  105.             if ($score >= 0.5) {
  106.                 $email $form->getData()->getEmailVerif();
  107.                 $user $userRepository->findOneBy(['email' => $email]);
  108.                 if ($user) {
  109.                     $token $tokenGenerator->generateToken();
  110.                     if($emailService->forgottenPassword($user$token)) {
  111.                         $user->setResetToken($token);
  112.                         $this->entityManager->persist($user);
  113.                         $this->entityManager->flush();
  114.                         $this->addFlash('success''Un email vous a été envoyé !');
  115.                     } else {
  116.                         $this->addFlash('error''Un problème est survenue, veuillez réessayer plus tard !');
  117.                     }
  118.                 } else {
  119.                     return $this->render('security/forgottenPassword.html.twig', [
  120.                         'error' => 'Email inconnue',
  121.                         'user' => $user,
  122.                         'form' => $form->createView()
  123.                     ]);
  124.                 }
  125.             }
  126.         }
  127.         return $this->render('security/forgottenPassword.html.twig', [
  128.             'error' => null,
  129.             'user' => $user,
  130.             'form' => $form->createView()
  131.         ]);
  132.     }
  133. }