vendor/symfony/symfony/src/Symfony/Component/Routing/Matcher/UrlMatcher.php line 93

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