finder.php 1.6 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. // This class maintains its own list of routes because the router only loads routes that
  24. // are applicable to the current request URI. But, this class obviously needs access
  25. // to all of the routes, not just the ones applicable to the request URI.
  26. if (is_null(static::$routes))
  27. {
  28. static::$routes = (is_dir(APP_PATH.'routes')) ? static::load() : require APP_PATH.'routes'.EXT;
  29. }
  30. if (array_key_exists($name, static::$names))
  31. {
  32. return static::$names[$name];
  33. }
  34. $recursiveIterator = new \RecursiveIteratorIterator($arrayIterator = new \RecursiveArrayIterator(static::$routes));
  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. }