router.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. // Prepend a forward slash since all routes begin with one.
  19. $uri = ($uri != '/') ? '/'.$uri : $uri;
  20. if (is_null(static::$routes))
  21. {
  22. static::$routes = static::load($uri);
  23. }
  24. // Is there an exact match for the request?
  25. if (isset(static::$routes[$method.' '.$uri]))
  26. {
  27. return Request::$route = new Route($method.' '.$uri, static::$routes[$method.' '.$uri]);
  28. }
  29. foreach (static::$routes as $keys => $callback)
  30. {
  31. // Only check routes that have multiple URIs or wildcards. All other routes would
  32. // have been caught by a literal match.
  33. if (strpos($keys, '(') !== false or strpos($keys, ',') !== false )
  34. {
  35. foreach (explode(', ', $keys) as $key)
  36. {
  37. $key = str_replace(':num', '[0-9]+', str_replace(':any', '[a-zA-Z0-9\-_]+', $key));
  38. if (preg_match('#^'.$key.'$#', $method.' '.$uri))
  39. {
  40. $uri = trim($uri, '/');
  41. $key = trim(substr($key, strlen($method.' ')), '/');
  42. return Request::$route = new Route($keys, $callback, static::parameters(explode('/', $uri), explode('/', $key)));
  43. }
  44. }
  45. }
  46. }
  47. }
  48. /**
  49. * Load the appropriate route file for the request URI.
  50. *
  51. * @param string $uri
  52. * @return array
  53. */
  54. public static function load($uri)
  55. {
  56. if ( ! is_dir(APP_PATH.'routes'))
  57. {
  58. return require APP_PATH.'routes'.EXT;
  59. }
  60. if ( ! file_exists(APP_PATH.'routes/home'.EXT))
  61. {
  62. throw new \Exception("A [home] route file is required when using a route directory.");
  63. }
  64. if ($uri == '/')
  65. {
  66. return require APP_PATH.'routes/home'.EXT;
  67. }
  68. else
  69. {
  70. $segments = explode('/', trim($uri, '/'));
  71. if ( ! file_exists(APP_PATH.'routes/'.$segments[0].EXT))
  72. {
  73. return require APP_PATH.'routes/home'.EXT;
  74. }
  75. return array_merge(require APP_PATH.'routes/'.$segments[0].EXT, require APP_PATH.'routes/home'.EXT);
  76. }
  77. }
  78. /**
  79. * Extract the parameters from a URI based on a route URI.
  80. *
  81. * Any route segment wrapped in parentheses is considered a parameter.
  82. *
  83. * @param array $uri
  84. * @param array $route
  85. * @return array
  86. */
  87. private static function parameters($uri, $route)
  88. {
  89. $parameters = array();
  90. for ($i = 0; $i < count($route); $i++)
  91. {
  92. if (strpos($route[$i], '(') === 0)
  93. {
  94. $parameters[] = $uri[$i];
  95. }
  96. }
  97. return $parameters;
  98. }
  99. }