config.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <?php namespace System;
  2. class Config {
  3. /**
  4. * All of the loaded configuration items.
  5. *
  6. * The configuration item arrays are keyed by module and file.
  7. *
  8. * @var array
  9. */
  10. public static $items = array();
  11. /**
  12. * Determine if a configuration file or item exists.
  13. *
  14. * @param string $key
  15. * @return bool
  16. */
  17. public static function has($key)
  18. {
  19. return ! is_null(static::get($key));
  20. }
  21. /**
  22. * Get a configuration item.
  23. *
  24. * Configuration items are retrieved using "dot" notation. So, asking for the
  25. * "application.timezone" configuration item would return the "timezone" option
  26. * from the "application" configuration file.
  27. *
  28. * If the name of a configuration file is passed without specifying an item, the
  29. * entire configuration array will be returned.
  30. *
  31. * <code>
  32. * // Get the application timezone
  33. * $timezone = Config::get('application.timezone');
  34. *
  35. * // Get the application configuration array
  36. * $application = Config::get('application');
  37. * </code>
  38. *
  39. * @param string $key
  40. * @param string $default
  41. * @return array
  42. */
  43. public static function get($key, $default = null)
  44. {
  45. list($module, $file, $key) = static::parse($key);
  46. if ( ! static::load($module, $file))
  47. {
  48. return is_callable($default) ? call_user_func($default) : $default;
  49. }
  50. if (is_null($key)) return static::$items[$module][$file];
  51. return Arr::get(static::$items[$module][$file], $key, $default);
  52. }
  53. /**
  54. * Set a configuration item.
  55. *
  56. * If a configuration item is not specified, the entire configuration array will be set.
  57. *
  58. * <code>
  59. * // Set the application timezone
  60. * Config::set('application.timezone', 'America/Chicago');
  61. *
  62. * // Set the application configuration array
  63. * Config::set('application', array());
  64. * </code>
  65. *
  66. * @param string $key
  67. * @param mixed $value
  68. * @return void
  69. */
  70. public static function set($key, $value)
  71. {
  72. list($module, $file, $key) = static::parse($key);
  73. if ( ! static::load($module, $file))
  74. {
  75. throw new \Exception("Error setting configuration option. Option [$key] is not defined.");
  76. }
  77. (is_null($key)) ? static::$items[$module][$file] = $value : static::$items[$module][$file][$key] = $value;
  78. }
  79. /**
  80. * Parse a configuration key into its module, file, and key parts.
  81. *
  82. * @param string $key
  83. * @return array
  84. */
  85. private static function parse($key)
  86. {
  87. $module = (strpos($key, '::') !== false) ? substr($key, 0, strpos($key, ':')) : 'application';
  88. if ($module !== 'application')
  89. {
  90. $key = substr($key, strpos($key, ':') + 2);
  91. }
  92. $key = (count($segments = explode('.', $key)) > 1) ? implode('.', array_slice($segments, 1)) : null;
  93. return array($module, $segments[0], $key);
  94. }
  95. /**
  96. * Load all of the configuration items from a file.
  97. *
  98. * @param string $file
  99. * @param string $module
  100. * @return bool
  101. */
  102. private static function load($module, $file)
  103. {
  104. if (isset(static::$items[$module]) and array_key_exists($file, static::$items[$module])) return true;
  105. $path = ($module === 'application') ? CONFIG_PATH : MODULE_PATH.$module.'/config/';
  106. // Load the base configuration file. Once that is loaded, we will merge any environment
  107. // specific configuration options into the base array. This allows for the convenient
  108. // cascading of configuration options depending on the application environment.
  109. $config = (file_exists($base = $path.$file.EXT)) ? require $base : array();
  110. if (isset($_SERVER['LARAVEL_ENV']) and file_exists($path = $path.$_SERVER['LARAVEL_ENV'].'/'.$file.EXT))
  111. {
  112. $config = array_merge($config, require $path);
  113. }
  114. if (count($config) > 0) static::$items[$module][$file] = $config;
  115. return isset(static::$items[$module][$file]);
  116. }
  117. }