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