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.     public const REQUIREMENT_MATCH 0;
  28.     public const REQUIREMENT_MISMATCH 1;
  29.     public 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 array $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(): RequestContext
  65.     {
  66.         return $this->context;
  67.     }
  68.     /**
  69.      * {@inheritdoc}
  70.      */
  71.     public function match(string $pathinfo): array
  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): array
  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.      *
  101.      * @throws NoConfigurationException  If no routing configuration could be found
  102.      * @throws ResourceNotFoundException If the resource could not be found
  103.      * @throws MethodNotAllowedException If the resource was found but the request method is not allowed
  104.      */
  105.     protected function matchCollection(string $pathinfoRouteCollection $routes): array
  106.     {
  107.         // HEAD and GET are equivalent as per RFC
  108.         if ('HEAD' === $method $this->context->getMethod()) {
  109.             $method 'GET';
  110.         }
  111.         $supportsTrailingSlash 'GET' === $method && $this instanceof RedirectableUrlMatcherInterface;
  112.         $trimmedPathinfo rtrim($pathinfo'/') ?: '/';
  113.         foreach ($routes as $name => $route) {
  114.             $compiledRoute $route->compile();
  115.             $staticPrefix rtrim($compiledRoute->getStaticPrefix(), '/');
  116.             $requiredMethods $route->getMethods();
  117.             // check the static prefix of the URL first. Only use the more expensive preg_match when it matches
  118.             if ('' !== $staticPrefix && !str_starts_with($trimmedPathinfo$staticPrefix)) {
  119.                 continue;
  120.             }
  121.             $regex $compiledRoute->getRegex();
  122.             $pos strrpos($regex'$');
  123.             $hasTrailingSlash '/' === $regex[$pos 1];
  124.             $regex substr_replace($regex'/?$'$pos $hasTrailingSlash$hasTrailingSlash);
  125.             if (!preg_match($regex$pathinfo$matches)) {
  126.                 continue;
  127.             }
  128.             $hasTrailingVar $trimmedPathinfo !== $pathinfo && preg_match('#\{\w+\}/?$#'$route->getPath());
  129.             if ($hasTrailingVar && ($hasTrailingSlash || (null === $m $matches[\count($compiledRoute->getPathVariables())] ?? null) || '/' !== ($m[-1] ?? '/')) && preg_match($regex$trimmedPathinfo$m)) {
  130.                 if ($hasTrailingSlash) {
  131.                     $matches $m;
  132.                 } else {
  133.                     $hasTrailingVar false;
  134.                 }
  135.             }
  136.             $hostMatches = [];
  137.             if ($compiledRoute->getHostRegex() && !preg_match($compiledRoute->getHostRegex(), $this->context->getHost(), $hostMatches)) {
  138.                 continue;
  139.             }
  140.             $status $this->handleRouteRequirements($pathinfo$name$route);
  141.             if (self::REQUIREMENT_MISMATCH === $status[0]) {
  142.                 continue;
  143.             }
  144.             if ('/' !== $pathinfo && !$hasTrailingVar && $hasTrailingSlash === ($trimmedPathinfo === $pathinfo)) {
  145.                 if ($supportsTrailingSlash && (!$requiredMethods || \in_array('GET'$requiredMethods))) {
  146.                     return $this->allow $this->allowSchemes = [];
  147.                 }
  148.                 continue;
  149.             }
  150.             if ($route->getSchemes() && !$route->hasScheme($this->context->getScheme())) {
  151.                 $this->allowSchemes array_merge($this->allowSchemes$route->getSchemes());
  152.                 continue;
  153.             }
  154.             if ($requiredMethods && !\in_array($method$requiredMethods)) {
  155.                 $this->allow array_merge($this->allow$requiredMethods);
  156.                 continue;
  157.             }
  158.             return $this->getAttributes($route$namearray_replace($matches$hostMatches$status[1] ?? []));
  159.         }
  160.         return [];
  161.     }
  162.     /**
  163.      * Returns an array of values to use as request attributes.
  164.      *
  165.      * As this method requires the Route object, it is not available
  166.      * in matchers that do not have access to the matched Route instance
  167.      * (like the PHP and Apache matcher dumpers).
  168.      */
  169.     protected function getAttributes(Route $routestring $name, array $attributes): array
  170.     {
  171.         $defaults $route->getDefaults();
  172.         if (isset($defaults['_canonical_route'])) {
  173.             $name $defaults['_canonical_route'];
  174.             unset($defaults['_canonical_route']);
  175.         }
  176.         $attributes['_route'] = $name;
  177.         return $this->mergeDefaults($attributes$defaults);
  178.     }
  179.     /**
  180.      * Handles specific route requirements.
  181.      *
  182.      * @return array The first element represents the status, the second contains additional information
  183.      */
  184.     protected function handleRouteRequirements(string $pathinfostring $nameRoute $route): array
  185.     {
  186.         // expression condition
  187.         if ($route->getCondition() && !$this->getExpressionLanguage()->evaluate($route->getCondition(), ['context' => $this->context'request' => $this->request ?: $this->createRequest($pathinfo)])) {
  188.             return [self::REQUIREMENT_MISMATCHnull];
  189.         }
  190.         return [self::REQUIREMENT_MATCHnull];
  191.     }
  192.     /**
  193.      * Get merged default parameters.
  194.      */
  195.     protected function mergeDefaults(array $params, array $defaults): array
  196.     {
  197.         foreach ($params as $key => $value) {
  198.             if (!\is_int($key) && null !== $value) {
  199.                 $defaults[$key] = $value;
  200.             }
  201.         }
  202.         return $defaults;
  203.     }
  204.     protected function getExpressionLanguage()
  205.     {
  206.         if (null === $this->expressionLanguage) {
  207.             if (!class_exists(ExpressionLanguage::class)) {
  208.                 throw new \LogicException('Unable to use expressions as the Symfony ExpressionLanguage component is not installed.');
  209.             }
  210.             $this->expressionLanguage = new ExpressionLanguage(null$this->expressionLanguageProviders);
  211.         }
  212.         return $this->expressionLanguage;
  213.     }
  214.     /**
  215.      * @internal
  216.      */
  217.     protected function createRequest(string $pathinfo): ?Request
  218.     {
  219.         if (!class_exists(Request::class)) {
  220.             return null;
  221.         }
  222.         return Request::create($this->context->getScheme().'://'.$this->context->getHost().$this->context->getBaseUrl().$pathinfo$this->context->getMethod(), $this->context->getParameters(), [], [], [
  223.             'SCRIPT_FILENAME' => $this->context->getBaseUrl(),
  224.             'SCRIPT_NAME' => $this->context->getBaseUrl(),
  225.         ]);
  226.     }
  227. }