router.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. // --------------------------------------------------------------
  19. // Prepend a forward slash since all routes begin with one.
  20. // --------------------------------------------------------------
  21. $uri = ($uri != '/') ? '/'.$uri : $uri;
  22. if (is_null(static::$routes))
  23. {
  24. static::$routes = Route\Loader::load($uri);
  25. }
  26. // --------------------------------------------------------------
  27. // Is there an exact match for the request?
  28. // --------------------------------------------------------------
  29. if (isset(static::$routes[$method.' '.$uri]))
  30. {
  31. return Request::$route = new Route($method.' '.$uri, static::$routes[$method.' '.$uri]);
  32. }
  33. // --------------------------------------------------------------
  34. // No exact match... check each route individually.
  35. // --------------------------------------------------------------
  36. foreach (static::$routes as $keys => $callback)
  37. {
  38. // --------------------------------------------------------------
  39. // Only check routes that have multiple URIs or wildcards.
  40. // All other routes would have been caught by a literal match.
  41. // --------------------------------------------------------------
  42. if (strpos($keys, '(') !== false or strpos($keys, ',') !== false )
  43. {
  44. // --------------------------------------------------------------
  45. // Routes can be comma-delimited, so spin through each one.
  46. // --------------------------------------------------------------
  47. foreach (explode(', ', $keys) as $key)
  48. {
  49. $key = str_replace(':num', '[0-9]+', str_replace(':any', '[a-zA-Z0-9\-_]+', $key));
  50. if (preg_match('#^'.$key.'$#', $method.' '.$uri))
  51. {
  52. return Request::$route = new Route($keys, $callback, Route\Parser::parameters($uri, $key));
  53. }
  54. }
  55. }
  56. }
  57. }
  58. }