src/EventListener/LocaleListener.php line 35

Open in your IDE?
  1. <?php
  2. namespace App\EventListener;
  3. use App\Entity\LanguageCountry;
  4. use App\Services\CartService;
  5. use Doctrine\ORM\EntityManager;
  6. use Symfony\Component\HttpFoundation\RedirectResponse;
  7. use Symfony\Component\HttpFoundation\Request;
  8. use Symfony\Component\HttpKernel\Event\GetResponseEvent;
  9. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  10. use Symfony\Component\HttpKernel\KernelEvents;
  11. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  12. use Symfony\Component\DependencyInjection\ContainerInterface;
  13. use Symfony\Bridge\Doctrine\RegistryInterface;
  14. use Symfony\Component\Routing\Exception\ResourceNotFoundException;
  15. use Symfony\Component\Routing\Exception\RouteNotFoundException;
  16. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  17. class LocaleListener implements EventSubscriberInterface
  18. {
  19.     public function __construct(EntityManager $em,CartService $cartService,UrlGeneratorInterface $router)
  20.     {
  21.         $this->em =$em;
  22.         $this->cartService =$cartService;
  23.         $this->router $router ;
  24.     }
  25.     public function onKernelRequest(GetResponseEvent $event)
  26.     {
  27.         $request $event->getRequest();
  28.         $countryCode $this->cartService->countryByIp($request);
  29.         $countryIp null;
  30.         if($countryCode){
  31.             $countryIp $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode' => trim($countryCode), 'isEnabled' => true]);
  32.             if ($countryIp) {
  33.                 if ($request->attributes->get('_route_params') && isset($request->attributes->get('_route_params')['_locale'])) {
  34.                     $country $this->em->getRepository(LanguageCountry::class)->findOneBy(['LanguageCode' => trim(ucfirst($request->attributes->get('_route_params')['_locale'])), 'isEnabled' => true]);
  35.                     if ($country) {
  36.                         $request->getSession()->set('countryCodeCopees'$country->getCountryCode());
  37.                         if ($request->attributes->get('_route') != 'checkout_verifie' && $request->attributes->get('_route') != 'valide_order_check_paypal_by_payment_intent') {
  38.                             $this->cartService->getCartCurrent();
  39.                         }
  40.                         $request->getSession()->set('_locale'strtolower($country->getLanguageCode()));
  41.                         $request->setLocale(strtolower($country->getLanguageCode()));
  42.                     } else {
  43.                         $request->getSession()->set('countryCodeCopees''FR');
  44.                         $request->setLocale('fr');
  45.                         if ($request->attributes->get('_route') != 'checkout_verifie' && $request->attributes->get('_route') != 'valide_order_check_paypal_by_payment_intent') {
  46.                             $this->cartService->getCartCurrent();
  47.                         }
  48.                     }
  49.                  }else{
  50.                     $request->getSession()->set('countryCodeCopees'$countryIp->getCountryCode());
  51.                     if ($request->attributes->get('_route') != 'checkout_verifie' && $request->attributes->get('_route') != 'valide_order_check_paypal_by_payment_intent') {
  52.                         $this->cartService->getCartCurrent();
  53.                     }
  54.                     $request->getSession()->set('_locale'strtolower($countryIp->getLanguageCode()));
  55.                     $request->setLocale(strtolower($countryIp->getLanguageCode()));
  56.                     $pathInfo '/' strtolower($countryIp->getLanguageCode());
  57.                     $refererPathInfo Request::create($pathInfo)->getPathInfo();
  58.                     try {
  59.                         $routeInfos $this->router->match($refererPathInfo);
  60.                         $refererRoute $routeInfos['_route'] ?? null;
  61.                         if ($refererRoute) {
  62.                             $baseurl $request->getScheme() . '://' $request->getHttpHost() . $request->getBasePath();
  63.                             $event->setResponse(new RedirectResponse($baseurl $pathInfo));
  64.                         }
  65.                     } catch (ResourceNotFoundException $exception) {
  66.                     }
  67.                 }
  68.             }
  69.         }
  70.         if($countryIp == null){
  71.             if ($request->attributes->get('_route') == 'change_country_code') {
  72.                 $countryCode $request->query->get('countryCode');
  73.                 $country $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode' => trim($countryCode), 'isEnabled' => true]);
  74.                 if ($country) {
  75.                     $request->getSession()->set('countryCodeCopees'$country->getCountryCode());
  76.                     $this->cartService->getCartCurrent();
  77.                     $request->getSession()->set('_locale'strtolower($country->getLanguageCode()));
  78.                     $request->setLocale(strtolower($country->getLanguageCode()));
  79.                 } else {
  80.                     $request->getSession()->set('countryCodeCopees''FR');
  81.                     $request->setLocale('fr');
  82.                     $this->cartService->getCartCurrent();
  83.                 }
  84.             } elseif ($request->attributes->get('_route_params') && isset($request->attributes->get('_route_params')['_locale'])) {
  85.                 $country $this->em->getRepository(LanguageCountry::class)->findOneBy(['LanguageCode' => trim(ucfirst($request->attributes->get('_route_params')['_locale'])), 'isEnabled' => true]);
  86.                 if ($country) {
  87.                     $request->getSession()->set('countryCodeCopees'$country->getCountryCode());
  88.                     if ($request->attributes->get('_route') != 'checkout_verifie' && $request->attributes->get('_route') != 'valide_order_check_paypal_by_payment_intent') {
  89.                         $this->cartService->getCartCurrent();
  90.                     }
  91.                     $request->getSession()->set('_locale'strtolower($country->getLanguageCode()));
  92.                     $request->setLocale(strtolower($country->getLanguageCode()));
  93.                 } else {
  94.                     $request->getSession()->set('countryCodeCopees''FR');
  95.                     $request->setLocale('fr');
  96.                     if ($request->attributes->get('_route') != 'checkout_verifie' && $request->attributes->get('_route') != 'valide_order_check_paypal_by_payment_intent') {
  97.                         $this->cartService->getCartCurrent();
  98.                     }
  99.                 }
  100.             } else {
  101.                 if (!$request->getSession()->has('countryCodeCopees')) {
  102.                     $request->getSession()->set('countryCodeCopees''FR');
  103.                     $request->setLocale('fr');
  104.                     if ($request->attributes->get('_route') != 'checkout_verifie' && $request->attributes->get('_route') != 'valide_order_check_paypal_by_payment_intent') {
  105.                         $this->cartService->getCartCurrent();
  106.                     }
  107.                 }
  108.                 if ($request->attributes->get('_route') === null && $request->attributes->get('exception')) {
  109.                     if ($request->getSession()->has('_locale')) {
  110.                         $request->setLocale($request->getSession()->get('_locale'));
  111.                     }
  112.                     $pathInfo '/' $request->getLocale() . $request->getPathInfo();
  113.                     $refererPathInfo Request::create($pathInfo)->getPathInfo();
  114.                     try {
  115.                         $routeInfos $this->router->match($refererPathInfo);
  116.                         $refererRoute $routeInfos['_route'] ?? null;
  117.                         if ($refererRoute) {
  118.                             $baseurl $request->getScheme() . '://' $request->getHttpHost() . $request->getBasePath();
  119.                             $queryUrl '';
  120.                             if($request->getQueryString()){
  121.                                 $queryUrl '?'.$request->getQueryString();
  122.                             }
  123.                             $event->setResponse(new RedirectResponse($baseurl $pathInfo.$queryUrl));
  124.                         }
  125.                     } catch (ResourceNotFoundException $exception) {
  126.                     }
  127.                 }
  128.             }
  129.         }
  130.     }
  131.     public static function getSubscribedEvents()
  132.     {
  133.         return array(
  134.             // must be registered after the default Locale listener
  135.             KernelEvents::REQUEST => array(array('onKernelRequest'1)),
  136.         );
  137.     }
  138. }