loader.php 870 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php namespace System\Routing;
  2. class Loader {
  3. /**
  4. * Load the appropriate routes for the request URI.
  5. *
  6. * @param string
  7. * @return array
  8. */
  9. public function load($uri)
  10. {
  11. $base = require APP_PATH.'routes'.EXT;
  12. return (is_dir(APP_PATH.'routes') and $uri != '') ? array_merge($this->load_nested_routes($uri), $base) : $base;
  13. }
  14. /**
  15. * Load the appropriate routes from the routes directory.
  16. *
  17. * This is done by working down the URI until we find the deepest
  18. * possible matching route file.
  19. *
  20. * @param string $uri
  21. * @return array
  22. */
  23. private function load_nested_routes($uri)
  24. {
  25. $segments = explode('/', $uri);
  26. foreach (array_reverse($segments, true) as $key => $value)
  27. {
  28. if (file_exists($path = ROUTE_PATH.implode('/', array_slice($segments, 0, $key + 1)).EXT))
  29. {
  30. return require $path;
  31. }
  32. }
  33. return array();
  34. }
  35. }