<?php
namespace App\Controller;
use App\Entity\Application;
use App\Entity\HistoryUser;
use App\Entity\HomeText;
use App\Entity\Training;
use App\Entity\User;
use App\Entity\Commitment;
use App\Form\UserFormType;
use App\Security\UserAuthenticator;
use App\Service\LuminjoService;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\Session\Session;
use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
use Symfony\Component\Security\Http\Authentication\UserAuthenticatorInterface;
use Throwable;
use Twilio\Rest\Client;
class DefaultController extends AbstractController
{
private AuthenticationUtils $authenticationUtils;
private EntityManagerInterface $entityManager;
private ParameterBagInterface $parameterBag;
public function __construct(
AuthenticationUtils $authenticationUtils,
EntityManagerInterface $entityManager,
ParameterBagInterface $parameterBag,
) {
$this->authenticationUtils = $authenticationUtils;
$this->entityManager = $entityManager;
$this->parameterBag = $parameterBag;
}
#[Route('/', name: 'home')]
public function homepage(
Request $request,
UserPasswordHasherInterface $userPasswordHasher,
EntityManagerInterface $entityManager,
UserAuthenticatorInterface $userAuthenticator,
UserAuthenticator $authenticator
): Response {
if ($this->getUser()) {
return $this->redirectToRoute('app_dashboard');
}
$message = $this->entityManager->getRepository(HomeText::class)->findOneBy(['active' => 1]);
$form = $this->createForm(UserFormType::class);
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
$error = $this->authenticationUtils->getLastAuthenticationError();
// last username entered by the user
$lastUsername = $this->authenticationUtils->getLastUsername();
$data = $form->getData();
// On regarde si le numéro de tel est déjà utilisé
$user = $this->entityManager->getRepository(User::class)->findOneBy(['phone' => $data->getPhone()]);
if ($user) {
return $this->render(
'homepage.html.twig',
[
'form' => $form->createView(),
'last_username' => $lastUsername, 'error' => $error
]
);
}
$user = new User();
$user->setPassword(
$userPasswordHasher->hashPassword(
$user,
$request->request->get('password')
)
);
//dd($data['firstname']);
$user->setFirstname($data->getFirstname());
$user->setLastname($data->getLastname());
$user->setEmail($data->getEmail());
$user->setPhone("0" . substr($data->getPhone(), 3));
$user->setCountryCode('+33');
$user->setVerified(true);
$user->setParcourssup(false);
$user->setValidatedPj(true);
$user->setCreatedAt(new \DateTimeImmutable());
$this->addFlash(
'success',
'Votre numéro de téléphone a bien été validé'
);
// save user
$this->entityManager->persist($user);
$history = new HistoryUser();
$history->setUser($user);
$history->setDescription('Le candidat c\'est inscrit sur Max');
$history->setCreatedAt(new \DateTimeImmutable());
$entityManager->persist($history);
$entityManager->flush();
// TODO on le logue et on le redirige vers sa page profile
return $userAuthenticator->authenticateUser(
$user,
$authenticator,
$request
);
}
$error = $this->authenticationUtils->getLastAuthenticationError();
// last username entered by the user
$lastUsername = $this->authenticationUtils->getLastUsername();
return $this->render(
'homepage.html.twig',
[
'form' => $form->createView(),
'last_username' => $lastUsername, 'error' => $error,
'message' => $message ?? null
]
);
}
// #[Route('/', name: 'home')]
// public function homepage(Request $request): Response
// {
// if ($this->getUser()) {
// return $this->redirectToRoute('app_dashboard');
// }
//
// $message = $this->entityManager->getRepository(HomeText::class)->findOneBy(['active' => 1]);
//
// $form = $this->createForm(UserFormType::class);
// $form->handleRequest($request);
//
// if ($form->isSubmitted() && $form->isValid()) {
// $error = $this->authenticationUtils->getLastAuthenticationError();
// // last username entered by the user
// $lastUsername = $this->authenticationUtils->getLastUsername();
//
// $data = $form->getData();
//
// // On regarde si le numéro de tel est déjà utilisé
// $user = $this->entityManager->getRepository(User::class)->findOneBy(['phone' => $data->getPhone()]);
// if ($user) {
// return $this->render(
// 'homepage.html.twig',
// [
// 'form' => $form->createView(),
// 'last_username' => $lastUsername, 'error' => $error
// ]
// );
// }
//
// $twilio = new Client(
// $this->parameterBag->get('TWILIO_ACCOUNT_SID'),
// $this->parameterBag->get('TWILIO_AUTH_TOKEN')
// );
//
// try {
// $verification = $twilio->verify->v2->services("VA84df449d299b2e1bd2a28ac81e79d5e9")
// ->verifications
// ->create("+33" . substr($data->getPhone(), 1), "sms");
// } catch (Throwable $th) {
// return $this->render(
// 'homepage.html.twig',
// [
// 'form' => $form->createView(),
// 'last_username' => $lastUsername,
// 'registerError' => "Numéro de téléphone invalide",
// 'error' => $error
// ]
// );
// }
//
// if ($verification->status == 'pending') {
// $user_params = [
// 'firstname' => $data->getFirstname(),
// 'lastname' => $data->getLastname(),
// 'email' => $data->getEmail(),
// 'country_code' => $request->request->get('countryCode'),
// 'password' => $request->request->get('password'),
// 'phone_number' => "+33" . substr($data->getPhone(), 1),
// ];
//
// $session = new Session();
// $session->set('user', $user_params);
// }
//
// return $this->render('security/verify.html.twig', [
// 'phone' => $data->getPhone()
// ]);
// }
//
// $error = $this->authenticationUtils->getLastAuthenticationError();
// // last username entered by the user
// $lastUsername = $this->authenticationUtils->getLastUsername();
//
// return $this->render(
// 'homepage.html.twig',
// [
// 'form' => $form->createView(),
// 'last_username' => $lastUsername, 'error' => $error,
// 'message' => $message ?? null
// ]
// );
// }
#[Route('/profile', name: 'app_dashboard')]
public function profile(): Response
{
if (!$this->getUser()) {
return $this->redirectToRoute('home');
}
$user = $this->entityManager->getRepository(User::class)->find($this->getUser());
if ($user->getProgress() != null) {
if ($user->getProgress()->getId() == 1) {
return $this->redirectToRoute('app_infos');
}
if ($user->getProgress()->getId() == 2) {
return $this->redirectToRoute('app_pj');
}
if ($user->getProgress()->getId() == 3) {
return $this->redirectToRoute('app_qcm');
}
if ($user->getProgress()->getId() == 4) {
return $this->redirectToRoute('wait_validation_step_1');
}
if ($user->getProgress()->getId() == 5) {
return $this->redirectToRoute('appointment_step');
}
if ($user->getProgress()->getId() == 6) {
return $this->redirectToRoute('search_company');
}
}
$training = $this->entityManager->getRepository(Training::class)->findBy([], ['name' => 'ASC']);
return $this->render(
'user/board.html.twig',
[
'user' => $user,
'training' => $training
]
);
}
#[Route('/search_training', name: 'search_training')]
public function searchTraining(Request $request)
{
$level = $request->request->get('name');
$training = $this->entityManager->getRepository(Training::class)->findBy(
['level' => $level,'enabled' => true],
['name' => 'ASC']
);
return $this->render('/user/modals/list-trainings.html.twig', [
'trainings' => $training,
'level' => $level
]);
}
#[Route('/mentions-legales', name: 'legal_notice')]
public function legalNotice()
{
return $this->render('default/legal_notice.html.twig');
}
#[Route('/bookcv/addCount/{user}/{offer}', name: 'count_user_book_cv')]
public function addCountBookCV($user, $offer): RedirectResponse
{
$userCompleteProfile = $this->entityManager->getRepository(User::class)->findOneBy(['id' => $user]);
foreach ($userCompleteProfile->getBookCvs() as $userBook) {
if ($userBook->getOffer()->getId() == (int) $offer) {
$bookCV = $userBook;
if ($bookCV->getCountCv() == null) {
$bookCV->setCountCv(1);
} else {
$bookCV->setCountCv($bookCV->getCountCv() + 1);
}
$this->entityManager->persist($bookCV);
$this->entityManager->flush();
}
}
return $this->redirectToRoute('book_cv', ['id' => $offer]);
}
#[Route('/application/addCount/{appli}', name: 'count_user_app_show_cv')]
public function addCountAppCV($appli)
{
$application = $this->entityManager->getRepository(Application::class)->findOneBy(['id' => (int)$appli]);
if ($application->getCountCv() == null) {
$application->setCountCv(1);
} else {
$application->setCountCv($application->getCountCv() + 1);
}
$this->entityManager->persist($application);
$this->entityManager->flush();
return $this->redirectToRoute('book_cv', ['id' => $application->getOffer()->getId()]);
}
#[Route('/engagement/{id}', name: 'show_commitment')]
public function adminShowStudent($id)
{
$user = $this->entityManager->getRepository(User::class)->findOneBy(["id" => $id]);
$commitments = $this->entityManager->getRepository(Commitment::class)->findOneBy(['user' => $user]);
return $this->redirectToRoute('show_admin_student_public', ['token' => $commitments->getToken()]);
}
#[Route('/send/luminjo', name:'send_luminjo_api', methods:['POST'])]
public function sendToLuminjo(Request $request, LuminjoService $luminjoService): JsonResponse
{
$data = $request->request;
$recaptcha_url = 'https://www.google.com/recaptcha/api/siteverify'; // URL to the reCAPTCHA server
$recaptcha_secret = '6Lf982YpAAAAADyzWvftfXuFWHEJHPUHbqmSs54D'; // Secret key
$recaptcha_response = $data->get('token'); // Response from reCAPTCHA server, added to the form during processing
$recaptcha = file_get_contents($recaptcha_url.'?secret='.$recaptcha_secret.'&response='.$recaptcha_response); // Send request to the server
$recaptcha = json_decode($recaptcha); // Decode the JSON response
if($recaptcha->success == true && $recaptcha->score >= 0.5 && $recaptcha->action == "submit"){ // If the response is valid
// run email send routine
$ticket = $luminjoService->createTicket(
$data->get('email'),
$data->get('name'),
$data->get('subject'),
$data->get('message'),
'',
""
);
return new JsonResponse($ticket);
}else{
return new JsonResponse("Erreur lors de l'envoi du message");
}
}
#[Route('/mon-compte', name: 'show_account')]
public function showAccount()
{
if (!$this->getUser()) {
return $this->redirectToRoute('home');
}
$user = $this->getUser();
return $this->render('user/profile.html.twig', [ 'user' => $user]);
}
#[Route('/mise-a-jour', name: 'app_wait')]
public function wait()
{
return $this->render('wait.html.twig');
}
public function searchForType($id, $array)
{
foreach ($array as $val) {
if ($val->getType() === $id) {
return $val;
}
}
return null;
}
}