<?php
namespace App\EventListener;
use App\Entity\LanguageCountry;
use App\Services\CartService;
use Doctrine\ORM\EntityManager;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Event\GetResponseEvent;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\HttpKernel\KernelEvents;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Bridge\Doctrine\RegistryInterface;
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
use Symfony\Component\Routing\Exception\RouteNotFoundException;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
class LocaleListener implements EventSubscriberInterface
{
public function __construct(EntityManager $em,CartService $cartService,UrlGeneratorInterface $router)
{
$this->em =$em;
$this->cartService =$cartService;
$this->router = $router ;
}
public function onKernelRequest(GetResponseEvent $event)
{
$request = $event->getRequest();
$countryCode = $this->cartService->countryByIp($request);
$countryIp = null;
if($countryCode){
$countryIp = $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode' => trim($countryCode), 'isEnabled' => true]);
if ($countryIp) {
if ($request->attributes->get('_route_params') && isset($request->attributes->get('_route_params')['_locale'])) {
$country = $this->em->getRepository(LanguageCountry::class)->findOneBy(['LanguageCode' => trim(ucfirst($request->attributes->get('_route_params')['_locale'])), 'isEnabled' => true]);
if ($country) {
$request->getSession()->set('countryCodeCopees', $country->getCountryCode());
if ($request->attributes->get('_route') != 'checkout_verifie' && $request->attributes->get('_route') != 'valide_order_check_paypal_by_payment_intent') {
$this->cartService->getCartCurrent();
}
$request->getSession()->set('_locale', strtolower($country->getLanguageCode()));
$request->setLocale(strtolower($country->getLanguageCode()));
} else {
$request->getSession()->set('countryCodeCopees', 'FR');
$request->setLocale('fr');
if ($request->attributes->get('_route') != 'checkout_verifie' && $request->attributes->get('_route') != 'valide_order_check_paypal_by_payment_intent') {
$this->cartService->getCartCurrent();
}
}
}else{
$request->getSession()->set('countryCodeCopees', $countryIp->getCountryCode());
if ($request->attributes->get('_route') != 'checkout_verifie' && $request->attributes->get('_route') != 'valide_order_check_paypal_by_payment_intent') {
$this->cartService->getCartCurrent();
}
$request->getSession()->set('_locale', strtolower($countryIp->getLanguageCode()));
$request->setLocale(strtolower($countryIp->getLanguageCode()));
$pathInfo = '/' . strtolower($countryIp->getLanguageCode());
$refererPathInfo = Request::create($pathInfo)->getPathInfo();
try {
$routeInfos = $this->router->match($refererPathInfo);
$refererRoute = $routeInfos['_route'] ?? null;
if ($refererRoute) {
$baseurl = $request->getScheme() . '://' . $request->getHttpHost() . $request->getBasePath();
$event->setResponse(new RedirectResponse($baseurl . $pathInfo));
}
} catch (ResourceNotFoundException $exception) {
}
}
}
}
if($countryIp == null){
if ($request->attributes->get('_route') == 'change_country_code') {
$countryCode = $request->query->get('countryCode');
$country = $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode' => trim($countryCode), 'isEnabled' => true]);
if ($country) {
$request->getSession()->set('countryCodeCopees', $country->getCountryCode());
$this->cartService->getCartCurrent();
$request->getSession()->set('_locale', strtolower($country->getLanguageCode()));
$request->setLocale(strtolower($country->getLanguageCode()));
} else {
$request->getSession()->set('countryCodeCopees', 'FR');
$request->setLocale('fr');
$this->cartService->getCartCurrent();
}
} elseif ($request->attributes->get('_route_params') && isset($request->attributes->get('_route_params')['_locale'])) {
$country = $this->em->getRepository(LanguageCountry::class)->findOneBy(['LanguageCode' => trim(ucfirst($request->attributes->get('_route_params')['_locale'])), 'isEnabled' => true]);
if ($country) {
$request->getSession()->set('countryCodeCopees', $country->getCountryCode());
if ($request->attributes->get('_route') != 'checkout_verifie' && $request->attributes->get('_route') != 'valide_order_check_paypal_by_payment_intent') {
$this->cartService->getCartCurrent();
}
$request->getSession()->set('_locale', strtolower($country->getLanguageCode()));
$request->setLocale(strtolower($country->getLanguageCode()));
} else {
$request->getSession()->set('countryCodeCopees', 'FR');
$request->setLocale('fr');
if ($request->attributes->get('_route') != 'checkout_verifie' && $request->attributes->get('_route') != 'valide_order_check_paypal_by_payment_intent') {
$this->cartService->getCartCurrent();
}
}
} else {
if (!$request->getSession()->has('countryCodeCopees')) {
$request->getSession()->set('countryCodeCopees', 'FR');
$request->setLocale('fr');
if ($request->attributes->get('_route') != 'checkout_verifie' && $request->attributes->get('_route') != 'valide_order_check_paypal_by_payment_intent') {
$this->cartService->getCartCurrent();
}
}
if ($request->attributes->get('_route') === null && $request->attributes->get('exception')) {
if ($request->getSession()->has('_locale')) {
$request->setLocale($request->getSession()->get('_locale'));
}
$pathInfo = '/' . $request->getLocale() . $request->getPathInfo();
$refererPathInfo = Request::create($pathInfo)->getPathInfo();
try {
$routeInfos = $this->router->match($refererPathInfo);
$refererRoute = $routeInfos['_route'] ?? null;
if ($refererRoute) {
$baseurl = $request->getScheme() . '://' . $request->getHttpHost() . $request->getBasePath();
$queryUrl = '';
if($request->getQueryString()){
$queryUrl = '?'.$request->getQueryString();
}
$event->setResponse(new RedirectResponse($baseurl . $pathInfo.$queryUrl));
}
} catch (ResourceNotFoundException $exception) {
}
}
}
}
}
public static function getSubscribedEvents()
{
return array(
// must be registered after the default Locale listener
KernelEvents::REQUEST => array(array('onKernelRequest', 1)),
);
}
}