2012-07-30 16:42:18 +04:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class OC_OCS_Cloud {
|
|
|
|
|
|
2012-08-01 00:19:11 +04:00
|
|
|
|
public static function getSystemWebApps($parameters){
|
|
|
|
|
OC_Util::checkLoggedIn();
|
2012-07-30 16:42:18 +04:00
|
|
|
|
$apps = OC_App::getEnabledApps();
|
|
|
|
|
$values = array();
|
|
|
|
|
foreach($apps as $app) {
|
|
|
|
|
$info = OC_App::getAppInfo($app);
|
|
|
|
|
if(isset($info['standalone'])) {
|
|
|
|
|
$newvalue = array('name'=>$info['name'],'url'=>OC_Helper::linkToAbsolute($app,''),'icon'=>'');
|
|
|
|
|
$values[] = $newvalue;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-12-12 21:35:58 +04:00
|
|
|
|
return new OC_OCS_Result($values);
|
2012-07-30 16:42:18 +04:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-01 00:19:11 +04:00
|
|
|
|
public static function getUserQuota($parameters){
|
|
|
|
|
$user = OC_User::getUser();
|
|
|
|
|
if(OC_Group::inGroup($user, 'admin') or ($user==$parameters['user'])) {
|
2012-07-30 16:42:18 +04:00
|
|
|
|
|
|
|
|
|
if(OC_User::userExists($parameters['user'])){
|
|
|
|
|
// calculate the disc space
|
|
|
|
|
$user_dir = '/'.$parameters['user'].'/files';
|
|
|
|
|
OC_Filesystem::init($user_dir);
|
|
|
|
|
$rootInfo=OC_FileCache::get('');
|
|
|
|
|
$sharedInfo=OC_FileCache::get('/Shared');
|
|
|
|
|
$used=$rootInfo['size']-$sharedInfo['size'];
|
|
|
|
|
$free=OC_Filesystem::free_space();
|
|
|
|
|
$total=$free+$used;
|
|
|
|
|
if($total==0) $total=1; // prevent division by zero
|
|
|
|
|
$relative=round(($used/$total)*10000)/100;
|
|
|
|
|
|
|
|
|
|
$xml=array();
|
|
|
|
|
$xml['quota']=$total;
|
|
|
|
|
$xml['free']=$free;
|
|
|
|
|
$xml['used']=$used;
|
|
|
|
|
$xml['relative']=$relative;
|
|
|
|
|
|
2012-12-12 21:35:58 +04:00
|
|
|
|
return new OC_OCS_Result($xml);
|
2012-07-30 16:42:18 +04:00
|
|
|
|
}else{
|
2012-12-12 22:06:07 +04:00
|
|
|
|
return new OC_OCS_Result(null, 300);
|
2012-07-30 16:42:18 +04:00
|
|
|
|
}
|
|
|
|
|
}else{
|
2012-12-12 22:06:07 +04:00
|
|
|
|
return new OC_OCS_Result(null, 300);
|
2012-07-30 16:42:18 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-01 00:19:11 +04:00
|
|
|
|
public static function getUserPublickey($parameters){
|
2012-07-30 16:42:18 +04:00
|
|
|
|
|
|
|
|
|
if(OC_User::userExists($parameters['user'])){
|
|
|
|
|
// calculate the disc space
|
|
|
|
|
// TODO
|
2012-12-12 22:06:07 +04:00
|
|
|
|
return new OC_OCS_Result(array());
|
2012-07-30 16:42:18 +04:00
|
|
|
|
}else{
|
2012-12-12 22:06:07 +04:00
|
|
|
|
return new OC_OCS_Result(null, 300);
|
2012-07-30 16:42:18 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-01 00:19:11 +04:00
|
|
|
|
public static function getUserPrivatekey($parameters){
|
|
|
|
|
$user = OC_User::getUser();
|
|
|
|
|
if(OC_Group::inGroup($user, 'admin') or ($user==$parameters['user'])) {
|
2012-07-30 16:42:18 +04:00
|
|
|
|
|
2012-08-01 00:19:11 +04:00
|
|
|
|
if(OC_User::userExists($user)){
|
|
|
|
|
// calculate the disc space
|
|
|
|
|
$txt='this is the private key of '.$parameters['user'];
|
|
|
|
|
echo($txt);
|
|
|
|
|
}else{
|
2012-12-12 22:06:07 +04:00
|
|
|
|
return new OC_OCS_Result(null, 300, 'User does not exist');
|
2012-08-01 00:19:11 +04:00
|
|
|
|
}
|
|
|
|
|
}else{
|
2012-12-12 22:06:07 +04:00
|
|
|
|
return new OC_OCS_Result('null', 300, 'You don´t have permission to access this ressource.');
|
2012-08-01 00:19:11 +04:00
|
|
|
|
}
|
2012-07-30 16:42:18 +04:00
|
|
|
|
}
|
|
|
|
|
}
|