finder.php 1.7 KB

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