vendor/symfony/routing/Router.php line 280

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\Bundle\FrameworkBundle\Routing\RedirectableUrlMatcher;
  13. use Symfony\Component\Config\ConfigCacheFactory;
  14. use Symfony\Component\Config\ConfigCacheFactoryInterface;
  15. use Symfony\Component\Config\ConfigCacheInterface;
  16. use Symfony\Component\Config\Loader\LoaderInterface;
  17. use Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface;
  18. use Symfony\Component\HttpFoundation\Request;
  19. use Symfony\Component\Routing\Generator\CompiledUrlGenerator;
  20. use Symfony\Component\Routing\Generator\ConfigurableRequirementsInterface;
  21. use Symfony\Component\Routing\Generator\Dumper\CompiledUrlGeneratorDumper;
  22. use Symfony\Component\Routing\Generator\Dumper\GeneratorDumperInterface;
  23. use Symfony\Component\Routing\Generator\Dumper\PhpGeneratorDumper;
  24. use Symfony\Component\Routing\Generator\UrlGenerator;
  25. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  26. use Symfony\Component\Routing\Matcher\CompiledUrlMatcher;
  27. use Symfony\Component\Routing\Matcher\Dumper\CompiledUrlMatcherDumper;
  28. use Symfony\Component\Routing\Matcher\Dumper\MatcherDumperInterface;
  29. use Symfony\Component\Routing\Matcher\Dumper\PhpMatcherDumper;
  30. use Symfony\Component\Routing\Matcher\RequestMatcherInterface;
  31. use Symfony\Component\Routing\Matcher\UrlMatcher;
  32. use Symfony\Component\Routing\Matcher\UrlMatcherInterface;
  33. /**
  34.  * The Router class is an example of the integration of all pieces of the
  35.  * routing system for easier use.
  36.  *
  37.  * @author Fabien Potencier <fabien@symfony.com>
  38.  */
  39. class Router implements RouterInterfaceRequestMatcherInterface
  40. {
  41.     /**
  42.      * @var UrlMatcherInterface|null
  43.      */
  44.     protected $matcher;
  45.     /**
  46.      * @var UrlGeneratorInterface|null
  47.      */
  48.     protected $generator;
  49.     /**
  50.      * @var RequestContext
  51.      */
  52.     protected $context;
  53.     /**
  54.      * @var LoaderInterface
  55.      */
  56.     protected $loader;
  57.     /**
  58.      * @var RouteCollection|null
  59.      */
  60.     protected $collection;
  61.     /**
  62.      * @var mixed
  63.      */
  64.     protected $resource;
  65.     /**
  66.      * @var array
  67.      */
  68.     protected $options = [];
  69.     /**
  70.      * @var LoggerInterface|null
  71.      */
  72.     protected $logger;
  73.     /**
  74.      * @var string|null
  75.      */
  76.     protected $defaultLocale;
  77.     /**
  78.      * @var ConfigCacheFactoryInterface|null
  79.      */
  80.     private $configCacheFactory;
  81.     /**
  82.      * @var ExpressionFunctionProviderInterface[]
  83.      */
  84.     private $expressionLanguageProviders = [];
  85.     private static $cache = [];
  86.     /**
  87.      * @param LoaderInterface $loader   A LoaderInterface instance
  88.      * @param mixed           $resource The main resource to load
  89.      * @param array           $options  An array of options
  90.      * @param RequestContext  $context  The context
  91.      * @param LoggerInterface $logger   A logger instance
  92.      */
  93.     public function __construct(LoaderInterface $loader$resource, array $options = [], RequestContext $context nullLoggerInterface $logger nullstring $defaultLocale null)
  94.     {
  95.         $this->loader $loader;
  96.         $this->resource $resource;
  97.         $this->logger $logger;
  98.         $this->context $context ?: new RequestContext();
  99.         $this->setOptions($options);
  100.         $this->defaultLocale $defaultLocale;
  101.     }
  102.     /**
  103.      * Sets options.
  104.      *
  105.      * Available options:
  106.      *
  107.      *   * cache_dir:              The cache directory (or null to disable caching)
  108.      *   * debug:                  Whether to enable debugging or not (false by default)
  109.      *   * generator_class:        The name of a UrlGeneratorInterface implementation
  110.      *   * generator_dumper_class: The name of a GeneratorDumperInterface implementation
  111.      *   * matcher_class:          The name of a UrlMatcherInterface implementation
  112.      *   * matcher_dumper_class:   The name of a MatcherDumperInterface implementation
  113.      *   * resource_type:          Type hint for the main resource (optional)
  114.      *   * strict_requirements:    Configure strict requirement checking for generators
  115.      *                             implementing ConfigurableRequirementsInterface (default is true)
  116.      *
  117.      * @param array $options An array of options
  118.      *
  119.      * @throws \InvalidArgumentException When unsupported option is provided
  120.      */
  121.     public function setOptions(array $options)
  122.     {
  123.         $this->options = [
  124.             'cache_dir' => null,
  125.             'debug' => false,
  126.             'generator_class' => CompiledUrlGenerator::class,
  127.             'generator_base_class' => UrlGenerator::class, // deprecated
  128.             'generator_dumper_class' => CompiledUrlGeneratorDumper::class,
  129.             'generator_cache_class' => 'UrlGenerator'// deprecated
  130.             'matcher_class' => CompiledUrlMatcher::class,
  131.             'matcher_base_class' => UrlMatcher::class, // deprecated
  132.             'matcher_dumper_class' => CompiledUrlMatcherDumper::class,
  133.             'matcher_cache_class' => 'UrlMatcher'// deprecated
  134.             'resource_type' => null,
  135.             'strict_requirements' => true,
  136.         ];
  137.         // check option names and live merge, if errors are encountered Exception will be thrown
  138.         $invalid = [];
  139.         foreach ($options as $key => $value) {
  140.             $this->checkDeprecatedOption($key);
  141.             if (\array_key_exists($key$this->options)) {
  142.                 $this->options[$key] = $value;
  143.             } else {
  144.                 $invalid[] = $key;
  145.             }
  146.         }
  147.         if ($invalid) {
  148.             throw new \InvalidArgumentException(sprintf('The Router does not support the following options: "%s".'implode('", "'$invalid)));
  149.         }
  150.     }
  151.     /**
  152.      * Sets an option.
  153.      *
  154.      * @param string $key   The key
  155.      * @param mixed  $value The value
  156.      *
  157.      * @throws \InvalidArgumentException
  158.      */
  159.     public function setOption($key$value)
  160.     {
  161.         if (!\array_key_exists($key$this->options)) {
  162.             throw new \InvalidArgumentException(sprintf('The Router does not support the "%s" option.'$key));
  163.         }
  164.         $this->checkDeprecatedOption($key);
  165.         $this->options[$key] = $value;
  166.     }
  167.     /**
  168.      * Gets an option value.
  169.      *
  170.      * @param string $key The key
  171.      *
  172.      * @return mixed The value
  173.      *
  174.      * @throws \InvalidArgumentException
  175.      */
  176.     public function getOption($key)
  177.     {
  178.         if (!\array_key_exists($key$this->options)) {
  179.             throw new \InvalidArgumentException(sprintf('The Router does not support the "%s" option.'$key));
  180.         }
  181.         $this->checkDeprecatedOption($key);
  182.         return $this->options[$key];
  183.     }
  184.     /**
  185.      * {@inheritdoc}
  186.      */
  187.     public function getRouteCollection()
  188.     {
  189.         if (null === $this->collection) {
  190.             $this->collection $this->loader->load($this->resource$this->options['resource_type']);
  191.         }
  192.         return $this->collection;
  193.     }
  194.     /**
  195.      * {@inheritdoc}
  196.      */
  197.     public function setContext(RequestContext $context)
  198.     {
  199.         $this->context $context;
  200.         if (null !== $this->matcher) {
  201.             $this->getMatcher()->setContext($context);
  202.         }
  203.         if (null !== $this->generator) {
  204.             $this->getGenerator()->setContext($context);
  205.         }
  206.     }
  207.     /**
  208.      * {@inheritdoc}
  209.      */
  210.     public function getContext()
  211.     {
  212.         return $this->context;
  213.     }
  214.     /**
  215.      * Sets the ConfigCache factory to use.
  216.      */
  217.     public function setConfigCacheFactory(ConfigCacheFactoryInterface $configCacheFactory)
  218.     {
  219.         $this->configCacheFactory $configCacheFactory;
  220.     }
  221.     /**
  222.      * {@inheritdoc}
  223.      */
  224.     public function generate($name$parameters = [], $referenceType self::ABSOLUTE_PATH)
  225.     {
  226.         return $this->getGenerator()->generate($name$parameters$referenceType);
  227.     }
  228.     /**
  229.      * {@inheritdoc}
  230.      */
  231.     public function match($pathinfo)
  232.     {
  233.         return $this->getMatcher()->match($pathinfo);
  234.     }
  235.     /**
  236.      * {@inheritdoc}
  237.      */
  238.     public function matchRequest(Request $request)
  239.     {
  240.         $matcher $this->getMatcher();
  241.         if (!$matcher instanceof RequestMatcherInterface) {
  242.             // fallback to the default UrlMatcherInterface
  243.             return $matcher->match($request->getPathInfo());
  244.         }
  245.         return $matcher->matchRequest($request);
  246.     }
  247.     /**
  248.      * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
  249.      *
  250.      * @return UrlMatcherInterface|RequestMatcherInterface
  251.      */
  252.     public function getMatcher()
  253.     {
  254.         if (null !== $this->matcher) {
  255.             return $this->matcher;
  256.         }
  257.         $compiled is_a($this->options['matcher_class'], CompiledUrlMatcher::class, true) && (UrlMatcher::class === $this->options['matcher_base_class'] || RedirectableUrlMatcher::class === $this->options['matcher_base_class']) && is_a($this->options['matcher_dumper_class'], CompiledUrlMatcherDumper::class, true);
  258.         if (null === $this->options['cache_dir'] || null === $this->options['matcher_cache_class']) {
  259.             $routes $this->getRouteCollection();
  260.             if ($compiled) {
  261.                 $routes = (new CompiledUrlMatcherDumper($routes))->getCompiledRoutes();
  262.             }
  263.             $this->matcher = new $this->options['matcher_class']($routes$this->context);
  264.             if (method_exists($this->matcher'addExpressionLanguageProvider')) {
  265.                 foreach ($this->expressionLanguageProviders as $provider) {
  266.                     $this->matcher->addExpressionLanguageProvider($provider);
  267.                 }
  268.             }
  269.             return $this->matcher;
  270.         }
  271.         $cache $this->getConfigCacheFactory()->cache($this->options['cache_dir'].'/'.$this->options['matcher_cache_class'].'.php',
  272.             function (ConfigCacheInterface $cache) {
  273.                 $dumper $this->getMatcherDumperInstance();
  274.                 if (method_exists($dumper'addExpressionLanguageProvider')) {
  275.                     foreach ($this->expressionLanguageProviders as $provider) {
  276.                         $dumper->addExpressionLanguageProvider($provider);
  277.                     }
  278.                 }
  279.                 $options = [
  280.                     'class' => $this->options['matcher_cache_class'],
  281.                     'base_class' => $this->options['matcher_base_class'],
  282.                 ];
  283.                 $cache->write($dumper->dump($options), $this->getRouteCollection()->getResources());
  284.             }
  285.         );
  286.         if ($compiled) {
  287.             return $this->matcher = new $this->options['matcher_class'](self::getCompiledRoutes($cache->getPath()), $this->context);
  288.         }
  289.         if (!class_exists($this->options['matcher_cache_class'], false)) {
  290.             require_once $cache->getPath();
  291.         }
  292.         return $this->matcher = new $this->options['matcher_cache_class']($this->context);
  293.     }
  294.     /**
  295.      * Gets the UrlGenerator instance associated with this Router.
  296.      *
  297.      * @return UrlGeneratorInterface A UrlGeneratorInterface instance
  298.      */
  299.     public function getGenerator()
  300.     {
  301.         if (null !== $this->generator) {
  302.             return $this->generator;
  303.         }
  304.         $compiled is_a($this->options['generator_class'], CompiledUrlGenerator::class, true) && UrlGenerator::class === $this->options['generator_base_class'] && is_a($this->options['generator_dumper_class'], CompiledUrlGeneratorDumper::class, true);
  305.         if (null === $this->options['cache_dir'] || null === $this->options['generator_cache_class']) {
  306.             $routes $this->getRouteCollection();
  307.             if ($compiled) {
  308.                 $routes = (new CompiledUrlGeneratorDumper($routes))->getCompiledRoutes();
  309.             }
  310.             $this->generator = new $this->options['generator_class']($routes$this->context$this->logger$this->defaultLocale);
  311.         } else {
  312.             $cache $this->getConfigCacheFactory()->cache($this->options['cache_dir'].'/'.$this->options['generator_cache_class'].'.php',
  313.                 function (ConfigCacheInterface $cache) {
  314.                     $dumper $this->getGeneratorDumperInstance();
  315.                     $options = [
  316.                         'class' => $this->options['generator_cache_class'],
  317.                         'base_class' => $this->options['generator_base_class'],
  318.                     ];
  319.                     $cache->write($dumper->dump($options), $this->getRouteCollection()->getResources());
  320.                 }
  321.             );
  322.             if ($compiled) {
  323.                 $this->generator = new $this->options['generator_class'](self::getCompiledRoutes($cache->getPath()), $this->context$this->logger$this->defaultLocale);
  324.             } else {
  325.                 if (!class_exists($this->options['generator_cache_class'], false)) {
  326.                     require_once $cache->getPath();
  327.                 }
  328.                 $this->generator = new $this->options['generator_cache_class']($this->context$this->logger$this->defaultLocale);
  329.             }
  330.         }
  331.         if ($this->generator instanceof ConfigurableRequirementsInterface) {
  332.             $this->generator->setStrictRequirements($this->options['strict_requirements']);
  333.         }
  334.         return $this->generator;
  335.     }
  336.     public function addExpressionLanguageProvider(ExpressionFunctionProviderInterface $provider)
  337.     {
  338.         $this->expressionLanguageProviders[] = $provider;
  339.     }
  340.     /**
  341.      * @return GeneratorDumperInterface
  342.      */
  343.     protected function getGeneratorDumperInstance()
  344.     {
  345.         // For BC, fallback to PhpGeneratorDumper (which is the old default value) if the old UrlGenerator is used with the new default CompiledUrlGeneratorDumper
  346.         if (!is_a($this->options['generator_class'], CompiledUrlGenerator::class, true) && is_a($this->options['generator_dumper_class'], CompiledUrlGeneratorDumper::class, true)) {
  347.             return new PhpGeneratorDumper($this->getRouteCollection());
  348.         }
  349.         return new $this->options['generator_dumper_class']($this->getRouteCollection());
  350.     }
  351.     /**
  352.      * @return MatcherDumperInterface
  353.      */
  354.     protected function getMatcherDumperInstance()
  355.     {
  356.         // For BC, fallback to PhpMatcherDumper (which is the old default value) if the old UrlMatcher is used with the new default CompiledUrlMatcherDumper
  357.         if (!is_a($this->options['matcher_class'], CompiledUrlMatcher::class, true) && is_a($this->options['matcher_dumper_class'], CompiledUrlMatcherDumper::class, true)) {
  358.             return new PhpMatcherDumper($this->getRouteCollection());
  359.         }
  360.         return new $this->options['matcher_dumper_class']($this->getRouteCollection());
  361.     }
  362.     /**
  363.      * Provides the ConfigCache factory implementation, falling back to a
  364.      * default implementation if necessary.
  365.      *
  366.      * @return ConfigCacheFactoryInterface
  367.      */
  368.     private function getConfigCacheFactory()
  369.     {
  370.         if (null === $this->configCacheFactory) {
  371.             $this->configCacheFactory = new ConfigCacheFactory($this->options['debug']);
  372.         }
  373.         return $this->configCacheFactory;
  374.     }
  375.     private function checkDeprecatedOption($key)
  376.     {
  377.         switch ($key) {
  378.             case 'generator_base_class':
  379.             case 'generator_cache_class':
  380.             case 'matcher_base_class':
  381.             case 'matcher_cache_class':
  382.                 @trigger_error(sprintf('Option "%s" given to router %s is deprecated since Symfony 4.3.'$key, static::class), E_USER_DEPRECATED);
  383.         }
  384.     }
  385.     private static function getCompiledRoutes(string $path): array
  386.     {
  387.         if ([] === self::$cache && \function_exists('opcache_invalidate') && filter_var(ini_get('opcache.enable'), FILTER_VALIDATE_BOOLEAN) && (!\in_array(\PHP_SAPI, ['cli''phpdbg'], true) || filter_var(ini_get('opcache.enable_cli'), FILTER_VALIDATE_BOOLEAN))) {
  388.             self::$cache null;
  389.         }
  390.         if (null === self::$cache) {
  391.             return require $path;
  392.         }
  393.         if (isset(self::$cache[$path])) {
  394.             return self::$cache[$path];
  395.         }
  396.         return self::$cache[$path] = require $path;
  397.     }
  398. }