vendor/symfony/routing/Router.php line 229

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Routing;
  11. use Psr\Log\LoggerInterface;
  12. use Symfony\Component\Config\ConfigCacheFactory;
  13. use Symfony\Component\Config\ConfigCacheFactoryInterface;
  14. use Symfony\Component\Config\ConfigCacheInterface;
  15. use Symfony\Component\Config\Loader\LoaderInterface;
  16. use Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface;
  17. use Symfony\Component\HttpFoundation\Request;
  18. use Symfony\Component\Routing\Generator\CompiledUrlGenerator;
  19. use Symfony\Component\Routing\Generator\ConfigurableRequirementsInterface;
  20. use Symfony\Component\Routing\Generator\Dumper\CompiledUrlGeneratorDumper;
  21. use Symfony\Component\Routing\Generator\Dumper\GeneratorDumperInterface;
  22. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  23. use Symfony\Component\Routing\Matcher\CompiledUrlMatcher;
  24. use Symfony\Component\Routing\Matcher\Dumper\CompiledUrlMatcherDumper;
  25. use Symfony\Component\Routing\Matcher\Dumper\MatcherDumperInterface;
  26. use Symfony\Component\Routing\Matcher\RequestMatcherInterface;
  27. use Symfony\Component\Routing\Matcher\UrlMatcherInterface;
  28. /**
  29.  * The Router class is an example of the integration of all pieces of the
  30.  * routing system for easier use.
  31.  *
  32.  * @author Fabien Potencier <fabien@symfony.com>
  33.  */
  34. class Router implements RouterInterfaceRequestMatcherInterface
  35. {
  36.     /**
  37.      * @var UrlMatcherInterface|null
  38.      */
  39.     protected $matcher;
  40.     /**
  41.      * @var UrlGeneratorInterface|null
  42.      */
  43.     protected $generator;
  44.     /**
  45.      * @var RequestContext
  46.      */
  47.     protected $context;
  48.     /**
  49.      * @var LoaderInterface
  50.      */
  51.     protected $loader;
  52.     /**
  53.      * @var RouteCollection|null
  54.      */
  55.     protected $collection;
  56.     /**
  57.      * @var mixed
  58.      */
  59.     protected $resource;
  60.     /**
  61.      * @var array
  62.      */
  63.     protected $options = [];
  64.     /**
  65.      * @var LoggerInterface|null
  66.      */
  67.     protected $logger;
  68.     /**
  69.      * @var string|null
  70.      */
  71.     protected $defaultLocale;
  72.     private ConfigCacheFactoryInterface $configCacheFactory;
  73.     /**
  74.      * @var ExpressionFunctionProviderInterface[]
  75.      */
  76.     private array $expressionLanguageProviders = [];
  77.     private static ?array $cache = [];
  78.     public function __construct(LoaderInterface $loadermixed $resource, array $options = [], RequestContext $context nullLoggerInterface $logger nullstring $defaultLocale null)
  79.     {
  80.         $this->loader $loader;
  81.         $this->resource $resource;
  82.         $this->logger $logger;
  83.         $this->context $context ?? new RequestContext();
  84.         $this->setOptions($options);
  85.         $this->defaultLocale $defaultLocale;
  86.     }
  87.     /**
  88.      * Sets options.
  89.      *
  90.      * Available options:
  91.      *
  92.      *   * cache_dir:              The cache directory (or null to disable caching)
  93.      *   * debug:                  Whether to enable debugging or not (false by default)
  94.      *   * generator_class:        The name of a UrlGeneratorInterface implementation
  95.      *   * generator_dumper_class: The name of a GeneratorDumperInterface implementation
  96.      *   * matcher_class:          The name of a UrlMatcherInterface implementation
  97.      *   * matcher_dumper_class:   The name of a MatcherDumperInterface implementation
  98.      *   * resource_type:          Type hint for the main resource (optional)
  99.      *   * strict_requirements:    Configure strict requirement checking for generators
  100.      *                             implementing ConfigurableRequirementsInterface (default is true)
  101.      *
  102.      * @throws \InvalidArgumentException When unsupported option is provided
  103.      */
  104.     public function setOptions(array $options)
  105.     {
  106.         $this->options = [
  107.             'cache_dir' => null,
  108.             'debug' => false,
  109.             'generator_class' => CompiledUrlGenerator::class,
  110.             'generator_dumper_class' => CompiledUrlGeneratorDumper::class,
  111.             'matcher_class' => CompiledUrlMatcher::class,
  112.             'matcher_dumper_class' => CompiledUrlMatcherDumper::class,
  113.             'resource_type' => null,
  114.             'strict_requirements' => true,
  115.         ];
  116.         // check option names and live merge, if errors are encountered Exception will be thrown
  117.         $invalid = [];
  118.         foreach ($options as $key => $value) {
  119.             if (\array_key_exists($key$this->options)) {
  120.                 $this->options[$key] = $value;
  121.             } else {
  122.                 $invalid[] = $key;
  123.             }
  124.         }
  125.         if ($invalid) {
  126.             throw new \InvalidArgumentException(sprintf('The Router does not support the following options: "%s".'implode('", "'$invalid)));
  127.         }
  128.     }
  129.     /**
  130.      * Sets an option.
  131.      *
  132.      * @throws \InvalidArgumentException
  133.      */
  134.     public function setOption(string $keymixed $value)
  135.     {
  136.         if (!\array_key_exists($key$this->options)) {
  137.             throw new \InvalidArgumentException(sprintf('The Router does not support the "%s" option.'$key));
  138.         }
  139.         $this->options[$key] = $value;
  140.     }
  141.     /**
  142.      * Gets an option value.
  143.      *
  144.      * @throws \InvalidArgumentException
  145.      */
  146.     public function getOption(string $key): mixed
  147.     {
  148.         if (!\array_key_exists($key$this->options)) {
  149.             throw new \InvalidArgumentException(sprintf('The Router does not support the "%s" option.'$key));
  150.         }
  151.         return $this->options[$key];
  152.     }
  153.     public function getRouteCollection()
  154.     {
  155.         if (null === $this->collection) {
  156.             $this->collection $this->loader->load($this->resource$this->options['resource_type']);
  157.         }
  158.         return $this->collection;
  159.     }
  160.     public function setContext(RequestContext $context)
  161.     {
  162.         $this->context $context;
  163.         if (null !== $this->matcher) {
  164.             $this->getMatcher()->setContext($context);
  165.         }
  166.         if (null !== $this->generator) {
  167.             $this->getGenerator()->setContext($context);
  168.         }
  169.     }
  170.     public function getContext(): RequestContext
  171.     {
  172.         return $this->context;
  173.     }
  174.     /**
  175.      * Sets the ConfigCache factory to use.
  176.      */
  177.     public function setConfigCacheFactory(ConfigCacheFactoryInterface $configCacheFactory)
  178.     {
  179.         $this->configCacheFactory $configCacheFactory;
  180.     }
  181.     public function generate(string $name, array $parameters = [], int $referenceType self::ABSOLUTE_PATH): string
  182.     {
  183.         return $this->getGenerator()->generate($name$parameters$referenceType);
  184.     }
  185.     public function match(string $pathinfo): array
  186.     {
  187.         return $this->getMatcher()->match($pathinfo);
  188.     }
  189.     public function matchRequest(Request $request): array
  190.     {
  191.         $matcher $this->getMatcher();
  192.         if (!$matcher instanceof RequestMatcherInterface) {
  193.             // fallback to the default UrlMatcherInterface
  194.             return $matcher->match($request->getPathInfo());
  195.         }
  196.         return $matcher->matchRequest($request);
  197.     }
  198.     /**
  199.      * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
  200.      */
  201.     public function getMatcher(): UrlMatcherInterface|RequestMatcherInterface
  202.     {
  203.         if (null !== $this->matcher) {
  204.             return $this->matcher;
  205.         }
  206.         if (null === $this->options['cache_dir']) {
  207.             $routes $this->getRouteCollection();
  208.             $compiled is_a($this->options['matcher_class'], CompiledUrlMatcher::class, true);
  209.             if ($compiled) {
  210.                 $routes = (new CompiledUrlMatcherDumper($routes))->getCompiledRoutes();
  211.             }
  212.             $this->matcher = new $this->options['matcher_class']($routes$this->context);
  213.             if (method_exists($this->matcher'addExpressionLanguageProvider')) {
  214.                 foreach ($this->expressionLanguageProviders as $provider) {
  215.                     $this->matcher->addExpressionLanguageProvider($provider);
  216.                 }
  217.             }
  218.             return $this->matcher;
  219.         }
  220.         $cache $this->getConfigCacheFactory()->cache($this->options['cache_dir'].'/url_matching_routes.php',
  221.             function (ConfigCacheInterface $cache) {
  222.                 $dumper $this->getMatcherDumperInstance();
  223.                 if (method_exists($dumper'addExpressionLanguageProvider')) {
  224.                     foreach ($this->expressionLanguageProviders as $provider) {
  225.                         $dumper->addExpressionLanguageProvider($provider);
  226.                     }
  227.                 }
  228.                 $cache->write($dumper->dump(), $this->getRouteCollection()->getResources());
  229.             }
  230.         );
  231.         return $this->matcher = new $this->options['matcher_class'](self::getCompiledRoutes($cache->getPath()), $this->context);
  232.     }
  233.     /**
  234.      * Gets the UrlGenerator instance associated with this Router.
  235.      */
  236.     public function getGenerator(): UrlGeneratorInterface
  237.     {
  238.         if (null !== $this->generator) {
  239.             return $this->generator;
  240.         }
  241.         if (null === $this->options['cache_dir']) {
  242.             $routes $this->getRouteCollection();
  243.             $aliases = [];
  244.             $compiled is_a($this->options['generator_class'], CompiledUrlGenerator::class, true);
  245.             if ($compiled) {
  246.                 $generatorDumper = new CompiledUrlGeneratorDumper($routes);
  247.                 $routes $generatorDumper->getCompiledRoutes();
  248.                 $aliases $generatorDumper->getCompiledAliases();
  249.             }
  250.             $this->generator = new $this->options['generator_class'](array_merge($routes$aliases), $this->context$this->logger$this->defaultLocale);
  251.         } else {
  252.             $cache $this->getConfigCacheFactory()->cache($this->options['cache_dir'].'/url_generating_routes.php',
  253.                 function (ConfigCacheInterface $cache) {
  254.                     $dumper $this->getGeneratorDumperInstance();
  255.                     $cache->write($dumper->dump(), $this->getRouteCollection()->getResources());
  256.                 }
  257.             );
  258.             $this->generator = new $this->options['generator_class'](self::getCompiledRoutes($cache->getPath()), $this->context$this->logger$this->defaultLocale);
  259.         }
  260.         if ($this->generator instanceof ConfigurableRequirementsInterface) {
  261.             $this->generator->setStrictRequirements($this->options['strict_requirements']);
  262.         }
  263.         return $this->generator;
  264.     }
  265.     public function addExpressionLanguageProvider(ExpressionFunctionProviderInterface $provider)
  266.     {
  267.         $this->expressionLanguageProviders[] = $provider;
  268.     }
  269.     protected function getGeneratorDumperInstance(): GeneratorDumperInterface
  270.     {
  271.         return new $this->options['generator_dumper_class']($this->getRouteCollection());
  272.     }
  273.     protected function getMatcherDumperInstance(): MatcherDumperInterface
  274.     {
  275.         return new $this->options['matcher_dumper_class']($this->getRouteCollection());
  276.     }
  277.     /**
  278.      * Provides the ConfigCache factory implementation, falling back to a
  279.      * default implementation if necessary.
  280.      */
  281.     private function getConfigCacheFactory(): ConfigCacheFactoryInterface
  282.     {
  283.         return $this->configCacheFactory ??= new ConfigCacheFactory($this->options['debug']);
  284.     }
  285.     private static function getCompiledRoutes(string $path): array
  286.     {
  287.         if ([] === self::$cache && \function_exists('opcache_invalidate') && filter_var(\ini_get('opcache.enable'), \FILTER_VALIDATE_BOOL) && (!\in_array(\PHP_SAPI, ['cli''phpdbg'], true) || filter_var(\ini_get('opcache.enable_cli'), \FILTER_VALIDATE_BOOL))) {
  288.             self::$cache null;
  289.         }
  290.         if (null === self::$cache) {
  291.             return require $path;
  292.         }
  293.         return self::$cache[$path] ??= require $path;
  294.     }
  295. }