Blame view

sources/apps/files_sharing/lib/permissions.php 3.12 KB
03e52840d   Kload   Init
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
  <?php
  /**
  * ownCloud
  *
  * @author Michael Gapczynski
  * @copyright 2012 Michael Gapczynski mtgap@owncloud.com
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  * License as published by the Free Software Foundation; either
  * version 3 of the License, or any later version.
  *
  * This library is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  *
  * You should have received a copy of the GNU Affero General Public
  * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
  */
  namespace OC\Files\Cache;
  
  class Shared_Permissions extends Permissions {
  
  	/**
  	 * get the permissions for a single file
  	 *
  	 * @param int $fileId
  	 * @param string $user
  	 * @return int (-1 if file no permissions set)
  	 */
  	public function get($fileId, $user) {
  		if ($fileId == -1) {
  			return \OCP\PERMISSION_READ;
  		}
  		$source = \OCP\Share::getItemSharedWithBySource('file', $fileId, \OC_Share_Backend_File::FORMAT_SHARED_STORAGE,
  			null, true);
  		if ($source) {
  			return $source['permissions'];
  		} else {
  			return -1;
  		}
  	}
a293d369c   Kload   Update sources to...
44
45
46
47
48
49
50
51
52
53
54
55
  	private function getFile($fileId, $user) {
  		if ($fileId == -1) {
  			return \OCP\PERMISSION_READ;
  		}
  		$source = \OCP\Share::getItemSharedWithBySource('file', $fileId, \OC_Share_Backend_File::FORMAT_SHARED_STORAGE,
  			null, false);
  		if ($source) {
  			return $source['permissions'];
  		} else {
  			return -1;
  		}
  	}
03e52840d   Kload   Init
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
  	/**
  	 * set the permissions of a file
  	 *
  	 * @param int $fileId
  	 * @param string $user
  	 * @param int $permissions
  	 */
  	public function set($fileId, $user, $permissions) {
  		// Not a valid action for Shared Permissions
  	}
  
  	/**
  	 * get the permissions of multiply files
  	 *
  	 * @param int[] $fileIds
  	 * @param string $user
  	 * @return int[]
  	 */
  	public function getMultiple($fileIds, $user) {
  		if (count($fileIds) === 0) {
  			return array();
  		}
  		foreach ($fileIds as $fileId) {
  			$filePermissions[$fileId] = self::get($fileId, $user);
  		}
  		return $filePermissions;
  	}
  
  	/**
  	 * get the permissions for all files in a folder
  	 *
  	 * @param int $parentId
  	 * @param string $user
  	 * @return int[]
  	 */
  	public function getDirectoryPermissions($parentId, $user) {
  		// Root of the Shared folder
  		if ($parentId === -1) {
  			return \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_File::FORMAT_PERMISSIONS);
  		}
a293d369c   Kload   Update sources to...
96
  		$permissions = $this->getFile($parentId, $user);
03e52840d   Kload   Init
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
  		$query = \OC_DB::prepare('SELECT `fileid` FROM `*PREFIX*filecache` WHERE `parent` = ?');
  		$result = $query->execute(array($parentId));
  		$filePermissions = array();
  		while ($row = $result->fetchRow()) {
  			$filePermissions[$row['fileid']] = $permissions;
  		}
  		return $filePermissions;
  	}
  
  	/**
  	 * remove the permissions for a file
  	 *
  	 * @param int $fileId
  	 * @param string $user
  	 */
  	public function remove($fileId, $user = null) {
  		// Not a valid action for Shared Permissions
  	}
  
  	public function removeMultiple($fileIds, $user) {
  		// Not a valid action for Shared Permissions
  	}
31b7f2792   Kload   Upgrade to ownclo...
119
  }