nextcloud/lib/private/AppConfig.php

288 lines
7.0 KiB
PHP
Raw Normal View History

<?php
/**
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>
* @author Jakob Sack <mail@jakobsack.de>
2015-06-25 12:43:55 +03:00
* @author Joas Schilling <nickvergessen@owncloud.com>
2015-03-26 13:44:34 +03:00
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <icewind@owncloud.com>
2016-01-12 17:02:16 +03:00
* @author Robin McCorkell <robin@mccorkell.me.uk>
2015-03-26 13:44:34 +03:00
*
2016-01-12 17:02:16 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
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,
* 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-03-26 13:44:34 +03:00
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OC;
use OCP\IAppConfig;
2015-09-02 19:56:17 +03:00
use OCP\IDBConnection;
/**
* This class provides an easy way for apps to store config values in the
* database.
*/
class AppConfig implements IAppConfig {
2013-08-26 00:34:54 +04:00
/**
2015-09-02 19:56:17 +03:00
* @var \OCP\IDBConnection $conn
2013-08-26 00:34:54 +04:00
*/
protected $conn;
2014-02-07 17:03:39 +04:00
private $cache = array();
2014-06-01 16:04:17 +04:00
/**
2015-09-02 19:56:17 +03:00
* @param IDBConnection $conn
2014-06-01 16:04:17 +04:00
*/
2015-09-02 19:56:17 +03:00
public function __construct(IDBConnection $conn) {
$this->conn = $conn;
2015-09-02 19:56:17 +03:00
$this->configLoaded = false;
}
2014-02-07 17:03:39 +04:00
/**
* @param string $app
2015-09-02 19:56:17 +03:00
* @return array
*/
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
}
/**
* 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
*
* This function returns a list of all apps that have at least one
* entry in the appconfig table.
*/
public function getApps() {
2015-09-02 19:56:17 +03:00
$this->loadConfigValues();
2015-09-02 19:56:17 +03:00
return $this->getSortedKeys($this->cache);
}
/**
* 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
*
* This function gets all keys of an app. Please note that the values are
* not returned.
*/
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);
return $keys;
}
/**
* 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
*
* 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
*/
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];
}
2015-09-02 19:56:17 +03:00
return $default;
}
2012-08-29 10:38:33 +04:00
2011-10-02 16:30:51 +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
*/
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
/**
* 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-09 18:41:57 +03:00
* @param string $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
*/
2013-08-26 00:34:54 +04:00
public function setValue($app, $key, $value) {
if (!$this->hasKey($app, $key)) {
$inserted = (bool) $this->conn->insertIfNotExist('*PREFIX*appconfig', [
'appid' => $app,
'configkey' => $key,
'configvalue' => $value,
], [
'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-06-01 16:04:17 +04:00
}
2015-09-02 19:56:17 +03:00
$sql = $this->conn->getQueryBuilder();
$sql->update('appconfig')
->set('configvalue', $sql->createParameter('configvalue'))
->where($sql->expr()->eq('appid', $sql->createParameter('app')))
->andWhere($sql->expr()->eq('configkey', $sql->createParameter('configkey')))
->setParameter('configvalue', $value)
->setParameter('app', $app)
->setParameter('configkey', $key);
/*
* 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.
*/
if (!($this->conn instanceof \OC\DB\OracleConnection)) {
// Only update the value when it is not the same
$sql->andWhere($sql->expr()->neq('configvalue', $sql->createParameter('configvalue')))
->setParameter('configvalue', $value);
}
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;
}
/**
* 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
* @return boolean|null
*/
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]);
}
/**
* Remove app from appconfig
2014-06-01 16:04:17 +04:00
*
2012-09-23 04:39:11 +04:00
* @param string $app app
* @return boolean|null
*
* 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]);
}
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
*
* @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
*/
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;
}
2015-09-02 19:56:17 +03:00
if ($key === false) {
2014-06-01 16:14:30 +04:00
return $this->getAppValues($app);
} else {
2016-01-03 18:53:44 +03:00
$appIds = $this->getApps();
$values = array_map(function($appId) use ($key) {
return isset($this->cache[$appId][$key]) ? $this->cache[$appId][$key] : null;
}, $appIds);
$result = array_combine($appIds, $values);
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
/**
* Load all the app config values
*/
protected function loadConfigValues() {
if ($this->configLoaded) return;
$this->cache = [];
$sql = $this->conn->getQueryBuilder();
$sql->select('*')
->from('appconfig');
$result = $sql->execute();
while ($row = $result->fetch()) {
2015-09-03 16:41:30 +03:00
if (!isset($this->cache[$row['appid']])) {
$this->cache[$row['appid']] = [];
}
2015-09-02 19:56:17 +03:00
$this->cache[$row['appid']][$row['configkey']] = $row['configvalue'];
}
$result->closeCursor();
$this->configLoaded = true;
}
}