loader.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 routes is being used, return it.
  13. // --------------------------------------------------------------
  14. if ( ! is_dir(APP_PATH.'routes'))
  15. {
  16. return require APP_PATH.'routes'.EXT;
  17. }
  18. // --------------------------------------------------------------
  19. // If the request is to the root, load the "home" routes file.
  20. // --------------------------------------------------------------
  21. if ($uri == '/')
  22. {
  23. if ( ! file_exists(APP_PATH.'routes/home'.EXT))
  24. {
  25. throw new \Exception("A [home] route file is required when using a route directory.");
  26. }
  27. return require APP_PATH.'routes/home'.EXT;
  28. }
  29. // --------------------------------------------------------------
  30. // Load the route file matching the first segment of the URI.
  31. // --------------------------------------------------------------
  32. else
  33. {
  34. $segments = explode('/', trim($uri, '/'));
  35. if ( ! file_exists(APP_PATH.'routes/'.$segments[0].EXT))
  36. {
  37. throw new \Exception("No route file defined for routes beginning with [".$segments[0]."]");
  38. }
  39. return array_merge(require APP_PATH.'routes/'.$segments[0].EXT, require APP_PATH.'routes/home'.EXT);
  40. }
  41. }
  42. }