Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@owncloud.org>2014-02-25 15:31:55 +0400
committerFrank Karlitschek <frank@owncloud.org>2014-02-25 15:31:55 +0400
commit3730875b2f01cd36b45c50daa81ba2a8bd6f8ce6 (patch)
tree9207bc065b6f3b786e85a6d107fdb83e157f0d22 /lib
parentbbe20191d4a2fb7bbabc73a95daa684b6e9b4f92 (diff)
parent04e2df3c6ab5ceaae427647200ca47658e93712a (diff)
Merge pull request #7268 from owncloud/stable5-fix-ocspriv
Use separate table for privatedata attributes
Diffstat (limited to 'lib')
-rw-r--r--lib/ocs.php32
-rw-r--r--lib/ocs/privatedata.php78
2 files changed, 60 insertions, 50 deletions
diff --git a/lib/ocs.php b/lib/ocs.php
index 93e8931ce2e..e067196cf11 100644
--- a/lib/ocs.php
+++ b/lib/ocs.php
@@ -228,36 +228,4 @@ class OC_OCS {
}
}
}
-
- /**
- * get private data
- * @param string $user
- * @param string $app
- * @param string $key
- * @param bool $like use LIKE instead of = when comparing keys
- * @return array
- */
- public static function getData($user, $app="", $key="") {
- if($app) {
- $apps=array($app);
- }else{
- $apps=OC_Preferences::getApps($user);
- }
- if($key) {
- $keys=array($key);
- }else{
- foreach($apps as $app) {
- $keys=OC_Preferences::getKeys($user, $app);
- }
- }
- $result=array();
- foreach($apps as $app) {
- foreach($keys as $key) {
- $value=OC_Preferences::getValue($user, $app, $key);
- $result[]=array('app'=>$app, 'key'=>$key, 'value'=>$value);
- }
- }
- return $result;
- }
-
}
diff --git a/lib/ocs/privatedata.php b/lib/ocs/privatedata.php
index 4dfd0a6e66e..932413711b8 100644
--- a/lib/ocs/privatedata.php
+++ b/lib/ocs/privatedata.php
@@ -22,45 +22,87 @@
*
*/
+
class OC_OCS_Privatedata {
+ /**
+ * read keys
+ * test: curl http://login:passwd@oc/core/ocs/v1.php/privatedata/getattribute/testy/123
+ * test: curl http://login:passwd@oc/core/ocs/v1.php/privatedata/getattribute/testy
+ * @param array $parameters The OCS parameter
+ * @return \OC_OCS_Result
+ */
public static function get($parameters) {
- OC_Util::checkLoggedIn();
$user = OC_User::getUser();
$app = addslashes(strip_tags($parameters['app']));
- $key = addslashes(strip_tags($parameters['key']));
- $result = OC_OCS::getData($user, $app, $key);
+ $key = isset($parameters['key']) ? addslashes(strip_tags($parameters['key'])) : null;
+
+ if(empty($key)) {
+ $query = \OCP\DB::prepare('SELECT `key`, `app`, `value` FROM `*PREFIX*privatedata` WHERE `user` = ? AND `app` = ? ');
+ $result = $query->execute(array($user, $app));
+ } else {
+ $query = \OCP\DB::prepare('SELECT `key`, `app`, `value` FROM `*PREFIX*privatedata` WHERE `user` = ? AND `app` = ? AND `key` = ? ');
+ $result = $query->execute(array($user, $app, $key));
+ }
+
$xml = array();
- foreach($result as $i=>$log) {
- $xml[$i]['key']=$log['key'];
- $xml[$i]['app']=$log['app'];
- $xml[$i]['value']=$log['value'];
+ while ($row = $result->fetchRow()) {
+ $data=array();
+ $data['key']=$row['key'];
+ $data['app']=$row['app'];
+ $data['value']=$row['value'];
+ $xml[] = $data;
}
+
return new OC_OCS_Result($xml);
- //TODO: replace 'privatedata' with 'attribute' once a new libattice has been released that works with it
}
+ /**
+ * set a key
+ * test: curl http://login:passwd@oc/core/ocs/v1.php/privatedata/setattribute/testy/123 --data "value=foobar"
+ * @param array $parameters The OCS parameter
+ * @return \OC_OCS_Result
+ */
public static function set($parameters) {
- OC_Util::checkLoggedIn();
$user = OC_User::getUser();
$app = addslashes(strip_tags($parameters['app']));
$key = addslashes(strip_tags($parameters['key']));
$value = OC_OCS::readData('post', 'value', 'text');
- if(OC_Preferences::setValue($user, $app, $key, $value)) {
- return new OC_OCS_Result(null, 100);
+
+ // update in DB
+ $query = \OCP\DB::prepare('UPDATE `*PREFIX*privatedata` SET `value` = ? WHERE `user` = ? AND `app` = ? AND `key` = ?');
+ $numRows = $query->execute(array($value, $user, $app, $key));
+
+ if ($numRows === false || $numRows === 0) {
+ // store in DB
+ $query = \OCP\DB::prepare('INSERT INTO `*PREFIX*privatedata` (`user`, `app`, `key`, `value`)' . ' VALUES(?, ?, ?, ?)');
+ $query->execute(array($user, $app, $key, $value));
}
+
+ return new OC_OCS_Result(null, 100);
}
+ /**
+ * delete a key
+ * test: curl http://login:passwd@oc/core/ocs/v1.php/privatedata/deleteattribute/testy/123 --data "post=1"
+ * @param array $parameters The OCS parameter
+ * @return \OC_OCS_Result
+ */
public static function delete($parameters) {
- OC_Util::checkLoggedIn();
$user = OC_User::getUser();
+ if (!isset($parameters['app']) or !isset($parameters['key'])) {
+ //key and app are NOT optional here
+ return new OC_OCS_Result(null, 101);
+ }
+
$app = addslashes(strip_tags($parameters['app']));
$key = addslashes(strip_tags($parameters['key']));
- if($key==="" or $app==="") {
- return new OC_OCS_Result(null, 101); //key and app are NOT optional here
- }
- if(OC_Preferences::deleteKey($user, $app, $key)) {
- return new OC_OCS_Result(null, 100);
- }
+
+ // delete in DB
+ $query = \OCP\DB::prepare('DELETE FROM `*PREFIX*privatedata` WHERE `user` = ? AND `app` = ? AND `key` = ? ');
+ $query->execute(array($user, $app, $key ));
+
+ return new OC_OCS_Result(null, 100);
}
}
+