RouteCompiler.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  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;
  11. /**
  12. * RouteCompiler compiles Route instances to CompiledRoute instances.
  13. *
  14. * @author Fabien Potencier <fabien@symfony.com>
  15. * @author Tobias Schultze <http://tobion.de>
  16. */
  17. class RouteCompiler implements RouteCompilerInterface
  18. {
  19. const REGEX_DELIMITER = '#';
  20. /**
  21. * This string defines the characters that are automatically considered separators in front of
  22. * optional placeholders (with default and no static text following). Such a single separator
  23. * can be left out together with the optional placeholder from matching and generating URLs.
  24. */
  25. const SEPARATORS = '/,;.:-_~+*=@|';
  26. /**
  27. * The maximum supported length of a PCRE subpattern name
  28. * http://pcre.org/current/doc/html/pcre2pattern.html#SEC16.
  29. *
  30. * @internal
  31. */
  32. const VARIABLE_MAXIMUM_LENGTH = 32;
  33. /**
  34. * {@inheritdoc}
  35. *
  36. * @throws \InvalidArgumentException if a path variable is named _fragment
  37. * @throws \LogicException if a variable is referenced more than once
  38. * @throws \DomainException if a variable name starts with a digit or if it is too long to be successfully used as
  39. * a PCRE subpattern
  40. */
  41. public static function compile(Route $route)
  42. {
  43. $hostVariables = [];
  44. $variables = [];
  45. $hostRegex = null;
  46. $hostTokens = [];
  47. if ('' !== $host = $route->getHost()) {
  48. $result = self::compilePattern($route, $host, true);
  49. $hostVariables = $result['variables'];
  50. $variables = $hostVariables;
  51. $hostTokens = $result['tokens'];
  52. $hostRegex = $result['regex'];
  53. }
  54. $path = $route->getPath();
  55. $result = self::compilePattern($route, $path, false);
  56. $staticPrefix = $result['staticPrefix'];
  57. $pathVariables = $result['variables'];
  58. foreach ($pathVariables as $pathParam) {
  59. if ('_fragment' === $pathParam) {
  60. throw new \InvalidArgumentException(sprintf('Route pattern "%s" cannot contain "_fragment" as a path parameter.', $route->getPath()));
  61. }
  62. }
  63. $variables = array_merge($variables, $pathVariables);
  64. $tokens = $result['tokens'];
  65. $regex = $result['regex'];
  66. return new CompiledRoute(
  67. $staticPrefix,
  68. $regex,
  69. $tokens,
  70. $pathVariables,
  71. $hostRegex,
  72. $hostTokens,
  73. $hostVariables,
  74. array_unique($variables)
  75. );
  76. }
  77. private static function compilePattern(Route $route, string $pattern, bool $isHost): array
  78. {
  79. $tokens = [];
  80. $variables = [];
  81. $matches = [];
  82. $pos = 0;
  83. $defaultSeparator = $isHost ? '.' : '/';
  84. $useUtf8 = preg_match('//u', $pattern);
  85. $needsUtf8 = $route->getOption('utf8');
  86. if (!$needsUtf8 && $useUtf8 && preg_match('/[\x80-\xFF]/', $pattern)) {
  87. throw new \LogicException(sprintf('Cannot use UTF-8 route patterns without setting the "utf8" option for route "%s".', $route->getPath()));
  88. }
  89. if (!$useUtf8 && $needsUtf8) {
  90. throw new \LogicException(sprintf('Cannot mix UTF-8 requirements with non-UTF-8 pattern "%s".', $pattern));
  91. }
  92. // Match all variables enclosed in "{}" and iterate over them. But we only want to match the innermost variable
  93. // in case of nested "{}", e.g. {foo{bar}}. This in ensured because \w does not match "{" or "}" itself.
  94. preg_match_all('#\{(!)?(\w+)\}#', $pattern, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER);
  95. foreach ($matches as $match) {
  96. $important = $match[1][1] >= 0;
  97. $varName = $match[2][0];
  98. // get all static text preceding the current variable
  99. $precedingText = substr($pattern, $pos, $match[0][1] - $pos);
  100. $pos = $match[0][1] + \strlen($match[0][0]);
  101. if (!\strlen($precedingText)) {
  102. $precedingChar = '';
  103. } elseif ($useUtf8) {
  104. preg_match('/.$/u', $precedingText, $precedingChar);
  105. $precedingChar = $precedingChar[0];
  106. } else {
  107. $precedingChar = substr($precedingText, -1);
  108. }
  109. $isSeparator = '' !== $precedingChar && false !== strpos(static::SEPARATORS, $precedingChar);
  110. // A PCRE subpattern name must start with a non-digit. Also a PHP variable cannot start with a digit so the
  111. // variable would not be usable as a Controller action argument.
  112. if (preg_match('/^\d/', $varName)) {
  113. throw new \DomainException(sprintf('Variable name "%s" cannot start with a digit in route pattern "%s". Please use a different name.', $varName, $pattern));
  114. }
  115. if (\in_array($varName, $variables)) {
  116. throw new \LogicException(sprintf('Route pattern "%s" cannot reference variable name "%s" more than once.', $pattern, $varName));
  117. }
  118. if (\strlen($varName) > self::VARIABLE_MAXIMUM_LENGTH) {
  119. throw new \DomainException(sprintf('Variable name "%s" cannot be longer than %s characters in route pattern "%s". Please use a shorter name.', $varName, self::VARIABLE_MAXIMUM_LENGTH, $pattern));
  120. }
  121. if ($isSeparator && $precedingText !== $precedingChar) {
  122. $tokens[] = ['text', substr($precedingText, 0, -\strlen($precedingChar))];
  123. } elseif (!$isSeparator && \strlen($precedingText) > 0) {
  124. $tokens[] = ['text', $precedingText];
  125. }
  126. $regexp = $route->getRequirement($varName);
  127. if (null === $regexp) {
  128. $followingPattern = (string) substr($pattern, $pos);
  129. // Find the next static character after the variable that functions as a separator. By default, this separator and '/'
  130. // are disallowed for the variable. This default requirement makes sure that optional variables can be matched at all
  131. // and that the generating-matching-combination of URLs unambiguous, i.e. the params used for generating the URL are
  132. // the same that will be matched. Example: new Route('/{page}.{_format}', ['_format' => 'html'])
  133. // If {page} would also match the separating dot, {_format} would never match as {page} will eagerly consume everything.
  134. // Also even if {_format} was not optional the requirement prevents that {page} matches something that was originally
  135. // part of {_format} when generating the URL, e.g. _format = 'mobile.html'.
  136. $nextSeparator = self::findNextSeparator($followingPattern, $useUtf8);
  137. $regexp = sprintf(
  138. '[^%s%s]+',
  139. preg_quote($defaultSeparator, self::REGEX_DELIMITER),
  140. $defaultSeparator !== $nextSeparator && '' !== $nextSeparator ? preg_quote($nextSeparator, self::REGEX_DELIMITER) : ''
  141. );
  142. if (('' !== $nextSeparator && !preg_match('#^\{\w+\}#', $followingPattern)) || '' === $followingPattern) {
  143. // When we have a separator, which is disallowed for the variable, we can optimize the regex with a possessive
  144. // quantifier. This prevents useless backtracking of PCRE and improves performance by 20% for matching those patterns.
  145. // Given the above example, there is no point in backtracking into {page} (that forbids the dot) when a dot must follow
  146. // after it. This optimization cannot be applied when the next char is no real separator or when the next variable is
  147. // directly adjacent, e.g. '/{x}{y}'.
  148. $regexp .= '+';
  149. }
  150. } else {
  151. if (!preg_match('//u', $regexp)) {
  152. $useUtf8 = false;
  153. } elseif (!$needsUtf8 && preg_match('/[\x80-\xFF]|(?<!\\\\)\\\\(?:\\\\\\\\)*+(?-i:X|[pP][\{CLMNPSZ]|x\{[A-Fa-f0-9]{3})/', $regexp)) {
  154. throw new \LogicException(sprintf('Cannot use UTF-8 route requirements without setting the "utf8" option for variable "%s" in pattern "%s".', $varName, $pattern));
  155. }
  156. if (!$useUtf8 && $needsUtf8) {
  157. throw new \LogicException(sprintf('Cannot mix UTF-8 requirement with non-UTF-8 charset for variable "%s" in pattern "%s".', $varName, $pattern));
  158. }
  159. $regexp = self::transformCapturingGroupsToNonCapturings($regexp);
  160. }
  161. if ($important) {
  162. $token = ['variable', $isSeparator ? $precedingChar : '', $regexp, $varName, false, true];
  163. } else {
  164. $token = ['variable', $isSeparator ? $precedingChar : '', $regexp, $varName];
  165. }
  166. $tokens[] = $token;
  167. $variables[] = $varName;
  168. }
  169. if ($pos < \strlen($pattern)) {
  170. $tokens[] = ['text', substr($pattern, $pos)];
  171. }
  172. // find the first optional token
  173. $firstOptional = PHP_INT_MAX;
  174. if (!$isHost) {
  175. for ($i = \count($tokens) - 1; $i >= 0; --$i) {
  176. $token = $tokens[$i];
  177. // variable is optional when it is not important and has a default value
  178. if ('variable' === $token[0] && !($token[5] ?? false) && $route->hasDefault($token[3])) {
  179. $firstOptional = $i;
  180. } else {
  181. break;
  182. }
  183. }
  184. }
  185. // compute the matching regexp
  186. $regexp = '';
  187. for ($i = 0, $nbToken = \count($tokens); $i < $nbToken; ++$i) {
  188. $regexp .= self::computeRegexp($tokens, $i, $firstOptional);
  189. }
  190. $regexp = self::REGEX_DELIMITER.'^'.$regexp.'$'.self::REGEX_DELIMITER.'sD'.($isHost ? 'i' : '');
  191. // enable Utf8 matching if really required
  192. if ($needsUtf8) {
  193. $regexp .= 'u';
  194. for ($i = 0, $nbToken = \count($tokens); $i < $nbToken; ++$i) {
  195. if ('variable' === $tokens[$i][0]) {
  196. $tokens[$i][4] = true;
  197. }
  198. }
  199. }
  200. return [
  201. 'staticPrefix' => self::determineStaticPrefix($route, $tokens),
  202. 'regex' => $regexp,
  203. 'tokens' => array_reverse($tokens),
  204. 'variables' => $variables,
  205. ];
  206. }
  207. /**
  208. * Determines the longest static prefix possible for a route.
  209. */
  210. private static function determineStaticPrefix(Route $route, array $tokens): string
  211. {
  212. if ('text' !== $tokens[0][0]) {
  213. return ($route->hasDefault($tokens[0][3]) || '/' === $tokens[0][1]) ? '' : $tokens[0][1];
  214. }
  215. $prefix = $tokens[0][1];
  216. if (isset($tokens[1][1]) && '/' !== $tokens[1][1] && false === $route->hasDefault($tokens[1][3])) {
  217. $prefix .= $tokens[1][1];
  218. }
  219. return $prefix;
  220. }
  221. /**
  222. * Returns the next static character in the Route pattern that will serve as a separator (or the empty string when none available).
  223. */
  224. private static function findNextSeparator(string $pattern, bool $useUtf8): string
  225. {
  226. if ('' == $pattern) {
  227. // return empty string if pattern is empty or false (false which can be returned by substr)
  228. return '';
  229. }
  230. // first remove all placeholders from the pattern so we can find the next real static character
  231. if ('' === $pattern = preg_replace('#\{\w+\}#', '', $pattern)) {
  232. return '';
  233. }
  234. if ($useUtf8) {
  235. preg_match('/^./u', $pattern, $pattern);
  236. }
  237. return false !== strpos(static::SEPARATORS, $pattern[0]) ? $pattern[0] : '';
  238. }
  239. /**
  240. * Computes the regexp used to match a specific token. It can be static text or a subpattern.
  241. *
  242. * @param array $tokens The route tokens
  243. * @param int $index The index of the current token
  244. * @param int $firstOptional The index of the first optional token
  245. *
  246. * @return string The regexp pattern for a single token
  247. */
  248. private static function computeRegexp(array $tokens, int $index, int $firstOptional): string
  249. {
  250. $token = $tokens[$index];
  251. if ('text' === $token[0]) {
  252. // Text tokens
  253. return preg_quote($token[1], self::REGEX_DELIMITER);
  254. } else {
  255. // Variable tokens
  256. if (0 === $index && 0 === $firstOptional) {
  257. // When the only token is an optional variable token, the separator is required
  258. return sprintf('%s(?P<%s>%s)?', preg_quote($token[1], self::REGEX_DELIMITER), $token[3], $token[2]);
  259. } else {
  260. $regexp = sprintf('%s(?P<%s>%s)', preg_quote($token[1], self::REGEX_DELIMITER), $token[3], $token[2]);
  261. if ($index >= $firstOptional) {
  262. // Enclose each optional token in a subpattern to make it optional.
  263. // "?:" means it is non-capturing, i.e. the portion of the subject string that
  264. // matched the optional subpattern is not passed back.
  265. $regexp = "(?:$regexp";
  266. $nbTokens = \count($tokens);
  267. if ($nbTokens - 1 == $index) {
  268. // Close the optional subpatterns
  269. $regexp .= str_repeat(')?', $nbTokens - $firstOptional - (0 === $firstOptional ? 1 : 0));
  270. }
  271. }
  272. return $regexp;
  273. }
  274. }
  275. }
  276. private static function transformCapturingGroupsToNonCapturings(string $regexp): string
  277. {
  278. for ($i = 0; $i < \strlen($regexp); ++$i) {
  279. if ('\\' === $regexp[$i]) {
  280. ++$i;
  281. continue;
  282. }
  283. if ('(' !== $regexp[$i] || !isset($regexp[$i + 2])) {
  284. continue;
  285. }
  286. if ('*' === $regexp[++$i] || '?' === $regexp[$i]) {
  287. ++$i;
  288. continue;
  289. }
  290. $regexp = substr_replace($regexp, '?:', $i, 0);
  291. ++$i;
  292. }
  293. return $regexp;
  294. }
  295. }