finder.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. // --------------------------------------------------------------
  24. // Load the routes if we haven't already.
  25. // --------------------------------------------------------------
  26. if (is_null(static::$routes))
  27. {
  28. static::$routes = (is_dir(APP_PATH.'routes')) ? static::load() : require APP_PATH.'routes'.EXT;
  29. }
  30. // --------------------------------------------------------------
  31. // Have we already located this route by name?
  32. // --------------------------------------------------------------
  33. if (array_key_exists($name, static::$names))
  34. {
  35. return static::$names[$name];
  36. }
  37. // --------------------------------------------------------------
  38. // Instantiate the SPL array iterators.
  39. // --------------------------------------------------------------
  40. $arrayIterator = new \RecursiveArrayIterator(static::$routes);
  41. $recursiveIterator = new \RecursiveIteratorIterator($arrayIterator);
  42. // --------------------------------------------------------------
  43. // Iterate over the routes and find the named route.
  44. // --------------------------------------------------------------
  45. foreach ($recursiveIterator as $iterator)
  46. {
  47. $route = $recursiveIterator->getSubIterator();
  48. if (isset($route['name']) and $route['name'] == $name)
  49. {
  50. return static::$names[$name] = array($arrayIterator->key() => iterator_to_array($route));
  51. }
  52. }
  53. }
  54. /**
  55. * Load all of the routes from the routes directory.
  56. *
  57. * @return array
  58. */
  59. private static function load()
  60. {
  61. $routes = array();
  62. // --------------------------------------------------------------
  63. // Merge all of the various route files together.
  64. // --------------------------------------------------------------
  65. foreach (glob(APP_PATH.'routes/*') as $file)
  66. {
  67. if (filetype($file) == 'file')
  68. {
  69. $routes = array_merge(require $file, $routes);
  70. }
  71. }
  72. return $routes;
  73. }
  74. }