loader.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. // Since it is no part of the route directory structure, shift the module name off of the
  54. // beginning of the array so we can locate the appropriate route file.
  55. if (count($segments) > 0 and ACTIVE_MODULE !== 'application')
  56. {
  57. array_shift($segments);
  58. }
  59. // Work backwards through the URI segments until we find the deepest possible
  60. // matching route directory. Once we find it, we will return those routes.
  61. foreach (array_reverse($segments, true) as $key => $value)
  62. {
  63. if (file_exists($path = $this->path.'routes/'.implode('/', array_slice($segments, 0, $key + 1)).EXT))
  64. {
  65. return require $path;
  66. }
  67. }
  68. return array();
  69. }
  70. /**
  71. * Get all of the routes for the application.
  72. *
  73. * To improve performance, this operation will only be performed once. The routes
  74. * will be cached and returned on every subsequent call.
  75. *
  76. * @param bool $reload
  77. * @param string $path
  78. * @return array
  79. */
  80. public static function all($reload = false, $path = APP_PATH)
  81. {
  82. if ( ! is_null(static::$routes) and ! $reload) return static::$routes;
  83. // Merge all of the module paths in with the specified path so that all
  84. // active module routes will also be loaded. So, by default, this method
  85. // will search the application path and all active module paths for routes.
  86. $paths = array_merge(array($path), array_map(function($module) { return MODULE_PATH.$module.'/'; }, Config::get('application.modules')));
  87. $routes = array();
  88. foreach ($paths as $path)
  89. {
  90. if (file_exists($path.'routes'.EXT))
  91. {
  92. $routes = array_merge($routes, require $path.'routes'.EXT);
  93. }
  94. if (is_dir($path.'routes'))
  95. {
  96. // Since route files can be nested deep within the route directory, we need to
  97. // recursively spin through the directory to find every file.
  98. $directoryIterator = new \RecursiveDirectoryIterator($path.'routes');
  99. $recursiveIterator = new \RecursiveIteratorIterator($directoryIterator, \RecursiveIteratorIterator::SELF_FIRST);
  100. foreach ($recursiveIterator as $file)
  101. {
  102. if (filetype($file) === 'file' and strpos($file, EXT) !== false)
  103. {
  104. $routes = array_merge($routes, require $file);
  105. }
  106. }
  107. }
  108. }
  109. return static::$routes = $routes;
  110. }
  111. }