finder.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. if (is_null(static::$routes))
  24. {
  25. static::$routes = (is_dir(APP_PATH.'routes')) ? static::load() : require APP_PATH.'routes'.EXT;
  26. }
  27. if (array_key_exists($name, static::$names))
  28. {
  29. return static::$names[$name];
  30. }
  31. $arrayIterator = new \RecursiveArrayIterator(static::$routes);
  32. $recursiveIterator = new \RecursiveIteratorIterator($arrayIterator);
  33. foreach ($recursiveIterator as $iterator)
  34. {
  35. $route = $recursiveIterator->getSubIterator();
  36. if (isset($route['name']) and $route['name'] == $name)
  37. {
  38. return static::$names[$name] = array($arrayIterator->key() => iterator_to_array($route));
  39. }
  40. }
  41. }
  42. /**
  43. * Load all of the routes from the routes directory.
  44. *
  45. * All of the various route files will be merged together
  46. * into a single array that can be searched.
  47. *
  48. * @return array
  49. */
  50. private static function load()
  51. {
  52. $routes = array();
  53. foreach (glob(APP_PATH.'routes/*') as $file)
  54. {
  55. if (filetype($file) == 'file')
  56. {
  57. $routes = array_merge(require $file, $routes);
  58. }
  59. }
  60. return $routes;
  61. }
  62. }