router.php 3.3 KB

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