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

  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.      * @return void
  56.      */
  57.     public function setContext(RequestContext $context)
  58.     {
  59.         $this->context $context;
  60.     }
  61.     public function getContext(): RequestContext
  62.     {
  63.         return $this->context;
  64.     }
  65.     public function match(string $pathinfo): array
  66.     {
  67.         $this->allow $this->allowSchemes = [];
  68.         if ($ret $this->matchCollection(rawurldecode($pathinfo) ?: '/'$this->routes)) {
  69.             return $ret;
  70.         }
  71.         if ('/' === $pathinfo && !$this->allow && !$this->allowSchemes) {
  72.             throw new NoConfigurationException();
  73.         }
  74.         throw \count($this->allow) ? new MethodNotAllowedException(array_unique($this->allow)) : new ResourceNotFoundException(sprintf('No routes found for "%s".'$pathinfo));
  75.     }
  76.     public function matchRequest(Request $request): array
  77.     {
  78.         $this->request $request;
  79.         $ret $this->match($request->getPathInfo());
  80.         $this->request null;
  81.         return $ret;
  82.     }
  83.     /**
  84.      * @return void
  85.      */
  86.     public function addExpressionLanguageProvider(ExpressionFunctionProviderInterface $provider)
  87.     {
  88.         $this->expressionLanguageProviders[] = $provider;
  89.     }
  90.     /**
  91.      * Tries to match a URL with a set of routes.
  92.      *
  93.      * @param string $pathinfo The path info to be parsed
  94.      *
  95.      * @throws NoConfigurationException  If no routing configuration could be found
  96.      * @throws ResourceNotFoundException If the resource could not be found
  97.      * @throws MethodNotAllowedException If the resource was found but the request method is not allowed
  98.      */
  99.     protected function matchCollection(string $pathinfoRouteCollection $routes): array
  100.     {
  101.         // HEAD and GET are equivalent as per RFC
  102.         if ('HEAD' === $method $this->context->getMethod()) {
  103.             $method 'GET';
  104.         }
  105.         $supportsTrailingSlash 'GET' === $method && $this instanceof RedirectableUrlMatcherInterface;
  106.         $trimmedPathinfo rtrim($pathinfo'/') ?: '/';
  107.         foreach ($routes as $name => $route) {
  108.             $compiledRoute $route->compile();
  109.             $staticPrefix rtrim($compiledRoute->getStaticPrefix(), '/');
  110.             $requiredMethods $route->getMethods();
  111.             // check the static prefix of the URL first. Only use the more expensive preg_match when it matches
  112.             if ('' !== $staticPrefix && !str_starts_with($trimmedPathinfo$staticPrefix)) {
  113.                 continue;
  114.             }
  115.             $regex $compiledRoute->getRegex();
  116.             $pos strrpos($regex'$');
  117.             $hasTrailingSlash '/' === $regex[$pos 1];
  118.             $regex substr_replace($regex'/?$'$pos $hasTrailingSlash$hasTrailingSlash);
  119.             if (!preg_match($regex$pathinfo$matches)) {
  120.                 continue;
  121.             }
  122.             $hasTrailingVar $trimmedPathinfo !== $pathinfo && preg_match('#\{[\w\x80-\xFF]+\}/?$#'$route->getPath());
  123.             if ($hasTrailingVar && ($hasTrailingSlash || (null === $m $matches[\count($compiledRoute->getPathVariables())] ?? null) || '/' !== ($m[-1] ?? '/')) && preg_match($regex$trimmedPathinfo$m)) {
  124.                 if ($hasTrailingSlash) {
  125.                     $matches $m;
  126.                 } else {
  127.                     $hasTrailingVar false;
  128.                 }
  129.             }
  130.             $hostMatches = [];
  131.             if ($compiledRoute->getHostRegex() && !preg_match($compiledRoute->getHostRegex(), $this->context->getHost(), $hostMatches)) {
  132.                 continue;
  133.             }
  134.             $attributes $this->getAttributes($route$namearray_replace($matches$hostMatches));
  135.             $status $this->handleRouteRequirements($pathinfo$name$route$attributes);
  136.             if (self::REQUIREMENT_MISMATCH === $status[0]) {
  137.                 continue;
  138.             }
  139.             if ('/' !== $pathinfo && !$hasTrailingVar && $hasTrailingSlash === ($trimmedPathinfo === $pathinfo)) {
  140.                 if ($supportsTrailingSlash && (!$requiredMethods || \in_array('GET'$requiredMethods))) {
  141.                     return $this->allow $this->allowSchemes = [];
  142.                 }
  143.                 continue;
  144.             }
  145.             if ($route->getSchemes() && !$route->hasScheme($this->context->getScheme())) {
  146.                 $this->allowSchemes array_merge($this->allowSchemes$route->getSchemes());
  147.                 continue;
  148.             }
  149.             if ($requiredMethods && !\in_array($method$requiredMethods)) {
  150.                 $this->allow array_merge($this->allow$requiredMethods);
  151.                 continue;
  152.             }
  153.             return array_replace($attributes$status[1] ?? []);
  154.         }
  155.         return [];
  156.     }
  157.     /**
  158.      * Returns an array of values to use as request attributes.
  159.      *
  160.      * As this method requires the Route object, it is not available
  161.      * in matchers that do not have access to the matched Route instance
  162.      * (like the PHP and Apache matcher dumpers).
  163.      */
  164.     protected function getAttributes(Route $routestring $name, array $attributes): array
  165.     {
  166.         $defaults $route->getDefaults();
  167.         if (isset($defaults['_canonical_route'])) {
  168.             $name $defaults['_canonical_route'];
  169.             unset($defaults['_canonical_route']);
  170.         }
  171.         $attributes['_route'] = $name;
  172.         return $this->mergeDefaults($attributes$defaults);
  173.     }
  174.     /**
  175.      * Handles specific route requirements.
  176.      *
  177.      * @return array The first element represents the status, the second contains additional information
  178.      */
  179.     protected function handleRouteRequirements(string $pathinfostring $nameRoute $route/* , array $routeParameters */): array
  180.     {
  181.         if (\func_num_args() < 4) {
  182.             trigger_deprecation('symfony/routing''6.1''The "%s()" method will have a new "array $routeParameters" argument in version 7.0, not defining it is deprecated.'__METHOD__);
  183.             $routeParameters = [];
  184.         } else {
  185.             $routeParameters func_get_arg(3);
  186.             if (!\is_array($routeParameters)) {
  187.                 throw new \TypeError(sprintf('"%s": Argument $routeParameters is expected to be an array, got "%s".'__METHOD__get_debug_type($routeParameters)));
  188.             }
  189.         }
  190.         // expression condition
  191.         if ($route->getCondition() && !$this->getExpressionLanguage()->evaluate($route->getCondition(), [
  192.             'context' => $this->context,
  193.             'request' => $this->request ?: $this->createRequest($pathinfo),
  194.             'params' => $routeParameters,
  195.         ])) {
  196.             return [self::REQUIREMENT_MISMATCHnull];
  197.         }
  198.         return [self::REQUIREMENT_MATCHnull];
  199.     }
  200.     /**
  201.      * Get merged default parameters.
  202.      */
  203.     protected function mergeDefaults(array $params, array $defaults): array
  204.     {
  205.         foreach ($params as $key => $value) {
  206.             if (!\is_int($key) && null !== $value) {
  207.                 $defaults[$key] = $value;
  208.             }
  209.         }
  210.         return $defaults;
  211.     }
  212.     /**
  213.      * @return ExpressionLanguage
  214.      */
  215.     protected function getExpressionLanguage()
  216.     {
  217.         if (!isset($this->expressionLanguage)) {
  218.             if (!class_exists(ExpressionLanguage::class)) {
  219.                 throw new \LogicException('Unable to use expressions as the Symfony ExpressionLanguage component is not installed. Try running "composer require symfony/expression-language".');
  220.             }
  221.             $this->expressionLanguage = new ExpressionLanguage(null$this->expressionLanguageProviders);
  222.         }
  223.         return $this->expressionLanguage;
  224.     }
  225.     /**
  226.      * @internal
  227.      */
  228.     protected function createRequest(string $pathinfo): ?Request
  229.     {
  230.         if (!class_exists(Request::class)) {
  231.             return null;
  232.         }
  233.         return Request::create($this->context->getScheme().'://'.$this->context->getHost().$this->context->getBaseUrl().$pathinfo$this->context->getMethod(), $this->context->getParameters(), [], [], [
  234.             'SCRIPT_FILENAME' => $this->context->getBaseUrl(),
  235.             'SCRIPT_NAME' => $this->context->getBaseUrl(),
  236.         ]);
  237.     }
  238. }