src/Controller/CompanyController.php line 29

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\AcapellaDemand;
  4. use App\Entity\Appointment;
  5. use App\Entity\Attachment;
  6. use App\Entity\Attachments;
  7. use App\Entity\Commitment;
  8. use App\Entity\FollowUpType;
  9. use App\Entity\HistoryUser;
  10. use App\Entity\Offer;
  11. use App\Entity\User;
  12. use App\Form\CommitmentType;
  13. use App\Manager\SendInBlue;
  14. use Doctrine\ORM\EntityManagerInterface;
  15. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  16. use Symfony\Component\Form\Extension\Core\Type\FileType;
  17. use Symfony\Component\Form\Extension\Core\Type\SubmitType;
  18. use Symfony\Component\HttpFoundation\File\Exception\FileException;
  19. use Symfony\Component\HttpFoundation\Request;
  20. use Symfony\Component\HttpFoundation\Response;
  21. use Symfony\Component\Routing\Annotation\Route;
  22. use Symfony\Component\Validator\Constraints\File;
  23. class CompanyController extends AbstractController
  24. {
  25.     #[Route('/entreprises'name'company')]
  26.     public function index()
  27.     {
  28.         return $this->render('company/index.html.twig');
  29.     }
  30.     #[Route('/entreprise/engagement-recherche-candidat'name'company_commitment_search_user')]
  31.     public function commitmentSearchUser(): Response
  32.     {
  33.         return $this->redirectToRoute('company_send_mail_commitment');
  34.     }
  35.     #[Route('/entreprise/engagement/{id}'name'company_commitment')]
  36.     public function commitment(Request $request$idSendInBlue $sendInBlue$tokenEntityManagerInterface $em)
  37.     {
  38.         $commitment $em->getRepository(Commitment::class)->findOneBy(['id' => $id]);
  39.         $user $commitment->getUser();
  40.         if (!$commitment) {
  41.             $commitment = new Commitment();
  42.         }
  43.         $form $this->createForm(CommitmentType::class, $commitment);
  44.         $form->handleRequest($request);
  45.         if ($form->isSubmitted() && $form->isValid()) {
  46.             if ($token == null) {
  47.                 $commitment->setUser($user);
  48.                 $token md5(uniqid((string)rand(), true));
  49.                 $commitment->setToken($token);
  50.             }
  51.             $commitment->setState(0);
  52.             $commitment->setReceivedOn(new \DateTime());
  53.             $commitment->setAuthor('company');
  54.             $commitment->setRf(false);
  55.             $commitment->setSetBy('company');
  56.             if (!$request->request->get('draft')) {
  57.                 $commitment->setState(1);
  58.                 $commitment->setDraft(false);
  59.                 $user->setHasCompany(true);
  60.                 $history = new HistoryUser();
  61.                 $history->setUser($user);
  62.                 $history->setDescription('Modification de l\'engagement par l\'entreprise');
  63.                 $history->setCreatedAt(new \DateTimeImmutable());
  64.                 $em->persist($history);
  65.                 $siret str_replace(' '''$commitment->getCompanySiret());
  66.                 $user->setEditedAt(new \DateTime());
  67.                 $em->persist($user);
  68.                 $em->persist($commitment);
  69.                 $em->flush();
  70.                 return $this->redirectToRoute('company_commitment_confirmation', [
  71.                     'token' => $commitment->getToken()
  72.                 ]);
  73.             } else {
  74.                 $commitment->setDraft(true);
  75.                 // Envoi d'un mail à l'entreprise contenant un lien pour finaliser l'engagement
  76.                 $payloadMail = [
  77.                     'to' => [
  78.                         ['email' => $commitment->getCompanyEmail()]
  79.                     ],
  80.                     'templateId' => $sendInBlue->getTemplateId('commitment_draft'),
  81.                     'params' => [
  82.                         'url_button' => $_SERVER['SERVER_NAME'] . $this->generateUrl(
  83.                             'company_commitment',
  84.                             ['id' => $user->getId(), 'token' => $token]
  85.                         )
  86.                     ]
  87.                 ];
  88.                 $sendInBlue->sendMail($payloadMail);
  89.             }
  90.             $em->persist($commitment);
  91.             $em->flush();
  92.             $this->addFlash('success''Moficitations éfféctuées');
  93.             return $this->redirectToRoute('company_commitment_confirmation', [
  94.                 'token' => $commitment->getToken()
  95.             ]);
  96.         }
  97.         $em->flush();
  98.         return $this->render('company/commitment.html.twig', [
  99.             'form' => $form->createView(),
  100.             'user' => $user
  101.         ]);
  102.     }
  103.     /**
  104.      * @Route("/entreprise/engagement/confirmation/{token}", name="company_commitment_confirmation")
  105.      */
  106.     public function commitmentConfirmation(Request $request$tokenEntityManagerInterface $em)
  107.     {
  108.         $commitment $em->getRepository(Commitment::class)->findOneBy(['token' => $token]);
  109.         // Vérif de l'existance de l'engagement
  110.         if (!$commitment) {
  111.             return $this->redirectToRoute('home');
  112.         }
  113.         // Vérif du token
  114.         if (!$commitment->getToken()) {
  115.             return $this->redirectToRoute('home');
  116.         }
  117.         return $this->render('company/commitmentConfirm.html.twig', [
  118.             'commitment' => $commitment
  119.         ]);
  120.     }
  121.     #[Route('/recherche-entreprises'name'search_company')]
  122.     public function searchCompanyUser(EntityManagerInterface $entityManagerRequest $request)
  123.     {
  124.         if (!$this->getUser()) {
  125.             return $this->redirectToRoute('home');
  126.         }
  127.         $user $entityManager->getRepository(User::class)->find($this->getUser());
  128.         if ($user->isHasCompany()) {
  129.             return $this->redirectToRoute('wait_to_end');
  130.         }
  131.         $allOffers $entityManager->getRepository(Offer::class)->findBy(['state' => true], ['date' => 'DESC']);
  132.         $offers = [];
  133.         foreach ($allOffers as $offer) {
  134.             // Si l'offre est rattachée à une ou plusieurs formations
  135.             if (count($offer->getTraining()) > 0) {
  136.                 foreach ($offer->getTraining() as $training) {
  137.                     // Si la formation correspond à la formation du candidat
  138.                     if ($training == $user->getTraining()) {
  139.                         $offers[] = $offer;
  140.                     }
  141.                 }
  142.             } else {
  143.                 // Sinon on l'affiche comme elle n'est pas limitée à une ou plusieurs
  144.                 // formations donc visibles par tous les candidats
  145.                 $offers[] = $offer;
  146.             }
  147.         }
  148.         // Ateliers
  149.         $appointments $entityManager->getRepository(Appointment::class)->findAll();
  150.         $rdv = [];
  151.         foreach ($appointments as $app) {
  152.             foreach ($app->getTraining() as $appTr) {
  153.                 if ($appTr->getId() == $user->getTraining()->getId()) {
  154.                     $registrant count($app->getAppointmentsChecks());
  155.                     if ($registrant <= $app->getPlaces()) {
  156.                         if ($app->getAppointmentType()->getId() != and $app->getAppointmentType()->getId() != 9) {
  157.                             $rdv[] = $app;
  158.                         }
  159.                     }
  160.                 }
  161.             }
  162.         }
  163.         $appointmentsUser $user->getAppointments();
  164.         $userFreeRdv = [];
  165.         foreach ($appointmentsUser as $appointment) {
  166.             if ($appointment->getAppointmentType()->getId() != and $appointment->getAppointmentType()->getId() != 9) {
  167.                 $userFreeRdv[] = $appointment;
  168.             }
  169.         }
  170.         // recuperation du CV
  171.         $cv  =  $entityManager->getRepository(Attachments::class)->findOneBy(['User' => $user'type' => 'cv']);
  172.         // si nouveau CV
  173.         $attachment = new Attachments();
  174.         $form $this->createFormBuilder($attachment)
  175.             ->add('cv'FileType::class, [
  176.                 'label' => 'CV (format PDF)',
  177.                 'mapped' => false,
  178.                 'required' => false,
  179.                 'attr' => [
  180.                     'class' => 'form-control',
  181.                 ],
  182.                 'constraints' => [
  183.                     new File([
  184.                         'maxSize' => '2048k',
  185.                         'mimeTypes' => [
  186.                             'application/pdf',
  187.                             'application/x-pdf'
  188.                         ],
  189.                         'mimeTypesMessage' => 'Choisissez un CV au format valide.',
  190.                         'maxSizeMessage' => 'La taille de votre CV doit être inférieure ou égale à 2Mo',
  191.                     ])
  192.                 ],
  193.             ])
  194.             ->add('save'SubmitType::class, [
  195.                 'label' => 'Enregistrer le CV'
  196.             ])
  197.             ->getForm();
  198.         $form->handleRequest($request);
  199.         if ($form->isSubmitted()) {
  200.             $cvFile $form->get('cv')->getData();
  201.             if ($cvFile) {
  202.                 $attachmentsUser $entityManager->getRepository(Attachments::class)->findOneBy(
  203.                     ['User' => $user"type" => "cv"]
  204.                 );
  205.                 if ($attachmentsUser == null) {
  206.                     $attachment = new Attachments();
  207.                 } else {
  208.                     $attachment $attachmentsUser;
  209.                 }
  210.                 $originalFilename pathinfo($cvFile->getClientOriginalName(), PATHINFO_FILENAME);
  211.                 $extension =  pathinfo($cvFile->getClientOriginalName(), PATHINFO_EXTENSION);
  212.                 // this is needed to safely include the file name as part of the URL
  213.                 $newFilename =
  214.                     'cv_' $user->getLastname() . '-' $user->getFirstname() . '-' .
  215.                     $user->getPhone() . '-' uniqid() . '.' $extension;
  216.                 try {
  217.                     $cvFile->move(
  218.                         $this->getParameter('cv_directory'),
  219.                         $newFilename
  220.                     );
  221.                 } catch (FileException $e) {
  222.                     // ... handle exception if something happens during file upload
  223.                     $this->addFlash('error''Une erreur est survenue lors de l\'upload de votre CV');
  224.                     return $this->redirectToRoute('search_company', [
  225.                         'id' => $user->getId()
  226.                     ]);
  227.                 }
  228.                 $attachment->setPath($newFilename);
  229.                 $entityManager->persist($attachment);
  230.                 $entityManager->flush();
  231.                 $this->addFlash('success''Votre CV a bien été modifié !');
  232.                 return $this->redirectToRoute('search_company');
  233.             }
  234.         }
  235.         return $this->render(
  236.             'user/company/list.html.twig',
  237.             [
  238.             'offers' => $offers,
  239.             'cv' => $cv,
  240.             'form' => $form->createView(),
  241.             'rdv' => $rdv,
  242.             'free' => $userFreeRdv
  243.             ]
  244.         );
  245.     }
  246.     #[Route('/search/phone'name'search_phone')]
  247.     public function searchPhone(Request $requestEntityManagerInterface $em)
  248.     {
  249.         $phone $request->request->get('phone') . '%';
  250.         $users $em->getRepository(User::class)->findByPhone($phone);
  251.         $usersAcappella $em->getRepository(AcapellaDemand::class)->findByPhone($phone);
  252.         $usersOutput = [];
  253.         if ($users) {
  254.             foreach ($users as $user) {
  255.                 $usersOutput[] = [
  256.                     'phone' => $user->getPhone(),
  257.                 ];
  258.             }
  259.         }
  260.         $usersAcappellaOutput = [];
  261.         if ($usersAcappella) {
  262.             foreach ($usersAcappella as $userAcappella) {
  263.                 if (
  264.                     !array_search($userAcappella->getPhone(), array_column($usersOutput'phone'))
  265.                     && array_search($userAcappella->getPhone(), array_column($usersOutput'phone')) !== 0
  266.                 ) {
  267.                     $usersAcappellaOutput[] = [
  268.                         'phone' => $userAcappella->getPhone(),
  269.                         'second_phone_number' => null,
  270.                     ];
  271.                 }
  272.             }
  273.         }
  274.         $allUsers array_merge($usersOutput$usersAcappellaOutput);
  275.         return $this->json($allUsers);
  276.     }
  277.     #[Route('/search/lastname'name'search_lastname')]
  278.     public function searchLastName(Request $requestEntityManagerInterface $em)
  279.     {
  280.         $lastname $request->request->get('lastname') . '%';
  281.         $users $em->getRepository(User::class)->findByLastname($lastname);
  282.         $usersAcappella $em->getRepository(AcapellaDemand::class)->findByLastname($lastname);
  283.         $usersOutput = [];
  284.         if ($users) {
  285.             foreach ($users as $user) {
  286.                 $usersOutput[] = [
  287.                     'lastname' => $user->getLastname(),
  288.                 ];
  289.             }
  290.         }
  291.         $usersAcappellaOutput = [];
  292.         if ($usersAcappella) {
  293.             foreach ($usersAcappella as $userAcappella) {
  294.                 if (
  295.                     !array_search($userAcappella->getLastname(), array_column($usersOutput'lastname'))
  296.                     && array_search($userAcappella->getLastname(), array_column($usersOutput'lastname')) !== 0
  297.                 ) {
  298.                     $usersAcappellaOutput[] = [
  299.                         'lastname' => $userAcappella->getLastname(),
  300.                     ];
  301.                 }
  302.             }
  303.         }
  304.         $allUsers array_merge($usersOutput$usersAcappellaOutput);
  305.         return $this->json($allUsers);
  306.     }
  307.     #[Route('/search/firstname'name'search_firstname')]
  308.     public function searchFirstName(Request $requestEntityManagerInterface $em)
  309.     {
  310.         $firstname $request->request->get('firstname') . '%';
  311.         $users $em->getRepository(User::class)->findByFirstname($firstname);
  312.         $usersAcappella $em->getRepository(AcapellaDemand::class)->findByFirstname($firstname);
  313.         $usersOutput = [];
  314.         if ($users) {
  315.             foreach ($users as $user) {
  316.                 $usersOutput[] = [
  317.                     'firstname' => $user->getFirstName(),
  318.                 ];
  319.             }
  320.         }
  321.         $usersAcappellaOutput = [];
  322.         if ($usersAcappella) {
  323.             foreach ($usersAcappella as $userAcappella) {
  324.                 if (
  325.                     !array_search(
  326.                         $userAcappella->getFirstName(),
  327.                         array_column($usersOutput'firstname')
  328.                     )
  329.                     && array_search(
  330.                         $userAcappella->getFirstName(),
  331.                         array_column($usersOutput'firstname')
  332.                     ) !== 0
  333.                 ) {
  334.                     $usersAcappellaOutput[] = [
  335.                         'firstname' => $userAcappella->getFirstName(),
  336.                     ];
  337.                 }
  338.             }
  339.         }
  340.         $allUsers array_merge($usersOutput$usersAcappellaOutput);
  341.         return $this->json($allUsers);
  342.     }
  343. }