router.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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 have
  32. // 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. return Request::$route = new Route($keys, $callback, static::parameters(explode('/', $uri), explode('/', $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. if ( ! is_dir(APP_PATH.'routes'))
  55. {
  56. return require APP_PATH.'routes'.EXT;
  57. }
  58. if ( ! file_exists(APP_PATH.'routes/home'.EXT))
  59. {
  60. throw new \Exception("A [home] route file is required when using a route directory.");
  61. }
  62. if ($uri == '/')
  63. {
  64. return require APP_PATH.'routes/home'.EXT;
  65. }
  66. else
  67. {
  68. $segments = explode('/', trim($uri, '/'));
  69. if ( ! file_exists(APP_PATH.'routes/'.$segments[0].EXT))
  70. {
  71. return require APP_PATH.'routes/home'.EXT;
  72. }
  73. return array_merge(require APP_PATH.'routes/'.$segments[0].EXT, require APP_PATH.'routes/home'.EXT);
  74. }
  75. }
  76. /**
  77. * Extract the parameters from a URI based on a route URI.
  78. *
  79. * Any route segment wrapped in parentheses is considered a parameter.
  80. *
  81. * @param array $uri
  82. * @param array $route
  83. * @return array
  84. */
  85. private static function parameters($uri, $route)
  86. {
  87. $parameters = array();
  88. for ($i = 0; $i < count($route); $i++)
  89. {
  90. if (strpos($route[$i], '(') === 0)
  91. {
  92. $parameters[] = $uri[$i];
  93. }
  94. }
  95. return $parameters;
  96. }
  97. }