2011-03-03 23:55:32 +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 `preferences` (
|
|
|
|
* `userid` VARCHAR( 255 ) NOT NULL ,
|
|
|
|
* `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-03 15:04:29 +04:00
|
|
|
namespace OC;
|
|
|
|
|
|
|
|
use \OC\DB\Connection;
|
|
|
|
|
|
|
|
|
2011-03-12 12:28:10 +03:00
|
|
|
/**
|
|
|
|
* This class provides an easy way for storing user preferences.
|
|
|
|
*/
|
2013-03-03 15:04:29 +04:00
|
|
|
class Preferences {
|
2014-02-18 14:20:16 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\DB\Connection
|
|
|
|
*/
|
2013-03-03 15:04:29 +04:00
|
|
|
protected $conn;
|
|
|
|
|
2014-02-18 14:20:16 +04:00
|
|
|
/**
|
2014-02-18 17:26:27 +04:00
|
|
|
* 3 dimensional array with the following structure:
|
|
|
|
* [ $userId =>
|
|
|
|
* [ $appId =>
|
|
|
|
* [ $key => $value ]
|
|
|
|
* ]
|
|
|
|
* ]
|
|
|
|
*
|
2014-02-18 14:20:16 +04:00
|
|
|
* @var array $cache
|
|
|
|
*/
|
|
|
|
protected $cache = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \OC\DB\Connection $conn
|
|
|
|
*/
|
2013-03-03 15:04:29 +04:00
|
|
|
public function __construct(Connection $conn) {
|
|
|
|
$this->conn = $conn;
|
|
|
|
}
|
|
|
|
|
2011-03-03 23:55:32 +03:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get all users using the preferences
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of user ids
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
|
|
|
* This function returns a list of all users that have at least one entry
|
|
|
|
* in the preferences table.
|
2011-03-03 23:55:32 +03:00
|
|
|
*/
|
2013-03-03 15:04:29 +04:00
|
|
|
public function getUsers() {
|
|
|
|
$query = 'SELECT DISTINCT `userid` FROM `*PREFIX*preferences`';
|
2014-02-18 14:20:16 +04:00
|
|
|
$result = $this->conn->executeQuery($query);
|
2011-04-08 18:54:12 +04:00
|
|
|
|
|
|
|
$users = array();
|
2014-02-18 14:20:16 +04:00
|
|
|
while ($userid = $result->fetchColumn()) {
|
2013-03-03 15:04:29 +04:00
|
|
|
$users[] = $userid;
|
2011-04-08 18:54:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $users;
|
2011-03-03 23:55:32 +03:00
|
|
|
}
|
|
|
|
|
2014-02-18 17:26:27 +04:00
|
|
|
/**
|
|
|
|
* @param string $user
|
2014-02-18 14:20:16 +04:00
|
|
|
* @return array[]
|
|
|
|
*/
|
|
|
|
protected function getUserValues($user) {
|
|
|
|
if (isset($this->cache[$user])) {
|
|
|
|
return $this->cache[$user];
|
|
|
|
}
|
|
|
|
$data = array();
|
|
|
|
$query = 'SELECT `appid`, `configkey`, `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ?';
|
|
|
|
$result = $this->conn->executeQuery($query, array($user));
|
|
|
|
while ($row = $result->fetch()) {
|
|
|
|
$app = $row['appid'];
|
|
|
|
if (!isset($data[$app])) {
|
|
|
|
$data[$app] = array();
|
|
|
|
}
|
|
|
|
$data[$app][$row['configkey']] = $row['configvalue'];
|
|
|
|
}
|
|
|
|
$this->cache[$user] = $data;
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2011-03-03 23:55:32 +03:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get all apps of an user
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $user user
|
2014-02-19 12:31:54 +04:00
|
|
|
* @return integer[] with app ids
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
2011-09-26 23:18:37 +04:00
|
|
|
* This function returns a list of all apps of the user that have at least
|
2011-03-12 12:28:10 +03:00
|
|
|
* one entry in the preferences table.
|
2011-03-03 23:55:32 +03:00
|
|
|
*/
|
2014-02-18 14:20:16 +04:00
|
|
|
public function getApps($user) {
|
|
|
|
$data = $this->getUserValues($user);
|
|
|
|
return array_keys($data);
|
2011-03-12 12:28:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get the available keys for an app
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $user user
|
|
|
|
* @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 of an user. Please note that the
|
|
|
|
* values are not returned.
|
|
|
|
*/
|
2014-02-18 14:20:16 +04:00
|
|
|
public function getKeys($user, $app) {
|
|
|
|
$data = $this->getUserValues($user);
|
|
|
|
if (isset($data[$app])) {
|
|
|
|
return array_keys($data[$app]);
|
|
|
|
} else {
|
|
|
|
return array();
|
2011-04-08 18:54:12 +04:00
|
|
|
}
|
2011-03-12 12:28:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Gets the preference
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $user user
|
|
|
|
* @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
|
|
|
*
|
2012-09-23 04:39:11 +04:00
|
|
|
* This function gets a value from the preferences table. If the key does
|
|
|
|
* not exist the default value will be returned
|
2011-03-12 12:28:10 +03:00
|
|
|
*/
|
2014-02-18 14:20:16 +04:00
|
|
|
public function getValue($user, $app, $key, $default = null) {
|
|
|
|
$data = $this->getUserValues($user);
|
|
|
|
if (isset($data[$app]) and isset($data[$app][$key])) {
|
|
|
|
return $data[$app][$key];
|
2013-03-03 15:04:29 +04:00
|
|
|
} else {
|
2011-04-08 18:54:12 +04:00
|
|
|
return $default;
|
|
|
|
}
|
2011-03-03 23:55:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* sets a value in the preferences
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $user user
|
|
|
|
* @param string $app app
|
|
|
|
* @param string $key key
|
|
|
|
* @param string $value value
|
2014-05-06 21:18:57 +04:00
|
|
|
* @param string $preCondition only set value if the key had a specific value before
|
|
|
|
* @return bool true if value was set, otherwise false
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
|
|
|
* Adds a value to the preferences. If the key did not exist before, it
|
|
|
|
* will be added automagically.
|
2011-03-03 23:55:32 +03:00
|
|
|
*/
|
2014-05-06 21:18:57 +04:00
|
|
|
public function setValue($user, $app, $key, $value, $preCondition = null) {
|
2011-04-08 18:54:12 +04:00
|
|
|
// Check if the key does exist
|
2014-07-08 02:19:17 +04:00
|
|
|
$query = 'SELECT `configvalue` FROM `*PREFIX*preferences`'
|
2014-02-18 14:20:16 +04:00
|
|
|
. ' WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?';
|
2014-07-08 02:19:17 +04:00
|
|
|
$oldValue = $this->conn->fetchColumn($query, array($user, $app, $key));
|
|
|
|
$exists = $oldValue !== false;
|
2011-04-08 18:54:12 +04:00
|
|
|
|
2014-07-08 02:19:17 +04:00
|
|
|
if($oldValue === strval($value)) {
|
|
|
|
// no changes
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-05-06 21:18:57 +04:00
|
|
|
$affectedRows = 0;
|
|
|
|
|
|
|
|
if (!$exists && $preCondition === null) {
|
2013-03-03 15:04:29 +04:00
|
|
|
$data = array(
|
|
|
|
'userid' => $user,
|
|
|
|
'appid' => $app,
|
|
|
|
'configkey' => $key,
|
|
|
|
'configvalue' => $value,
|
|
|
|
);
|
2014-05-06 21:18:57 +04:00
|
|
|
$affectedRows = $this->conn->insert('*PREFIX*preferences', $data);
|
|
|
|
} elseif ($exists) {
|
|
|
|
$data = array($value, $user, $app, $key);
|
|
|
|
$sql = "UPDATE `*PREFIX*preferences` SET `configvalue` = ?"
|
|
|
|
. " WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?";
|
|
|
|
|
|
|
|
if ($preCondition !== null) {
|
|
|
|
if (\OC_Config::getValue( 'dbtype', 'sqlite' ) === 'oci') {
|
|
|
|
//oracle hack: need to explicitly cast CLOB to CHAR for comparison
|
|
|
|
$sql .= " AND to_char(`configvalue`) = ?";
|
|
|
|
} else {
|
|
|
|
$sql .= " AND `configvalue` = ?";
|
|
|
|
}
|
|
|
|
$data[] = $preCondition;
|
|
|
|
}
|
|
|
|
$affectedRows = $this->conn->executeUpdate($sql, $data);
|
2011-04-08 18:54:12 +04:00
|
|
|
}
|
2014-02-18 14:20:16 +04:00
|
|
|
|
|
|
|
// only add to the cache if we already loaded data for the user
|
2014-05-06 21:18:57 +04:00
|
|
|
if ($affectedRows > 0 && isset($this->cache[$user])) {
|
2014-02-18 14:20:16 +04:00
|
|
|
if (!isset($this->cache[$user][$app])) {
|
|
|
|
$this->cache[$user][$app] = array();
|
|
|
|
}
|
|
|
|
$this->cache[$user][$app][$key] = $value;
|
|
|
|
}
|
2014-05-06 21:18:57 +04:00
|
|
|
|
|
|
|
return ($affectedRows > 0) ? true : false;
|
|
|
|
|
2011-03-12 12:28:10 +03:00
|
|
|
}
|
|
|
|
|
2014-05-21 13:11:47 +04:00
|
|
|
/**
|
|
|
|
* Gets the preference for an array of users
|
|
|
|
* @param string $app
|
|
|
|
* @param string $key
|
|
|
|
* @param array $users
|
|
|
|
* @return array Mapped values: userid => value
|
|
|
|
*/
|
|
|
|
public function getValueForUsers($app, $key, $users) {
|
2014-05-21 15:10:23 +04:00
|
|
|
if (empty($users) || !is_array($users)) {
|
|
|
|
return array();
|
|
|
|
}
|
2014-05-21 13:11:47 +04:00
|
|
|
|
|
|
|
$chunked_users = array_chunk($users, 50, true);
|
|
|
|
$placeholders_50 = implode(',', array_fill(0, 50, '?'));
|
|
|
|
|
|
|
|
$userValues = array();
|
|
|
|
foreach ($chunked_users as $chunk) {
|
|
|
|
$queryParams = $chunk;
|
|
|
|
array_unshift($queryParams, $key);
|
|
|
|
array_unshift($queryParams, $app);
|
|
|
|
|
2014-05-21 16:35:59 +04:00
|
|
|
$placeholders = (sizeof($chunk) == 50) ? $placeholders_50 : implode(',', array_fill(0, sizeof($chunk), '?'));
|
2014-05-21 13:11:47 +04:00
|
|
|
|
|
|
|
$query = 'SELECT `userid`, `configvalue` '
|
|
|
|
. ' FROM `*PREFIX*preferences` '
|
|
|
|
. ' WHERE `appid` = ? AND `configkey` = ?'
|
|
|
|
. ' AND `userid` IN (' . $placeholders . ')';
|
|
|
|
$result = $this->conn->executeQuery($query, $queryParams);
|
|
|
|
|
|
|
|
while ($row = $result->fetch()) {
|
|
|
|
$userValues[$row['userid']] = $row['configvalue'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $userValues;
|
|
|
|
}
|
|
|
|
|
2014-06-05 13:49:13 +04:00
|
|
|
/**
|
|
|
|
* Gets the users for a preference
|
|
|
|
* @param string $app
|
|
|
|
* @param string $key
|
|
|
|
* @param string $value
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getUsersForValue($app, $key, $value) {
|
|
|
|
$users = array();
|
|
|
|
|
|
|
|
$query = 'SELECT `userid` '
|
|
|
|
. ' FROM `*PREFIX*preferences` '
|
2014-06-05 14:19:48 +04:00
|
|
|
. ' WHERE `appid` = ? AND `configkey` = ? AND ';
|
|
|
|
|
|
|
|
if (\OC_Config::getValue( 'dbtype', 'sqlite' ) === 'oci') {
|
|
|
|
//FIXME oracle hack: need to explicitly cast CLOB to CHAR for comparison
|
|
|
|
$query .= ' to_char(`configvalue`)= ?';
|
|
|
|
} else {
|
|
|
|
$query .= ' `configvalue` = ?';
|
|
|
|
}
|
|
|
|
|
2014-06-05 13:49:13 +04:00
|
|
|
$result = $this->conn->executeQuery($query, array($app, $key, $value));
|
|
|
|
|
|
|
|
while ($row = $result->fetch()) {
|
|
|
|
$users[] = $row['userid'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $users;
|
|
|
|
}
|
|
|
|
|
2011-03-12 12:28:10 +03:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Deletes a key
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $user user
|
|
|
|
* @param string $app app
|
|
|
|
* @param string $key key
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
|
|
|
* Deletes a key.
|
|
|
|
*/
|
2014-02-18 14:20:16 +04:00
|
|
|
public function deleteKey($user, $app, $key) {
|
2013-03-03 15:04:29 +04:00
|
|
|
$where = array(
|
|
|
|
'userid' => $user,
|
|
|
|
'appid' => $app,
|
|
|
|
'configkey' => $key,
|
|
|
|
);
|
|
|
|
$this->conn->delete('*PREFIX*preferences', $where);
|
2014-02-18 14:20:16 +04:00
|
|
|
|
2014-02-18 17:27:55 +04:00
|
|
|
if (isset($this->cache[$user]) and isset($this->cache[$user][$app])) {
|
2014-02-18 14:20:16 +04:00
|
|
|
unset($this->cache[$user][$app][$key]);
|
|
|
|
}
|
2011-03-12 12:28:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Remove app of user from preferences
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $user user
|
|
|
|
* @param string $app app
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
2013-03-03 15:04:29 +04:00
|
|
|
* Removes all keys in preferences belonging to the app and the user.
|
2011-03-12 12:28:10 +03:00
|
|
|
*/
|
2014-02-18 14:20:16 +04:00
|
|
|
public function deleteApp($user, $app) {
|
2013-03-03 15:04:29 +04:00
|
|
|
$where = array(
|
|
|
|
'userid' => $user,
|
|
|
|
'appid' => $app,
|
|
|
|
);
|
|
|
|
$this->conn->delete('*PREFIX*preferences', $where);
|
2014-02-18 14:20:16 +04:00
|
|
|
|
2014-02-18 17:27:55 +04:00
|
|
|
if (isset($this->cache[$user])) {
|
2014-02-18 14:20:16 +04:00
|
|
|
unset($this->cache[$user][$app]);
|
|
|
|
}
|
2011-03-12 12:28:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Remove user from preferences
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $user user
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
2013-03-03 15:04:29 +04:00
|
|
|
* Removes all keys in preferences belonging to the user.
|
2011-03-12 12:28:10 +03:00
|
|
|
*/
|
2014-02-18 14:20:16 +04:00
|
|
|
public function deleteUser($user) {
|
2013-03-03 15:04:29 +04:00
|
|
|
$where = array(
|
|
|
|
'userid' => $user,
|
|
|
|
);
|
|
|
|
$this->conn->delete('*PREFIX*preferences', $where);
|
2014-02-18 14:20:16 +04:00
|
|
|
|
2014-02-18 17:27:55 +04:00
|
|
|
unset($this->cache[$user]);
|
2011-03-12 12:28:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Remove app from all users
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $app app
|
2011-03-12 12:28:10 +03:00
|
|
|
*
|
|
|
|
* Removes all keys in preferences belonging to the app.
|
|
|
|
*/
|
2014-02-18 14:20:16 +04:00
|
|
|
public function deleteAppFromAllUsers($app) {
|
2013-03-03 15:04:29 +04:00
|
|
|
$where = array(
|
|
|
|
'appid' => $app,
|
|
|
|
);
|
|
|
|
$this->conn->delete('*PREFIX*preferences', $where);
|
2014-02-18 14:20:16 +04:00
|
|
|
|
|
|
|
foreach ($this->cache as &$userCache) {
|
|
|
|
unset($userCache[$app]);
|
|
|
|
}
|
2011-03-03 23:55:32 +03:00
|
|
|
}
|
|
|
|
}
|
2013-03-03 15:04:29 +04:00
|
|
|
|
2014-02-18 14:20:16 +04:00
|
|
|
require_once __DIR__ . '/legacy/' . basename(__FILE__);
|