config.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. * @param string $key
  32. * @param string $default
  33. * @return array
  34. */
  35. public static function get($key, $default = null)
  36. {
  37. list($module, $file, $key) = static::parse($key);
  38. if ( ! static::load($module, $file))
  39. {
  40. return is_callable($default) ? call_user_func($default) : $default;
  41. }
  42. if (is_null($key)) return static::$items[$module][$file];
  43. return Arr::get(static::$items[$module][$file], $key, $default);
  44. }
  45. /**
  46. * Set a configuration item.
  47. *
  48. * If a configuration item is not specified, the entire configuration array will be set.
  49. *
  50. * @param string $key
  51. * @param mixed $value
  52. * @return void
  53. */
  54. public static function set($key, $value)
  55. {
  56. list($module, $file, $key) = static::parse($key);
  57. if ( ! static::load($module, $file))
  58. {
  59. throw new \Exception("Error setting configuration option. Option [$key] is not defined.");
  60. }
  61. (is_null($key)) ? static::$items[$module][$file] = $value : static::$items[$module][$file][$key] = $value;
  62. }
  63. /**
  64. * Parse a configuration key into its module, file, and key parts.
  65. *
  66. * @param string $key
  67. * @return array
  68. */
  69. private static function parse($key)
  70. {
  71. $module = (strpos($key, '::') !== false) ? substr($key, 0, strpos($key, ':')) : 'application';
  72. if ($module !== 'application')
  73. {
  74. $key = substr($key, strpos($key, ':') + 2);
  75. }
  76. $key = (count($segments = explode('.', $key)) > 1) ? implode('.', array_slice($segments, 1)) : null;
  77. return array($module, $segments[0], $key);
  78. }
  79. /**
  80. * Load all of the configuration items from a file.
  81. *
  82. * @param string $file
  83. * @param string $module
  84. * @return bool
  85. */
  86. private static function load($module, $file)
  87. {
  88. if (isset(static::$items[$module]) and array_key_exists($file, static::$items[$module])) return true;
  89. $path = ($module === 'application') ? CONFIG_PATH : MODULE_PATH.$module.'/config/';
  90. // Load the base configuration file. Once that is loaded, we will merge any environment
  91. // specific configuration options into the base array. This allows for the convenient
  92. // cascading of configuration options depending on the application environment.
  93. $config = (file_exists($base = $path.$file.EXT)) ? require $base : array();
  94. if (isset($_SERVER['LARAVEL_ENV']) and file_exists($path = $path.$_SERVER['LARAVEL_ENV'].'/'.$file.EXT))
  95. {
  96. $config = array_merge($config, require $path);
  97. }
  98. if (count($config) > 0) static::$items[$module][$file] = $config;
  99. return isset(static::$items[$module][$file]);
  100. }
  101. }