Browse Source

added support for optional route parameters.

Taylor Otwell 13 years ago
parent
commit
398a5bb41a
1 changed files with 14 additions and 3 deletions
  1. 14 3
      system/router.php

+ 14 - 3
system/router.php

@@ -41,7 +41,7 @@ class Router {
 			{
 				foreach (explode(', ', $keys) as $key)
 				{
-					if (preg_match('#^'.$key = static::translate_wildcards($key).'$#', $uri))
+					if (preg_match('#^'.static::translate_wildcards($key).'$#', $uri))
 					{
 						return Request::$route = new Route($keys, $callback, static::parameters($uri, $key));
 					}
@@ -77,14 +77,25 @@ class Router {
 	}
 
 	/**
-	 * Translate route URI wildcards to regular expressions.
+	 * Translate route URI wildcards into actual regular expressions.
 	 *
 	 * @param  string  $key
 	 * @return string
 	 */
 	private static function translate_wildcards($key)
 	{
-		return str_replace(':num', '[0-9]+', str_replace(':any', '[a-zA-Z0-9\-_]+', $key));
+		$replacements = 0;
+
+		// For optional parameters, first translate the wildcards to their regex equivalent, sans the ")?" ending.
+		$key = str_replace(array('/(:num?)', '/(:any?)'), array('(?:/([0-9]+)', '(?:/([a-zA-Z0-9\-_]+)'), $key, $replacements);
+		
+		// Now, to properly close the regular expression, we need to append a ")?" for each optional segment in the route.
+		if ($replacements > 0)
+		{
+			$key .= implode('', array_fill(0, $replacements, ')?'));
+		}
+
+		return str_replace(array(':num', ':any'), array('[0-9]+', '[a-zA-Z0-9\-_]+'), $key);
 	}
 
 	/**