src/EventSubscriber/LocaleSubscriber.php line 26

Open in your IDE?
  1. <?php
  2. namespace App\EventSubscriber;
  3. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  4. use Symfony\Component\HttpKernel\Event\RequestEvent;
  5. use Symfony\Component\HttpKernel\KernelEvents;
  6. class LocaleSubscriber implements EventSubscriberInterface
  7. {
  8.     private $defaultLocale;
  9.     public function __construct($defaultLocale 'nl')
  10.     {
  11.         $this->defaultLocale $defaultLocale;
  12.     }
  13.     public function onKernelRequest(RequestEvent $event)
  14.     {
  15.         $request $event->getRequest();
  16.         if (!$request->hasPreviousSession()) {
  17.             return;
  18.         }
  19.         // try to see if the locale has been set as a _locale routing parameter
  20.         if ($locale $request->attributes->get('_locale')) {
  21.             $request->getSession()->set('_locale'$locale);
  22.         } elseif(array_key_exists('_locale'$_GET)) {
  23.             $request->setLocale($_GET['_locale']);
  24.             $request->getSession()->set('_locale'$_GET['_locale']);
  25.         } else {
  26.             // if no explicit locale has been set on this request
  27.             if(!$request->getSession()->get('_locale')) {
  28.                 if(array_key_exists('HTTP_ACCEPT_LANGUAGE',$_SERVER)){
  29.                     $clientLocale strtolower(str_split($_SERVER['HTTP_ACCEPT_LANGUAGE'], 2)[0]);
  30.                 } else {
  31.                     $clientLocale $this->defaultLocale;
  32.                 }
  33.                 $request->setLocale($clientLocale);
  34.             } else {
  35.                 // or use one from the session
  36.                 $request->setLocale($request->getSession()->get('_locale'$this->defaultLocale));
  37.             }
  38.         }
  39.     }
  40.     public static function getSubscribedEvents()
  41.     {
  42.         return [
  43.             // must be registered before (i.e. with a higher priority than) the default Locale listener
  44.             KernelEvents::REQUEST => [['onKernelRequest'20]],
  45.         ];
  46.     }
  47. }
  48. ?>