2011-03-02 01:20:16 +03:00
|
|
|
<?php
|
2011-03-12 12:28:10 +03:00
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Frank Karlitschek
|
|
|
|
* @author Jakob Sack
|
2012-05-26 21:14:24 +04:00
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* The following SQL statement is just a help for developers and will not be
|
|
|
|
* executed!
|
|
|
|
*
|
|
|
|
* CREATE TABLE `appconfig` (
|
|
|
|
* `appid` VARCHAR( 255 ) NOT NULL ,
|
2011-05-15 17:03:12 +04:00
|
|
|
* `configkey` VARCHAR( 255 ) NOT NULL ,
|
|
|
|
* `configvalue` VARCHAR( 255 ) NOT NULL
|
2011-03-12 12:28:10 +03:00
|
|
|
* )
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class provides an easy way for apps to store config values in the
|
|
|
|
* database.
|
|
|
|
*/
|
2013-12-18 18:10:12 +04:00
|
|
|
class OC_Appconfig {
|
|
|
|
|
|
|
|
private static $cache = array();
|
|
|
|
|
2013-12-18 18:28:32 +04:00
|
|
|
private static $appsLoaded = array();
|
|
|
|
|
2011-03-02 01:20:16 +03:00
|
|
|
/**
|
2011-03-12 12:28:10 +03:00
|
|
|
* @brief Get all apps using the config
|
2012-09-23 04:39:11 +04:00
|
|
|
* @return array with 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
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getApps() {
|
2011-04-08 18:54:12 +04:00
|
|
|
// No magic in here!
|
2013-12-16 20:22:44 +04:00
|
|
|
$query = OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig` ORDER BY `appid`');
|
2011-04-08 18:54:12 +04:00
|
|
|
$result = $query->execute();
|
|
|
|
|
|
|
|
$apps = array();
|
2013-12-18 18:10:12 +04:00
|
|
|
while ($row = $result->fetchRow()) {
|
2011-04-08 18:54:12 +04:00
|
|
|
$apps[] = $row["appid"];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $apps;
|
2011-03-02 01:20:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-03-12 12:28:10 +03:00
|
|
|
* @brief Get the available keys for an app
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app the app we are looking for
|
|
|
|
* @return array with 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-12-18 18:10:12 +04:00
|
|
|
public static function getKeys($app) {
|
2011-04-08 18:54:12 +04:00
|
|
|
// No magic in here as well
|
2013-12-18 18:10:12 +04:00
|
|
|
$query = OC_DB::prepare('SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?');
|
|
|
|
$result = $query->execute(array($app));
|
2011-04-08 18:54:12 +04:00
|
|
|
|
|
|
|
$keys = array();
|
2013-12-18 18:10:12 +04:00
|
|
|
while ($row = $result->fetchRow()) {
|
2011-05-15 17:03:12 +04:00
|
|
|
$keys[] = $row["configkey"];
|
2011-04-08 18:54:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $keys;
|
2011-03-12 12:28:10 +03:00
|
|
|
}
|
|
|
|
|
2013-12-18 18:10:12 +04:00
|
|
|
private static function getAppValues($app) {
|
|
|
|
if (!isset(self::$cache[$app])) {
|
|
|
|
self::$cache[$app] = array();
|
|
|
|
}
|
2013-12-18 18:28:32 +04:00
|
|
|
if (array_search($app, self::$appsLoaded) === false) {
|
|
|
|
$query = OC_DB::prepare('SELECT `configvalue`, `configkey` FROM `*PREFIX*appconfig`'
|
|
|
|
. ' WHERE `appid` = ?');
|
|
|
|
$result = $query->execute(array($app));
|
|
|
|
while ($row = $result->fetchRow()) {
|
|
|
|
self::$cache[$app][$row['configkey']] = $row['configvalue'];
|
|
|
|
}
|
|
|
|
self::$appsLoaded[] = $app;
|
2013-12-18 18:10:12 +04:00
|
|
|
}
|
|
|
|
return self::$cache[$app];
|
|
|
|
}
|
|
|
|
|
2011-03-12 12:28:10 +03:00
|
|
|
/**
|
|
|
|
* @brief Gets the config value
|
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-12-18 18:10:12 +04:00
|
|
|
public static function getValue($app, $key, $default = null) {
|
|
|
|
if (!isset(self::$cache[$app])) {
|
|
|
|
self::$cache[$app] = array();
|
|
|
|
}
|
|
|
|
if (isset(self::$cache[$app][$key])) {
|
|
|
|
return self::$cache[$app][$key];
|
|
|
|
}
|
|
|
|
$values = self::getAppValues($app);
|
|
|
|
if (isset($values[$key])) {
|
|
|
|
return $values[$key];
|
|
|
|
} else {
|
|
|
|
self::$cache[$app][$key] = $default;
|
2011-04-08 18:54:12 +04: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
|
|
|
/**
|
|
|
|
* @brief check if a key is set in the appconfig
|
|
|
|
* @param string $app
|
|
|
|
* @param string $key
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-11-02 22:53:02 +04:00
|
|
|
public static function hasKey($app, $key) {
|
2013-12-18 18:10:12 +04:00
|
|
|
if (isset(self::$cache[$app]) and isset(self::$cache[$app][$key])) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
$exists = self::getKeys($app);
|
|
|
|
return in_array($key, $exists);
|
2011-10-02 16:30:51 +04:00
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2011-03-02 01:20:16 +03:00
|
|
|
/**
|
2011-03-12 12:28:10 +03:00
|
|
|
* @brief sets a value in the appconfig
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app app
|
|
|
|
* @param string $key key
|
|
|
|
* @param string $value value
|
|
|
|
* @return bool
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
|
|
|
* Sets a value. If the key did not exist before it will be created.
|
2011-03-02 01:20:16 +03:00
|
|
|
*/
|
2013-12-18 18:10:12 +04:00
|
|
|
public static function setValue($app, $key, $value) {
|
2011-04-08 18:54:12 +04:00
|
|
|
// Does the key exist? yes: update. No: insert
|
2013-12-18 18:10:12 +04:00
|
|
|
if (!self::hasKey($app, $key)) {
|
|
|
|
$query = OC_DB::prepare('INSERT INTO `*PREFIX*appconfig` ( `appid`, `configkey`, `configvalue` )'
|
|
|
|
. ' VALUES( ?, ?, ? )');
|
|
|
|
$query->execute(array($app, $key, $value));
|
|
|
|
} else {
|
|
|
|
$query = OC_DB::prepare('UPDATE `*PREFIX*appconfig` SET `configvalue` = ?'
|
|
|
|
. ' WHERE `appid` = ? AND `configkey` = ?');
|
|
|
|
$query->execute(array($value, $app, $key));
|
2011-04-08 18:54:12 +04:00
|
|
|
}
|
2013-10-18 13:37:13 +04:00
|
|
|
// TODO where should this be documented?
|
|
|
|
\OC_Hook::emit('OC_Appconfig', 'post_set_value', array(
|
|
|
|
'app' => $app,
|
|
|
|
'key' => $key,
|
|
|
|
'value' => $value
|
|
|
|
));
|
2013-12-18 18:10:12 +04:00
|
|
|
if (!isset(self::$cache[$app])) {
|
|
|
|
self::$cache[$app] = array();
|
|
|
|
}
|
|
|
|
self::$cache[$app][$key] = $value;
|
2011-03-12 12:28:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Deletes a key
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app app
|
|
|
|
* @param string $key key
|
|
|
|
* @return bool
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
|
|
|
* Deletes a key.
|
|
|
|
*/
|
2013-12-18 18:10:12 +04:00
|
|
|
public static function deleteKey($app, $key) {
|
2011-04-08 18:54:12 +04:00
|
|
|
// Boring!
|
2013-12-18 18:10:12 +04:00
|
|
|
$query = OC_DB::prepare('DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?');
|
|
|
|
$query->execute(array($app, $key));
|
|
|
|
if (isset(self::$cache[$app]) and isset(self::$cache[$app][$key])) {
|
|
|
|
unset(self::$cache[$app][$key]);
|
|
|
|
}
|
2011-04-08 18:54:12 +04:00
|
|
|
|
2011-03-12 12:28:10 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Remove app from appconfig
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app app
|
|
|
|
* @return bool
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
|
|
|
* Removes all keys in appconfig belonging to the app.
|
|
|
|
*/
|
2013-12-18 18:10:12 +04:00
|
|
|
public static function deleteApp($app) {
|
2011-04-08 18:54:12 +04:00
|
|
|
// Nothing special
|
2013-12-18 18:10:12 +04:00
|
|
|
$query = OC_DB::prepare('DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ?');
|
|
|
|
$query->execute(array($app));
|
|
|
|
self::$cache[$app] = array();
|
2011-04-08 18:54:12 +04:00
|
|
|
|
2011-03-02 01:20:16 +03:00
|
|
|
return true;
|
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-04-14 19:53:02 +04:00
|
|
|
/**
|
|
|
|
* get multiply values, either the app or key can be used as wildcard by setting it to false
|
2013-12-18 18:10:12 +04:00
|
|
|
*
|
2012-04-14 19:53:02 +04:00
|
|
|
* @param app
|
|
|
|
* @param key
|
|
|
|
* @return array
|
|
|
|
*/
|
2012-11-02 22:53:02 +04:00
|
|
|
public static function getValues($app, $key) {
|
2013-12-18 18:10:12 +04:00
|
|
|
if ($app !== false and $key !== false) {
|
2012-04-14 19:53:02 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-12-18 18:10:12 +04:00
|
|
|
$fields = '`configvalue`';
|
|
|
|
$where = 'WHERE';
|
|
|
|
$params = array();
|
|
|
|
if ($app !== false) {
|
|
|
|
$fields .= ', `configkey`';
|
|
|
|
$where .= ' `appid` = ?';
|
|
|
|
$params[] = $app;
|
|
|
|
$key = 'configkey';
|
|
|
|
} else {
|
|
|
|
$fields .= ', `appid`';
|
|
|
|
$where .= ' `configkey` = ?';
|
|
|
|
$params[] = $key;
|
|
|
|
$key = 'appid';
|
2012-04-14 19:53:02 +04:00
|
|
|
}
|
2013-12-18 18:10:12 +04:00
|
|
|
$queryString = 'SELECT ' . $fields . ' FROM `*PREFIX*appconfig` ' . $where;
|
|
|
|
$query = OC_DB::prepare($queryString);
|
|
|
|
$result = $query->execute($params);
|
|
|
|
$values = array();
|
|
|
|
while ($row = $result->fetchRow()) {
|
|
|
|
$values[$row[$key]] = $row['configvalue'];
|
2012-04-14 19:53:02 +04:00
|
|
|
}
|
|
|
|
return $values;
|
|
|
|
}
|
2011-03-02 01:20:16 +03:00
|
|
|
}
|