src/Controller/SecurityController.php line 26

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\User;
  4. use Doctrine\Persistence\ManagerRegistry;
  5. use Symfony\Component\HttpFoundation\Request;
  6. use Symfony\Component\HttpFoundation\Response;
  7. use Symfony\Component\Routing\Annotation\Route;
  8. use Symfony\Component\HttpFoundation\JsonResponse;
  9. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  10. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  11. use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
  12. class SecurityController extends AbstractController
  13. {
  14.     private UserPasswordHasherInterface $passwordEncoder;
  15.     public function __construct(UserPasswordHasherInterface $passwordEncoder)
  16.     {
  17.         $this->passwordEncoder $passwordEncoder;
  18.     }
  19.     #[Route(path'/login'name'app_login')]
  20.     public function login(AuthenticationUtils $authenticationUtils): Response
  21.     {
  22.         if ($this->getUser()) {
  23.             return $this->redirectToRoute('article_index');
  24.         }
  25.         // get the login error if there is one
  26.         $error $authenticationUtils->getLastAuthenticationError();
  27.         // last username entered by the user
  28.         $lastUsername $authenticationUtils->getLastUsername();
  29.         return $this->render('security/login.html.twig', ['last_username' => $lastUsername'error' => $error]);
  30.     }
  31.     #[Route(path'/logout'name'app_logout')]
  32.     public function logout(): void
  33.     {
  34.         throw new \LogicException('This method can be blank - it will be intercepted by the logout key on your firewall.');
  35.     }
  36.     #[Route(path:'/registre'name'app_registre')]
  37.     public function registre(UserPasswordHasherInterface $passwordHasherManagerRegistry $doctrine)
  38.     {
  39.         $user = new User();
  40.         $user->setUsername("consulteur");
  41.         $user->setPassword($passwordHasher->hashPassword(
  42.             $user,
  43.             "consulteur@123"
  44.         ));
  45.         $user->setRoles(['ROLE_USER']);
  46.         
  47.         $doctrine->getManager()->persist($user);
  48.         $doctrine->getManager()->flush();
  49.         
  50.         return new Response('good');
  51.     }
  52.     #[Route(path'/app_changement_password'name'app_changement_password'options: ['expose' => true])]
  53.     public function app_changement_password(Request $requestManagerRegistry $doctrine): Response
  54.     {
  55.         $em $doctrine->getManager();
  56.         $user $em->getRepository(User::class)->find($this->getUser()->getId());
  57.         // dd($request);
  58.         // if(!$this->passwordEncoder->isPasswordValid($user, $request->get("mdp_current"))) {
  59.         //     return new JsonResponse("Votre mot de passe actuel est incorrect !", 500);
  60.         // }
  61.         if($request->get('password') === $request->get('cpassword')) {
  62.             $user->setPassword($this->passwordEncoder->hashPassword(
  63.                 $user,
  64.                 $request->get('password')
  65.             ));
  66.             $em->flush();
  67.             return new JsonResponse("Bien Enregistre!"200);
  68.         }
  69.         return new JsonResponse('Les mots de passe ne correspondent pas'500);
  70.     }
  71. }