nextcloud/apps/remoteStorage/lib_remoteStorage.php

70 lines
2.3 KiB
PHP
Raw Normal View History

2011-09-02 16:56:40 +04:00
<?php
class OC_remoteStorage {
public static function getValidTokens($ownCloudUser, $category) {
2012-05-03 15:06:08 +04:00
$query=OCP\DB::prepare("SELECT token,appUrl,category FROM *PREFIX*authtoken WHERE user=? LIMIT 100");
$result=$query->execute(array($ownCloudUser));
2011-09-02 16:56:40 +04:00
$ret = array();
while($row=$result->fetchRow()){
if(in_array($category, explode(',', $row['category']))) {
$ret[$row['token']]=true;
}
2011-09-02 16:56:40 +04:00
}
return $ret;
}
2012-05-09 17:17:01 +04:00
public static function getTokenFor($appUrl, $categories) {
$user=OCP\USER::getUser();
$query=OCP\DB::prepare("SELECT token FROM *PREFIX*authtoken WHERE user=? AND appUrl=? AND category=? LIMIT 1");
$result=$query->execute(array($user, $appUrl, $categories));
$ret = array();
if($row=$result->fetchRow()) {
return base64_encode('remoteStorage:'.$row['token']);
2012-05-09 17:17:01 +04:00
} else {
return false;
}
}
2011-09-02 16:56:40 +04:00
public static function getAllTokens() {
2012-05-01 20:50:31 +04:00
$user=OCP\USER::getUser();
2012-05-03 15:06:08 +04:00
$query=OCP\DB::prepare("SELECT token,appUrl,category FROM *PREFIX*authtoken WHERE user=? LIMIT 100");
2011-09-02 16:56:40 +04:00
$result=$query->execute(array($user));
$ret = array();
while($row=$result->fetchRow()){
$ret[$row['token']] = array(
2012-03-02 00:55:12 +04:00
'appUrl' => $row['appUrl'],
'categories' => $row['category'],
2011-09-02 16:56:40 +04:00
);
}
return $ret;
}
public static function deleteToken($token) {
2012-05-01 20:50:31 +04:00
$user=OCP\USER::getUser();
2012-05-03 15:06:08 +04:00
$query=OCP\DB::prepare("DELETE FROM *PREFIX*authtoken WHERE token=? AND user=?");
2011-09-02 16:56:40 +04:00
$result=$query->execute(array($token,$user));
2012-03-02 00:55:12 +04:00
return 'unknown';//how can we see if any rows were affected?
2011-09-02 16:56:40 +04:00
}
private static function addToken($token, $appUrl, $categories){
2012-05-01 20:50:31 +04:00
$user=OCP\USER::getUser();
2012-05-03 15:06:08 +04:00
$query=OCP\DB::prepare("INSERT INTO *PREFIX*authtoken (`token`,`appUrl`,`user`,`category`) VALUES(?,?,?,?)");
$result=$query->execute(array($token,$appUrl,$user,$categories));
2011-09-02 16:56:40 +04:00
}
public static function createCategories($appUrl, $categories) {
2011-09-02 16:56:40 +04:00
$token=uniqid();
2012-05-01 20:50:31 +04:00
OC_Util::setupFS(OCP\USER::getUser());
self::addToken($token, $appUrl, $categories);
foreach(explode(',', $categories) as $category) {
//TODO: input checking on $category
$scopePathParts = array('remoteStorage', $category);
for($i=0;$i<=count($scopePathParts);$i++){
$thisPath = '/'.implode('/', array_slice($scopePathParts, 0, $i));
if(!OC_Filesystem::file_exists($thisPath)) {
OC_Filesystem::mkdir($thisPath);
}
2011-09-02 16:56:40 +04:00
}
}
return base64_encode('remoteStorage:'.$token);
2011-09-02 16:56:40 +04:00
}
}