config.php 3.0 KB

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