config.php 2.9 KB

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