router.php 3.0 KB

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