config.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <?php namespace System;
  2. class Config {
  3. /**
  4. * All of the loaded configuration items.
  5. *
  6. * @var array
  7. */
  8. public static $items = array();
  9. /**
  10. * Determine if a configuration item or file exists.
  11. *
  12. * @param string $key
  13. * @return bool
  14. */
  15. public static function has($key)
  16. {
  17. return ! is_null(static::get($key));
  18. }
  19. /**
  20. * Get a configuration item.
  21. *
  22. * Configuration items are retrieved using "dot" notation. So, asking for the
  23. * "application.timezone" configuration item would return the "timezone" option
  24. * from the "application" configuration file.
  25. *
  26. * If the name of a configuration file is passed without specifying an item, the
  27. * entire configuration array will be returned.
  28. *
  29. * @param string $key
  30. * @param string $default
  31. * @return array
  32. */
  33. public static function get($key, $default = null)
  34. {
  35. list($module, $file, $key) = static::parse($key);
  36. if ( ! static::load($module, $file))
  37. {
  38. return is_callable($default) ? call_user_func($default) : $default;
  39. }
  40. if (is_null($key))
  41. {
  42. return static::$items[$module][$file];
  43. }
  44. return Arr::get(static::$items[$module][$file], $key, $default);
  45. }
  46. /**
  47. * Set a configuration item.
  48. *
  49. * @param string $key
  50. * @param mixed $value
  51. * @return void
  52. */
  53. public static function set($key, $value)
  54. {
  55. list($module, $file, $key) = static::parse($key);
  56. if (is_null($key) or ! static::load($module, $file))
  57. {
  58. throw new \Exception("Unable to find configuration file item [$key].");
  59. }
  60. static::$items[$module][$file][$key] = $value;
  61. }
  62. /**
  63. * Parse a configuration key.
  64. *
  65. * The value on the left side of the dot is the configuration file
  66. * name, while the right side of the dot is the item within that file.
  67. *
  68. * @param string $key
  69. * @return array
  70. */
  71. private static function parse($key)
  72. {
  73. // Check for a module qualifier. If a module name is present, we need to extract it from
  74. // the configuration key, otherwise, we will use "application" as the module.
  75. $module = (strpos($key, '::') !== false) ? substr($key, 0, strpos($key, ':')) : 'application';
  76. // If the configuration item is stored in a module, we need to strip the module qualifier
  77. // off of the configuration key before continuing.
  78. if ($module != 'application')
  79. {
  80. $key = substr($key, strpos($key, ':') + 2);
  81. }
  82. $segments = explode('.', $key);
  83. // If there is more than one segment, we need to splice together and portion of the
  84. // configuration key that comes after the first segment, which is the file name.
  85. $key = (count($segments) > 1) ? implode('.', array_slice($segments, 1)) : null;
  86. return array($module, $segments[0], $key);
  87. }
  88. /**
  89. * Load all of the configuration items from a file.
  90. *
  91. * If it exists, the configuration file in the application/config directory will be loaded first.
  92. * Any environment specific configuration files will be merged with the root file.
  93. *
  94. * @param string $file
  95. * @param string $module
  96. * @return bool
  97. */
  98. public static function load($module, $file)
  99. {
  100. // If the configuration items for this module and file have already been
  101. // loaded, we can bail out of this method.
  102. if (isset(static::$items[$module]) and array_key_exists($file, static::$items[$module])) return true;
  103. $path = ($module === 'application') ? CONFIG_PATH : MODULE_PATH.$module.'/config/';
  104. // Load the base configuration items for the module and file.
  105. $config = (file_exists($base = $path.$file.EXT)) ? require $base : array();
  106. // Merge any enviornment specific configuration items for the module and file.
  107. if (isset($_SERVER['LARAVEL_ENV']) and file_exists($path = $path.$_SERVER['LARAVEL_ENV'].'/'.$file.EXT))
  108. {
  109. $config = array_merge($config, require $path);
  110. }
  111. if (count($config) > 0)
  112. {
  113. static::$items[$module][$file] = $config;
  114. }
  115. return isset(static::$items[$module][$file]);
  116. }
  117. }