vendor/symfony/routing/Router.php line 268

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