<?php
namespace App\Controller;
use App\Entity\User;
use App\Form\ForgottenPassType;
use App\Form\ResetPasswordType;
use App\Repository\UserRepository;
use App\Service\MailerService;
use Doctrine\ORM\EntityManagerInterface;
use Karser\Recaptcha3Bundle\Validator\Constraints\Recaptcha3;
use Karser\Recaptcha3Bundle\Validator\Constraints\Recaptcha3Validator;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Csrf\TokenGenerator\TokenGeneratorInterface;
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
class SecurityController extends AbstractController
{
public function __construct(
private EntityManagerInterface $entityManager
) {
}
#[Route(path: '/login', name: 'app_login')]
public function login(AuthenticationUtils $authenticationUtils): Response
{
// if ($this->getUser()) {
// return $this->redirectToRoute('target_path');
// }
// get the login error if there is one
$error = $authenticationUtils->getLastAuthenticationError();
// last username entered by the user
$lastUsername = $authenticationUtils->getLastUsername();
return $this->render('security/loginNew.html.twig', ['last_username' => $lastUsername, 'error' => $error]);
}
#[Route(path: '/login_new', name: 'login_new')]
public function loginNew(AuthenticationUtils $authenticationUtils): Response
{
// if ($this->getUser()) {
// return $this->redirectToRoute('target_path');
// }
// get the login error if there is one
$error = $authenticationUtils->getLastAuthenticationError();
// last username entered by the user
$lastUsername = $authenticationUtils->getLastUsername();
return $this->render('security/loginNew.html.twig', ['last_username' => $lastUsername, 'error' => $error]);
}
#[Route(path: '/logout', name: 'app_logout')]
public function logout(): never
{
throw new \LogicException('This method can be blank - it will be intercepted by the logout key on your firewall.');
}
#[Route(path: '/', name: 'index')]
public function index(): Response
{
if($this->getUser()){
$user = $this->getUser();
$roles = $user->getRoles();
if(in_array('ROLE_SUPER_ADMIN', $roles) || in_array('ROLE_ADMIN', $roles)){
return $this->redirectToRoute('admin');
}else{
$entities = $user->getUserEntities();
$slug = $entities[0]->getEntity()->getSlug();
return $this->redirectToRoute('booking_index',['slug' => $slug]);
}
}else{
return $this->redirectToRoute('app_login');
}
}
#[Route(path: '/reset_password/{token}', name: 'app_reset_password')]
public function resetPassword(Request $request, string $token, UserPasswordHasherInterface $userPasswordHasher): Response
{
$user = $this->entityManager->getRepository(User::class)->findOneBy(['resetToken' => $token]);
if ($user === null){
return $this->redirectToRoute('app_login');
}
$form = $this->createForm(ResetPasswordType::class, $user);
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
$user->setResetToken(null);
$password = $userPasswordHasher->hashPassword(
$user,
$user->getPassword()
);
$user->setPassword($password);
$this->entityManager->persist($user);
$this->entityManager->flush();
return $this->redirectToRoute('app_login');
}
return $this->render('security/reset-password.twig', [
'form' => $form->createView(),
'title' => 'Nouveau mot de passe',
'user' => $user
]);
}
#[Route(path: '/forgotten-password', name: 'forgotten-password')]
public function forgottenPassword(Request $request, TokenGeneratorInterface $tokenGenerator, UserRepository $userRepository, Recaptcha3Validator $recaptcha3Validator, MailerService $emailService): Response
{
$user = new User();
$form = $this->createForm(ForgottenPassType::class, $user);
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
$score = $recaptcha3Validator->getLastResponse()->getScore();
if ($score >= 0.5) {
$email = $form->getData()->getEmailVerif();
$user = $userRepository->findOneBy(['email' => $email]);
if ($user) {
$token = $tokenGenerator->generateToken();
if($emailService->forgottenPassword($user, $token)) {
$user->setResetToken($token);
$this->entityManager->persist($user);
$this->entityManager->flush();
$this->addFlash('success', 'Un email vous a été envoyé !');
} else {
$this->addFlash('error', 'Un problème est survenue, veuillez réessayer plus tard !');
}
} else {
return $this->render('security/forgottenPassword.html.twig', [
'error' => 'Email inconnue',
'user' => $user,
'form' => $form->createView()
]);
}
}
}
return $this->render('security/forgottenPassword.html.twig', [
'error' => null,
'user' => $user,
'form' => $form->createView()
]);
}
}