config.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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)) return is_callable($default) ? call_user_func($default) : $default;
  37. if (is_null($key)) return static::$items[$module][$file];
  38. return Arr::get(static::$items[$module][$file], $key, $default);
  39. }
  40. /**
  41. * Set a configuration item.
  42. *
  43. * @param string $key
  44. * @param mixed $value
  45. * @return void
  46. */
  47. public static function set($key, $value)
  48. {
  49. list($module, $file, $key) = static::parse($key);
  50. if (is_null($key) or ! static::load($module, $file))
  51. {
  52. throw new \Exception("Error setting configuration option. Option [$key] is not defined.");
  53. }
  54. static::$items[$module][$file][$key] = $value;
  55. }
  56. /**
  57. * Parse a configuration key.
  58. *
  59. * The value on the left side of the dot is the configuration file
  60. * name, while the right side of the dot is the item within that file.
  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') $key = substr($key, strpos($key, ':') + 2);
  69. $key = (count($segments = explode('.', $key)) > 1) ? implode('.', array_slice($segments, 1)) : null;
  70. return array($module, $segments[0], $key);
  71. }
  72. /**
  73. * Load all of the configuration items from a file.
  74. *
  75. * If it exists, the configuration file in the application/config directory will be loaded first.
  76. * Any environment specific configuration files will be merged with the root file.
  77. *
  78. * @param string $file
  79. * @param string $module
  80. * @return bool
  81. */
  82. public 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. $config = (file_exists($base = $path.$file.EXT)) ? require $base : array();
  87. if (isset($_SERVER['LARAVEL_ENV']) and file_exists($path = $path.$_SERVER['LARAVEL_ENV'].'/'.$file.EXT))
  88. {
  89. $config = array_merge($config, require $path);
  90. }
  91. if (count($config) > 0) static::$items[$module][$file] = $config;
  92. return isset(static::$items[$module][$file]);
  93. }
  94. }