src/Controller/Admin/RegistrationController.php line 51

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Admin;
  3. use App\Component\Order\OrderFactory;
  4. use App\Component\Product\Repository\ProductRepository;
  5. use App\Entity\User;
  6. use App\Form\ClearCartType;
  7. use App\Form\SetDiscountType;
  8. use App\Form\SetPaymentType;
  9. use App\Form\SetShipmentType;
  10. use App\Form\UserType;
  11. use App\Service\SaferCrypto;
  12. use App\Service\SmsService;
  13. use App\Service\EmailService;
  14. use App\Constants\Emails;
  15. use App\Security\LoginFormAuthenticator;
  16. use Symfony\Component\HttpFoundation\JsonResponse;
  17. use Doctrine\ORM\EntityManagerInterface;
  18. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  19. use Symfony\Bundle\FrameworkBundle\Translation\Translator;
  20. use Symfony\Component\HttpFoundation\Request;
  21. use Symfony\Component\Routing\Annotation\Route;
  22. use Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface;
  23. use Symfony\Component\Security\Guard\GuardAuthenticatorHandler;
  24. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  25. use Symfony\Component\Translation\TranslatorInterface;
  26. use Symfony\Component\HttpFoundation\Response;
  27. class RegistrationController extends AbstractController
  28. {
  29.     private $passwordEncoder;
  30.      /**
  31.      * @var TranslatorInterface
  32.      */
  33.     private $translator;
  34.     public function __construct(UserPasswordEncoderInterface $passwordEncoderTranslatorInterface $translator)
  35.     {
  36.         $this->passwordEncoder $passwordEncoder;
  37.         $this->translator $translator;
  38.     }
  39.     /**
  40.      * @Route({
  41.      *     "fr": "/registration",
  42.      *     "en": "/registration/en"
  43.      *     }, name="registration")
  44.      */
  45.     public function index(SmsService $smsProductRepository $productRepository,EmailService $emailServiceRequest $requestOrderFactory $orderAuthenticationUtils $authenticationUtils,  GuardAuthenticatorHandler $guardHandler)
  46.     {
  47.         if ($this->getUser() instanceof User) {
  48.             // redirect
  49.             return $this->redirectToRoute('user_account');
  50.         }
  51.         $user = new User();
  52.         $products $productRepository->findAll();
  53.         $clearForm $this->createForm(ClearCartType::class, $order->getCurrent());
  54.         $setPaymentForm $this->createForm(SetPaymentType::class, $order->getCurrent());
  55.         $setShipmentForm $this->createForm(SetShipmentType::class, $order->getCurrent());
  56.         $setDiscountForm $this->createForm(SetDiscountType::class, $order->getCurrent());
  57.         $error $authenticationUtils->getLastAuthenticationError();
  58.         $lastUsername $authenticationUtils->getLastUsername();
  59.         $form $this->createForm(UserType::class, $user);
  60.         $form->handleRequest($request);
  61.         if ($form->isSubmitted() && $form->isValid()){
  62.             $message1 rand(1,1000000);
  63.            // $message1 = 123456;
  64.         
  65.             $message "Bonjour ";
  66.             $message .="Votre code de Verification est ".$message1." ";
  67.             $message .="Expire dans 10 minutes";
  68.             $message .="Team YeYeTo";
  69.             
  70.             $user->setPassword($this->passwordEncoder->encodePassword($user$user->getPassword()));
  71.           
  72.             $sms->sendSmsRegister($message$form->getData()->getMobile("mobile"), "https://yeyeto.com");
  73.             $user->setRoles(['ROLE_USER']);
  74.      
  75.             $encoded =  sha1($message1);
  76.             $user->setVerificationCode($encoded);
  77.             $date = (new \DateTime('now'))->format("Y-m-d H:i:s");
  78.             $email $user->getEmail();
  79.             $hash sha1($email $date);
  80.             $user->setActivationCode($hash);
  81.             $user->setCreatedAm($date);
  82.             $user->setVerifycodeTime($date);
  83.             $user->setCountVerify(1);
  84.             $user->setBookingCode("");
  85.             $user->setBookingcodeTime("");
  86.             // Save
  87.             $em $this->getDoctrine()->getManager();
  88.             $em->persist($user);
  89.             $em->flush(); 
  90.             $this->addFlash('success'"Félicitations votre compte a été crée avec success!");  
  91.           //  $this->emailService->sendMail($email, Emails::REGISTER, ["name" => $user->getFullUserName()]);
  92.        
  93.             return $this->redirectToRoute("phone_verify",["id"=>$hash]);
  94.         
  95.         }else if($form->isSubmitted()){
  96.             $this->addFlash('error'"Désolé! votre compte ne peut être crée. Vérifier vos coordonnées...");
  97.          }
  98.          
  99.         return $this->render('registration/index.html.twig', [
  100.             'last_username' => $lastUsername,
  101.             'error' => $error,
  102.             'form' => $form->createView(),
  103.             'itemsInCart' => $order->getCurrent()->getItemsTotal(),
  104.             'products' => $products,
  105.             'order' => $order,
  106.             'clearForm' => $clearForm->createView(),
  107.             'setPaymentForm' => $setPaymentForm->createView(),
  108.             'setShipmentForm' => $setShipmentForm->createView(),
  109.             'setDiscountForm' => $setDiscountForm->createView(),
  110.             'order_cat' => $order->getCurrent()->getCart_cat(),
  111.         ]);
  112.     }
  113.     /**
  114.      * @Route({
  115.      *     "fr": "/phone-verify/{id}",
  116.      *     "en": "/phone-verify/{id}/en"
  117.      *     }, name="phone_verify")
  118.      */
  119.     public function verify(Request $request$id,\Swift_Mailer $mailerOrderFactory $orderAuthenticationUtils $authenticationUtilsLoginFormAuthenticator $authenticatorGuardAuthenticatorHandler $guardHandler)
  120.     {
  121.         // get the login error if there is one
  122.         $error $authenticationUtils->getLastAuthenticationError();
  123.         // last username entered by the user
  124.         $lastUsername $authenticationUtils->getLastUsername();
  125.       
  126.         /**
  127.          * @var User $user
  128.          */
  129.         $user $this->getDoctrine()->getManager()->getRepository(User::class)->findOneBy(["activationCode" => $id]);        
  130.             if ($request->getMethod() == 'POST') {
  131.                 $selectedTime $user->getVerifycodeTime();
  132.                 $endTime strtotime("+10 minutes"strtotime($selectedTime));
  133.                 $endTime2 time();
  134.                 $d1 = new \DateTime(date('Y-m-d H:i:s'$endTime));
  135.                 $d2 = new \DateTime(date('Y-m-d H:i:s'$endTime2));
  136.                 $message2 trim($request->request->get("first")."".$request->request->get("second")."".$request->request->get("third")."".$request->request->get("fourth")."".$request->request->get("fifth")."".$request->request->get("sixth"));
  137.                             
  138.                 if (($user->getVerificationCode() == sha1($message2)) == true) {
  139.    
  140.                     if (($d1 $d2) == true) {
  141.                         $date = (new \DateTime('now'))->format("Y-m-d H:i:s");
  142.                         $email $user->getEmail();
  143.                         $hash sha1($email $date);
  144.                         $user->setActivationCode($hash);
  145.                    
  146.                         //$publicDirectory = $this->getParameter('kernel.project_dir') . '/public/invoices/';
  147.                        
  148.                        // $pdfFilepath = $publicDirectory . '/invoice_1b24968e-5e0a-11ed-8a72-ca02b436025f.pdf';
  149.                         $message = (new \Swift_Message('Confirmation de votre compte chez YeYeTo!'))
  150.                         ->setFrom('info@yeyeto.com')
  151.                         ->setTo($email)
  152.                         ->setBody(
  153.                             $this->renderView(
  154.                                 // templates/emails/registration.html.twig
  155.                                 'email/register.html.twig',
  156.                                 ['name' => $user->getFullUserName(),
  157.                                  'code'=> $hash]
  158.                             ),
  159.                             'text/html'
  160.                         );  //->attach(\Swift_Attachment::fromPath($pdfFilepath,"application/pdf"));
  161.                 
  162.                        $mailer->send($message);
  163.                        // $user->setIsActive(true);
  164.                         $this->getDoctrine()->getManager()->persist($user);
  165.                         $this->getDoctrine()->getManager()->flush();
  166.                       //  $this->successFlash(Messages::EMAIL_VERIFIED);
  167.                        // $this->addFlash('success', "Votre E-Mail a été vérifée! ");
  168.                         $this->addFlash('success',"Votre numéro de téléphone a été vérifée!");
  169.                         return $this->render('registration/email_verify.html.twig',["email"=>$user->getEmail()]);
  170.                         /*
  171.                         return $guardHandler->authenticateUserAndHandleSuccess(
  172.                             $user,
  173.                             $request,
  174.                             $authenticator,
  175.                             'main' // firewall name in security.yaml
  176.                         );   
  177.                         */
  178.                     }else{
  179.                         $user->setIsActive(false);
  180.                         $this->getDoctrine()->getManager()->persist($user);
  181.                         $this->getDoctrine()->getManager()->flush();
  182.                         $this->addFlash('error'"Le temps pour vérifier votre compte est expiré!");
  183.                     }
  184.                    
  185.                 } if(($user->getVerificationCode() == sha1($message2)) == false){
  186.                     $this->addFlash('error'"Votre Numéro de téléphone n'a pas été vérifée!");
  187.                 }
  188.             }
  189.         $clearForm $this->createForm(ClearCartType::class, $order->getCurrent());
  190.         $setPaymentForm $this->createForm(SetPaymentType::class, $order->getCurrent());
  191.         $setShipmentForm $this->createForm(SetShipmentType::class, $order->getCurrent());
  192.         $setDiscountForm $this->createForm(SetDiscountType::class, $order->getCurrent());
  193.         return $this->render('registration/verify.html.twig', [
  194.             'last_username' => $lastUsername,
  195.             'error' => $error,
  196.             'telephone'=>$user->getMobile(),    
  197.             'activativecode'=>$id,      
  198.             'order' => $order,
  199.             'clearForm' => $clearForm->createView(),
  200.             'setPaymentForm' => $setPaymentForm->createView(),
  201.             'setShipmentForm' => $setShipmentForm->createView(),
  202.             'setDiscountForm' => $setDiscountForm->createView(),
  203.             'itemsInCart' => $order->getCurrent()->getItemsTotal(),
  204.             'order_cat' => $order->getCurrent()->getCart_cat(),
  205.         ]);
  206.     }
  207.     /**
  208.      * @Route({
  209.      *     "fr": "/phone-verify-sms/{id}",
  210.      *     "en": "/phone-verify-sms/{id}/en"
  211.      *     }, name="phone_verify_sms")
  212.      * @param Request $request
  213.      * @return Response
  214.      */
  215.     public function indexSmsSend(Request $request,$idSmsService $sms)
  216.     {
  217.         $id $request->query->get("id");
  218.         /**
  219.          * @var User $user
  220.          */
  221.         $user $this->getDoctrine()->getManager()->getRepository(User::class)->findOneBy(["activationCode" => $id]);   
  222.         $em $this->getDoctrine()->getManager();
  223.          $message1 rand(1,1000000);
  224.          $message "Bonjour ";
  225.          $message .="Votre code de Verification est ".$message1." ";
  226.          $message .="Expire dans 10 minutes";
  227.          $message .="Team YeYeTo";
  228.         switch ($user->getCountVerify()){
  229.             case 1:
  230.                 $sms->sendSmsRegister($message$user->getMobile(), "https://yeyeto.com");
  231.                 $encoded =  sha1($message1);
  232.                 $user->setVerificationCode($encoded);
  233.                 $date = (new \DateTime('now'))->format("Y-m-d H:i:s");          
  234.                 $user->setVerifycodeTime($date);
  235.                 $user->setCountVerify(2);         
  236.                 $em->persist($user);
  237.                 $em->flush(); 
  238.                 return new JsonResponse(["output"=>1]);
  239.                 break;
  240.             case 2:
  241.                 
  242.                 $sms->sendSmsRegister($message$user->getMobile(), "https://yeyeto.com");
  243.                 $encoded =  sha1($message1);
  244.                 $user->setVerificationCode($encoded);
  245.                 $date = (new \DateTime('now'))->format("Y-m-d H:i:s");          
  246.                 $user->setVerifycodeTime($date);
  247.                 $user->setCountVerify(3);         
  248.                 $em->persist($user);
  249.                 $em->flush(); 
  250.                 return new JsonResponse(["output"=>2]);
  251.                 break;
  252.                  
  253.             default:
  254.                 return new JsonResponse(["output"=>3]);
  255.                 break;
  256.         }
  257.     }
  258.     /**
  259.      * @Route({
  260.      *     "fr": "/verifyAccount/{access_key}",
  261.      *     "en": "/verifyAccount/{access_key}/en"
  262.      * }, name="verify_account")
  263.      * @param Request $request
  264.      */
  265.     public function verifyAccount(AuthenticationUtils $authenticationUtils
  266.                 Request $request,
  267.                 LoginFormAuthenticator $authenticator
  268.                 GuardAuthenticatorHandler $guardHandler,$access_key) {
  269.            /** @var User $user */
  270.            $user $this->getDoctrine()
  271.            ->getRepository(User::class)
  272.            ->findOneBy(["activationCode" => $access_key]);
  273.   
  274.         if(!$user) throw $this->createNotFoundException("page-not-found");
  275.             $user->setIsActive(true);
  276.            $this->getDoctrine()->getManager()->persist($user);
  277.            $this->getDoctrine()->getManager()->flush();
  278.   
  279.         return $guardHandler->authenticateUserAndHandleSuccess(
  280.             $user,
  281.             $request,
  282.             $authenticator,
  283.             'main' // firewall name in security.yaml
  284.         );   
  285.   
  286.     }
  287.   
  288. }