loader.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php namespace System\Route;
  2. class Loader {
  3. /**
  4. * Load the route file based on the first segment of the URI.
  5. *
  6. * @param string $uri
  7. * @return void
  8. */
  9. public static function load($uri)
  10. {
  11. // --------------------------------------------------------------
  12. // If a single route file is being used, return it.
  13. // --------------------------------------------------------------
  14. if ( ! is_dir(APP_PATH.'routes'))
  15. {
  16. return require APP_PATH.'routes'.EXT;
  17. }
  18. if ( ! file_exists(APP_PATH.'routes/home'.EXT))
  19. {
  20. throw new \Exception("A [home] route file is required when using a route directory.");
  21. }
  22. // --------------------------------------------------------------
  23. // If the request is to the root, load the "home" routes file.
  24. //
  25. // Otherwise, load the route file matching the first segment of
  26. // the URI as well as the "home" routes file.
  27. // --------------------------------------------------------------
  28. if ($uri == '/')
  29. {
  30. return require APP_PATH.'routes/home'.EXT;
  31. }
  32. else
  33. {
  34. $segments = explode('/', trim($uri, '/'));
  35. // --------------------------------------------------------------
  36. // If the file doesn't exist, we'll just return the "home" file.
  37. // --------------------------------------------------------------
  38. if ( ! file_exists(APP_PATH.'routes/'.$segments[0].EXT))
  39. {
  40. return require APP_PATH.'routes/home'.EXT;
  41. }
  42. return array_merge(require APP_PATH.'routes/'.$segments[0].EXT, require APP_PATH.'routes/home'.EXT);
  43. }
  44. }
  45. }