loader.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php namespace System\Routing;
  2. use System\Config;
  3. class Loader {
  4. /**
  5. * All of the routes for the application.
  6. *
  7. * @var array
  8. */
  9. private static $routes;
  10. /**
  11. * The path where the routes are located.
  12. *
  13. * @var string
  14. */
  15. public $path;
  16. /**
  17. * Create a new route loader instance.
  18. *
  19. * @param string $path
  20. * @return void
  21. */
  22. public function __construct($path)
  23. {
  24. $this->path = $path;
  25. }
  26. /**
  27. * Load the appropriate routes for the request URI.
  28. *
  29. * @param string
  30. * @return array
  31. */
  32. public function load($uri)
  33. {
  34. $base = (file_exists($path = $this->path.'routes'.EXT)) ? require $path : array();
  35. return array_merge($this->load_nested_routes(explode('/', $uri)), $base);
  36. }
  37. /**
  38. * Load the appropriate routes from the routes directory.
  39. *
  40. * @param array $segments
  41. * @return array
  42. */
  43. private function load_nested_routes($segments)
  44. {
  45. // If the request URI only more than one segment, and the last segment contains a dot, we will
  46. // assume the request is for a specific format (users.json or users.xml) and strip off
  47. // everything after the dot so we can load the appropriate file.
  48. if (count($segments) > 0 and strpos(end($segments), '.') !== false)
  49. {
  50. $segment = array_pop($segments);
  51. array_push($segments, substr($segment, 0, strpos($segment, '.')));
  52. }
  53. // Work backwards through the URI segments until we find the deepest possible
  54. // matching route directory. Once we find it, we will return those routes.
  55. foreach (array_reverse($segments, true) as $key => $value)
  56. {
  57. if (file_exists($path = $this->path.'routes/'.implode('/', array_slice($segments, 0, $key + 1)).EXT))
  58. {
  59. return require $path;
  60. }
  61. }
  62. return array();
  63. }
  64. /**
  65. * Get all of the routes for the application.
  66. *
  67. * To improve performance, this operation will only be performed once. The routes
  68. * will be cached and returned on every subsequent call.
  69. *
  70. * @param bool $reload
  71. * @param string $path
  72. * @return array
  73. */
  74. public static function all($reload = false, $path = APP_PATH)
  75. {
  76. if ( ! is_null(static::$routes) and ! $reload) return static::$routes;
  77. // Merge all of the module paths in with the specified path so that all
  78. // active module routes will also be loaded. So, by default, this method
  79. // will search the application path and all active module paths for routes.
  80. $paths = array_merge(array($path), array_map(function($module) { return MODULE_PATH.$module.'/'; }, Config::get('application.modules')));
  81. $routes = array();
  82. foreach ($paths as $path)
  83. {
  84. if (file_exists($path.'routes'.EXT))
  85. {
  86. $routes = array_merge($routes, require $path.'routes'.EXT);
  87. }
  88. if (is_dir($path.'routes'))
  89. {
  90. // Since route files can be nested deep within the route directory, we need to
  91. // recursively spin through the directory to find every file.
  92. $directoryIterator = new \RecursiveDirectoryIterator($path.'routes');
  93. $recursiveIterator = new \RecursiveIteratorIterator($directoryIterator, \RecursiveIteratorIterator::SELF_FIRST);
  94. foreach ($recursiveIterator as $file)
  95. {
  96. if (filetype($file) === 'file' and strpos($file, EXT) !== false)
  97. {
  98. $routes = array_merge($routes, require $file);
  99. }
  100. }
  101. }
  102. }
  103. return static::$routes = $routes;
  104. }
  105. }