vendor/symfony/routing/Router.php line 225

  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.         return $this->collection ??= $this->loader->load($this->resource$this->options['resource_type']);
  156.     }
  157.     public function setContext(RequestContext $context)
  158.     {
  159.         $this->context $context;
  160.         if (null !== $this->matcher) {
  161.             $this->getMatcher()->setContext($context);
  162.         }
  163.         if (null !== $this->generator) {
  164.             $this->getGenerator()->setContext($context);
  165.         }
  166.     }
  167.     public function getContext(): RequestContext
  168.     {
  169.         return $this->context;
  170.     }
  171.     /**
  172.      * Sets the ConfigCache factory to use.
  173.      */
  174.     public function setConfigCacheFactory(ConfigCacheFactoryInterface $configCacheFactory)
  175.     {
  176.         $this->configCacheFactory $configCacheFactory;
  177.     }
  178.     public function generate(string $name, array $parameters = [], int $referenceType self::ABSOLUTE_PATH): string
  179.     {
  180.         return $this->getGenerator()->generate($name$parameters$referenceType);
  181.     }
  182.     public function match(string $pathinfo): array
  183.     {
  184.         return $this->getMatcher()->match($pathinfo);
  185.     }
  186.     public function matchRequest(Request $request): array
  187.     {
  188.         $matcher $this->getMatcher();
  189.         if (!$matcher instanceof RequestMatcherInterface) {
  190.             // fallback to the default UrlMatcherInterface
  191.             return $matcher->match($request->getPathInfo());
  192.         }
  193.         return $matcher->matchRequest($request);
  194.     }
  195.     /**
  196.      * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
  197.      */
  198.     public function getMatcher(): UrlMatcherInterface|RequestMatcherInterface
  199.     {
  200.         if (null !== $this->matcher) {
  201.             return $this->matcher;
  202.         }
  203.         if (null === $this->options['cache_dir']) {
  204.             $routes $this->getRouteCollection();
  205.             $compiled is_a($this->options['matcher_class'], CompiledUrlMatcher::class, true);
  206.             if ($compiled) {
  207.                 $routes = (new CompiledUrlMatcherDumper($routes))->getCompiledRoutes();
  208.             }
  209.             $this->matcher = new $this->options['matcher_class']($routes$this->context);
  210.             if (method_exists($this->matcher'addExpressionLanguageProvider')) {
  211.                 foreach ($this->expressionLanguageProviders as $provider) {
  212.                     $this->matcher->addExpressionLanguageProvider($provider);
  213.                 }
  214.             }
  215.             return $this->matcher;
  216.         }
  217.         $cache $this->getConfigCacheFactory()->cache($this->options['cache_dir'].'/url_matching_routes.php',
  218.             function (ConfigCacheInterface $cache) {
  219.                 $dumper $this->getMatcherDumperInstance();
  220.                 if (method_exists($dumper'addExpressionLanguageProvider')) {
  221.                     foreach ($this->expressionLanguageProviders as $provider) {
  222.                         $dumper->addExpressionLanguageProvider($provider);
  223.                     }
  224.                 }
  225.                 $cache->write($dumper->dump(), $this->getRouteCollection()->getResources());
  226.             }
  227.         );
  228.         return $this->matcher = new $this->options['matcher_class'](self::getCompiledRoutes($cache->getPath()), $this->context);
  229.     }
  230.     /**
  231.      * Gets the UrlGenerator instance associated with this Router.
  232.      */
  233.     public function getGenerator(): UrlGeneratorInterface
  234.     {
  235.         if (null !== $this->generator) {
  236.             return $this->generator;
  237.         }
  238.         if (null === $this->options['cache_dir']) {
  239.             $routes $this->getRouteCollection();
  240.             $compiled is_a($this->options['generator_class'], CompiledUrlGenerator::class, true);
  241.             if ($compiled) {
  242.                 $generatorDumper = new CompiledUrlGeneratorDumper($routes);
  243.                 $routes array_merge($generatorDumper->getCompiledRoutes(), $generatorDumper->getCompiledAliases());
  244.             }
  245.             $this->generator = new $this->options['generator_class']($routes$this->context$this->logger$this->defaultLocale);
  246.         } else {
  247.             $cache $this->getConfigCacheFactory()->cache($this->options['cache_dir'].'/url_generating_routes.php',
  248.                 function (ConfigCacheInterface $cache) {
  249.                     $dumper $this->getGeneratorDumperInstance();
  250.                     $cache->write($dumper->dump(), $this->getRouteCollection()->getResources());
  251.                 }
  252.             );
  253.             $this->generator = new $this->options['generator_class'](self::getCompiledRoutes($cache->getPath()), $this->context$this->logger$this->defaultLocale);
  254.         }
  255.         if ($this->generator instanceof ConfigurableRequirementsInterface) {
  256.             $this->generator->setStrictRequirements($this->options['strict_requirements']);
  257.         }
  258.         return $this->generator;
  259.     }
  260.     public function addExpressionLanguageProvider(ExpressionFunctionProviderInterface $provider)
  261.     {
  262.         $this->expressionLanguageProviders[] = $provider;
  263.     }
  264.     protected function getGeneratorDumperInstance(): GeneratorDumperInterface
  265.     {
  266.         return new $this->options['generator_dumper_class']($this->getRouteCollection());
  267.     }
  268.     protected function getMatcherDumperInstance(): MatcherDumperInterface
  269.     {
  270.         return new $this->options['matcher_dumper_class']($this->getRouteCollection());
  271.     }
  272.     /**
  273.      * Provides the ConfigCache factory implementation, falling back to a
  274.      * default implementation if necessary.
  275.      */
  276.     private function getConfigCacheFactory(): ConfigCacheFactoryInterface
  277.     {
  278.         return $this->configCacheFactory ??= new ConfigCacheFactory($this->options['debug']);
  279.     }
  280.     private static function getCompiledRoutes(string $path): array
  281.     {
  282.         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))) {
  283.             self::$cache null;
  284.         }
  285.         if (null === self::$cache) {
  286.             return require $path;
  287.         }
  288.         return self::$cache[$path] ??= require $path;
  289.     }
  290. }