RouteCompiler.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  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 = array();
  44. $variables = array();
  45. $hostRegex = null;
  46. $hostTokens = array();
  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, $pattern, $isHost)
  78. {
  79. $tokens = array();
  80. $variables = array();
  81. $matches = array();
  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. $needsUtf8 = true;
  88. @trigger_error(sprintf('Using UTF-8 route patterns without setting the "utf8" option is deprecated since Symfony 3.2 and will throw a LogicException in 4.0. Turn on the "utf8" route option for pattern "%s".', $pattern), E_USER_DEPRECATED);
  89. }
  90. if (!$useUtf8 && $needsUtf8) {
  91. throw new \LogicException(sprintf('Cannot mix UTF-8 requirements with non-UTF-8 pattern "%s".', $pattern));
  92. }
  93. // Match all variables enclosed in "{}" and iterate over them. But we only want to match the innermost variable
  94. // in case of nested "{}", e.g. {foo{bar}}. This in ensured because \w does not match "{" or "}" itself.
  95. preg_match_all('#\{\w+\}#', $pattern, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER);
  96. foreach ($matches as $match) {
  97. $varName = substr($match[0][0], 1, -1);
  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[] = array('text', substr($precedingText, 0, -strlen($precedingChar)));
  123. } elseif (!$isSeparator && strlen($precedingText) > 0) {
  124. $tokens[] = array('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}', array('_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. $needsUtf8 = true;
  155. @trigger_error(sprintf('Using UTF-8 route requirements without setting the "utf8" option is deprecated since Symfony 3.2 and will throw a LogicException in 4.0. Turn on the "utf8" route option for variable "%s" in pattern "%s".', $varName, $pattern), E_USER_DEPRECATED);
  156. }
  157. if (!$useUtf8 && $needsUtf8) {
  158. throw new \LogicException(sprintf('Cannot mix UTF-8 requirement with non-UTF-8 charset for variable "%s" in pattern "%s".', $varName, $pattern));
  159. }
  160. }
  161. $tokens[] = array('variable', $isSeparator ? $precedingChar : '', $regexp, $varName);
  162. $variables[] = $varName;
  163. }
  164. if ($pos < strlen($pattern)) {
  165. $tokens[] = array('text', substr($pattern, $pos));
  166. }
  167. // find the first optional token
  168. $firstOptional = PHP_INT_MAX;
  169. if (!$isHost) {
  170. for ($i = count($tokens) - 1; $i >= 0; --$i) {
  171. $token = $tokens[$i];
  172. if ('variable' === $token[0] && $route->hasDefault($token[3])) {
  173. $firstOptional = $i;
  174. } else {
  175. break;
  176. }
  177. }
  178. }
  179. // compute the matching regexp
  180. $regexp = '';
  181. for ($i = 0, $nbToken = count($tokens); $i < $nbToken; ++$i) {
  182. $regexp .= self::computeRegexp($tokens, $i, $firstOptional);
  183. }
  184. $regexp = self::REGEX_DELIMITER.'^'.$regexp.'$'.self::REGEX_DELIMITER.'s'.($isHost ? 'i' : '');
  185. // enable Utf8 matching if really required
  186. if ($needsUtf8) {
  187. $regexp .= 'u';
  188. for ($i = 0, $nbToken = count($tokens); $i < $nbToken; ++$i) {
  189. if ('variable' === $tokens[$i][0]) {
  190. $tokens[$i][] = true;
  191. }
  192. }
  193. }
  194. return array(
  195. 'staticPrefix' => self::determineStaticPrefix($route, $tokens),
  196. 'regex' => $regexp,
  197. 'tokens' => array_reverse($tokens),
  198. 'variables' => $variables,
  199. );
  200. }
  201. /**
  202. * Determines the longest static prefix possible for a route.
  203. *
  204. * @param Route $route
  205. * @param array $tokens
  206. *
  207. * @return string The leading static part of a route's path
  208. */
  209. private static function determineStaticPrefix(Route $route, array $tokens)
  210. {
  211. if ('text' !== $tokens[0][0]) {
  212. return ($route->hasDefault($tokens[0][3]) || '/' === $tokens[0][1]) ? '' : $tokens[0][1];
  213. }
  214. $prefix = $tokens[0][1];
  215. if (isset($tokens[1][1]) && '/' !== $tokens[1][1] && false === $route->hasDefault($tokens[1][3])) {
  216. $prefix .= $tokens[1][1];
  217. }
  218. return $prefix;
  219. }
  220. /**
  221. * Returns the next static character in the Route pattern that will serve as a separator.
  222. *
  223. * @param string $pattern The route pattern
  224. * @param bool $useUtf8 Whether the character is encoded in UTF-8 or not
  225. *
  226. * @return string The next static character that functions as separator (or empty string when none available)
  227. */
  228. private static function findNextSeparator($pattern, $useUtf8)
  229. {
  230. if ('' == $pattern) {
  231. // return empty string if pattern is empty or false (false which can be returned by substr)
  232. return '';
  233. }
  234. // first remove all placeholders from the pattern so we can find the next real static character
  235. if ('' === $pattern = preg_replace('#\{\w+\}#', '', $pattern)) {
  236. return '';
  237. }
  238. if ($useUtf8) {
  239. preg_match('/^./u', $pattern, $pattern);
  240. }
  241. return false !== strpos(static::SEPARATORS, $pattern[0]) ? $pattern[0] : '';
  242. }
  243. /**
  244. * Computes the regexp used to match a specific token. It can be static text or a subpattern.
  245. *
  246. * @param array $tokens The route tokens
  247. * @param int $index The index of the current token
  248. * @param int $firstOptional The index of the first optional token
  249. *
  250. * @return string The regexp pattern for a single token
  251. */
  252. private static function computeRegexp(array $tokens, $index, $firstOptional)
  253. {
  254. $token = $tokens[$index];
  255. if ('text' === $token[0]) {
  256. // Text tokens
  257. return preg_quote($token[1], self::REGEX_DELIMITER);
  258. } else {
  259. // Variable tokens
  260. if (0 === $index && 0 === $firstOptional) {
  261. // When the only token is an optional variable token, the separator is required
  262. return sprintf('%s(?P<%s>%s)?', preg_quote($token[1], self::REGEX_DELIMITER), $token[3], $token[2]);
  263. } else {
  264. $regexp = sprintf('%s(?P<%s>%s)', preg_quote($token[1], self::REGEX_DELIMITER), $token[3], $token[2]);
  265. if ($index >= $firstOptional) {
  266. // Enclose each optional token in a subpattern to make it optional.
  267. // "?:" means it is non-capturing, i.e. the portion of the subject string that
  268. // matched the optional subpattern is not passed back.
  269. $regexp = "(?:$regexp";
  270. $nbTokens = count($tokens);
  271. if ($nbTokens - 1 == $index) {
  272. // Close the optional subpatterns
  273. $regexp .= str_repeat(')?', $nbTokens - $firstOptional - (0 === $firstOptional ? 1 : 0));
  274. }
  275. }
  276. return $regexp;
  277. }
  278. }
  279. }
  280. }