finder.php 1.5 KB

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