<?php
namespace App\Controller;
use App\Entity\ClientIp;
use App\Entity\Product;
use App\Entity\ReviewsProduct;
use App\Form\ReviewsProductType;
use App\Repository\HommeSliderRepository;
use App\Repository\MymarketRepository;
use App\Repository\ProductRepository;
use App\Repository\TagRepository;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\Session\SessionInterface;
use Symfony\Component\Routing\Annotation\Route;
class HomeController extends AbstractController
{
/**
* @var EntityManagerInterface
*/
private $entityManager;
/**
* @var SessionInterface
*/
private $session;
public function __construct(EntityManagerInterface $entityManager, SessionInterface $session)
{
$this->entityManager = $entityManager;
$this->session = $session;
}
/**
* @Route("/geoip", name="geo_ip")
* @param Request $request
* @return \Symfony\Component\HttpFoundation\JsonResponse
*/
public function geoip(Request $request){
return $this->json(
json_decode($this->getLocation($request->getClientIp()),true)
);
}
public function getIpAddress()
{
$ipAddress = '';
if (! empty($_SERVER['HTTP_CLIENT_IP']) && $this->isValidIpAddress($_SERVER['HTTP_CLIENT_IP'])) {
// check for shared ISP IP
$ipAddress = $_SERVER['HTTP_CLIENT_IP'];
} else if (! empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
// check for IPs passing through proxy servers
// check if multiple IP addresses are set and take the first one
$ipAddressList = explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']);
foreach ($ipAddressList as $ip) {
if ($this->isValidIpAddress($ip)) {
$ipAddress = $ip;
break;
}
}
} else if (! empty($_SERVER['HTTP_X_FORWARDED']) && $this->isValidIpAddress($_SERVER['HTTP_X_FORWARDED'])) {
$ipAddress = $_SERVER['HTTP_X_FORWARDED'];
} else if (! empty($_SERVER['HTTP_X_CLUSTER_CLIENT_IP']) && $this->isValidIpAddress($_SERVER['HTTP_X_CLUSTER_CLIENT_IP'])) {
$ipAddress = $_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
} else if (! empty($_SERVER['HTTP_FORWARDED_FOR']) && $this->isValidIpAddress($_SERVER['HTTP_FORWARDED_FOR'])) {
$ipAddress = $_SERVER['HTTP_FORWARDED_FOR'];
} else if (! empty($_SERVER['HTTP_FORWARDED']) && $this->isValidIpAddress($_SERVER['HTTP_FORWARDED'])) {
$ipAddress = $_SERVER['HTTP_FORWARDED'];
} else if (! empty($_SERVER['REMOTE_ADDR']) && $this->isValidIpAddress($_SERVER['REMOTE_ADDR'])) {
$ipAddress = $_SERVER['REMOTE_ADDR'];
}
return $ipAddress;
}
public function isValidIpAddress($ip)
{
if (filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4 | FILTER_FLAG_IPV6 | FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE) === false) {
return false;
}
return true;
}
public function getLocation($ip)
{
$ch = curl_init('http://ipwhois.app/json/' . $ip);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$json = curl_exec($ch);
curl_close($ch);
// Decode JSON response
//$ipWhoIsResponse = json_decode($json, true);
// Country code output, field "country_code"
return $json;
}
/**
* @Route("/", name="home")
* @param Request $request
* @param ProductRepository $productRepository
* @param TagRepository $tagRepository
* @param MymarketRepository $mymarketRepository
* @param HommeSliderRepository $hommeSliderRepository
* @return Response
*/
public function index(Request $request,ProductRepository $productRepository, TagRepository $tagRepository, MymarketRepository $mymarketRepository, HommeSliderRepository $hommeSliderRepository): Response
{
$products = $productRepository->findAll();
$tags = $tagRepository->findAll();
$mymarket = $mymarketRepository->findAll();
$hommeSlider = $hommeSliderRepository->findByIsDisplayed(true);
$productBestSeller = $productRepository->findBy([
'isBestSeller' => true,
'etat' => true
]);
$productSpecialOffer = $productRepository->findBy([
'isSpecialOffer' => true,
'etat' => true
]);
$productInPromotional = $productRepository->findBy([
'isPromotionalPrice' => true,
'etat' => true
]);
$productNewArrival = $productRepository->findBy([
'isNewArrival' => true,
'etat' => true
]);
$productFeatured = $productRepository->findBy([
'isFeatured' => true,
'etat' => true
]);
$clientIp = new ClientIp();
$client = json_decode($this->getLocation($request->getClientIp()), true) ;
if($this->session->get('geo_location') != true){
$clientIp->setCreatedAt(new \DateTime())
->setIp($client['ip'] ?? 'none')
->setCountry($client['country'] ?? 'none')
->setCity($client['city'] ?? 'none')
->setCountryCapital($client['country_capital'] ?? 'none')
->setCountryCode($client['country_code'] ?? 'none')
->setCountryPhone($client['country_phone'] ?? 'none')
->setCountryFlag($client['country_flag'] ?? 'none')
->setRegion($client['region'] ?? 'none' )
->setLatitude($client['latitude'] ?? 'none')
->setLongitude($client['longitude'] ?? 'none')
;
$this->entityManager->persist($clientIp);
$this->entityManager->flush();
}
return $this->render('home/index.html.twig',[
'products' => $products,
'mymarkets' => $mymarket,
'homeSlider' => $hommeSlider,
'productBestSeller' => $productBestSeller,
'productSpecialOffer' => $productSpecialOffer,
'productNewArrival' => $productNewArrival,
'productFeatured' => $productFeatured,
'Promotional' => $productInPromotional,
//'tags' => $tags,
]);
}
/**
* @Route("/footer", name="home_footer")
*
* @param TagRepository $tagRepository
* @return Response
*/
public function tagsFooter(TagRepository $tagRepository){
$tags = $tagRepository->findAll();
return $this->render('partials/footer.html.twig',[
'tags' => $tags,
]);
}
/**
* @Route("/product/{slug}", name="product_details")
* @param Product $product
* @return Response
*/
public function showDetail(?Product $product):Response{
if(!$product){
return $this->redirectToRoute('home');
}
$reviewsProduct = new ReviewsProduct();
$form = $this->createForm(ReviewsProductType::class, $reviewsProduct);
/* INCREMENT DU CLICK SUR UN PRODUIT */
$product->setNombreVue(1);
$this->entityManager->flush();
return $this->render('product/singleProduct.html.twig',[
'product' => $product,
'reviews_product' => $reviewsProduct,
'form' => $form->createView(),
]);
}
/**
* @Route("product_view/854iooe8{id}960ooe/", name="product_details_json")
* @param Product $product
* @return Response
*/
public function showDetailProductJson(?Product $product):Response{
if(!$product){
return $this->redirectToRoute('home');
}
/* INCREMENT DU CLICK SUR UN PRODUIT */
$product->setNombreVue(1);
$this->entityManager->flush();
$template = $this->render('product/_detailproductSingle.html.twig',[
'product' => $product
]);
return $this->json([
'data' => $product->getId(),
'template' => $template,
]);
}
/**
* @Route("/tags#{id}-{tag}", name="product_seek_tags", methods={"GET","POST"})
* @param ProductRepository $productRepository
* @param TagRepository $tagRepository
* @param $id
* @param $tag
* @return Response
*/
public function tagsSearch(ProductRepository $productRepository, TagRepository $tagRepository, $id, $tag): Response
{
$products = $productRepository->findWithSearchTags($id);
//dd($products);
return $this->render('tag/tagsearch.html.twig', [
'products' => $products,
'tag' => $tag,
'tags' => $tagRepository->findAll(),
]);
}
}