src/Controller/RegistrationController.php line 76

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\Notification;
  4. use App\Entity\ShareType;
  5. use App\Entity\User;
  6. use App\Entity\Option;
  7. use App\Entity\BuyingGroup;
  8. use App\Entity\PaymentMethod;
  9. use App\Form\RegistrationFormType;
  10. use App\Form\RegistrationSimpleFormType;
  11. use App\Form\RegistrationRrssFormType;
  12. use App\Repository\ShareTypeRepository;
  13. use App\Service\RecaptchaValidatorService;
  14. use App\Repository\UserRepository;
  15. use App\Repository\OptionRepository;
  16. use App\Repository\BuyingGroupRepository;
  17. use App\Service\NotificationService;
  18. use DateTime;
  19. use Doctrine\ORM\EntityManagerInterface;
  20. use Psr\Log\LoggerInterface;
  21. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  22. use Symfony\Component\HttpFoundation\Request;
  23. use Symfony\Component\HttpFoundation\Response;
  24. use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
  25. use Symfony\Component\Routing\Annotation\Route;
  26. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  27. use Symfony\Component\Security\Http\Authentication\UserAuthenticatorInterface;
  28. use Symfony\Component\Security\Http\Authenticator\AuthenticatorInterface;
  29. class RegistrationController extends AbstractController
  30. {
  31.     private $recaptchaValidatorSesrvice;
  32.     private $logger;
  33.     private UserAuthenticatorInterface $userAuthenticatorInterface;
  34.     private AuthenticatorInterface $authenticatorInterface;
  35.     private NotificationService $notificationService;
  36.     
  37.     public function __construct(
  38.         LoggerInterface $logger,
  39.         UserAuthenticatorInterface $userAuthenticatorInterface,
  40.         AuthenticatorInterface $authenticatorInterface,
  41.         NotificationService $notificationService,
  42.         RecaptchaValidatorService $recaptchaValidatorService
  43.     ) {
  44.         $this->logger $logger;
  45.         $this->userAuthenticatorInterface $userAuthenticatorInterface;
  46.         $this->authenticatorInterface $authenticatorInterface;
  47.         $this->notificationService $notificationService;
  48.          $this->recaptchaValidatorService $recaptchaValidatorService;
  49.     }
  50.     #[Route('/register'name'app_register'methods: ['GET''POST'])]
  51.     public function register(
  52.         Request $request
  53.         UserPasswordHasherInterface $userPasswordHasher
  54.         EntityManagerInterface $entityManager
  55.         UrlGeneratorInterface $urlGenerator,
  56.         ShareTypeRepository $shareTypeRepository,
  57.         OptionRepository $optionRepository,
  58.         BuyingGroupRepository $groupRepo
  59.     ): Response
  60.     {
  61.         $this->logger->debug(__METHOD__);
  62.         if ($this->isGranted(User::ROLE_USER)) {
  63.             return $this->redirectToRoute('app_product_index');
  64.         }
  65.         $allShareType $shareTypeRepository->getByKey(ShareType::ALL);
  66.         $user = new User();
  67.         $user->setSex(null);
  68.         if ($request->getSession()->has('_authentication.user')) {
  69.             $user $request->getSession()->get('_authentication.user');
  70.             if($user == true){
  71.                 $user->setPassword($userPasswordHasher->hashpassword($userrandom_bytes(10)));
  72.                 if ($allShareType) {
  73.                     $user->setShareShoppingType($allShareType);
  74.                     $user->setShareFavouriteProductsType($allShareType);
  75.                 }
  76.                 $entityManager->persist($user);
  77.                 $entityManager->flush();
  78.                 $request->getSession()->remove('_authentication.user');
  79.                 if ($this->userAuthenticatorInterface->authenticateUser($user$this->authenticatorInterface$request)) {
  80.                     return $this->redirectToRoute('interests_choose');
  81.                 }
  82.             }
  83.         }  
  84.         if($user != null){
  85.             if($user->isVerified() == true){
  86.                 return $this->redirectToRoute('interests_choose');
  87.             }
  88.         }
  89.         if ($allShareType) {
  90.             $user->setShareShoppingType($allShareType);
  91.             $user->setShareFavouriteProductsType($allShareType);
  92.         }
  93.         // Simple form registration value 1=active 0=disabled
  94.         $simple_form_registration $optionRepository->getValueByKey(Option::OPTION_SIMPLE_REGISTRATION_FORM0);
  95.         $form $this->createForm(RegistrationFormType::class, $user);
  96.         if($simple_form_registration == "1"){
  97.             $form $this->createForm(RegistrationSimpleFormType::class, $user);
  98.         }
  99.         
  100.         $form->handleRequest($request);
  101.         if ($form->isSubmitted() && $form->isValid()) {
  102.             // default payment method
  103.             $defaultPaymentMethod $entityManager->getRepository(PaymentMethod::class)->find(1); // cash payment 
  104.             $user->setPaymentMethod($defaultPaymentMethod);
  105.             $registeredUser $entityManager->getRepository(User::class)->findOneBy(['email' => $user->getEmail()]);
  106.             if($registeredUser) {
  107.                 $this->addFlash('error''El correo ya esta registrado en triwu_u');
  108.                 return $this->redirectToRoute('app_register');
  109.             }
  110.             //recaptcha v3 google
  111.             $recaptchaToken $form->get('recaptchaToken')->getData();
  112.             $ip $request->getClientIp();
  113.             if (!$this->recaptchaValidatorService->validate($recaptchaToken$ip)) {
  114.                 $this->addFlash('error''Invalid reCAPTCHA');
  115.                 return $this->redirectToRoute('app_register');
  116.             }
  117.             // encode the plain password
  118.             $user->setPassword(
  119.                 $userPasswordHasher->hashPassword(
  120.                     $user,
  121.                     $form->get('plainPassword')->getData()
  122.                 )
  123.             );
  124.             if ($user->getAcceptedCommunications()) {
  125.                 $now = new DateTime();
  126.                 $user->setAcceptedCommunications($now);
  127.             }
  128.             $user->setNotificationWhatsapp($user->isNotificationsActive());
  129.             //Automatically mark new users as verified, if you want send a verification email setIsVerified(false) and use this
  130.             // $this->userService->genToken($user);
  131.             // return $this->redirectToRoute('app_register_check_email');
  132.             $user->setIsVerified(true);
  133.             $entityManager->persist($user);
  134.             $entityManager->flush();
  135.             // assign automatically user to default group ametzola
  136.             $group $groupRepo->find(28);
  137.             if($group){
  138. /*
  139.                 $whitelistedDomains = preg_replace('/\s+/', '', $group->getWhitelistedDomains());
  140.                 if ($whitelistedDomains) {
  141.                     $mailSuffix = $user->getEmail() ? explode('@', $user->getEmail())[1] : null;
  142.                     if (!$mailSuffix || !in_array($mailSuffix, explode(',', $whitelistedDomains))) {
  143.                         $response = new JsonResponse(
  144.                             $this->translator->trans('groups.whitelisted-error', ['whitelisted' => $whitelistedDomains]),
  145.                             Response::HTTP_BAD_REQUEST
  146.                         );
  147.                         $response->setEncodingOptions(JSON_UNESCAPED_UNICODE);
  148.                         return $response;
  149.                     }
  150.                 }
  151. */
  152.                 if (!$group->getMembers()->contains($user)) {
  153.                     $group->addMember($user);
  154.                 }
  155.                 $groupRepo->save($grouptrue);
  156.             }
  157.             //Send new user welcome email
  158.             $this->notificationService->sendNotification(Notification::USER_REGISTERED$user->getId(), [
  159.                 '%fullname%' => $user->getFullname(),
  160.                 '%triwuuUrl%' => stripslashes($urlGenerator->generate('app_product_index', [], UrlGeneratorInterface::ABSOLUTE_URL)),
  161.                 '%signedUrl%' => stripslashes($urlGenerator->generate('app_product_index', [], UrlGeneratorInterface::ABSOLUTE_URL)),
  162.             ], []);
  163.             if ($this->userAuthenticatorInterface->authenticateUser($user$this->authenticatorInterface$request)) {
  164.                 if($simple_form_registration == "1"){
  165.                     return $this->redirectToRoute('app_index', ['registered' => true], Response::HTTP_SEE_OTHER);
  166.                 }
  167.                 return $this->redirectToRoute('interests_choose',['registered' => true]);
  168.                 
  169.             } else {
  170.                 $this->logger->error("Failed to userAuthenticatorInterface->authenticateUser() after registration with email " $user->getEmail());
  171.                 $this->addFlash('error''Algo no fue como se esperaba, inténtelo de nuevo más tarde.');
  172.                 return $this->redirectToRoute('app_register');
  173.             }
  174.         }
  175.         if($simple_form_registration == "1"){
  176.             return $this->renderForm('registration/register_simple.html.twig', [
  177.                 'registrationForm' => $form,
  178.                 'site_key' => $_ENV['GOOGLE_RECAPTCHA_SITE_KEY'],
  179.             ]);
  180.         }
  181.         return $this->renderForm('registration/register.html.twig', [
  182.             'registrationForm' => $form,
  183.             'site_key' => $_ENV['GOOGLE_RECAPTCHA_SITE_KEY'],
  184.         ]);
  185.     }
  186.     #[Route('/check-register-rrss'name'app_check_register_rrss')]
  187.     public function checkRegisterRrss(
  188.         Request $request
  189.         UserPasswordHasherInterface $userPasswordHasher
  190.         EntityManagerInterface $entityManager
  191.         UrlGeneratorInterface $urlGenerator
  192.     ): Response
  193.     {
  194.         $this->logger->debug(__METHOD__);
  195.         if ($this->isGranted(User::ROLE_USER)) {
  196.             return $this->redirectToRoute('app_product_index');
  197.         }
  198.         if (!$request->getSession()->has('_authentication.user')) {
  199.             return $this->redirectToRoute('app_login_rrss');
  200.         }
  201.         $user $request->getSession()->get('_authentication.user');
  202.         if (!$user) {
  203.             return $this->redirectToRoute('app_register');
  204.         }
  205.         //If user data is OK, we save and redirect
  206.         if (
  207.             $user->getEmail() &&
  208.             $user->getName() &&
  209.             $user->getSurname() &&
  210.             $user->getBirthday()
  211.         ) {
  212.             $user->setPassword($userPasswordHasher->hashpassword($userrandom_bytes(10)));
  213.             $entityManager->persist($user);
  214.             $entityManager->flush();
  215.             //Send new user welcome email
  216.             $this->notificationService->sendNotification(Notification::USER_REGISTERED$user->getId(), [
  217.                 '%fullname%' => $user->getFullname(),
  218.                 '%triwuuUrl%' => $urlGenerator->generate('app_product_index', [], UrlGeneratorInterface::ABSOLUTE_URL),
  219.             ], []);
  220.             $request->getSession()->remove('_authentication.user');
  221.             $request->getSession()->remove('_authentication.unchanged_user');
  222.             if ($this->userAuthenticatorInterface->authenticateUser($user$this->authenticatorInterface$request)) {
  223.                 return $this->redirectToRoute('interests_choose');
  224.             }
  225.         }
  226.         // If not, show registrationForm with the fields we want to complete. 
  227.         // We need to save the original state of the user, because the entity is not persited yet,
  228.         // so we cant use the entityManager UnitOfWork
  229.         if (
  230.             !$request->getSession()->has('_authentication.unchanged_user') ||
  231.             !$request->getSession()->get('_authentication.unchanged_user')
  232.         ) {
  233.             $request->getSession()->set('_authentication.unchanged_user', clone $user);
  234.         }
  235.         
  236.         return $this->redirectToRoute('app_register_rrss');
  237.     }
  238.     #[Route('/register-rrss'name'app_register_rrss')]
  239.     public function rrssRegister(
  240.         Request $request
  241.         UserPasswordHasherInterface $userPasswordHasher
  242.         EntityManagerInterface $entityManager
  243.         UrlGeneratorInterface $urlGenerator,
  244.         ShareTypeRepository $shareTypeRepository,
  245.         BuyingGroupRepository $groupRepo
  246.     ): Response
  247.     {
  248.         $this->logger->debug(__METHOD__);
  249.         if ($this->isGranted(User::ROLE_USER)) {
  250.             return $this->redirectToRoute('app_product_index');
  251.         }
  252.         if (!$request->getSession()->has('_authentication.user')) {
  253.             return $this->redirectToRoute('app_login_rrss');
  254.         }
  255.         $user $request->getSession()->get('_authentication.user');
  256.         if (!$user) {
  257.             return $this->redirectToRoute('app_register');
  258.         }
  259.         // If not, show registrationForm with the fields we want to complete. 
  260.         // We need to save the original state of the user, because the entity is not persited yet,
  261.         // so we cant use the entityManager UnitOfWork
  262.         if (
  263.             !$request->getSession()->has('_authentication.unchanged_user') ||
  264.             !$request->getSession()->get('_authentication.unchanged_user')
  265.         ) {
  266.             $request->getSession()->set('_authentication.unchanged_user', clone $user);
  267.         }
  268.         $unchangedUser $request->getSession()->get('_authentication.unchanged_user');
  269.         $form $this->createForm(RegistrationRrssFormType::class, $user, [
  270.             'unchangedUser' => $unchangedUser
  271.         ]);
  272.         $form->handleRequest($request);
  273.         if ($form->isSubmitted() && $form->isValid()) {
  274.              // default payment method
  275.             $defaultPaymentMethod $entityManager->getRepository(PaymentMethod::class)->find(1); // cash payment 
  276.             $user->setPaymentMethod($defaultPaymentMethod);
  277.             $user->setPassword($userPasswordHasher->hashpassword($userrandom_bytes(10)));
  278.             $user->setNotificationWhatsapp(true);
  279.             $user->setIsNotificationsActive(true);
  280.             $allShareType $shareTypeRepository->getByKey(ShareType::ALL);
  281.             if ($allShareType) {
  282.                 $user->setShareShoppingType($allShareType);
  283.                 $user->setShareFavouriteProductsType($allShareType);
  284.             }
  285.             $entityManager->persist($user);
  286.             $entityManager->flush();
  287.             // assign automatically user to default group ametzola
  288.             $group $groupRepo->find(28);
  289.             if($group){
  290. /*
  291.                 $whitelistedDomains = preg_replace('/\s+/', '', $group->getWhitelistedDomains());
  292.                 if ($whitelistedDomains) {
  293.                     $mailSuffix = $user->getEmail() ? explode('@', $user->getEmail())[1] : null;
  294.                     if (!$mailSuffix || !in_array($mailSuffix, explode(',', $whitelistedDomains))) {
  295.                         $response = new JsonResponse(
  296.                             $this->translator->trans('groups.whitelisted-error', ['whitelisted' => $whitelistedDomains]),
  297.                             Response::HTTP_BAD_REQUEST
  298.                         );
  299.                         $response->setEncodingOptions(JSON_UNESCAPED_UNICODE);
  300.                         return $response;
  301.                     }
  302.                 }
  303. */
  304.                 if (!$group->getMembers()->contains($user)) {
  305.                     $group->addMember($user);
  306.                 }
  307.                 $groupRepo->save($grouptrue);
  308.             }
  309.             //Send new user welcome email
  310.             $this->notificationService->sendNotification(Notification::USER_REGISTERED$user->getId(), [
  311.                 '%fullname%' => $user->getFullname(),
  312.                 '%triwuuUrl%' => $urlGenerator->generate('app_product_index', [], UrlGeneratorInterface::ABSOLUTE_URL),
  313.             ], []);
  314.             $request->getSession()->remove('_authentication.user');
  315.             $request->getSession()->remove('_authentication.unchanged_user');
  316.             if ($this->userAuthenticatorInterface->authenticateUser($user$this->authenticatorInterface$request)) {
  317.                 return $this->redirectToRoute('interests_choose');
  318.             }
  319.         }
  320.         return $this->render('registration/register_rrss.html.twig', [
  321.             'registrationForm' => $form->createView()
  322.         ]);
  323.     }
  324.     #[Route('/register/check-email'name'app_register_check_email')]
  325.     public function checkEmail(Request $request): Response
  326.     {
  327.         $this->logger->debug(__METHOD__);
  328.         return $this->render('registration/check_email.html.twig', []);
  329.     }
  330.     #[Route('/verify/email'name'app_verify_email')]
  331.     public function verifyUserEmail(Request $requestEntityManagerInterface $entityManagerUserRepository $userRepository): Response
  332.     {
  333.         $this->logger->debug(__METHOD__);
  334.         // validate email confirmation link, sets User::isVerified=true and
  335.         // persists
  336.         $token $request->query->get('token');
  337.         if($token != null){
  338.             $user $userRepository->findUserByEmailToken($token);
  339.             if($user != null && $user->isVerified() == false && new DateTime() < $user->getEmailTokenExpiresAt()){
  340.                 $user->setIsVerified(true);
  341.                 $entityManager->persist($user);
  342.                 $entityManager->flush();
  343.                 if ($this->userAuthenticatorInterface->authenticateUser($user$this->authenticatorInterface$request)) {
  344.                     return $this->redirectToRoute('interests_choose');
  345.                 }
  346.             }
  347.         }
  348.         return $this->redirectToRoute('app_index');
  349.     }
  350. }