src/Controller/HomeController.php line 144

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\ClientIp;
  4. use App\Entity\Product;
  5. use App\Entity\ReviewsProduct;
  6. use App\Form\ReviewsProductType;
  7. use App\Repository\HommeSliderRepository;
  8. use App\Repository\MymarketRepository;
  9. use App\Repository\ProductRepository;
  10. use App\Repository\TagRepository;
  11. use Doctrine\ORM\EntityManagerInterface;
  12. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  13. use Symfony\Component\HttpFoundation\Request;
  14. use Symfony\Component\HttpFoundation\Response;
  15. use Symfony\Component\HttpFoundation\Session\SessionInterface;
  16. use Symfony\Component\Routing\Annotation\Route;
  17. class HomeController extends AbstractController
  18. {
  19.     /**
  20.      * @var EntityManagerInterface
  21.      */
  22.     private $entityManager;
  23.     /**
  24.      * @var SessionInterface
  25.      */
  26.     private $session;
  27.     public function __construct(EntityManagerInterface $entityManagerSessionInterface $session)
  28.     {
  29.         $this->entityManager $entityManager;
  30.         $this->session $session;
  31.     }
  32.     /**
  33.      * @Route("/geoip", name="geo_ip")
  34.      * @param Request $request
  35.      * @return \Symfony\Component\HttpFoundation\JsonResponse
  36.      */
  37.     public function geoip(Request $request){
  38.        return $this->json(
  39.            json_decode($this->getLocation($request->getClientIp()),true)
  40.        );
  41.     }
  42.     public function getIpAddress()
  43.     {
  44.         $ipAddress '';
  45.         if (! empty($_SERVER['HTTP_CLIENT_IP']) && $this->isValidIpAddress($_SERVER['HTTP_CLIENT_IP'])) {
  46.             // check for shared ISP IP
  47.             $ipAddress $_SERVER['HTTP_CLIENT_IP'];
  48.         } else if (! empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
  49.             // check for IPs passing through proxy servers
  50.             // check if multiple IP addresses are set and take the first one
  51.             $ipAddressList explode(','$_SERVER['HTTP_X_FORWARDED_FOR']);
  52.             foreach ($ipAddressList as $ip) {
  53.                 if ($this->isValidIpAddress($ip)) {
  54.                     $ipAddress $ip;
  55.                     break;
  56.                 }
  57.             }
  58.         } else if (! empty($_SERVER['HTTP_X_FORWARDED']) && $this->isValidIpAddress($_SERVER['HTTP_X_FORWARDED'])) {
  59.             $ipAddress $_SERVER['HTTP_X_FORWARDED'];
  60.         } else if (! empty($_SERVER['HTTP_X_CLUSTER_CLIENT_IP']) && $this->isValidIpAddress($_SERVER['HTTP_X_CLUSTER_CLIENT_IP'])) {
  61.             $ipAddress $_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
  62.         } else if (! empty($_SERVER['HTTP_FORWARDED_FOR']) && $this->isValidIpAddress($_SERVER['HTTP_FORWARDED_FOR'])) {
  63.             $ipAddress $_SERVER['HTTP_FORWARDED_FOR'];
  64.         } else if (! empty($_SERVER['HTTP_FORWARDED']) && $this->isValidIpAddress($_SERVER['HTTP_FORWARDED'])) {
  65.             $ipAddress $_SERVER['HTTP_FORWARDED'];
  66.         } else if (! empty($_SERVER['REMOTE_ADDR']) && $this->isValidIpAddress($_SERVER['REMOTE_ADDR'])) {
  67.             $ipAddress $_SERVER['REMOTE_ADDR'];
  68.         }
  69.         return $ipAddress;
  70.     }
  71.     public function isValidIpAddress($ip)
  72.     {
  73.         if (filter_var($ipFILTER_VALIDATE_IPFILTER_FLAG_IPV4 FILTER_FLAG_IPV6 FILTER_FLAG_NO_PRIV_RANGE FILTER_FLAG_NO_RES_RANGE) === false) {
  74.             return false;
  75.         }
  76.         return true;
  77.     }
  78.     public function getLocation($ip)
  79.     {
  80.         $ch curl_init('http://ipwhois.app/json/' $ip);
  81.         curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
  82.         $json curl_exec($ch);
  83.         curl_close($ch);
  84.         // Decode JSON response
  85.         //$ipWhoIsResponse = json_decode($json, true);
  86.         // Country code output, field "country_code"
  87.         return $json;
  88.     }
  89.     /**
  90.      * @Route("/", name="home")
  91.      * @param Request $request
  92.      * @param ProductRepository $productRepository
  93.      * @param TagRepository $tagRepository
  94.      * @param MymarketRepository $mymarketRepository
  95.      * @param HommeSliderRepository $hommeSliderRepository
  96.      * @return Response
  97.      */
  98.     public function index(Request $request,ProductRepository $productRepositoryTagRepository $tagRepositoryMymarketRepository $mymarketRepositoryHommeSliderRepository $hommeSliderRepository): Response
  99.     {
  100.         $products $productRepository->findAll();
  101.         $tags $tagRepository->findAll();
  102.         $mymarket $mymarketRepository->findAll();
  103.         $hommeSlider $hommeSliderRepository->findByIsDisplayed(true);
  104.         $productBestSeller $productRepository->findBy([
  105.             'isBestSeller' => true,
  106.             'etat' => true
  107.         ]);
  108.         $productSpecialOffer $productRepository->findBy([
  109.             'isSpecialOffer' => true,
  110.             'etat' => true
  111.         ]);
  112.         $productInPromotional $productRepository->findBy([
  113.             'isPromotionalPrice' => true,
  114.             'etat' => true
  115.         ]);
  116.         $productNewArrival $productRepository->findBy([
  117.             'isNewArrival' => true,
  118.             'etat' => true
  119.         ]);
  120.         $productFeatured $productRepository->findBy([
  121.             'isFeatured' => true,
  122.             'etat' => true
  123.         ]);
  124.         $clientIp = new ClientIp();
  125.         $client json_decode($this->getLocation($request->getClientIp()), true) ;
  126.         if($this->session->get('geo_location') != true){
  127.             $clientIp->setCreatedAt(new \DateTime())
  128.                 ->setIp($client['ip'] ?? 'none')
  129.                 ->setCountry($client['country'] ?? 'none')
  130.                 ->setCity($client['city'] ?? 'none')
  131.                 ->setCountryCapital($client['country_capital'] ?? 'none')
  132.                 ->setCountryCode($client['country_code'] ?? 'none')
  133.                 ->setCountryPhone($client['country_phone'] ?? 'none')
  134.                 ->setCountryFlag($client['country_flag'] ?? 'none')
  135.                 ->setRegion($client['region'] ?? 'none' )
  136.                 ->setLatitude($client['latitude'] ?? 'none')
  137.                 ->setLongitude($client['longitude'] ?? 'none')
  138.             ;
  139.             $this->entityManager->persist($clientIp);
  140.             $this->entityManager->flush();
  141.         }
  142.         return $this->render('home/index.html.twig',[
  143.             'products' => $products,
  144.             'mymarkets' => $mymarket,
  145.             'homeSlider' => $hommeSlider,
  146.             'productBestSeller' => $productBestSeller,
  147.             'productSpecialOffer' => $productSpecialOffer,
  148.             'productNewArrival' => $productNewArrival,
  149.             'productFeatured' => $productFeatured,
  150.             'Promotional' => $productInPromotional,
  151.             //'tags' => $tags,
  152.         ]);
  153.     }
  154.     /**
  155.      * @Route("/footer", name="home_footer")
  156.      *
  157.      * @param TagRepository $tagRepository
  158.      * @return Response
  159.      */
  160.     public function tagsFooter(TagRepository $tagRepository){
  161.         $tags $tagRepository->findAll();
  162.         return $this->render('partials/footer.html.twig',[
  163.             'tags' => $tags,
  164.         ]);
  165.     }
  166.     /**
  167.      * @Route("/product/{slug}", name="product_details")
  168.      * @param Product $product
  169.      * @return Response
  170.      */
  171.     public function showDetail(?Product $product):Response{
  172.         if(!$product){
  173.             return $this->redirectToRoute('home');
  174.         }
  175.         $reviewsProduct = new ReviewsProduct();
  176.         $form $this->createForm(ReviewsProductType::class, $reviewsProduct);
  177.         /* INCREMENT DU CLICK SUR UN PRODUIT */
  178.         $product->setNombreVue(1);
  179.         $this->entityManager->flush();
  180.         return $this->render('product/singleProduct.html.twig',[
  181.             'product' => $product,
  182.             'reviews_product' => $reviewsProduct,
  183.             'form' => $form->createView(),
  184.         ]);
  185.     }
  186.     /**
  187.      * @Route("product_view/854iooe8{id}960ooe/", name="product_details_json")
  188.      * @param Product $product
  189.      * @return Response
  190.      */
  191.     public function showDetailProductJson(?Product $product):Response{
  192.         if(!$product){
  193.             return $this->redirectToRoute('home');
  194.         }
  195.         /* INCREMENT DU CLICK SUR UN PRODUIT */
  196.         $product->setNombreVue(1);
  197.         $this->entityManager->flush();
  198.         $template $this->render('product/_detailproductSingle.html.twig',[
  199.             'product' => $product
  200.         ]);
  201.         return $this->json([
  202.             'data' => $product->getId(),
  203.             'template' => $template,
  204.         ]);
  205.     }
  206.     /**
  207.      * @Route("/tags#{id}-{tag}", name="product_seek_tags", methods={"GET","POST"})
  208.      * @param ProductRepository $productRepository
  209.      * @param TagRepository $tagRepository
  210.      * @param $id
  211.      * @param $tag
  212.      * @return Response
  213.      */
  214.     public function tagsSearch(ProductRepository $productRepositoryTagRepository $tagRepository$id$tag): Response
  215.     {
  216.         $products $productRepository->findWithSearchTags($id);
  217.         //dd($products);
  218.         return $this->render('tag/tagsearch.html.twig', [
  219.             'products' => $products,
  220.             'tag' => $tag,
  221.             'tags' => $tagRepository->findAll(),
  222.         ]);
  223.     }
  224. }