123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- <?php
- namespace Symfony\Component\Routing;
- class RouteCompiler implements RouteCompilerInterface
- {
- const REGEX_DELIMITER = '#';
-
- const SEPARATORS = '/,;.:-_~+*=@|';
-
- public static function compile(Route $route)
- {
- $hostVariables = array();
- $variables = array();
- $hostRegex = null;
- $hostTokens = array();
- if ('' !== $host = $route->getHost()) {
- $result = self::compilePattern($route, $host, true);
- $hostVariables = $result['variables'];
- $variables = $hostVariables;
- $hostTokens = $result['tokens'];
- $hostRegex = $result['regex'];
- }
- $path = $route->getPath();
- $result = self::compilePattern($route, $path, false);
- $staticPrefix = $result['staticPrefix'];
- $pathVariables = $result['variables'];
- $variables = array_merge($variables, $pathVariables);
- $tokens = $result['tokens'];
- $regex = $result['regex'];
- return new CompiledRoute(
- $staticPrefix,
- $regex,
- $tokens,
- $pathVariables,
- $hostRegex,
- $hostTokens,
- $hostVariables,
- array_unique($variables)
- );
- }
- private static function compilePattern(Route $route, $pattern, $isHost)
- {
- $tokens = array();
- $variables = array();
- $matches = array();
- $pos = 0;
- $defaultSeparator = $isHost ? '.' : '/';
-
-
- preg_match_all('#\{\w+\}#', $pattern, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER);
- foreach ($matches as $match) {
- $varName = substr($match[0][0], 1, -1);
-
- $precedingText = substr($pattern, $pos, $match[0][1] - $pos);
- $pos = $match[0][1] + strlen($match[0][0]);
- $precedingChar = strlen($precedingText) > 0 ? substr($precedingText, -1) : '';
- $isSeparator = '' !== $precedingChar && false !== strpos(static::SEPARATORS, $precedingChar);
- if (is_numeric($varName)) {
- throw new \DomainException(sprintf('Variable name "%s" cannot be numeric in route pattern "%s". Please use a different name.', $varName, $pattern));
- }
- if (in_array($varName, $variables)) {
- throw new \LogicException(sprintf('Route pattern "%s" cannot reference variable name "%s" more than once.', $pattern, $varName));
- }
- if ($isSeparator && strlen($precedingText) > 1) {
- $tokens[] = array('text', substr($precedingText, 0, -1));
- } elseif (!$isSeparator && strlen($precedingText) > 0) {
- $tokens[] = array('text', $precedingText);
- }
- $regexp = $route->getRequirement($varName);
- if (null === $regexp) {
- $followingPattern = (string) substr($pattern, $pos);
-
-
-
-
-
-
-
- $nextSeparator = self::findNextSeparator($followingPattern);
- $regexp = sprintf(
- '[^%s%s]+',
- preg_quote($defaultSeparator, self::REGEX_DELIMITER),
- $defaultSeparator !== $nextSeparator && '' !== $nextSeparator ? preg_quote($nextSeparator, self::REGEX_DELIMITER) : ''
- );
- if (('' !== $nextSeparator && !preg_match('#^\{\w+\}#', $followingPattern)) || '' === $followingPattern) {
-
-
-
-
-
- $regexp .= '+';
- }
- }
- $tokens[] = array('variable', $isSeparator ? $precedingChar : '', $regexp, $varName);
- $variables[] = $varName;
- }
- if ($pos < strlen($pattern)) {
- $tokens[] = array('text', substr($pattern, $pos));
- }
-
- $firstOptional = PHP_INT_MAX;
- if (!$isHost) {
- for ($i = count($tokens) - 1; $i >= 0; --$i) {
- $token = $tokens[$i];
- if ('variable' === $token[0] && $route->hasDefault($token[3])) {
- $firstOptional = $i;
- } else {
- break;
- }
- }
- }
-
- $regexp = '';
- for ($i = 0, $nbToken = count($tokens); $i < $nbToken; ++$i) {
- $regexp .= self::computeRegexp($tokens, $i, $firstOptional);
- }
- return array(
- 'staticPrefix' => 'text' === $tokens[0][0] ? $tokens[0][1] : '',
- 'regex' => self::REGEX_DELIMITER.'^'.$regexp.'$'.self::REGEX_DELIMITER.'s'.($isHost ? 'i' : ''),
- 'tokens' => array_reverse($tokens),
- 'variables' => $variables,
- );
- }
-
- private static function findNextSeparator($pattern)
- {
- if ('' == $pattern) {
-
- return '';
- }
-
- $pattern = preg_replace('#\{\w+\}#', '', $pattern);
- return isset($pattern[0]) && false !== strpos(static::SEPARATORS, $pattern[0]) ? $pattern[0] : '';
- }
-
- private static function computeRegexp(array $tokens, $index, $firstOptional)
- {
- $token = $tokens[$index];
- if ('text' === $token[0]) {
-
- return preg_quote($token[1], self::REGEX_DELIMITER);
- } else {
-
- if (0 === $index && 0 === $firstOptional) {
-
- return sprintf('%s(?P<%s>%s)?', preg_quote($token[1], self::REGEX_DELIMITER), $token[3], $token[2]);
- } else {
- $regexp = sprintf('%s(?P<%s>%s)', preg_quote($token[1], self::REGEX_DELIMITER), $token[3], $token[2]);
- if ($index >= $firstOptional) {
-
-
-
- $regexp = "(?:$regexp";
- $nbTokens = count($tokens);
- if ($nbTokens - 1 == $index) {
-
- $regexp .= str_repeat(')?', $nbTokens - $firstOptional - (0 === $firstOptional ? 1 : 0));
- }
- }
- return $regexp;
- }
- }
- }
- }
|