config.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php namespace System;
  2. class Config {
  3. /**
  4. * All of the loaded configuration items.
  5. *
  6. * @var array
  7. */
  8. private static $items = array();
  9. /**
  10. * Get a configuration item.
  11. *
  12. * @param string $key
  13. * @return mixed
  14. */
  15. public static function get($key)
  16. {
  17. // -----------------------------------------------------
  18. // We are are just pulling in a file, skip loading a key
  19. // -----------------------------------------------------
  20. if(strpos($key, '.') == 0)
  21. {
  22. static::load($key);
  23. return static::$items[$key];
  24. }
  25. list($file, $key) = static::parse($key);
  26. static::load($file);
  27. if (array_key_exists($key, static::$items[$file]))
  28. {
  29. return static::$items[$file][$key];
  30. }
  31. throw new \Exception("Configuration item [$key] is not defined.");
  32. }
  33. /**
  34. * Set a configuration item.
  35. *
  36. * @param string $key
  37. * @param mixed $value
  38. * @return void
  39. */
  40. public static function set($key, $value)
  41. {
  42. list($file, $key) = static::parse($key);
  43. static::load($file);
  44. static::$items[$file][$key] = $value;
  45. }
  46. /**
  47. * Parse a configuration key.
  48. *
  49. * @param string $key
  50. * @return array
  51. */
  52. private static function parse($key)
  53. {
  54. // -----------------------------------------------------
  55. // The left side of the dot is the file name, while
  56. // the right side of the dot is the item within that
  57. // file being requested.
  58. //
  59. // This syntax allows for the easy retrieval and setting
  60. // of configuration items.
  61. // -----------------------------------------------------
  62. $segments = explode('.', $key);
  63. if (count($segments) < 2)
  64. {
  65. throw new \Exception("Invalid configuration key [$key].");
  66. }
  67. return array($segments[0], implode('.', array_slice($segments, 1)));
  68. }
  69. /**
  70. * Load all of the configuration items.
  71. *
  72. * @param string $file
  73. * @return void
  74. */
  75. public static function load($file)
  76. {
  77. // -----------------------------------------------------
  78. // If we have already loaded the file, bail out.
  79. // -----------------------------------------------------
  80. if (array_key_exists($file, static::$items))
  81. {
  82. return;
  83. }
  84. if ( ! file_exists($path = APP_PATH.'config/'.$file.EXT))
  85. {
  86. throw new \Exception("Configuration file [$file] does not exist.");
  87. }
  88. // -----------------------------------------------------
  89. // Load the configuration array into the array of items.
  90. // The items array is keyed by filename.
  91. // -----------------------------------------------------
  92. static::$items[$file] = require $path;
  93. }
  94. }