|
|
|
|
@ -99,31 +99,4 @@ class OC_OCS_Cloud { |
|
|
|
|
); |
|
|
|
|
return new OC_OCS_Result($data); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static function getUserPublickey($parameters) { |
|
|
|
|
|
|
|
|
|
if(OC_User::userExists($parameters['user'])) { |
|
|
|
|
// calculate the disc space |
|
|
|
|
// TODO |
|
|
|
|
return new OC_OCS_Result(array()); |
|
|
|
|
} else { |
|
|
|
|
return new OC_OCS_Result(null, 300); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static function getUserPrivatekey($parameters) { |
|
|
|
|
$user = OC_User::getUser(); |
|
|
|
|
if(OC_User::isAdminUser($user) or ($user==$parameters['user'])) { |
|
|
|
|
|
|
|
|
|
if(OC_User::userExists($user)) { |
|
|
|
|
// calculate the disc space |
|
|
|
|
$txt = 'this is the private key of '.$parameters['user']; |
|
|
|
|
echo($txt); |
|
|
|
|
} else { |
|
|
|
|
return new OC_OCS_Result(null, 300, 'User does not exist'); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
return new OC_OCS_Result('null', 300, 'You don´t have permission to access this ressource.'); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|