router.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. $key = str_replace(':num', '[0-9]+', str_replace(':any', '[a-zA-Z0-9\-_]+', $key));
  39. if (preg_match('#^'.$key.'$#', $uri))
  40. {
  41. return Request::$route = new Route($keys, $callback, static::parameters($uri, $key));
  42. }
  43. }
  44. }
  45. }
  46. }
  47. /**
  48. * Load the appropriate route file for the request URI.
  49. *
  50. * @param string $uri
  51. * @return array
  52. */
  53. public static function load($uri)
  54. {
  55. $base = require APP_PATH.'routes'.EXT;
  56. return (is_dir(APP_PATH.'routes') and $uri !== '') ? array_merge(static::load_from_directory($uri), $base) : $base;
  57. }
  58. /**
  59. * Load the appropriate route file from the routes directory.
  60. *
  61. * @param string $uri
  62. * @return array
  63. */
  64. private static function load_from_directory($uri)
  65. {
  66. $segments = explode('/', $uri);
  67. return (file_exists($path = APP_PATH.'routes/'.$segments[0].EXT)) ? require $path : array();
  68. }
  69. /**
  70. * Extract the parameters from a URI based on a route URI.
  71. *
  72. * Any route segment wrapped in parentheses is considered a parameter.
  73. *
  74. * @param string $uri
  75. * @param string $route
  76. * @return array
  77. */
  78. public static function parameters($uri, $route)
  79. {
  80. return array_values(array_intersect_key(explode('/', $uri), preg_grep('/\(.+\)/', explode('/', $route))));
  81. }
  82. }