finder.php 1.6 KB

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