vendor/symfony/routing/Matcher/UrlMatcher.php line 106

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\Matcher;
  11. use Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface;
  12. use Symfony\Component\ExpressionLanguage\ExpressionLanguage;
  13. use Symfony\Component\HttpFoundation\Request;
  14. use Symfony\Component\Routing\Exception\MethodNotAllowedException;
  15. use Symfony\Component\Routing\Exception\NoConfigurationException;
  16. use Symfony\Component\Routing\Exception\ResourceNotFoundException;
  17. use Symfony\Component\Routing\RequestContext;
  18. use Symfony\Component\Routing\Route;
  19. use Symfony\Component\Routing\RouteCollection;
  20. /**
  21.  * UrlMatcher matches URL based on a set of routes.
  22.  *
  23.  * @author Fabien Potencier <fabien@symfony.com>
  24.  */
  25. class UrlMatcher implements UrlMatcherInterfaceRequestMatcherInterface
  26. {
  27.     const REQUIREMENT_MATCH 0;
  28.     const REQUIREMENT_MISMATCH 1;
  29.     const ROUTE_MATCH 2;
  30.     /** @var RequestContext */
  31.     protected $context;
  32.     /**
  33.      * Collects HTTP methods that would be allowed for the request.
  34.      */
  35.     protected $allow = [];
  36.     /**
  37.      * Collects URI schemes that would be allowed for the request.
  38.      *
  39.      * @internal
  40.      */
  41.     protected $allowSchemes = [];
  42.     protected $routes;
  43.     protected $request;
  44.     protected $expressionLanguage;
  45.     /**
  46.      * @var ExpressionFunctionProviderInterface[]
  47.      */
  48.     protected $expressionLanguageProviders = [];
  49.     public function __construct(RouteCollection $routesRequestContext $context)
  50.     {
  51.         $this->routes $routes;
  52.         $this->context $context;
  53.     }
  54.     /**
  55.      * {@inheritdoc}
  56.      */
  57.     public function setContext(RequestContext $context)
  58.     {
  59.         $this->context $context;
  60.     }
  61.     /**
  62.      * {@inheritdoc}
  63.      */
  64.     public function getContext()
  65.     {
  66.         return $this->context;
  67.     }
  68.     /**
  69.      * {@inheritdoc}
  70.      */
  71.     public function match($pathinfo)
  72.     {
  73.         $this->allow $this->allowSchemes = [];
  74.         if ($ret $this->matchCollection(rawurldecode($pathinfo) ?: '/'$this->routes)) {
  75.             return $ret;
  76.         }
  77.         if ('/' === $pathinfo && !$this->allow && !$this->allowSchemes) {
  78.             throw new NoConfigurationException();
  79.         }
  80.         throw < \count($this->allow) ? new MethodNotAllowedException(array_unique($this->allow)) : new ResourceNotFoundException(sprintf('No routes found for "%s".'$pathinfo));
  81.     }
  82.     /**
  83.      * {@inheritdoc}
  84.      */
  85.     public function matchRequest(Request $request)
  86.     {
  87.         $this->request $request;
  88.         $ret $this->match($request->getPathInfo());
  89.         $this->request null;
  90.         return $ret;
  91.     }
  92.     public function addExpressionLanguageProvider(ExpressionFunctionProviderInterface $provider)
  93.     {
  94.         $this->expressionLanguageProviders[] = $provider;
  95.     }
  96.     /**
  97.      * Tries to match a URL with a set of routes.
  98.      *
  99.      * @param string          $pathinfo The path info to be parsed
  100.      * @param RouteCollection $routes   The set of routes
  101.      *
  102.      * @return array An array of parameters
  103.      *
  104.      * @throws NoConfigurationException  If no routing configuration could be found
  105.      * @throws ResourceNotFoundException If the resource could not be found
  106.      * @throws MethodNotAllowedException If the resource was found but the request method is not allowed
  107.      */
  108.     protected function matchCollection($pathinfoRouteCollection $routes)
  109.     {
  110.         // HEAD and GET are equivalent as per RFC
  111.         if ('HEAD' === $method $this->context->getMethod()) {
  112.             $method 'GET';
  113.         }
  114.         $supportsTrailingSlash 'GET' === $method && $this instanceof RedirectableUrlMatcherInterface;
  115.         $trimmedPathinfo rtrim($pathinfo'/') ?: '/';
  116.         foreach ($routes as $name => $route) {
  117.             $compiledRoute $route->compile();
  118.             $staticPrefix rtrim($compiledRoute->getStaticPrefix(), '/');
  119.             $requiredMethods $route->getMethods();
  120.             // check the static prefix of the URL first. Only use the more expensive preg_match when it matches
  121.             if ('' !== $staticPrefix && !== strpos($trimmedPathinfo$staticPrefix)) {
  122.                 continue;
  123.             }
  124.             $regex $compiledRoute->getRegex();
  125.             $pos strrpos($regex'$');
  126.             $hasTrailingSlash '/' === $regex[$pos 1];
  127.             $regex substr_replace($regex'/?$'$pos $hasTrailingSlash$hasTrailingSlash);
  128.             if (!preg_match($regex$pathinfo$matches)) {
  129.                 continue;
  130.             }
  131.             $hasTrailingVar $trimmedPathinfo !== $pathinfo && preg_match('#\{\w+\}/?$#'$route->getPath());
  132.             if ($hasTrailingVar && ($hasTrailingSlash || (null === $m $matches[\count($compiledRoute->getPathVariables())] ?? null) || '/' !== ($m[-1] ?? '/')) && preg_match($regex$trimmedPathinfo$m)) {
  133.                 if ($hasTrailingSlash) {
  134.                     $matches $m;
  135.                 } else {
  136.                     $hasTrailingVar false;
  137.                 }
  138.             }
  139.             $hostMatches = [];
  140.             if ($compiledRoute->getHostRegex() && !preg_match($compiledRoute->getHostRegex(), $this->context->getHost(), $hostMatches)) {
  141.                 continue;
  142.             }
  143.             $status $this->handleRouteRequirements($pathinfo$name$route);
  144.             if (self::REQUIREMENT_MISMATCH === $status[0]) {
  145.                 continue;
  146.             }
  147.             if ('/' !== $pathinfo && !$hasTrailingVar && $hasTrailingSlash === ($trimmedPathinfo === $pathinfo)) {
  148.                 if ($supportsTrailingSlash && (!$requiredMethods || \in_array('GET'$requiredMethods))) {
  149.                     return $this->allow $this->allowSchemes = [];
  150.                 }
  151.                 continue;
  152.             }
  153.             if ($route->getSchemes() && !$route->hasScheme($this->context->getScheme())) {
  154.                 $this->allowSchemes array_merge($this->allowSchemes$route->getSchemes());
  155.                 continue;
  156.             }
  157.             if ($requiredMethods && !\in_array($method$requiredMethods)) {
  158.                 $this->allow array_merge($this->allow$requiredMethods);
  159.                 continue;
  160.             }
  161.             return $this->getAttributes($route$namearray_replace($matches$hostMatches, isset($status[1]) ? $status[1] : []));
  162.         }
  163.         return [];
  164.     }
  165.     /**
  166.      * Returns an array of values to use as request attributes.
  167.      *
  168.      * As this method requires the Route object, it is not available
  169.      * in matchers that do not have access to the matched Route instance
  170.      * (like the PHP and Apache matcher dumpers).
  171.      *
  172.      * @param Route  $route      The route we are matching against
  173.      * @param string $name       The name of the route
  174.      * @param array  $attributes An array of attributes from the matcher
  175.      *
  176.      * @return array An array of parameters
  177.      */
  178.     protected function getAttributes(Route $route$name, array $attributes)
  179.     {
  180.         $defaults $route->getDefaults();
  181.         if (isset($defaults['_canonical_route'])) {
  182.             $name $defaults['_canonical_route'];
  183.             unset($defaults['_canonical_route']);
  184.         }
  185.         $attributes['_route'] = $name;
  186.         return $this->mergeDefaults($attributes$defaults);
  187.     }
  188.     /**
  189.      * Handles specific route requirements.
  190.      *
  191.      * @param string $pathinfo The path
  192.      * @param string $name     The route name
  193.      * @param Route  $route    The route
  194.      *
  195.      * @return array The first element represents the status, the second contains additional information
  196.      */
  197.     protected function handleRouteRequirements($pathinfo$nameRoute $route)
  198.     {
  199.         // expression condition
  200.         if ($route->getCondition() && !$this->getExpressionLanguage()->evaluate($route->getCondition(), ['context' => $this->context'request' => $this->request ?: $this->createRequest($pathinfo)])) {
  201.             return [self::REQUIREMENT_MISMATCHnull];
  202.         }
  203.         return [self::REQUIREMENT_MATCHnull];
  204.     }
  205.     /**
  206.      * Get merged default parameters.
  207.      *
  208.      * @param array $params   The parameters
  209.      * @param array $defaults The defaults
  210.      *
  211.      * @return array Merged default parameters
  212.      */
  213.     protected function mergeDefaults($params$defaults)
  214.     {
  215.         foreach ($params as $key => $value) {
  216.             if (!\is_int($key) && null !== $value) {
  217.                 $defaults[$key] = $value;
  218.             }
  219.         }
  220.         return $defaults;
  221.     }
  222.     protected function getExpressionLanguage()
  223.     {
  224.         if (null === $this->expressionLanguage) {
  225.             if (!class_exists('Symfony\Component\ExpressionLanguage\ExpressionLanguage')) {
  226.                 throw new \LogicException('Unable to use expressions as the Symfony ExpressionLanguage component is not installed.');
  227.             }
  228.             $this->expressionLanguage = new ExpressionLanguage(null$this->expressionLanguageProviders);
  229.         }
  230.         return $this->expressionLanguage;
  231.     }
  232.     /**
  233.      * @internal
  234.      */
  235.     protected function createRequest($pathinfo)
  236.     {
  237.         if (!class_exists('Symfony\Component\HttpFoundation\Request')) {
  238.             return null;
  239.         }
  240.         return Request::create($this->context->getScheme().'://'.$this->context->getHost().$this->context->getBaseUrl().$pathinfo$this->context->getMethod(), $this->context->getParameters(), [], [], [
  241.             'SCRIPT_FILENAME' => $this->context->getBaseUrl(),
  242.             'SCRIPT_NAME' => $this->context->getBaseUrl(),
  243.         ]);
  244.     }
  245. }