UrlMatcher.php 9.3 KB

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