-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Expand file tree
/
Copy pathPermissionsMask.php
More file actions
141 lines (117 loc) · 4.6 KB
/
PermissionsMask.php
File metadata and controls
141 lines (117 loc) · 4.6 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OC\Files\Storage\Wrapper;
use OC\Files\Cache\Wrapper\CachePermissionsMask;
use OC\Files\Storage\Storage;
use OCP\Constants;
use OCP\Files\Cache\ICache;
use OCP\Files\Cache\IScanner;
use OCP\Files\Storage\IStorage;
/**
* Mask the permissions of a storage
*
* This can be used to restrict update, create, delete and/or share permissions of a storage
*
* Note that the read permissions can't be masked
*/
class PermissionsMask extends Wrapper {
/**
* @var int the permissions bits we want to keep
*/
protected readonly int $mask;
/**
* @param array{storage: Storage, mask: int, ...} $parameters
*
* $storage: The storage the permissions mask should be applied on
* $mask: The permission bits that should be kept, a combination of the \OCP\Constant::PERMISSION_ constants
*/
public function __construct(array $parameters) {
parent::__construct($parameters);
$this->mask = $parameters['mask'];
}
private function checkMask(int $permissions): bool {
return ($this->mask & $permissions) === $permissions;
}
public function isUpdatable(string $path): bool {
return $this->checkMask(Constants::PERMISSION_UPDATE) && parent::isUpdatable($path);
}
public function isCreatable(string $path): bool {
return $this->checkMask(Constants::PERMISSION_CREATE) && parent::isCreatable($path);
}
public function isDeletable(string $path): bool {
return $this->checkMask(Constants::PERMISSION_DELETE) && parent::isDeletable($path);
}
public function isSharable(string $path): bool {
return $this->checkMask(Constants::PERMISSION_SHARE) && parent::isSharable($path);
}
public function getPermissions(string $path): int {
return $this->storage->getPermissions($path) & $this->mask;
}
public function rename(string $source, string $target): bool {
//This is a rename of the transfer file to the original file
if (dirname($source) === dirname($target) && strpos($source, '.ocTransferId') > 0) {
return $this->checkMask(Constants::PERMISSION_CREATE) && parent::rename($source, $target);
}
return $this->checkMask(Constants::PERMISSION_UPDATE) && parent::rename($source, $target);
}
public function copy(string $source, string $target): bool {
return $this->checkMask(Constants::PERMISSION_CREATE) && parent::copy($source, $target);
}
public function touch(string $path, ?int $mtime = null): bool {
$permissions = $this->file_exists($path) ? Constants::PERMISSION_UPDATE : Constants::PERMISSION_CREATE;
return $this->checkMask($permissions) && parent::touch($path, $mtime);
}
public function mkdir(string $path): bool {
return $this->checkMask(Constants::PERMISSION_CREATE) && parent::mkdir($path);
}
public function rmdir(string $path): bool {
return $this->checkMask(Constants::PERMISSION_DELETE) && parent::rmdir($path);
}
public function unlink(string $path): bool {
return $this->checkMask(Constants::PERMISSION_DELETE) && parent::unlink($path);
}
public function file_put_contents(string $path, mixed $data): int|float|false {
$permissions = $this->file_exists($path) ? Constants::PERMISSION_UPDATE : Constants::PERMISSION_CREATE;
return $this->checkMask($permissions) ? parent::file_put_contents($path, $data) : false;
}
public function fopen(string $path, string $mode) {
if ($mode === 'r' || $mode === 'rb') {
return parent::fopen($path, $mode);
} else {
$permissions = $this->file_exists($path) ? Constants::PERMISSION_UPDATE : Constants::PERMISSION_CREATE;
return $this->checkMask($permissions) ? parent::fopen($path, $mode) : false;
}
}
public function getCache(string $path = '', ?IStorage $storage = null): ICache {
if (!$storage) {
$storage = $this;
}
$sourceCache = parent::getCache($path, $storage);
return new CachePermissionsMask($sourceCache, $this->mask);
}
public function getMetaData(string $path): ?array {
$data = parent::getMetaData($path);
if ($data && isset($data['permissions'])) {
$data['scan_permissions'] ??= $data['permissions'];
$data['permissions'] &= $this->mask;
}
return $data;
}
public function getScanner(string $path = '', ?IStorage $storage = null): IScanner {
if (!$storage) {
$storage = $this->storage;
}
return parent::getScanner($path, $storage);
}
public function getDirectoryContent(string $directory): \Traversable {
foreach ($this->getWrapperStorage()->getDirectoryContent($directory) as $data) {
$data['scan_permissions'] ??= $data['permissions'];
$data['permissions'] &= $this->mask;
yield $data;
}
}
}