finder.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?php namespace System\Route;
  2. class Finder {
  3. /**
  4. * All of the loaded routes.
  5. *
  6. * @var array
  7. */
  8. public static $routes;
  9. /**
  10. * The named routes that have been found so far.
  11. *
  12. * @var array
  13. */
  14. public static $names = array();
  15. /**
  16. * Find a route by name.
  17. *
  18. * @param string $name
  19. * @return array
  20. */
  21. public static function find($name)
  22. {
  23. // This class maintains its own list of routes because the router only loads routes that
  24. // are applicable to the current request URI. But, this class obviously needs access
  25. // to all of the routes, not just the ones applicable to the request URI.
  26. if (is_null(static::$routes))
  27. {
  28. static::$routes = require APP_PATH.'routes'.EXT;
  29. if (is_dir(APP_PATH.'routes'))
  30. {
  31. static::$routes = array_merge(static::load(), static::$routes);
  32. }
  33. }
  34. if (array_key_exists($name, static::$names))
  35. {
  36. return static::$names[$name];
  37. }
  38. $recursiveIterator = new \RecursiveIteratorIterator($arrayIterator = new \RecursiveArrayIterator(static::$routes));
  39. foreach ($recursiveIterator as $iterator)
  40. {
  41. $route = $recursiveIterator->getSubIterator();
  42. if (isset($route['name']) and $route['name'] == $name)
  43. {
  44. return static::$names[$name] = array($arrayIterator->key() => iterator_to_array($route));
  45. }
  46. }
  47. }
  48. /**
  49. * Load all of the routes from the routes directory.
  50. *
  51. * All of the various route files will be merged together
  52. * into a single array that can be searched.
  53. *
  54. * @return array
  55. */
  56. private static function load()
  57. {
  58. $routes = array();
  59. $iterator = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator(APP_PATH.'routes'), \RecursiveIteratorIterator::SELF_FIRST);
  60. foreach ($iterator as $file)
  61. {
  62. if (filetype($file) === 'file')
  63. {
  64. $routes = array_merge(require $file, $routes);
  65. }
  66. }
  67. return $routes;
  68. }
  69. }