Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cloud.php « ocs « lib - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 720cc0ade39678e7087bbd97fd2f612383ec1647 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php

class OC_OCS_Cloud {

	public static function getSystemWebApps($parameters){
		OC_Util::checkLoggedIn();
		$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;
			}
		}
		return new OC_OCS_Result($values);
	}
	
	public static function getUserQuota($parameters){
		OC_Util::checkLoggedIn();
		$user = OC_User::getUser();
		if(OC_Group::inGroup($user, 'admin') or ($user==$parameters['user'])) {

			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;

				return new OC_OCS_Result($xml);
			}else{
				return 300;
			}
		}else{
			return 300;
		}
	}
	
	public static function setUserQuota($parameters){
		OC_Util::checkLoggedIn();
		$user = OC_User::getUser();
		if(OC_Group::inGroup($user, 'admin')) {
		
			// todo
			// not yet implemented
			// add logic here
			error_log('OCS call: user:'.$parameters['user'].' quota:'.$parameters['quota']);
			
			$xml=array();
			return $xml;
		}else{
			return 300;
		}
	}
	
	public static function getUserPublickey($parameters){
		OC_Util::checkLoggedIn();

		if(OC_User::userExists($parameters['user'])){
			// calculate the disc space
			// TODO
			return array();
		}else{
			return 300;
		}
	}
	
	public static function getUserPrivatekey($parameters){
		OC_Util::checkLoggedIn();
		$user = OC_User::getUser();
		if(OC_Group::inGroup($user, 'admin') 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{
				echo self::generateXml('', 'fail', 300, 'User does not exist');
			}
		}else{
			echo self::generateXml('', 'fail', 300, 'You don´t have permission to access this ressource.');
		}
	}
}