2011-03-02 01:20:16 +03:00
|
|
|
<?php
|
2011-03-12 12:28:10 +03:00
|
|
|
/**
|
2017-01-17 13:28:47 +03:00
|
|
|
* @copyright Copyright (c) 2017, Joas Schilling <coding@schilljs.com>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author michaelletzgus <michaelletzgus@users.noreply.github.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2020-12-16 16:54:15 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
2011-03-12 12:28:10 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2015-02-26 13:37:37 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
2015-02-26 13:37:37 +03:00
|
|
|
*/
|
|
|
|
|
2013-03-02 20:17:11 +04:00
|
|
|
namespace OC;
|
|
|
|
|
2021-01-03 17:28:31 +03:00
|
|
|
use OC\DB\Connection;
|
2017-01-11 13:42:36 +03:00
|
|
|
use OC\DB\OracleConnection;
|
2015-05-11 13:37:14 +03:00
|
|
|
use OCP\IAppConfig;
|
2017-01-11 13:42:36 +03:00
|
|
|
use OCP\IConfig;
|
2013-03-02 20:17:11 +04:00
|
|
|
|
2011-03-12 12:28:10 +03:00
|
|
|
/**
|
|
|
|
* This class provides an easy way for apps to store config values in the
|
|
|
|
* database.
|
|
|
|
*/
|
2015-05-11 13:37:14 +03:00
|
|
|
class AppConfig implements IAppConfig {
|
2017-01-11 13:42:36 +03:00
|
|
|
|
|
|
|
/** @var array[] */
|
|
|
|
protected $sensitiveValues = [
|
2019-08-19 17:29:42 +03:00
|
|
|
'external' => [
|
|
|
|
'/^sites$/',
|
|
|
|
],
|
2017-01-17 13:28:47 +03:00
|
|
|
'spreed' => [
|
2020-08-20 11:28:35 +03:00
|
|
|
'/^bridge_bot_password/',
|
|
|
|
'/^signaling_servers$/',
|
2019-08-19 17:29:42 +03:00
|
|
|
'/^signaling_ticket_secret$/',
|
|
|
|
'/^stun_servers$/',
|
|
|
|
'/^turn_servers$/',
|
2020-08-20 11:28:35 +03:00
|
|
|
'/^turn_server_secret$/',
|
2019-08-19 17:29:42 +03:00
|
|
|
],
|
|
|
|
'theming' => [
|
|
|
|
'/^imprintUrl$/',
|
|
|
|
'/^privacyUrl$/',
|
|
|
|
'/^slogan$/',
|
|
|
|
'/^url$/',
|
2017-01-17 13:28:47 +03:00
|
|
|
],
|
2017-01-11 13:42:36 +03:00
|
|
|
'user_ldap' => [
|
2019-07-26 14:31:14 +03:00
|
|
|
'/^(s..)?ldap_agent_password$/',
|
2017-01-11 13:42:36 +03:00
|
|
|
],
|
|
|
|
];
|
|
|
|
|
2021-01-03 17:28:31 +03:00
|
|
|
/** @var Connection */
|
2013-03-02 20:17:11 +04:00
|
|
|
protected $conn;
|
|
|
|
|
2017-01-11 13:42:36 +03:00
|
|
|
/** @var array[] */
|
|
|
|
private $cache = [];
|
|
|
|
|
|
|
|
/** @var bool */
|
|
|
|
private $configLoaded = false;
|
2013-12-18 18:10:12 +04:00
|
|
|
|
2014-06-01 16:04:17 +04:00
|
|
|
/**
|
2021-01-03 17:28:31 +03:00
|
|
|
* @param Connection $conn
|
2014-06-01 16:04:17 +04:00
|
|
|
*/
|
2021-01-03 17:28:31 +03:00
|
|
|
public function __construct(Connection $conn) {
|
2013-03-02 20:17:11 +04:00
|
|
|
$this->conn = $conn;
|
|
|
|
}
|
|
|
|
|
2014-02-07 17:03:39 +04:00
|
|
|
/**
|
|
|
|
* @param string $app
|
2015-09-02 19:56:17 +03:00
|
|
|
* @return array
|
2014-02-19 12:31:54 +04:00
|
|
|
*/
|
2014-02-07 17:03:39 +04:00
|
|
|
private function getAppValues($app) {
|
2015-09-02 19:56:17 +03:00
|
|
|
$this->loadConfigValues();
|
|
|
|
|
|
|
|
if (isset($this->cache[$app])) {
|
|
|
|
return $this->cache[$app];
|
2014-02-07 17:03:39 +04:00
|
|
|
}
|
2015-09-02 19:56:17 +03:00
|
|
|
|
|
|
|
return [];
|
2014-02-07 17:03:39 +04:00
|
|
|
}
|
2013-12-18 18:28:32 +04:00
|
|
|
|
2011-03-02 01:20:16 +03:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get all apps using the config
|
2014-06-01 16:04:17 +04:00
|
|
|
*
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of app ids
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
|
|
|
* This function returns a list of all apps that have at least one
|
|
|
|
* entry in the appconfig table.
|
2011-03-02 01:20:16 +03:00
|
|
|
*/
|
2013-03-02 20:17:11 +04:00
|
|
|
public function getApps() {
|
2015-09-02 19:56:17 +03:00
|
|
|
$this->loadConfigValues();
|
2011-04-08 18:54:12 +04:00
|
|
|
|
2015-09-02 19:56:17 +03:00
|
|
|
return $this->getSortedKeys($this->cache);
|
2011-03-02 01:20:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get the available keys for an app
|
2014-06-01 16:04:17 +04:00
|
|
|
*
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app the app we are looking for
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of key names
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
|
|
|
* This function gets all keys of an app. Please note that the values are
|
|
|
|
* not returned.
|
2011-03-02 01:20:16 +03:00
|
|
|
*/
|
2013-08-26 00:34:54 +04:00
|
|
|
public function getKeys($app) {
|
2015-09-02 19:56:17 +03:00
|
|
|
$this->loadConfigValues();
|
|
|
|
|
|
|
|
if (isset($this->cache[$app])) {
|
|
|
|
return $this->getSortedKeys($this->cache[$app]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSortedKeys($data) {
|
|
|
|
$keys = array_keys($data);
|
2014-02-11 17:26:40 +04:00
|
|
|
sort($keys);
|
2011-04-08 18:54:12 +04:00
|
|
|
return $keys;
|
2011-03-12 12:28:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Gets the config value
|
2014-06-01 16:04:17 +04:00
|
|
|
*
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app app
|
|
|
|
* @param string $key key
|
|
|
|
* @param string $default = null, default value if the key does not exist
|
|
|
|
* @return string the value or $default
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
|
|
|
* This function gets a value from the appconfig table. If the key does
|
2012-09-23 04:39:11 +04:00
|
|
|
* not exist the default value will be returned
|
2011-03-12 12:28:10 +03:00
|
|
|
*/
|
2013-08-26 00:34:54 +04:00
|
|
|
public function getValue($app, $key, $default = null) {
|
2015-09-02 19:56:17 +03:00
|
|
|
$this->loadConfigValues();
|
|
|
|
|
|
|
|
if ($this->hasKey($app, $key)) {
|
|
|
|
return $this->cache[$app][$key];
|
2011-04-08 18:54:12 +04:00
|
|
|
}
|
2015-09-02 19:56:17 +03:00
|
|
|
|
|
|
|
return $default;
|
2011-03-02 01:20:16 +03:00
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2011-10-02 16:30:51 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* check if a key is set in the appconfig
|
2014-06-01 16:04:17 +04:00
|
|
|
*
|
2011-10-02 16:30:51 +04:00
|
|
|
* @param string $app
|
|
|
|
* @param string $key
|
|
|
|
* @return bool
|
|
|
|
*/
|
2013-03-02 20:17:11 +04:00
|
|
|
public function hasKey($app, $key) {
|
2015-09-02 19:56:17 +03:00
|
|
|
$this->loadConfigValues();
|
|
|
|
|
|
|
|
return isset($this->cache[$app][$key]);
|
2011-10-02 16:30:51 +04:00
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2011-03-02 01:20:16 +03:00
|
|
|
/**
|
2015-05-11 13:37:14 +03:00
|
|
|
* Sets a value. If the key did not exist before it will be created.
|
2014-06-01 16:04:17 +04:00
|
|
|
*
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app app
|
|
|
|
* @param string $key key
|
2016-06-06 11:28:10 +03:00
|
|
|
* @param string|float|int $value value
|
2015-09-02 19:56:17 +03:00
|
|
|
* @return bool True if the value was inserted or updated, false if the value was the same
|
2011-03-02 01:20:16 +03:00
|
|
|
*/
|
2013-08-26 00:34:54 +04:00
|
|
|
public function setValue($app, $key, $value) {
|
|
|
|
if (!$this->hasKey($app, $key)) {
|
2015-05-11 13:37:14 +03:00
|
|
|
$inserted = (bool) $this->conn->insertIfNotExist('*PREFIX*appconfig', [
|
2013-03-02 20:17:11 +04:00
|
|
|
'appid' => $app,
|
|
|
|
'configkey' => $key,
|
|
|
|
'configvalue' => $value,
|
2015-05-11 13:37:14 +03:00
|
|
|
], [
|
|
|
|
'appid',
|
|
|
|
'configkey',
|
|
|
|
]);
|
|
|
|
|
2015-09-02 19:56:17 +03:00
|
|
|
if ($inserted) {
|
2015-09-03 16:41:30 +03:00
|
|
|
if (!isset($this->cache[$app])) {
|
|
|
|
$this->cache[$app] = [];
|
|
|
|
}
|
|
|
|
|
2015-09-02 19:56:17 +03:00
|
|
|
$this->cache[$app][$key] = $value;
|
|
|
|
return true;
|
2014-07-08 02:19:17 +04:00
|
|
|
}
|
2014-06-01 16:04:17 +04:00
|
|
|
}
|
2015-09-02 19:56:17 +03:00
|
|
|
|
|
|
|
$sql = $this->conn->getQueryBuilder();
|
|
|
|
$sql->update('appconfig')
|
2020-10-21 11:04:06 +03:00
|
|
|
->set('configvalue', $sql->createNamedParameter($value))
|
|
|
|
->where($sql->expr()->eq('appid', $sql->createNamedParameter($app)))
|
|
|
|
->andWhere($sql->expr()->eq('configkey', $sql->createNamedParameter($key)));
|
2015-09-11 13:11:40 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Only limit to the existing value for non-Oracle DBs:
|
|
|
|
* http://docs.oracle.com/cd/E11882_01/server.112/e26088/conditions002.htm#i1033286
|
|
|
|
* > Large objects (LOBs) are not supported in comparison conditions.
|
|
|
|
*/
|
2017-01-11 13:42:36 +03:00
|
|
|
if (!($this->conn instanceof OracleConnection)) {
|
2020-10-21 11:04:06 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Only update the value when it is not the same
|
|
|
|
* Note that NULL requires some special handling. Since comparing
|
|
|
|
* against null can have special results.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ($value === null) {
|
|
|
|
$sql->andWhere(
|
|
|
|
$sql->expr()->isNotNull('configvalue')
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$sql->andWhere(
|
|
|
|
$sql->expr()->orX(
|
|
|
|
$sql->expr()->isNull('configvalue'),
|
|
|
|
$sql->expr()->neq('configvalue', $sql->createNamedParameter($value))
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2015-09-11 13:11:40 +03:00
|
|
|
}
|
|
|
|
|
2015-09-02 19:56:17 +03:00
|
|
|
$changedRow = (bool) $sql->execute();
|
|
|
|
|
2014-02-07 17:03:39 +04:00
|
|
|
$this->cache[$app][$key] = $value;
|
2015-09-02 19:56:17 +03:00
|
|
|
|
|
|
|
return $changedRow;
|
2011-03-12 12:28:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Deletes a key
|
2014-06-01 16:04:17 +04:00
|
|
|
*
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app app
|
|
|
|
* @param string $key key
|
2017-01-11 13:42:36 +03:00
|
|
|
* @return boolean
|
2011-03-12 12:28:10 +03:00
|
|
|
*/
|
2013-08-26 00:34:54 +04:00
|
|
|
public function deleteKey($app, $key) {
|
2015-09-02 19:56:17 +03:00
|
|
|
$this->loadConfigValues();
|
|
|
|
|
|
|
|
$sql = $this->conn->getQueryBuilder();
|
|
|
|
$sql->delete('appconfig')
|
|
|
|
->where($sql->expr()->eq('appid', $sql->createParameter('app')))
|
|
|
|
->andWhere($sql->expr()->eq('configkey', $sql->createParameter('configkey')))
|
|
|
|
->setParameter('app', $app)
|
|
|
|
->setParameter('configkey', $key);
|
|
|
|
$sql->execute();
|
|
|
|
|
|
|
|
unset($this->cache[$app][$key]);
|
2017-01-11 13:42:36 +03:00
|
|
|
return false;
|
2011-03-12 12:28:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Remove app from appconfig
|
2014-06-01 16:04:17 +04:00
|
|
|
*
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app app
|
2017-01-11 13:42:36 +03:00
|
|
|
* @return boolean
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
|
|
|
* Removes all keys in appconfig belonging to the app.
|
|
|
|
*/
|
2013-08-26 00:34:54 +04:00
|
|
|
public function deleteApp($app) {
|
2015-09-02 19:56:17 +03:00
|
|
|
$this->loadConfigValues();
|
|
|
|
|
|
|
|
$sql = $this->conn->getQueryBuilder();
|
|
|
|
$sql->delete('appconfig')
|
|
|
|
->where($sql->expr()->eq('appid', $sql->createParameter('app')))
|
|
|
|
->setParameter('app', $app);
|
|
|
|
$sql->execute();
|
|
|
|
|
2014-02-07 17:03:39 +04:00
|
|
|
unset($this->cache[$app]);
|
2017-01-11 13:42:36 +03:00
|
|
|
return false;
|
2011-03-02 01:20:16 +03:00
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-04-14 19:53:02 +04:00
|
|
|
/**
|
2015-09-02 19:56:17 +03:00
|
|
|
* get multiple values, either the app or key can be used as wildcard by setting it to false
|
2013-12-18 18:10:12 +04:00
|
|
|
*
|
2014-02-28 16:53:41 +04:00
|
|
|
* @param string|false $app
|
|
|
|
* @param string|false $key
|
2015-01-16 21:31:15 +03:00
|
|
|
* @return array|false
|
2012-04-14 19:53:02 +04:00
|
|
|
*/
|
2013-03-02 20:17:11 +04:00
|
|
|
public function getValues($app, $key) {
|
2015-09-02 19:56:17 +03:00
|
|
|
if (($app !== false) === ($key !== false)) {
|
2012-04-14 19:53:02 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-03-02 20:17:11 +04:00
|
|
|
|
2015-09-02 19:56:17 +03:00
|
|
|
if ($key === false) {
|
2014-06-01 16:14:30 +04:00
|
|
|
return $this->getAppValues($app);
|
2013-12-18 18:10:12 +04:00
|
|
|
} else {
|
2016-01-03 18:53:44 +03:00
|
|
|
$appIds = $this->getApps();
|
2020-04-09 14:53:40 +03:00
|
|
|
$values = array_map(function ($appId) use ($key) {
|
2016-01-03 18:53:44 +03:00
|
|
|
return isset($this->cache[$appId][$key]) ? $this->cache[$appId][$key] : null;
|
|
|
|
}, $appIds);
|
|
|
|
$result = array_combine($appIds, $values);
|
2013-03-02 20:17:11 +04:00
|
|
|
|
2016-01-03 18:53:44 +03:00
|
|
|
return array_filter($result);
|
2014-06-01 16:14:30 +04:00
|
|
|
}
|
2012-04-14 19:53:02 +04:00
|
|
|
}
|
2015-09-02 19:56:17 +03:00
|
|
|
|
2017-01-11 13:42:36 +03:00
|
|
|
/**
|
|
|
|
* get all values of the app or and filters out sensitive data
|
|
|
|
*
|
|
|
|
* @param string $app
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getFilteredValues($app) {
|
|
|
|
$values = $this->getValues($app, false);
|
|
|
|
|
2018-02-05 12:50:32 +03:00
|
|
|
if (isset($this->sensitiveValues[$app])) {
|
2019-07-26 14:31:14 +03:00
|
|
|
foreach ($this->sensitiveValues[$app] as $sensitiveKeyExp) {
|
|
|
|
$sensitiveKeys = preg_grep($sensitiveKeyExp, array_keys($values));
|
|
|
|
foreach ($sensitiveKeys as $sensitiveKey) {
|
2018-02-04 17:59:23 +03:00
|
|
|
$values[$sensitiveKey] = IConfig::SENSITIVE_VALUE;
|
|
|
|
}
|
2017-01-11 13:42:36 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $values;
|
|
|
|
}
|
|
|
|
|
2015-09-02 19:56:17 +03:00
|
|
|
/**
|
|
|
|
* Load all the app config values
|
|
|
|
*/
|
|
|
|
protected function loadConfigValues() {
|
2017-01-11 13:42:36 +03:00
|
|
|
if ($this->configLoaded) {
|
|
|
|
return;
|
|
|
|
}
|
2015-09-02 19:56:17 +03:00
|
|
|
|
|
|
|
$this->cache = [];
|
|
|
|
|
|
|
|
$sql = $this->conn->getQueryBuilder();
|
|
|
|
$sql->select('*')
|
|
|
|
->from('appconfig');
|
|
|
|
$result = $sql->execute();
|
|
|
|
|
2016-06-10 16:20:22 +03:00
|
|
|
// we are going to store the result in memory anyway
|
|
|
|
$rows = $result->fetchAll();
|
|
|
|
foreach ($rows as $row) {
|
2015-09-03 16:41:30 +03:00
|
|
|
if (!isset($this->cache[$row['appid']])) {
|
2020-12-03 18:33:38 +03:00
|
|
|
$this->cache[(string)$row['appid']] = [];
|
2015-09-03 16:41:30 +03:00
|
|
|
}
|
|
|
|
|
2020-12-03 18:33:38 +03:00
|
|
|
$this->cache[(string)$row['appid']][(string)$row['configkey']] = (string)$row['configvalue'];
|
2015-09-02 19:56:17 +03:00
|
|
|
}
|
|
|
|
$result->closeCursor();
|
|
|
|
|
|
|
|
$this->configLoaded = true;
|
|
|
|
}
|
2020-10-15 16:59:21 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear all the cached app config values
|
|
|
|
*
|
|
|
|
* WARNING: do not use this - this is only for usage with the SCSSCacher to
|
|
|
|
* clear the memory cache of the app config
|
|
|
|
*/
|
|
|
|
public function clearCachedConfig() {
|
|
|
|
$this->configLoaded = false;
|
|
|
|
}
|
2011-03-02 01:20:16 +03:00
|
|
|
}
|