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
|
|
|
* )
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-03-02 20:17:11 +04:00
|
|
|
namespace OC;
|
|
|
|
|
|
|
|
use \OC\DB\Connection;
|
|
|
|
|
2011-03-12 12:28:10 +03:00
|
|
|
/**
|
|
|
|
* This class provides an easy way for apps to store config values in the
|
|
|
|
* database.
|
|
|
|
*/
|
2013-03-02 20:17:11 +04:00
|
|
|
class AppConfig {
|
2013-08-26 00:34:54 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\DB\Connection $conn
|
|
|
|
*/
|
2013-03-02 20:17:11 +04:00
|
|
|
protected $conn;
|
|
|
|
|
2013-08-26 00:34:54 +04:00
|
|
|
/**
|
|
|
|
* @param \OC\DB\Connection $conn
|
|
|
|
*/
|
2013-03-02 20:17:11 +04:00
|
|
|
public function __construct(Connection $conn) {
|
|
|
|
$this->conn = $conn;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
*/
|
2013-03-02 20:17:11 +04:00
|
|
|
public function getApps() {
|
|
|
|
$query = 'SELECT DISTINCT `appid` FROM `*PREFIX*appconfig`';
|
2013-08-26 00:34:54 +04:00
|
|
|
$result = $this->conn->executeQuery($query);
|
2011-04-08 18:54:12 +04:00
|
|
|
|
|
|
|
$apps = array();
|
2013-08-26 00:34:54 +04:00
|
|
|
while ($appid = $result->fetchColumn()) {
|
2013-03-02 20:17:11 +04:00
|
|
|
$apps[] = $appid;
|
2011-04-08 18:54:12 +04:00
|
|
|
}
|
|
|
|
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-08-26 00:34:54 +04:00
|
|
|
public function getKeys($app) {
|
2013-03-02 20:17:11 +04:00
|
|
|
$query = 'SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?';
|
2013-08-26 00:34:54 +04:00
|
|
|
$result = $this->conn->executeQuery($query, array($app));
|
2011-04-08 18:54:12 +04:00
|
|
|
|
|
|
|
$keys = array();
|
2013-08-26 00:34:54 +04:00
|
|
|
while ($key = $result->fetchColumn()) {
|
2013-03-02 20:17:11 +04:00
|
|
|
$keys[] = $key;
|
2011-04-08 18:54:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $keys;
|
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-08-26 00:34:54 +04:00
|
|
|
public function getValue($app, $key, $default = null) {
|
2013-03-02 20:17:11 +04:00
|
|
|
$query = 'SELECT `configvalue` FROM `*PREFIX*appconfig`'
|
|
|
|
.' WHERE `appid` = ? AND `configkey` = ?';
|
2013-08-26 00:34:54 +04:00
|
|
|
$row = $this->conn->fetchAssoc($query, array($app, $key));
|
|
|
|
if ($row) {
|
2013-03-02 20:17:11 +04:00
|
|
|
return $row['configvalue'];
|
|
|
|
} else {
|
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
|
|
|
|
*/
|
2013-03-02 20:17:11 +04:00
|
|
|
public function hasKey($app, $key) {
|
2013-08-26 00:34:54 +04:00
|
|
|
$exists = $this->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
|
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-08-26 00:34:54 +04:00
|
|
|
public function setValue($app, $key, $value) {
|
2013-03-02 20:17:11 +04:00
|
|
|
// Does the key exist? no: insert, yes: update.
|
2013-08-26 00:34:54 +04:00
|
|
|
if (!$this->hasKey($app, $key)) {
|
2013-03-02 20:17:11 +04:00
|
|
|
$data = array(
|
|
|
|
'appid' => $app,
|
|
|
|
'configkey' => $key,
|
|
|
|
'configvalue' => $value,
|
|
|
|
);
|
|
|
|
$this->conn->insert('*PREFIX*appconfig', $data);
|
|
|
|
} else {
|
|
|
|
$data = array(
|
|
|
|
'configvalue' => $value,
|
|
|
|
);
|
|
|
|
$where = array(
|
|
|
|
'appid' => $app,
|
|
|
|
'configkey' => $key,
|
|
|
|
);
|
|
|
|
$this->conn->update('*PREFIX*appconfig', $data, $where);
|
2011-04-08 18:54:12 +04:00
|
|
|
}
|
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-08-26 00:34:54 +04:00
|
|
|
public function deleteKey($app, $key) {
|
2013-03-02 20:17:11 +04:00
|
|
|
$where = array(
|
|
|
|
'appid' => $app,
|
|
|
|
'configkey' => $key,
|
|
|
|
);
|
|
|
|
$this->conn->delete('*PREFIX*appconfig', $where);
|
2011-03-12 12:28:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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-08-26 00:34:54 +04:00
|
|
|
public function deleteApp($app) {
|
2013-03-02 20:17:11 +04:00
|
|
|
$where = array(
|
|
|
|
'appid' => $app,
|
|
|
|
);
|
|
|
|
$this->conn->delete('*PREFIX*appconfig', $where);
|
2011-03-02 01:20:16 +03:00
|
|
|
}
|
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
|
|
|
|
* @param app
|
|
|
|
* @param key
|
|
|
|
* @return array
|
|
|
|
*/
|
2013-03-02 20:17:11 +04:00
|
|
|
public function getValues($app, $key) {
|
2013-08-26 00:34:54 +04:00
|
|
|
if (($app !== false) == ($key !== false)) {
|
2012-04-14 19:53:02 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-03-02 20:17:11 +04:00
|
|
|
|
|
|
|
$fields = '`configvalue`';
|
|
|
|
$where = 'WHERE';
|
|
|
|
$params = array();
|
2013-08-26 00:34:54 +04:00
|
|
|
if ($app !== false) {
|
2013-03-02 20:17:11 +04:00
|
|
|
$fields .= ', `configkey`';
|
|
|
|
$where .= ' `appid` = ?';
|
|
|
|
$params[] = $app;
|
|
|
|
$key = 'configkey';
|
2013-08-26 00:34:54 +04:00
|
|
|
} else {
|
2013-03-02 20:17:11 +04:00
|
|
|
$fields .= ', `appid`';
|
|
|
|
$where .= ' `configkey` = ?';
|
|
|
|
$params[] = $key;
|
|
|
|
$key = 'appid';
|
2012-04-14 19:53:02 +04:00
|
|
|
}
|
2013-03-02 20:17:11 +04:00
|
|
|
$query = 'SELECT '.$fields.' FROM `*PREFIX*appconfig` '.$where;
|
|
|
|
$result = $this->conn->executeQuery( $query, $params );
|
|
|
|
|
|
|
|
$values = array();
|
2013-08-26 00:34:54 +04:00
|
|
|
while ($row = $result->fetch((\PDO::FETCH_ASSOC))) {
|
2013-03-02 20:17:11 +04:00
|
|
|
$values[$row[$key]] = $row['configvalue'];
|
2012-04-14 19:53:02 +04:00
|
|
|
}
|
2013-03-02 20:17:11 +04:00
|
|
|
|
2012-04-14 19:53:02 +04:00
|
|
|
return $values;
|
|
|
|
}
|
2013-08-26 00:34:54 +04:00
|
|
|
}
|