router.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?php namespace System;
  2. class Router {
  3. /**
  4. * All of the loaded routes keyed by route file.
  5. *
  6. * @var array
  7. */
  8. private static $routes = array();
  9. /**
  10. * Simulate a request to a given route. Useful for implementing HMVC.
  11. *
  12. * @param array|string $parameters
  13. * @return Response
  14. */
  15. public static function call($parameters)
  16. {
  17. $route = static::route('GET', (is_array($parameters)) ? implode('/', $parameters) : (string) $parameters);
  18. if ( ! is_null($route))
  19. {
  20. return $route->call();
  21. }
  22. }
  23. /**
  24. * Search a set of routes for the route matching a method and URI.
  25. *
  26. * @param string $method
  27. * @param string $uri
  28. * @return Route
  29. */
  30. public static function route($method, $uri)
  31. {
  32. $routes = static::load($uri);
  33. // Put the request method and URI in route form.
  34. // Routes begin with the request method and a forward slash.
  35. $uri = $method.' /'.trim($uri, '/');
  36. // Is there an exact match for the request?
  37. if (isset($routes[$uri]))
  38. {
  39. return Request::$route = new Route($uri, $routes[$uri]);
  40. }
  41. foreach ($routes as $keys => $callback)
  42. {
  43. // Only check routes that have multiple URIs or wildcards.
  44. // Other routes would have been caught by the check for literal matches.
  45. if (strpos($keys, '(') !== false or strpos($keys, ',') !== false )
  46. {
  47. foreach (explode(', ', $keys) as $key)
  48. {
  49. if (preg_match('#^'.static::translate_wildcards($key).'$#', $uri))
  50. {
  51. return Request::$route = new Route($keys, $callback, static::parameters($uri, $key));
  52. }
  53. }
  54. }
  55. }
  56. }
  57. /**
  58. * Load the appropriate route file for the request URI.
  59. *
  60. * @param string $uri
  61. * @return array
  62. */
  63. public static function load($uri)
  64. {
  65. $base = (isset(static::$routes[$path = APP_PATH.'routes'.EXT])) ? static::$routes[$path] : static::$routes[$path] = require $path;
  66. return (is_dir(APP_PATH.'routes') and $uri !== '') ? array_merge(static::load_from_directory($uri), $base) : $base;
  67. }
  68. /**
  69. * Load the appropriate route file from the routes directory.
  70. *
  71. * @param string $uri
  72. * @return array
  73. */
  74. private static function load_from_directory($uri)
  75. {
  76. $segments = explode('/', $uri);
  77. // Route files can be nested deep within sub-directories.
  78. // Iterate backwards through the URI looking for the deepest matching file.
  79. foreach (array_reverse($segments, true) as $key => $value)
  80. {
  81. if (isset(static::$routes[$path = ROUTE_PATH.implode('/', array_slice($segments, 0, $key + 1)).EXT]))
  82. {
  83. return static::$routes[$path];
  84. }
  85. elseif (file_exists($path))
  86. {
  87. return static::$routes[$path] = require $path;
  88. }
  89. }
  90. return array();
  91. }
  92. /**
  93. * Translate route URI wildcards into actual regular expressions.
  94. *
  95. * @param string $key
  96. * @return string
  97. */
  98. private static function translate_wildcards($key)
  99. {
  100. $replacements = 0;
  101. // For optional parameters, first translate the wildcards to their regex equivalent, sans the ")?" ending.
  102. $key = str_replace(array('/(:num?)', '/(:any?)'), array('(?:/([0-9]+)', '(?:/([a-zA-Z0-9\-_]+)'), $key, $replacements);
  103. // Now, to properly close the regular expression, we need to append a ")?" for each optional segment in the route.
  104. if ($replacements > 0)
  105. {
  106. $key .= str_repeat(')?', $replacements);
  107. }
  108. return str_replace(array(':num', ':any'), array('[0-9]+', '[a-zA-Z0-9\-_]+'), $key);
  109. }
  110. /**
  111. * Extract the parameters from a URI based on a route URI.
  112. *
  113. * Any route segment wrapped in parentheses is considered a parameter.
  114. *
  115. * @param string $uri
  116. * @param string $route
  117. * @return array
  118. */
  119. private static function parameters($uri, $route)
  120. {
  121. return array_values(array_intersect_key(explode('/', $uri), preg_grep('/\(.+\)/', explode('/', $route))));
  122. }
  123. }