Add quota to core api
This commit is contained in:
parent
13514fd1ad
commit
f14ce1efdc
|
@ -35,14 +35,37 @@ class OC_OCS_Cloud {
|
||||||
'edition' => OC_Util::getEditionString(),
|
'edition' => OC_Util::getEditionString(),
|
||||||
);
|
);
|
||||||
|
|
||||||
$result['capabilities'] = array(
|
$result['capabilities'] = array(
|
||||||
'core' => array(
|
'core' => array(
|
||||||
'pollinterval' => OC_Config::getValue('pollinterval', 60),
|
'pollinterval' => OC_Config::getValue('pollinterval', 60),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
return new OC_OCS_Result($result);
|
return new OC_OCS_Result($result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets user info
|
||||||
|
*/
|
||||||
|
public static function getUser($parameters){
|
||||||
|
// Check if they are viewing information on themselves
|
||||||
|
if($parameters['userid'] === OC_User::getUser()){
|
||||||
|
// Self lookup
|
||||||
|
$quota = array();
|
||||||
|
$storage = OC_Helper::getStorageInfo();
|
||||||
|
$quota = array(
|
||||||
|
'free' => $storage['free'],
|
||||||
|
'used' => $storage['used'],
|
||||||
|
'total' => $storage['total'],
|
||||||
|
'relative' => $storage['relative'],
|
||||||
|
);
|
||||||
|
return new OC_OCS_Result(array('quota' => $quota));
|
||||||
|
} else {
|
||||||
|
// No permission to view this user data
|
||||||
|
return new OC_OCS_Result(null, 997);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static function getUserPublickey($parameters) {
|
public static function getUserPublickey($parameters) {
|
||||||
|
|
||||||
if(OC_User::userExists($parameters['user'])) {
|
if(OC_User::userExists($parameters['user'])) {
|
||||||
|
|
|
@ -75,3 +75,10 @@ OC_API::register(
|
||||||
'core',
|
'core',
|
||||||
OC_API::USER_AUTH
|
OC_API::USER_AUTH
|
||||||
);
|
);
|
||||||
|
OC_API::register(
|
||||||
|
'get',
|
||||||
|
'/cloud/users/{userid}',
|
||||||
|
array('OC_OCS_Cloud', 'getUser'),
|
||||||
|
'core',
|
||||||
|
OC_API::USER_AUTH
|
||||||
|
);
|
||||||
|
|
Loading…
Reference in New Issue