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

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