src/Controller/UserController.php line 39

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\Entity;
  4. use App\Entity\User;
  5. use App\Entity\UserEntity;
  6. use App\Form\UserRegisterType;
  7. use App\Form\UserType;
  8. use App\Repository\EntityRepository;
  9. use App\Repository\MapObjectRepository;
  10. use App\Repository\ProfileRepository;
  11. use App\Repository\UserEntityRepository;
  12. use App\Repository\UserRepository;
  13. use App\Security\LoginFormAuthenticator;
  14. use App\Service\FileUploader;
  15. use App\Service\MailerService;
  16. use Doctrine\Common\Collections\ArrayCollection;
  17. use FOS\ElasticaBundle\Persister\ObjectPersister;
  18. use Imagick;
  19. use Nzo\UrlEncryptorBundle\Annotations\ParamDecryptor;
  20. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  21. use Symfony\Component\HttpFoundation\Request;
  22. use Symfony\Component\HttpFoundation\Response;
  23. use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
  24. use Symfony\Component\Routing\Annotation\Route;
  25. use Karser\Recaptcha3Bundle\Validator\Constraints\Recaptcha3Validator;
  26. use Symfony\Component\Security\Http\Authentication\UserAuthenticatorInterface;
  27. #[Route('/user')]
  28. class UserController extends AbstractController
  29. {
  30.     public function __construct(public ObjectPersister $answersPersister, public ObjectPersister $map_objectsPersister){}
  31.     #[Route('/new'name'user_register_no_entity'methods: ['GET''POST'])]
  32.     #[Route('/new/{slug}'name'user_register')]
  33.     public function new(Request           $requestUserPasswordHasherInterface $userPasswordHasherLoginFormAuthenticator $loginFormAuthenticator,
  34.                         EntityRepository  $entityRepositoryRecaptcha3Validator $recaptcha3Validator,
  35.                         LoginFormAuthenticator $loginUserAuthenticatorInterface $userAuthenticator,
  36.                         UserRepository    $userRepositoryMailerService $mailerServiceEntity $entity null,
  37.                         ProfileRepository $profileRepository): Response
  38.     {
  39.         $user = new User();
  40.         $form $this->createForm(UserRegisterType::class, $user);
  41.         $form->handleRequest($request);
  42.         if ($form->isSubmitted() && $form->isValid()) {
  43.             $score $recaptcha3Validator->getLastResponse()->getScore();
  44.             if ($score >= 0.5) {
  45.                 $user->setPassword(
  46.                     $userPasswordHasher->hashPassword(
  47.                         $user,
  48.                         $form->getData()->getPassword()
  49.                     )
  50.                 );
  51.                 $user->setRoles(['ROLE_USER']);
  52.                 $user->setIsActivated(true);
  53.                 // Add user in UserEntity
  54.                 $userEntity = new UserEntity();
  55.                 $userEntity->setUser($user);
  56.                 $user->setIsAccept(false);
  57.                 // Add entity
  58.                 if ($entity) {
  59.                     if ($entity->getName() === 'FDC76' or $entity->getName() === 'FDC77') {
  60.                         $user->setRoles(['ROLE_EN']);
  61.                         $profile $profileRepository->findOneBy(['name' => 'Éducation nationale']);
  62.                         $user->addProfile($profile);
  63.                         $userEntity->setIsAccepted(true);
  64.                     } else {
  65.                         $userEntity->setIsAccepted(false);
  66.                     }
  67.                     // Add entity
  68.                     $entitySelected $entityRepository->findOneBy(['slug' => $entity->getSlug()]);
  69.                     $userEntity->setEntity($entitySelected);
  70.                     $userEntity->setIsAccepted(true);
  71.                     $user->addUserEntity($userEntity);
  72.                     $mailerService->newUserApproval($entitySelected->getAdmins(), $user$entitySelected);
  73.                 } else {
  74.                     // Add role
  75.                     $profiles $form->get('profiles')->getData();
  76.                     foreach ($profiles as $profile) {
  77.                         $user->addProfile($profile);
  78.                     }
  79.                     // Add entities
  80.                     $entitySelected $form->get('entities')->getData();
  81.                     $user->setPostalCode($form->get('postalCode')->getData());
  82.                     // For multiple entities
  83.                     foreach ($entitySelected as $entityUser) {
  84.                         $userEntity = new UserEntity();
  85.                         $userEntity->setUser($user);
  86.                         $userEntity->setEntity($entityUser);
  87.                         $userEntity->setIsAccepted(false);
  88.                         $user->addUserEntity($userEntity);
  89.                         $mailerService->newUserApproval($entityUser->getAdmins(), $user$entityUser);
  90.                     }
  91.                 };
  92.                 $userRepository->add($usertrue);
  93.                 return $userAuthenticator->authenticateUser(
  94.                     $user,
  95.                     $loginFormAuthenticator,
  96.                     $request
  97.                 );
  98.             } else {
  99.                 $this->addFlash('captcha''Vous êtes un robot !!!');
  100.                 if ($entity) {
  101.                     return $this->redirectToRoute('user_register', ['slug' => $entity]);
  102.                 } else {
  103.                     return $this->redirectToRoute('user_register_no_entity');
  104.                 }
  105.             }
  106.         }
  107.         return $this->render('user/new.html.twig', [
  108.             'user' => $user,
  109.             'form' => $form->createView(),
  110.             'entity' => $entity
  111.         ]);
  112.     }
  113.     #[Route('/account'name'user_account')]
  114.     public function show(): Response
  115.     {
  116.         return $this->render('user/account.html.twig', [
  117.             'user' => $this->getUser()
  118.         ]);
  119.     }
  120.     #[Route('/account/edit'name:'user_account_edit'methods: ['GET''POST'] )]
  121.     public function edit(Request $request,
  122.                          UserPasswordHasherInterface $userPasswordHasher,
  123.                          FileUploader $fileUploaderUserRepository $userRepository,
  124.                          UserEntityRepository $userEntityRepositoryMapObjectRepository $mapObjectRepository): Response
  125.     {
  126.         $user $this->getUser();
  127.         $oldProfilesTemp $user->getProfiles()->getValues();
  128.         $userEntities $userEntityRepository->findBy(['user' => $user]);
  129.         if (!empty($userEntities)) {
  130.             $user->setEntities(new ArrayCollection());
  131.             foreach ($userEntities as $userEntity) {
  132.                 $user->addEntities($userEntity->getEntity());
  133.             }
  134.         }
  135.         // recover old password
  136.         $oldPass $user->getPassword();
  137.         // actual picture before editing
  138.         $oldPic $user->getPicture();
  139.         $form $this->createForm(UserType::class, $user);
  140.         $form->handleRequest($request);
  141.         if ($form->isSubmitted() && $form->isValid()) {
  142.             $oldProfiles = [];
  143.             $profiles $form->getData()->getProfiles()->getValues();
  144.             foreach ($oldProfilesTemp as $profile) {
  145.                 $oldProfiles[] = $profile->getId();
  146.                 $user->removeProfile($profile);
  147.             }
  148.             $addProfile true;
  149.             if ($oldProfiles) {
  150.                 $addProfile false;
  151.                 foreach($profiles as $newProfile){
  152.                     if(!in_array($newProfile->getId(),$oldProfiles)){
  153.                         $addProfile true;
  154.                     }
  155.                 }
  156.             }
  157.             if ($addProfile) {
  158.                 foreach ($user->getUserEntities() as $userEntity) {
  159.                     $userEntity->setIsAccepted(false);
  160.                     $userEntityRepository->add($userEntityfalse);
  161.                 }
  162.             }
  163.             foreach ($profiles as $profile) {
  164.                 if ($profile)
  165.                     $user->addProfile($profile);
  166.             }
  167.             // Pictures
  168.             $picture $form->get('picture')->getData();
  169.             $directory $this->getParameter('user_img_directory');
  170.             if (!empty($picture)) {  //"si le champ image du formulaire est different de vide"
  171.                 $file $fileUploader->upload($picture$directory);
  172.                 $mimeType $picture->getClientMimeType();
  173.                 if (str_contains((string) $mimeType,"heic") || str_contains((string) $mimeType,"heif")) {
  174.                     // convert heic or heif to jpg
  175.                     $im = new Imagick($directory."/".$file);
  176.                     $im->setCompression(Imagick::COMPRESSION_JPEG);
  177.                     $im->setCompressionQuality(90);
  178.                     $im->setImageFormat('jpeg');
  179.                     $oldName $file;
  180.                     if(str_contains((string) $mimeType,"heic")){
  181.                         //rename file for new extension
  182.                         $file str_replace('.heic','.jpg',$file);
  183.                         //reset mimeType for media
  184.                         $mimeType str_replace('heic','jpg',(string) $mimeType);
  185.                     }else if(str_contains((string) $mimeType,"heif")){
  186.                         //rename file for new extension
  187.                         $file str_replace('.heif','.jpg',$file);
  188.                         //reset mimeType for media
  189.                         $mimeType str_replace('heif','jpg',(string) $mimeType);
  190.                     }
  191.                     unlink($directory."/".$oldName);
  192.                     if ($im->getImageWidth() < $im->getImageHeight()) {
  193.                         $rotate "portrait";
  194.                     } else {
  195.                         $rotate "landscape";
  196.                     }
  197.                     switch ($rotate) {
  198.                         case "portrait":
  199.                             $im->scaleImage(7201280true);
  200.                             break;
  201.                         case "landscape":
  202.                             $im->scaleImage(1280720true);
  203.                             break;
  204.                         default:
  205.                             break;
  206.                     }
  207.                     $im->writeImage($directory."/".$file);
  208.                     $im->clear();
  209.                 }
  210.                 $user->setPicture($file);
  211.                 if (!empty($oldPic)) {    //"si l'ancienne image est vide"
  212.                     unlink($directory '/' $oldPic);
  213.                 }
  214.             } else {
  215.                 $user->setPicture($oldPic);
  216.             }
  217.             // password update
  218.             $pass $form->getData()->getPassword();
  219.             if (empty($pass)) {
  220.                 $user->setPassword($oldPass);
  221.             } else {
  222.                 $user->setPassword(
  223.                     $userPasswordHasher->hashPassword(
  224.                         $user,
  225.                         $form->getData()->getPassword()
  226.                     )
  227.                 );
  228.             }
  229. //            $userEntity = new UserEntity();
  230. //            $userEntity->setUser($user);
  231.             $roles $user->getRoles();
  232.             if (!in_array("ROLE_EN"$roles)) {
  233.                 if (!empty($userEntities)) {
  234.                     foreach ($userEntities as $userEntity) {
  235.                         $user->removeUserEntity($userEntity);
  236.                     }
  237.                 }
  238.                 $entitiesSelected $form->get('entities')->getData();
  239.                 $arrayAccepted = [];
  240.                 // Old entities
  241.                 if (!empty($userEntities)) {
  242.                     foreach ($userEntities as $userEntity) {
  243.                         $entityInArray in_array($userEntity->getEntity(), $entitiesSelected->toArray());
  244.                         if ($entityInArray) {
  245.                             $arrayAccepted[$userEntity->getEntity()->getName()] = $userEntity->getIsAccepted();
  246.                         }
  247.                     }
  248.                 }
  249.                 // new entities
  250.                 foreach ($entitiesSelected as $entity) {
  251.                     $userEntity = new UserEntity();
  252.                     $userEntity->setUser($user);
  253.                     if (!empty($arrayAccepted) && isset($arrayAccepted[$entity->getName()])) {
  254.                         $userEntity->setIsAccepted($arrayAccepted[$entity->getName()]);
  255.                     } else {
  256.                         $userEntity->setIsAccepted(false);
  257.                     }
  258.                     $userEntity->setEntity($entity);
  259.                     $user->addUserEntity($userEntity);
  260.                 }
  261.             }
  262.             $userRepository->add($usertrue);
  263.             $this->addFlash('success''Votre compte a été modifié avec succès !');
  264.             // Update Elasticsearch
  265.             if (!$user->getAnswers()->isEmpty()) {
  266.                 $this->answersPersister->replaceMany($user->getAnswers()->getValues());
  267.                 $mapObjects $mapObjectRepository->findByUser($user);
  268.                 if (!empty($mapObjects)) {
  269.                     $this->map_objectsPersister->replaceMany($mapObjects);
  270.                 }
  271.             }
  272.             return $this->redirectToRoute('user_account');
  273.         }
  274.         return $this->render('user/accountEdit.html.twig', [
  275.             'user' => $this->getUser(),
  276.             'form' => $form->createView()
  277.         ]);
  278.     }
  279.     #[Route('/{id}'name'account_delete'methods: ['DELETE'])]
  280.     #[ParamDecryptor(["id"])]
  281.     public function delete(Request $requestUser $userUserRepository $userRepository,
  282.                            MapObjectRepository $mapObjectRepository): Response
  283.     {
  284.         if ($this->isCsrfTokenValid('delete' $user->getId(), $request->request->get('_token'))) {
  285.             foreach ($user->getAnswers() as $answer) {
  286.                 $answer->setAuthor($userRepository->findOneByEmail("anonyme@anonyme.fr"));
  287.                 // Update Elasticsearch
  288.             }
  289.             if (!$user->getAnswers()->isEmpty()) {
  290.                 $this->answersPersister->replaceMany($user->getAnswers()->getValues());
  291.                 $mapObjects $mapObjectRepository->findByUser($user);
  292.                 if (!empty($mapObjects))
  293.                     $this->map_objectsPersister->replaceMany($mapObjects);
  294.             }
  295.             $userRepository->remove($usertrue);
  296.             $request->getSession()->invalidate();
  297.             $this->container->get('security.token_storage')->setToken();
  298.         }
  299.         return $this->redirectToRoute('app_login');
  300.     }
  301. }