<?php
namespace App\Controller\Admin;
use App\Component\Order\OrderFactory;
use App\Component\Product\Repository\ProductRepository;
use App\Entity\User;
use App\Form\ClearCartType;
use App\Form\SetDiscountType;
use App\Form\SetPaymentType;
use App\Form\SetShipmentType;
use App\Form\UserType;
use App\Service\SaferCrypto;
use App\Service\SmsService;
use App\Service\EmailService;
use App\Constants\Emails;
use App\Security\LoginFormAuthenticator;
use Symfony\Component\HttpFoundation\JsonResponse;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Bundle\FrameworkBundle\Translation\Translator;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface;
use Symfony\Component\Security\Guard\GuardAuthenticatorHandler;
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
use Symfony\Component\Translation\TranslatorInterface;
use Symfony\Component\HttpFoundation\Response;
class RegistrationController extends AbstractController
{
private $passwordEncoder;
/**
* @var TranslatorInterface
*/
private $translator;
public function __construct(UserPasswordEncoderInterface $passwordEncoder, TranslatorInterface $translator)
{
$this->passwordEncoder = $passwordEncoder;
$this->translator = $translator;
}
/**
* @Route({
* "fr": "/registration",
* "en": "/registration/en"
* }, name="registration")
*/
public function index(SmsService $sms, ProductRepository $productRepository,EmailService $emailService, Request $request, OrderFactory $order, AuthenticationUtils $authenticationUtils, GuardAuthenticatorHandler $guardHandler)
{
if ($this->getUser() instanceof User) {
// redirect
return $this->redirectToRoute('user_account');
}
$user = new User();
$products = $productRepository->findAll();
$clearForm = $this->createForm(ClearCartType::class, $order->getCurrent());
$setPaymentForm = $this->createForm(SetPaymentType::class, $order->getCurrent());
$setShipmentForm = $this->createForm(SetShipmentType::class, $order->getCurrent());
$setDiscountForm = $this->createForm(SetDiscountType::class, $order->getCurrent());
$error = $authenticationUtils->getLastAuthenticationError();
$lastUsername = $authenticationUtils->getLastUsername();
$form = $this->createForm(UserType::class, $user);
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()){
$message1 = rand(1,1000000);
// $message1 = 123456;
$message = "Bonjour ";
$message .="Votre code de Verification est ".$message1." ";
$message .="Expire dans 10 minutes";
$message .="Team YeYeTo";
$user->setPassword($this->passwordEncoder->encodePassword($user, $user->getPassword()));
$sms->sendSmsRegister($message, $form->getData()->getMobile("mobile"), "https://yeyeto.com");
$user->setRoles(['ROLE_USER']);
$encoded = sha1($message1);
$user->setVerificationCode($encoded);
$date = (new \DateTime('now'))->format("Y-m-d H:i:s");
$email = $user->getEmail();
$hash = sha1($email . $date);
$user->setActivationCode($hash);
$user->setCreatedAm($date);
$user->setVerifycodeTime($date);
$user->setCountVerify(1);
$user->setBookingCode("");
$user->setBookingcodeTime("");
// Save
$em = $this->getDoctrine()->getManager();
$em->persist($user);
$em->flush();
$this->addFlash('success', "Félicitations votre compte a été crée avec success!");
// $this->emailService->sendMail($email, Emails::REGISTER, ["name" => $user->getFullUserName()]);
return $this->redirectToRoute("phone_verify",["id"=>$hash]);
}else if($form->isSubmitted()){
$this->addFlash('error', "Désolé! votre compte ne peut être crée. Vérifier vos coordonnées...");
}
return $this->render('registration/index.html.twig', [
'last_username' => $lastUsername,
'error' => $error,
'form' => $form->createView(),
'itemsInCart' => $order->getCurrent()->getItemsTotal(),
'products' => $products,
'order' => $order,
'clearForm' => $clearForm->createView(),
'setPaymentForm' => $setPaymentForm->createView(),
'setShipmentForm' => $setShipmentForm->createView(),
'setDiscountForm' => $setDiscountForm->createView(),
'order_cat' => $order->getCurrent()->getCart_cat(),
]);
}
/**
* @Route({
* "fr": "/phone-verify/{id}",
* "en": "/phone-verify/{id}/en"
* }, name="phone_verify")
*/
public function verify(Request $request, $id,\Swift_Mailer $mailer, OrderFactory $order, AuthenticationUtils $authenticationUtils, LoginFormAuthenticator $authenticator, GuardAuthenticatorHandler $guardHandler)
{
// get the login error if there is one
$error = $authenticationUtils->getLastAuthenticationError();
// last username entered by the user
$lastUsername = $authenticationUtils->getLastUsername();
/**
* @var User $user
*/
$user = $this->getDoctrine()->getManager()->getRepository(User::class)->findOneBy(["activationCode" => $id]);
if ($request->getMethod() == 'POST') {
$selectedTime = $user->getVerifycodeTime();
$endTime = strtotime("+10 minutes", strtotime($selectedTime));
$endTime2 = time();
$d1 = new \DateTime(date('Y-m-d H:i:s', $endTime));
$d2 = new \DateTime(date('Y-m-d H:i:s', $endTime2));
$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"));
if (($user->getVerificationCode() == sha1($message2)) == true) {
if (($d1 > $d2) == true) {
$date = (new \DateTime('now'))->format("Y-m-d H:i:s");
$email = $user->getEmail();
$hash = sha1($email . $date);
$user->setActivationCode($hash);
//$publicDirectory = $this->getParameter('kernel.project_dir') . '/public/invoices/';
// $pdfFilepath = $publicDirectory . '/invoice_1b24968e-5e0a-11ed-8a72-ca02b436025f.pdf';
$message = (new \Swift_Message('Confirmation de votre compte chez YeYeTo!'))
->setFrom('info@yeyeto.com')
->setTo($email)
->setBody(
$this->renderView(
// templates/emails/registration.html.twig
'email/register.html.twig',
['name' => $user->getFullUserName(),
'code'=> $hash]
),
'text/html'
); //->attach(\Swift_Attachment::fromPath($pdfFilepath,"application/pdf"));
$mailer->send($message);
// $user->setIsActive(true);
$this->getDoctrine()->getManager()->persist($user);
$this->getDoctrine()->getManager()->flush();
// $this->successFlash(Messages::EMAIL_VERIFIED);
// $this->addFlash('success', "Votre E-Mail a été vérifée! ");
$this->addFlash('success',"Votre numéro de téléphone a été vérifée!");
return $this->render('registration/email_verify.html.twig',["email"=>$user->getEmail()]);
/*
return $guardHandler->authenticateUserAndHandleSuccess(
$user,
$request,
$authenticator,
'main' // firewall name in security.yaml
);
*/
}else{
$user->setIsActive(false);
$this->getDoctrine()->getManager()->persist($user);
$this->getDoctrine()->getManager()->flush();
$this->addFlash('error', "Le temps pour vérifier votre compte est expiré!");
}
} if(($user->getVerificationCode() == sha1($message2)) == false){
$this->addFlash('error', "Votre Numéro de téléphone n'a pas été vérifée!");
}
}
$clearForm = $this->createForm(ClearCartType::class, $order->getCurrent());
$setPaymentForm = $this->createForm(SetPaymentType::class, $order->getCurrent());
$setShipmentForm = $this->createForm(SetShipmentType::class, $order->getCurrent());
$setDiscountForm = $this->createForm(SetDiscountType::class, $order->getCurrent());
return $this->render('registration/verify.html.twig', [
'last_username' => $lastUsername,
'error' => $error,
'telephone'=>$user->getMobile(),
'activativecode'=>$id,
'order' => $order,
'clearForm' => $clearForm->createView(),
'setPaymentForm' => $setPaymentForm->createView(),
'setShipmentForm' => $setShipmentForm->createView(),
'setDiscountForm' => $setDiscountForm->createView(),
'itemsInCart' => $order->getCurrent()->getItemsTotal(),
'order_cat' => $order->getCurrent()->getCart_cat(),
]);
}
/**
* @Route({
* "fr": "/phone-verify-sms/{id}",
* "en": "/phone-verify-sms/{id}/en"
* }, name="phone_verify_sms")
* @param Request $request
* @return Response
*/
public function indexSmsSend(Request $request,$id, SmsService $sms)
{
$id = $request->query->get("id");
/**
* @var User $user
*/
$user = $this->getDoctrine()->getManager()->getRepository(User::class)->findOneBy(["activationCode" => $id]);
$em = $this->getDoctrine()->getManager();
$message1 = rand(1,1000000);
$message = "Bonjour ";
$message .="Votre code de Verification est ".$message1." ";
$message .="Expire dans 10 minutes";
$message .="Team YeYeTo";
switch ($user->getCountVerify()){
case 1:
$sms->sendSmsRegister($message, $user->getMobile(), "https://yeyeto.com");
$encoded = sha1($message1);
$user->setVerificationCode($encoded);
$date = (new \DateTime('now'))->format("Y-m-d H:i:s");
$user->setVerifycodeTime($date);
$user->setCountVerify(2);
$em->persist($user);
$em->flush();
return new JsonResponse(["output"=>1]);
break;
case 2:
$sms->sendSmsRegister($message, $user->getMobile(), "https://yeyeto.com");
$encoded = sha1($message1);
$user->setVerificationCode($encoded);
$date = (new \DateTime('now'))->format("Y-m-d H:i:s");
$user->setVerifycodeTime($date);
$user->setCountVerify(3);
$em->persist($user);
$em->flush();
return new JsonResponse(["output"=>2]);
break;
default:
return new JsonResponse(["output"=>3]);
break;
}
}
/**
* @Route({
* "fr": "/verifyAccount/{access_key}",
* "en": "/verifyAccount/{access_key}/en"
* }, name="verify_account")
* @param Request $request
*/
public function verifyAccount(AuthenticationUtils $authenticationUtils,
Request $request,
LoginFormAuthenticator $authenticator,
GuardAuthenticatorHandler $guardHandler,$access_key) {
/** @var User $user */
$user = $this->getDoctrine()
->getRepository(User::class)
->findOneBy(["activationCode" => $access_key]);
if(!$user) throw $this->createNotFoundException("page-not-found");
$user->setIsActive(true);
$this->getDoctrine()->getManager()->persist($user);
$this->getDoctrine()->getManager()->flush();
return $guardHandler->authenticateUserAndHandleSuccess(
$user,
$request,
$authenticator,
'main' // firewall name in security.yaml
);
}
}