SystemConfig.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Daniel Kesselberg <mail@danielkesselberg.de>
  6. * @author Joas Schilling <coding@schilljs.com>
  7. * @author Johannes Schlichenmaier <johannes@schlichenmaier.info>
  8. * @author Lukas Reschke <lukas@statuscode.ch>
  9. * @author Morris Jobke <hey@morrisjobke.de>
  10. * @author Roeland Jago Douma <roeland@famdouma.nl>
  11. *
  12. * @license AGPL-3.0
  13. *
  14. * This code is free software: you can redistribute it and/or modify
  15. * it under the terms of the GNU Affero General Public License, version 3,
  16. * as published by the Free Software Foundation.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU Affero General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU Affero General Public License, version 3,
  24. * along with this program. If not, see <http://www.gnu.org/licenses/>
  25. *
  26. */
  27. namespace OC;
  28. use OCP\IConfig;
  29. /**
  30. * Class which provides access to the system config values stored in config.php
  31. * Internal class for bootstrap only.
  32. * fixes cyclic DI: AllConfig needs AppConfig needs Database needs AllConfig
  33. */
  34. class SystemConfig {
  35. /** @var array */
  36. protected $sensitiveValues = [
  37. 'instanceid' => true,
  38. 'datadirectory' => true,
  39. 'dbname' => true,
  40. 'dbhost' => true,
  41. 'dbpassword' => true,
  42. 'dbuser' => true,
  43. 'activity_dbname' => true,
  44. 'activity_dbhost' => true,
  45. 'activity_dbpassword' => true,
  46. 'activity_dbuser' => true,
  47. 'mail_from_address' => true,
  48. 'mail_domain' => true,
  49. 'mail_smtphost' => true,
  50. 'mail_smtpname' => true,
  51. 'mail_smtppassword' => true,
  52. 'passwordsalt' => true,
  53. 'secret' => true,
  54. 'updater.secret' => true,
  55. 'trusted_proxies' => true,
  56. 'proxyuserpwd' => true,
  57. 'sentry.dsn' => true,
  58. 'sentry.public-dsn' => true,
  59. 'zammad.download.secret' => true,
  60. 'zammad.portal.secret' => true,
  61. 'zammad.secret' => true,
  62. 'github.client_id' => true,
  63. 'github.client_secret' => true,
  64. 'log.condition' => [
  65. 'shared_secret' => true,
  66. ],
  67. 'license-key' => true,
  68. 'redis' => [
  69. 'host' => true,
  70. 'password' => true,
  71. ],
  72. 'objectstore' => [
  73. 'arguments' => [
  74. // Legacy Swift (https://github.com/nextcloud/server/pull/17696#discussion_r341302207)
  75. 'options' => [
  76. 'credentials' => [
  77. 'key' => true,
  78. 'secret' => true,
  79. ]
  80. ],
  81. // S3
  82. 'key' => true,
  83. 'secret' => true,
  84. // Swift v2
  85. 'username' => true,
  86. 'password' => true,
  87. // Swift v3
  88. 'user' => [
  89. 'name' => true,
  90. 'password' => true,
  91. ],
  92. ],
  93. ],
  94. 'objectstore_multibucket' => [
  95. 'arguments' => [
  96. 'options' => [
  97. 'credentials' => [
  98. 'key' => true,
  99. 'secret' => true,
  100. ]
  101. ],
  102. // S3
  103. 'key' => true,
  104. 'secret' => true,
  105. // Swift v2
  106. 'username' => true,
  107. 'password' => true,
  108. // Swift v3
  109. 'user' => [
  110. 'name' => true,
  111. 'password' => true,
  112. ],
  113. ],
  114. ],
  115. ];
  116. /** @var Config */
  117. private $config;
  118. public function __construct(Config $config) {
  119. $this->config = $config;
  120. }
  121. /**
  122. * Lists all available config keys
  123. * @return array an array of key names
  124. */
  125. public function getKeys() {
  126. return $this->config->getKeys();
  127. }
  128. /**
  129. * Sets a new system wide value
  130. *
  131. * @param string $key the key of the value, under which will be saved
  132. * @param mixed $value the value that should be stored
  133. */
  134. public function setValue($key, $value) {
  135. $this->config->setValue($key, $value);
  136. }
  137. /**
  138. * Sets and deletes values and writes the config.php
  139. *
  140. * @param array $configs Associative array with `key => value` pairs
  141. * If value is null, the config key will be deleted
  142. */
  143. public function setValues(array $configs) {
  144. $this->config->setValues($configs);
  145. }
  146. /**
  147. * Looks up a system wide defined value
  148. *
  149. * @param string $key the key of the value, under which it was saved
  150. * @param mixed $default the default value to be returned if the value isn't set
  151. * @return mixed the value or $default
  152. */
  153. public function getValue($key, $default = '') {
  154. return $this->config->getValue($key, $default);
  155. }
  156. /**
  157. * Looks up a system wide defined value and filters out sensitive data
  158. *
  159. * @param string $key the key of the value, under which it was saved
  160. * @param mixed $default the default value to be returned if the value isn't set
  161. * @return mixed the value or $default
  162. */
  163. public function getFilteredValue($key, $default = '') {
  164. $value = $this->getValue($key, $default);
  165. if (isset($this->sensitiveValues[$key])) {
  166. $value = $this->removeSensitiveValue($this->sensitiveValues[$key], $value);
  167. }
  168. return $value;
  169. }
  170. /**
  171. * Delete a system wide defined value
  172. *
  173. * @param string $key the key of the value, under which it was saved
  174. */
  175. public function deleteValue($key) {
  176. $this->config->deleteKey($key);
  177. }
  178. /**
  179. * @param bool|array $keysToRemove
  180. * @param mixed $value
  181. * @return mixed
  182. */
  183. protected function removeSensitiveValue($keysToRemove, $value) {
  184. if ($keysToRemove === true) {
  185. return IConfig::SENSITIVE_VALUE;
  186. }
  187. if (is_array($value)) {
  188. foreach ($keysToRemove as $keyToRemove => $valueToRemove) {
  189. if (isset($value[$keyToRemove])) {
  190. $value[$keyToRemove] = $this->removeSensitiveValue($valueToRemove, $value[$keyToRemove]);
  191. }
  192. }
  193. }
  194. return $value;
  195. }
  196. }