finder.php 1.4 KB

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