config.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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 the configuration file doesn't exist, return the default value.
  37. if ( ! static::load($module, $file)) return is_callable($default) ? call_user_func($default) : $default;
  38. // If no key was specified, return the entire configuration array.
  39. if (is_null($key)) return static::$items[$module][$file];
  40. return Arr::get(static::$items[$module][$file], $key, $default);
  41. }
  42. /**
  43. * Set a configuration item.
  44. *
  45. * @param string $key
  46. * @param mixed $value
  47. * @return void
  48. */
  49. public static function set($key, $value)
  50. {
  51. list($module, $file, $key) = static::parse($key);
  52. if (is_null($key) or ! static::load($module, $file))
  53. {
  54. throw new \Exception("Error setting configuration option. Option [$key] is not defined.");
  55. }
  56. static::$items[$module][$file][$key] = $value;
  57. }
  58. /**
  59. * Parse a configuration key.
  60. *
  61. * The value on the left side of the dot is the configuration file
  62. * name, while the right side of the dot is the item within that file.
  63. *
  64. * @param string $key
  65. * @return array
  66. */
  67. private static function parse($key)
  68. {
  69. $module = (strpos($key, '::') !== false) ? substr($key, 0, strpos($key, ':')) : 'application';
  70. if ($module !== 'application') $key = substr($key, strpos($key, ':') + 2);
  71. $segments = explode('.', $key);
  72. $key = (count($segments) > 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. * If it exists, the configuration file in the application/config directory will be loaded first.
  79. * Any environment specific configuration files will be merged with the root file.
  80. *
  81. * @param string $file
  82. * @param string $module
  83. * @return bool
  84. */
  85. public static function load($module, $file)
  86. {
  87. if (isset(static::$items[$module]) and array_key_exists($file, static::$items[$module])) return true;
  88. $path = ($module === 'application') ? CONFIG_PATH : MODULE_PATH.$module.'/config/';
  89. // Load the base configuration items for the module and file.
  90. $config = (file_exists($base = $path.$file.EXT)) ? require $base : array();
  91. // Merge any enviornment specific configuration items for the module and file.
  92. if (isset($_SERVER['LARAVEL_ENV']) and file_exists($path = $path.$_SERVER['LARAVEL_ENV'].'/'.$file.EXT))
  93. {
  94. $config = array_merge($config, require $path);
  95. }
  96. if (count($config) > 0) static::$items[$module][$file] = $config;
  97. return isset(static::$items[$module][$file]);
  98. }
  99. }