config.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?php namespace Laravel;
  2. class Config_Facade extends Facade {
  3. public static $resolve = 'config';
  4. }
  5. class Config {
  6. /**
  7. * All of the loaded configuration items.
  8. *
  9. * The configuration arrays are keyed by file names.
  10. *
  11. * @var array
  12. */
  13. protected $items = array();
  14. /**
  15. * The paths containing the configuration files.
  16. *
  17. * @var array
  18. */
  19. protected $paths = array();
  20. /**
  21. * Create a new configuration manager instance.
  22. *
  23. * @param array $paths
  24. * @return void
  25. */
  26. public function __construct($paths)
  27. {
  28. $this->paths = $paths;
  29. }
  30. /**
  31. * Determine if a configuration item or file exists.
  32. *
  33. * @param string $key
  34. * @return bool
  35. */
  36. public function has($key)
  37. {
  38. return ! is_null($this->get($key));
  39. }
  40. /**
  41. * Get a configuration item.
  42. *
  43. * Configuration items are retrieved using "dot" notation. So, asking for the
  44. * "application.timezone" configuration item would return the "timezone" option
  45. * from the "application" configuration file.
  46. *
  47. * If the name of a configuration file is passed without specifying an item, the
  48. * entire configuration array will be returned.
  49. *
  50. * @param string $key
  51. * @param string $default
  52. * @return array
  53. */
  54. public function get($key, $default = null)
  55. {
  56. list($file, $key) = $this->parse($key);
  57. if ( ! $this->load($file))
  58. {
  59. return ($default instanceof \Closure) ? call_user_func($default) : $default;
  60. }
  61. if (is_null($key)) return $this->items[$file];
  62. return Arr::get($this->items[$file], $key, $default);
  63. }
  64. /**
  65. * Set a configuration item.
  66. *
  67. * Like the get method, "dot" notation is used to set items, and setting items
  68. * at any depth in the configuration array is supported.
  69. *
  70. * If a specific configuration item is not specified, the entire configuration
  71. * array will be replaced with the given value.
  72. *
  73. * @param string $key
  74. * @param mixed $value
  75. * @return void
  76. */
  77. public function set($key, $value)
  78. {
  79. list($file, $key) = $this->parse($key);
  80. $this->load($file);
  81. (is_null($key)) ? Arr::set($this->items, $file, $value) : Arr::set($this->items[$file], $key, $value);
  82. }
  83. /**
  84. * Parse a configuration key and return its file and key segments.
  85. *
  86. * Configuration keys follow a {file}.{key} convention.
  87. *
  88. * @param string $key
  89. * @return array
  90. */
  91. private function parse($key)
  92. {
  93. $segments = explode('.', $key);
  94. return array($segments[0], (count($segments) > 1) ? implode('.', array_slice($segments, 1)) : null);
  95. }
  96. /**
  97. * Load all of the configuration items from a module configuration file.
  98. *
  99. * If the configuration file has already been loaded, it will not be loaded again.
  100. *
  101. * @param string $file
  102. * @return bool
  103. */
  104. private function load($file)
  105. {
  106. if (isset($this->items[$file])) return true;
  107. $config = array();
  108. foreach ($this->paths as $directory)
  109. {
  110. $config = (file_exists($path = $directory.$file.EXT)) ? array_merge($config, require $path) : $config;
  111. }
  112. if (count($config) > 0)
  113. {
  114. $this->items[$file] = $config;
  115. }
  116. return isset($this->items[$file]);
  117. }
  118. }