loader.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?php namespace Laravel\Routing;
  2. use Laravel\Arr;
  3. use RecursiveIteratorIterator as Iterator;
  4. use RecursiveDirectoryIterator as DirectoryIterator;
  5. class Loader {
  6. /**
  7. * The location of the base routes file.
  8. *
  9. * @var string
  10. */
  11. protected $base;
  12. /**
  13. * The directory containing nested route files.
  14. *
  15. * @var string
  16. */
  17. protected $nest;
  18. /**
  19. * A cache for all of the routes defined for the entire application.
  20. *
  21. * @var array
  22. */
  23. protected $everything;
  24. /**
  25. * Create a new route loader instance.
  26. *
  27. * @param string $base
  28. * @param string $nest
  29. * @return void
  30. */
  31. public function __construct($base, $nest)
  32. {
  33. $this->base = $base;
  34. $this->nest = $nest;
  35. }
  36. /**
  37. * Load the applicable routes for a given URI.
  38. *
  39. * @param string $uri
  40. * @return array
  41. */
  42. public function load($uri)
  43. {
  44. $routes = (file_exists($path = $this->base.'routes'.EXT)) ? require $path : array();
  45. $segments = Arr::without(explode('/', $uri), '');
  46. return array_merge($this->nested($segments), $routes);
  47. }
  48. /**
  49. * Get the appropriate routes from the routes directory for a given URI.
  50. *
  51. * This method works backwards through the URI segments until we find the
  52. * deepest possible matching route directory. Once the deepest directory
  53. * is found, all of the applicable routes will be returend.
  54. *
  55. * @param array $segments
  56. * @return array
  57. */
  58. protected function nested($segments)
  59. {
  60. foreach (array_reverse($segments, true) as $key => $value)
  61. {
  62. $path = $this->nest.implode('/', array_slice($segments, 0, $key + 1)).EXT;
  63. if (file_exists($path)) return require $path;
  64. }
  65. return array();
  66. }
  67. /**
  68. * Get every route defined for the application.
  69. *
  70. * The entire routes directory will be searched recursively to gather
  71. * every route for the application. Of course, the routes in the root
  72. * routes file will be returned as well.
  73. *
  74. * @return array
  75. */
  76. public function everything()
  77. {
  78. if ( ! is_null($this->everything)) return $this->everything;
  79. $routes = array();
  80. if (file_exists($path = $this->base.'routes'.EXT))
  81. {
  82. $routes = array_merge($routes, require $path);
  83. }
  84. if ( ! is_dir($this->nest)) return $routes;
  85. $iterator = new Iterator(new DirectoryIterator($this->nest), Iterator::SELF_FIRST);
  86. foreach ($iterator as $file)
  87. {
  88. // Since some Laravel developers may place HTML files in the route
  89. // directories, we will check for the PHP extension before merging
  90. // the file. Typically, the HTML files are present in installations
  91. // that are not using mod_rewrite and the public directory.
  92. if (filetype($file) === 'file' and strpos($file, EXT) !== false)
  93. {
  94. $routes = array_merge(require $file, $routes);
  95. }
  96. }
  97. return $this->everything = $routes;
  98. }
  99. }