config.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <?php namespace Laravel; defined('DS') or die('No direct script access.');
  2. use Closure;
  3. class Config {
  4. /**
  5. * All of the loaded configuration items.
  6. *
  7. * The configuration arrays are keyed by their owning bundle and file.
  8. *
  9. * @var array
  10. */
  11. public static $items = array();
  12. /**
  13. * A cache of the parsed configuration items.
  14. *
  15. * @var array
  16. */
  17. public static $cache = array();
  18. /**
  19. * Determine if a configuration item or file exists.
  20. *
  21. * <code>
  22. * // Determine if the "session" configuration file exists
  23. * $exists = Config::has('session');
  24. *
  25. * // Determine if the "timezone" option exists in the configuration
  26. * $exists = Config::has('application.timezone');
  27. * </code>
  28. *
  29. * @param string $key
  30. * @return bool
  31. */
  32. public static function has($key)
  33. {
  34. return ! is_null(static::get($key));
  35. }
  36. /**
  37. * Get a configuration item.
  38. *
  39. * If no item is requested, the entire configuration array will be returned.
  40. *
  41. * <code>
  42. * // Get the "session" configuration array
  43. * $session = Config::get('session');
  44. *
  45. * // Get a configuration item from a bundle's configuration file
  46. * $name = Config::get('admin::names.first');
  47. *
  48. * // Get the "timezone" option from the "application" configuration file
  49. * $timezone = Config::get('application.timezone');
  50. * </code>
  51. *
  52. * @param string $key
  53. * @return array
  54. */
  55. public static function get($key)
  56. {
  57. list($bundle, $file, $item) = static::parse($key);
  58. if ( ! static::load($bundle, $file)) return;
  59. $items = static::$items[$bundle][$file];
  60. // If a specific configuration item was not requested, the key will be null,
  61. // meaning we need to return the entire array of configuration item from the
  62. // requested configuration file. Otherwise we can return the item.
  63. if (is_null($item))
  64. {
  65. return $items;
  66. }
  67. else
  68. {
  69. return array_get($items, $item);
  70. }
  71. }
  72. /**
  73. * Set a configuration item's value.
  74. *
  75. * <code>
  76. * // Set the "session" configuration array
  77. * Config::set('session', $array);
  78. *
  79. * // Set a configuration option that belongs by a bundle
  80. * Config::set('admin::names.first', 'Taylor');
  81. *
  82. * // Set the "timezone" option in the "application" configuration file
  83. * Config::set('application.timezone', 'UTC');
  84. * </code>
  85. *
  86. * @param string $key
  87. * @param mixed $value
  88. * @return void
  89. */
  90. public static function set($key, $value)
  91. {
  92. list($bundle, $file, $item) = static::parse($key);
  93. static::load($bundle, $file);
  94. // If the item is null, it means the developer wishes to set the entire
  95. // configuration array to a given value, so we will pass the entire
  96. // array for the bundle into the array_set method, otherwise we'll
  97. // only pass the file array for the bundle.
  98. if (is_null($item))
  99. {
  100. array_set(static::$items[$bundle], $file, $value);
  101. }
  102. else
  103. {
  104. array_set(static::$items[$bundle][$file], $item, $value);
  105. }
  106. }
  107. /**
  108. * Parse a key and return its bundle, file, and key segments.
  109. *
  110. * Configuration items are named using the {bundle}::{file}.{item} convention.
  111. *
  112. * @param string $key
  113. * @return array
  114. */
  115. protected static function parse($key)
  116. {
  117. // First, we'll check the keyed cache of configuration items, as this will
  118. // be the fastest method of retrieving the configuration option. After an
  119. // item is parsed, it is always stored in the cache by its key.
  120. if (array_key_exists($key, static::$cache))
  121. {
  122. return static::$cache[$key];
  123. }
  124. $bundle = Bundle::name($key);
  125. $segments = explode('.', Bundle::element($key));
  126. // If there are not at least two segments in the array, it means that the
  127. // developer is requesting the entire configuration array to be returned.
  128. // If that is the case, we'll make the item field of the array "null".
  129. if (count($segments) >= 2)
  130. {
  131. $parsed = array($bundle, $segments[0], implode('.', array_slice($segments, 1)));
  132. }
  133. else
  134. {
  135. $parsed = array($bundle, $segments[0], null);
  136. }
  137. return static::$cache[$key] = $parsed;
  138. }
  139. /**
  140. * Load all of the configuration items from a configuration file.
  141. *
  142. * @param string $bundle
  143. * @param string $file
  144. * @return bool
  145. */
  146. public static function load($bundle, $file)
  147. {
  148. if (isset(static::$items[$bundle][$file])) return true;
  149. $config = array();
  150. // Configuration files cascade. Typically, the bundle configuration array is
  151. // loaded first, followed by the environment array, providing the convenient
  152. // cascading of configuration options across environments.
  153. foreach (static::paths($bundle) as $directory)
  154. {
  155. if ($directory !== '' and file_exists($path = $directory.$file.EXT))
  156. {
  157. $config = array_merge($config, require $path);
  158. }
  159. }
  160. if (count($config) > 0)
  161. {
  162. static::$items[$bundle][$file] = $config;
  163. }
  164. return isset(static::$items[$bundle][$file]);
  165. }
  166. /**
  167. * Get the array of configuration paths that should be searched for a bundle.
  168. *
  169. * @param string $bundle
  170. * @return array
  171. */
  172. protected static function paths($bundle)
  173. {
  174. $paths[] = Bundle::path($bundle).'config/';
  175. // Configuration files can be made specific for a given environment. If an
  176. // environment has been set, we will merge the environment configuration
  177. // in last, so that it overrides all other options.
  178. //
  179. // This allows the developer to quickly and easily create configurations
  180. // for various scenarios, such as local development and production,
  181. // without constantly changing configuration files.
  182. if (isset($_SERVER['LARAVEL_ENV']))
  183. {
  184. $paths[] = $paths[count($paths) - 1].$_SERVER['LARAVEL_ENV'].'/';
  185. }
  186. return $paths;
  187. }
  188. }