router.php 3.2 KB

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