loader.php 3.5 KB

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