New OCS route:
/ocs/cloud/user Response: <?xml version="1.0"?> <ocs> <meta> <status>ok</status> <statuscode>100</statuscode> <message/> </meta> <data> <id>thomas</id> <display-name>DeepDiver</display-name> <email>no-response@domain.tld</email> </data> </ocs>
This commit is contained in:
parent
a376407da3
commit
66a2f3b0b9
|
@ -64,8 +64,7 @@ class OC_OCS_Cloud {
|
||||||
// Check if they are viewing information on themselves
|
// Check if they are viewing information on themselves
|
||||||
if($parameters['userid'] === OC_User::getUser()) {
|
if($parameters['userid'] === OC_User::getUser()) {
|
||||||
// Self lookup
|
// Self lookup
|
||||||
$quota = array();
|
$storage = OC_Helper::getStorageInfo('/');
|
||||||
$storage = OC_Helper::getStorageInfo();
|
|
||||||
$quota = array(
|
$quota = array(
|
||||||
'free' => $storage['free'],
|
'free' => $storage['free'],
|
||||||
'used' => $storage['used'],
|
'used' => $storage['used'],
|
||||||
|
@ -79,6 +78,16 @@ class OC_OCS_Cloud {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static function getCurrentUser() {
|
||||||
|
$email=OC_Preferences::getValue(OC_User::getUser(), 'settings', 'email', '');
|
||||||
|
$data = array(
|
||||||
|
'id' => OC_User::getUser(),
|
||||||
|
'display-name' => OC_User::getDisplayName(),
|
||||||
|
'email' => $email,
|
||||||
|
);
|
||||||
|
return new OC_OCS_Result($data);
|
||||||
|
}
|
||||||
|
|
||||||
public static function getUserPublickey($parameters) {
|
public static function getUserPublickey($parameters) {
|
||||||
|
|
||||||
if(OC_User::userExists($parameters['user'])) {
|
if(OC_User::userExists($parameters['user'])) {
|
||||||
|
|
|
@ -74,3 +74,10 @@ OC_API::register(
|
||||||
'core',
|
'core',
|
||||||
OC_API::USER_AUTH
|
OC_API::USER_AUTH
|
||||||
);
|
);
|
||||||
|
OC_API::register(
|
||||||
|
'get',
|
||||||
|
'/cloud/user',
|
||||||
|
array('OC_OCS_Cloud', 'getCurrentUser'),
|
||||||
|
'core',
|
||||||
|
OC_API::USER_AUTH
|
||||||
|
);
|
||||||
|
|
Loading…
Reference in New Issue