src/Controller/DefaultController.php line 46

Open in your IDE?
  1. <?php 
  2. namespace App\Controller;
  3. use App\Entity\Application;
  4. use App\Entity\HistoryUser;
  5. use App\Entity\HomeText;
  6. use App\Entity\Training;
  7. use App\Entity\User;
  8. use App\Entity\Commitment;
  9. use App\Form\UserFormType;
  10. use App\Security\UserAuthenticator;
  11. use App\Service\LuminjoService;
  12. use Doctrine\ORM\EntityManagerInterface;
  13. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  14. use Symfony\Component\HttpFoundation\JsonResponse;
  15. use Symfony\Component\HttpFoundation\RedirectResponse;
  16. use Symfony\Component\HttpFoundation\Request;
  17. use Symfony\Component\HttpFoundation\Response;
  18. use Symfony\Component\HttpFoundation\Session\Session;
  19. use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
  20. use Symfony\Component\Routing\Annotation\Route;
  21. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  22. use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
  23. use Symfony\Component\Security\Http\Authentication\UserAuthenticatorInterface;
  24. use Throwable;
  25. use Twilio\Rest\Client;
  26. class DefaultController extends AbstractController
  27. {
  28.     private AuthenticationUtils $authenticationUtils;
  29.     private EntityManagerInterface $entityManager;
  30.     private ParameterBagInterface $parameterBag;
  31.     public function __construct(
  32.         AuthenticationUtils $authenticationUtils,
  33.         EntityManagerInterface $entityManager,
  34.         ParameterBagInterface $parameterBag,
  35.     ) {
  36.         $this->authenticationUtils $authenticationUtils;
  37.         $this->entityManager $entityManager;
  38.         $this->parameterBag $parameterBag;
  39.     }
  40.     #[Route('/'name'home')]
  41.     public function homepage(
  42.         Request $request,
  43.         UserPasswordHasherInterface $userPasswordHasher,
  44.         EntityManagerInterface $entityManager,
  45.         UserAuthenticatorInterface $userAuthenticator,
  46.         UserAuthenticator $authenticator
  47.     ): Response {
  48.         if ($this->getUser()) {
  49.             return $this->redirectToRoute('app_dashboard');
  50.         }
  51.         $message $this->entityManager->getRepository(HomeText::class)->findOneBy(['active' => 1]);
  52.         $form $this->createForm(UserFormType::class);
  53.         $form->handleRequest($request);
  54.         if ($form->isSubmitted() && $form->isValid()) {
  55.             $error $this->authenticationUtils->getLastAuthenticationError();
  56.             // last username entered by the user
  57.             $lastUsername $this->authenticationUtils->getLastUsername();
  58.             $data $form->getData();
  59.             // On regarde si le numéro de tel est déjà utilisé
  60.             $user $this->entityManager->getRepository(User::class)->findOneBy(['phone' => $data->getPhone()]);
  61.             if ($user) {
  62.                 return $this->render(
  63.                     'homepage.html.twig',
  64.                     [
  65.                         'form' => $form->createView(),
  66.                         'last_username' => $lastUsername'error' => $error
  67.                     ]
  68.                 );
  69.             }
  70.             $user = new User();
  71.             $user->setPassword(
  72.                 $userPasswordHasher->hashPassword(
  73.                     $user,
  74.                     $request->request->get('password')
  75.                 )
  76.             );
  77. //dd($data['firstname']);
  78.             $user->setFirstname($data->getFirstname());
  79.             $user->setLastname($data->getLastname());
  80.             $user->setEmail($data->getEmail());
  81.             $user->setPhone("0" substr($data->getPhone(), 3));
  82.             $user->setCountryCode('+33');
  83.             $user->setVerified(true);
  84.             $user->setParcourssup(false);
  85.             $user->setValidatedPj(true);
  86.             $user->setCreatedAt(new \DateTimeImmutable());
  87.             $this->addFlash(
  88.                 'success',
  89.                 'Votre numéro de téléphone a bien été validé'
  90.             );
  91.             // save user
  92.             $this->entityManager->persist($user);
  93.             $history = new HistoryUser();
  94.             $history->setUser($user);
  95.             $history->setDescription('Le candidat c\'est inscrit sur Max');
  96.             $history->setCreatedAt(new \DateTimeImmutable());
  97.             $entityManager->persist($history);
  98.             $entityManager->flush();
  99.             // TODO on le logue et on le redirige vers sa page profile
  100.             return $userAuthenticator->authenticateUser(
  101.                 $user,
  102.                 $authenticator,
  103.                 $request
  104.             );
  105.         }
  106.         $error $this->authenticationUtils->getLastAuthenticationError();
  107.         // last username entered by the user
  108.         $lastUsername $this->authenticationUtils->getLastUsername();
  109.         return $this->render(
  110.             'homepage.html.twig',
  111.             [
  112.                 'form' => $form->createView(),
  113.                 'last_username' => $lastUsername'error' => $error,
  114.                 'message' => $message ?? null
  115.             ]
  116.         );
  117.     }
  118. //    #[Route('/', name: 'home')]
  119. //    public function homepage(Request $request): Response
  120. //    {
  121. //        if ($this->getUser()) {
  122. //            return $this->redirectToRoute('app_dashboard');
  123. //        }
  124. //
  125. //        $message = $this->entityManager->getRepository(HomeText::class)->findOneBy(['active' => 1]);
  126. //
  127. //        $form = $this->createForm(UserFormType::class);
  128. //        $form->handleRequest($request);
  129. //
  130. //        if ($form->isSubmitted() && $form->isValid()) {
  131. //            $error = $this->authenticationUtils->getLastAuthenticationError();
  132. //            // last username entered by the user
  133. //            $lastUsername = $this->authenticationUtils->getLastUsername();
  134. //
  135. //            $data = $form->getData();
  136. //
  137. //            // On regarde si le numéro de tel est déjà utilisé
  138. //            $user = $this->entityManager->getRepository(User::class)->findOneBy(['phone' => $data->getPhone()]);
  139. //            if ($user) {
  140. //                return $this->render(
  141. //                    'homepage.html.twig',
  142. //                    [
  143. //                    'form' => $form->createView(),
  144. //                    'last_username' => $lastUsername, 'error' => $error
  145. //                    ]
  146. //                );
  147. //            }
  148. //
  149. //            $twilio = new Client(
  150. //                $this->parameterBag->get('TWILIO_ACCOUNT_SID'),
  151. //                $this->parameterBag->get('TWILIO_AUTH_TOKEN')
  152. //            );
  153. //
  154. //            try {
  155. //                $verification = $twilio->verify->v2->services("VA84df449d299b2e1bd2a28ac81e79d5e9")
  156. //                ->verifications
  157. //                ->create("+33" . substr($data->getPhone(), 1), "sms");
  158. //            } catch (Throwable $th) {
  159. //                return $this->render(
  160. //                    'homepage.html.twig',
  161. //                    [
  162. //                    'form' => $form->createView(),
  163. //                    'last_username' => $lastUsername,
  164. //                    'registerError' => "Numéro de téléphone invalide",
  165. //                    'error' => $error
  166. //                    ]
  167. //                );
  168. //            }
  169. //
  170. //            if ($verification->status == 'pending') {
  171. //                $user_params = [
  172. //                    'firstname' => $data->getFirstname(),
  173. //                    'lastname' => $data->getLastname(),
  174. //                    'email' => $data->getEmail(),
  175. //                    'country_code' => $request->request->get('countryCode'),
  176. //                    'password' => $request->request->get('password'),
  177. //                    'phone_number' => "+33" . substr($data->getPhone(), 1),
  178. //                ];
  179. //
  180. //                $session = new Session();
  181. //                $session->set('user', $user_params);
  182. //            }
  183. //
  184. //            return $this->render('security/verify.html.twig', [
  185. //            'phone' => $data->getPhone()
  186. //            ]);
  187. //        }
  188. //
  189. //        $error = $this->authenticationUtils->getLastAuthenticationError();
  190. //        // last username entered by the user
  191. //        $lastUsername = $this->authenticationUtils->getLastUsername();
  192. //
  193. //        return $this->render(
  194. //            'homepage.html.twig',
  195. //            [
  196. //                'form' => $form->createView(),
  197. //                'last_username' => $lastUsername, 'error' => $error,
  198. //                'message' => $message ?? null
  199. //            ]
  200. //        );
  201. //    }
  202.     #[Route('/profile'name'app_dashboard')]
  203.     public function profile(): Response
  204.     {
  205.         if (!$this->getUser()) {
  206.             return $this->redirectToRoute('home');
  207.         }
  208.         $user $this->entityManager->getRepository(User::class)->find($this->getUser());
  209.         if ($user->getProgress() != null) {
  210.             if ($user->getProgress()->getId() == 1) {
  211.                 return $this->redirectToRoute('app_infos');
  212.             }
  213.             if ($user->getProgress()->getId() == 2) {
  214.                 return $this->redirectToRoute('app_pj');
  215.             }
  216.             if ($user->getProgress()->getId() == 3) {
  217.                 return $this->redirectToRoute('app_qcm');
  218.             }
  219.             if ($user->getProgress()->getId() == 4) {
  220.                 return $this->redirectToRoute('wait_validation_step_1');
  221.             }
  222.             if ($user->getProgress()->getId() == 5) {
  223.                 return $this->redirectToRoute('appointment_step');
  224.             }
  225.             if ($user->getProgress()->getId() == 6) {
  226.                 return $this->redirectToRoute('search_company');
  227.             }
  228.         }
  229.         $training $this->entityManager->getRepository(Training::class)->findBy([], ['name' => 'ASC']);
  230.         return $this->render(
  231.             'user/board.html.twig',
  232.             [
  233.                 'user' => $user,
  234.                 'training' => $training
  235.             ]
  236.         );
  237.     }
  238.     #[Route('/search_training'name'search_training')]
  239.     public function searchTraining(Request $request)
  240.     {
  241.         $level $request->request->get('name');
  242.         $training $this->entityManager->getRepository(Training::class)->findBy(
  243.             ['level' =>  $level,'enabled' => true],
  244.             ['name' => 'ASC']
  245.         );
  246.         return $this->render('/user/modals/list-trainings.html.twig', [
  247.             'trainings' => $training,
  248.             'level' => $level
  249.         ]);
  250.     }
  251.     #[Route('/mentions-legales'name'legal_notice')]
  252.     public function legalNotice()
  253.     {
  254.         return $this->render('default/legal_notice.html.twig');
  255.     }
  256.     #[Route('/bookcv/addCount/{user}/{offer}'name'count_user_book_cv')]
  257.     public function addCountBookCV($user$offer): RedirectResponse
  258.     {
  259.         $userCompleteProfile $this->entityManager->getRepository(User::class)->findOneBy(['id' => $user]);
  260.         foreach ($userCompleteProfile->getBookCvs() as $userBook) {
  261.             if ($userBook->getOffer()->getId() == (int) $offer) {
  262.                     $bookCV $userBook;
  263.                 if ($bookCV->getCountCv() == null) {
  264.                     $bookCV->setCountCv(1);
  265.                 } else {
  266.                     $bookCV->setCountCv($bookCV->getCountCv() + 1);
  267.                 }
  268.                 $this->entityManager->persist($bookCV);
  269.                 $this->entityManager->flush();
  270.             }
  271.         }
  272.         return $this->redirectToRoute('book_cv', ['id' => $offer]);
  273.     }
  274.     #[Route('/application/addCount/{appli}'name'count_user_app_show_cv')]
  275.     public function addCountAppCV($appli)
  276.     {
  277.         $application $this->entityManager->getRepository(Application::class)->findOneBy(['id' => (int)$appli]);
  278.         if ($application->getCountCv() == null) {
  279.             $application->setCountCv(1);
  280.         } else {
  281.             $application->setCountCv($application->getCountCv() + 1);
  282.         }
  283.         $this->entityManager->persist($application);
  284.         $this->entityManager->flush();
  285.         return $this->redirectToRoute('book_cv', ['id' => $application->getOffer()->getId()]);
  286.     }
  287.     #[Route('/engagement/{id}'name'show_commitment')]
  288.     public function adminShowStudent($id)
  289.     {
  290.         $user $this->entityManager->getRepository(User::class)->findOneBy(["id" => $id]);
  291.         $commitments $this->entityManager->getRepository(Commitment::class)->findOneBy(['user' => $user]);
  292.         return $this->redirectToRoute('show_admin_student_public', ['token' => $commitments->getToken()]);
  293.     }
  294.     #[Route('/send/luminjo'name:'send_luminjo_api'methods:['POST'])]
  295.     public function sendToLuminjo(Request $requestLuminjoService $luminjoService): JsonResponse
  296.     {
  297.         $data $request->request;
  298.         $recaptcha_url 'https://www.google.com/recaptcha/api/siteverify'// URL to the reCAPTCHA server
  299.         $recaptcha_secret '6Lf982YpAAAAADyzWvftfXuFWHEJHPUHbqmSs54D'// Secret key
  300.         $recaptcha_response $data->get('token'); // Response from reCAPTCHA server, added to the form during processing
  301.         $recaptcha file_get_contents($recaptcha_url.'?secret='.$recaptcha_secret.'&response='.$recaptcha_response); // Send request to the server
  302.         $recaptcha json_decode($recaptcha); // Decode the JSON response
  303.         if($recaptcha->success == true && $recaptcha->score >= 0.5 && $recaptcha->action == "submit"){ // If the response is valid
  304.             // run email send routine
  305.             $ticket $luminjoService->createTicket(
  306.                 $data->get('email'),
  307.                 $data->get('name'),
  308.                 $data->get('subject'),
  309.                 $data->get('message'),
  310.                 '',
  311.                 ""
  312.             );
  313.             return new  JsonResponse($ticket);
  314.         }else{
  315.             return new  JsonResponse("Erreur lors de l'envoi du message");
  316.         }
  317.     }
  318.     #[Route('/mon-compte'name'show_account')]
  319.     public function showAccount()
  320.     {
  321.         if (!$this->getUser()) {
  322.             return $this->redirectToRoute('home');
  323.         }
  324.         $user $this->getUser();
  325.         return $this->render('user/profile.html.twig', [ 'user' => $user]);
  326.     }
  327.     #[Route('/mise-a-jour'name'app_wait')]
  328.     public function wait()
  329.     {
  330.         return $this->render('wait.html.twig');
  331.     }
  332.     public function searchForType($id$array)
  333.     {
  334.         foreach ($array as $val) {
  335.             if ($val->getType() === $id) {
  336.                 return $val;
  337.             }
  338.         }
  339.         return null;
  340.     }
  341. }