router.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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 = Route\Loader::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, Route\Parser::parameters($uri, $key));
  41. }
  42. }
  43. }
  44. }
  45. }
  46. }