src/Sylius/Bundle/ShopBundle/Controller/LocaleSwitchController.php line 42

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Sylius package.
  4.  *
  5.  * (c) Paweł Jędrzejewski
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace Sylius\Bundle\ShopBundle\Controller;
  12. use Sylius\Bundle\ShopBundle\Locale\LocaleSwitcherInterface;
  13. use Sylius\Component\Locale\Context\LocaleContextInterface;
  14. use Sylius\Component\Locale\Provider\LocaleProviderInterface;
  15. use Symfony\Component\HttpFoundation\Request;
  16. use Symfony\Component\HttpFoundation\Response;
  17. use Symfony\Component\HttpKernel\Exception\HttpException;
  18. use Twig\Environment;
  19. final class LocaleSwitchController
  20. {
  21.     public function __construct(
  22.         private Environment $templatingEngine,
  23.         private LocaleContextInterface $localeContext,
  24.         private LocaleProviderInterface $localeProvider,
  25.         private LocaleSwitcherInterface $localeSwitcher,
  26.     ) {
  27.     }
  28.     public function renderAction(): Response
  29.     {
  30.         return new Response($this->templatingEngine->render('@SyliusShop/Menu/_localeSwitch.html.twig', [
  31.             'active' => $this->localeContext->getLocaleCode(),
  32.             'locales' => $this->localeProvider->getAvailableLocalesCodes(),
  33.         ]));
  34.     }
  35.     public function switchAction(Request $request, ?string $code null): Response
  36.     {
  37.         if (null === $code) {
  38.             $code $this->localeProvider->getDefaultLocaleCode();
  39.         }
  40.         if (!in_array($code$this->localeProvider->getAvailableLocalesCodes(), true)) {
  41.             throw new HttpException(
  42.                 Response::HTTP_NOT_ACCEPTABLE,
  43.                 sprintf('The locale code "%s" is invalid.'$code),
  44.             );
  45.         }
  46.         return $this->localeSwitcher->handle($request$code);
  47.     }
  48. }