@@ -32,7 +32,6 @@ |
||
| 32 | 32 | namespace OCA\Files_Sharing; |
| 33 | 33 | |
| 34 | 34 | use OC\Files\Filesystem; |
| 35 | -use OC\Files\Cache\FailedCache; |
|
| 36 | 35 | use OC\Files\Storage\Wrapper\PermissionsMask; |
| 37 | 36 | use OCA\Files_Sharing\ISharedStorage; |
| 38 | 37 | use OC\Files\Storage\FailedStorage; |
@@ -47,433 +47,433 @@ |
||
| 47 | 47 | */ |
| 48 | 48 | class SharedStorage extends \OC\Files\Storage\Wrapper\Jail implements ISharedStorage { |
| 49 | 49 | |
| 50 | - /** @var \OCP\Share\IShare */ |
|
| 51 | - private $superShare; |
|
| 52 | - |
|
| 53 | - /** @var \OCP\Share\IShare[] */ |
|
| 54 | - private $groupedShares; |
|
| 55 | - |
|
| 56 | - /** |
|
| 57 | - * @var \OC\Files\View |
|
| 58 | - */ |
|
| 59 | - private $ownerView; |
|
| 60 | - |
|
| 61 | - private $initialized = false; |
|
| 62 | - |
|
| 63 | - /** |
|
| 64 | - * @var ICacheEntry |
|
| 65 | - */ |
|
| 66 | - private $sourceRootInfo; |
|
| 67 | - |
|
| 68 | - /** @var string */ |
|
| 69 | - private $user; |
|
| 70 | - |
|
| 71 | - /** |
|
| 72 | - * @var \OCP\ILogger |
|
| 73 | - */ |
|
| 74 | - private $logger; |
|
| 75 | - |
|
| 76 | - /** @var IStorage */ |
|
| 77 | - private $nonMaskedStorage; |
|
| 78 | - |
|
| 79 | - private $options; |
|
| 80 | - |
|
| 81 | - public function __construct($arguments) { |
|
| 82 | - $this->ownerView = $arguments['ownerView']; |
|
| 83 | - $this->logger = \OC::$server->getLogger(); |
|
| 84 | - |
|
| 85 | - $this->superShare = $arguments['superShare']; |
|
| 86 | - $this->groupedShares = $arguments['groupedShares']; |
|
| 87 | - |
|
| 88 | - $this->user = $arguments['user']; |
|
| 89 | - |
|
| 90 | - parent::__construct([ |
|
| 91 | - 'storage' => null, |
|
| 92 | - 'root' => null, |
|
| 93 | - ]); |
|
| 94 | - } |
|
| 95 | - |
|
| 96 | - /** |
|
| 97 | - * @return ICacheEntry |
|
| 98 | - */ |
|
| 99 | - private function getSourceRootInfo() { |
|
| 100 | - if (is_null($this->sourceRootInfo)) { |
|
| 101 | - if (is_null($this->superShare->getNodeCacheEntry())) { |
|
| 102 | - $this->sourceRootInfo = $this->nonMaskedStorage->getCache()->get($this->rootPath); |
|
| 103 | - } else { |
|
| 104 | - $this->sourceRootInfo = $this->superShare->getNodeCacheEntry(); |
|
| 105 | - } |
|
| 106 | - } |
|
| 107 | - return $this->sourceRootInfo; |
|
| 108 | - } |
|
| 109 | - |
|
| 110 | - private function init() { |
|
| 111 | - if ($this->initialized) { |
|
| 112 | - return; |
|
| 113 | - } |
|
| 114 | - $this->initialized = true; |
|
| 115 | - try { |
|
| 116 | - Filesystem::initMountPoints($this->superShare->getShareOwner()); |
|
| 117 | - $sourcePath = $this->ownerView->getPath($this->superShare->getNodeId()); |
|
| 118 | - list($this->nonMaskedStorage, $this->rootPath) = $this->ownerView->resolvePath($sourcePath); |
|
| 119 | - $this->storage = new PermissionsMask([ |
|
| 120 | - 'storage' => $this->nonMaskedStorage, |
|
| 121 | - 'mask' => $this->superShare->getPermissions() |
|
| 122 | - ]); |
|
| 123 | - } catch (NotFoundException $e) { |
|
| 124 | - $this->storage = new FailedStorage(['exception' => $e]); |
|
| 125 | - $this->rootPath = ''; |
|
| 126 | - } catch (\Exception $e) { |
|
| 127 | - $this->storage = new FailedStorage(['exception' => $e]); |
|
| 128 | - $this->rootPath = ''; |
|
| 129 | - $this->logger->logException($e); |
|
| 130 | - } |
|
| 131 | - } |
|
| 132 | - |
|
| 133 | - /** |
|
| 134 | - * @inheritdoc |
|
| 135 | - */ |
|
| 136 | - public function instanceOfStorage($class) { |
|
| 137 | - if ($class === '\OC\Files\Storage\Common') { |
|
| 138 | - return true; |
|
| 139 | - } |
|
| 140 | - if (in_array($class, ['\OC\Files\Storage\Home', '\OC\Files\ObjectStore\HomeObjectStoreStorage'])) { |
|
| 141 | - return false; |
|
| 142 | - } |
|
| 143 | - return parent::instanceOfStorage($class); |
|
| 144 | - } |
|
| 145 | - |
|
| 146 | - /** |
|
| 147 | - * @return string |
|
| 148 | - */ |
|
| 149 | - public function getShareId() { |
|
| 150 | - return $this->superShare->getId(); |
|
| 151 | - } |
|
| 152 | - |
|
| 153 | - private function isValid() { |
|
| 154 | - return $this->getSourceRootInfo() && ($this->getSourceRootInfo()->getPermissions() & Constants::PERMISSION_SHARE) === Constants::PERMISSION_SHARE; |
|
| 155 | - } |
|
| 156 | - |
|
| 157 | - /** |
|
| 158 | - * get id of the mount point |
|
| 159 | - * |
|
| 160 | - * @return string |
|
| 161 | - */ |
|
| 162 | - public function getId() { |
|
| 163 | - return 'shared::' . $this->getMountPoint(); |
|
| 164 | - } |
|
| 165 | - |
|
| 166 | - /** |
|
| 167 | - * Get the permissions granted for a shared file |
|
| 168 | - * |
|
| 169 | - * @param string $target Shared target file path |
|
| 170 | - * @return int CRUDS permissions granted |
|
| 171 | - */ |
|
| 172 | - public function getPermissions($target = '') { |
|
| 173 | - if (!$this->isValid()) { |
|
| 174 | - return 0; |
|
| 175 | - } |
|
| 176 | - $permissions = $this->superShare->getPermissions(); |
|
| 177 | - // part files and the mount point always have delete permissions |
|
| 178 | - if ($target === '' || pathinfo($target, PATHINFO_EXTENSION) === 'part') { |
|
| 179 | - $permissions |= \OCP\Constants::PERMISSION_DELETE; |
|
| 180 | - } |
|
| 181 | - |
|
| 182 | - if (\OCP\Util::isSharingDisabledForUser()) { |
|
| 183 | - $permissions &= ~\OCP\Constants::PERMISSION_SHARE; |
|
| 184 | - } |
|
| 185 | - |
|
| 186 | - return $permissions; |
|
| 187 | - } |
|
| 188 | - |
|
| 189 | - public function isCreatable($path) { |
|
| 190 | - return ($this->getPermissions($path) & \OCP\Constants::PERMISSION_CREATE); |
|
| 191 | - } |
|
| 192 | - |
|
| 193 | - public function isReadable($path) { |
|
| 194 | - if (!$this->isValid()) { |
|
| 195 | - return false; |
|
| 196 | - } |
|
| 197 | - if (!$this->file_exists($path)) { |
|
| 198 | - return false; |
|
| 199 | - } |
|
| 200 | - /** @var IStorage $storage */ |
|
| 201 | - /** @var string $internalPath */ |
|
| 202 | - list($storage, $internalPath) = $this->resolvePath($path); |
|
| 203 | - return $storage->isReadable($internalPath); |
|
| 204 | - } |
|
| 205 | - |
|
| 206 | - public function isUpdatable($path) { |
|
| 207 | - return ($this->getPermissions($path) & \OCP\Constants::PERMISSION_UPDATE); |
|
| 208 | - } |
|
| 209 | - |
|
| 210 | - public function isDeletable($path) { |
|
| 211 | - return ($this->getPermissions($path) & \OCP\Constants::PERMISSION_DELETE); |
|
| 212 | - } |
|
| 213 | - |
|
| 214 | - public function isSharable($path) { |
|
| 215 | - if (\OCP\Util::isSharingDisabledForUser() || !\OC\Share\Share::isResharingAllowed()) { |
|
| 216 | - return false; |
|
| 217 | - } |
|
| 218 | - return ($this->getPermissions($path) & \OCP\Constants::PERMISSION_SHARE); |
|
| 219 | - } |
|
| 220 | - |
|
| 221 | - public function fopen($path, $mode) { |
|
| 222 | - if ($source = $this->getSourcePath($path)) { |
|
| 223 | - switch ($mode) { |
|
| 224 | - case 'r+': |
|
| 225 | - case 'rb+': |
|
| 226 | - case 'w+': |
|
| 227 | - case 'wb+': |
|
| 228 | - case 'x+': |
|
| 229 | - case 'xb+': |
|
| 230 | - case 'a+': |
|
| 231 | - case 'ab+': |
|
| 232 | - case 'w': |
|
| 233 | - case 'wb': |
|
| 234 | - case 'x': |
|
| 235 | - case 'xb': |
|
| 236 | - case 'a': |
|
| 237 | - case 'ab': |
|
| 238 | - $creatable = $this->isCreatable($path); |
|
| 239 | - $updatable = $this->isUpdatable($path); |
|
| 240 | - // if neither permissions given, no need to continue |
|
| 241 | - if (!$creatable && !$updatable) { |
|
| 242 | - return false; |
|
| 243 | - } |
|
| 244 | - |
|
| 245 | - $exists = $this->file_exists($path); |
|
| 246 | - // if a file exists, updatable permissions are required |
|
| 247 | - if ($exists && !$updatable) { |
|
| 248 | - return false; |
|
| 249 | - } |
|
| 250 | - |
|
| 251 | - // part file is allowed if !$creatable but the final file is $updatable |
|
| 252 | - if (pathinfo($path, PATHINFO_EXTENSION) !== 'part') { |
|
| 253 | - if (!$exists && !$creatable) { |
|
| 254 | - return false; |
|
| 255 | - } |
|
| 256 | - } |
|
| 257 | - } |
|
| 258 | - $info = array( |
|
| 259 | - 'target' => $this->getMountPoint() . $path, |
|
| 260 | - 'source' => $source, |
|
| 261 | - 'mode' => $mode, |
|
| 262 | - ); |
|
| 263 | - \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'fopen', $info); |
|
| 264 | - return $this->nonMaskedStorage->fopen($this->getSourcePath($path), $mode); |
|
| 265 | - } |
|
| 266 | - return false; |
|
| 267 | - } |
|
| 268 | - |
|
| 269 | - /** |
|
| 270 | - * see http://php.net/manual/en/function.rename.php |
|
| 271 | - * |
|
| 272 | - * @param string $path1 |
|
| 273 | - * @param string $path2 |
|
| 274 | - * @return bool |
|
| 275 | - */ |
|
| 276 | - public function rename($path1, $path2) { |
|
| 277 | - $this->init(); |
|
| 278 | - $isPartFile = pathinfo($path1, PATHINFO_EXTENSION) === 'part'; |
|
| 279 | - $targetExists = $this->file_exists($path2); |
|
| 280 | - $sameFodler = dirname($path1) === dirname($path2); |
|
| 281 | - |
|
| 282 | - if ($targetExists || ($sameFodler && !$isPartFile)) { |
|
| 283 | - if (!$this->isUpdatable('')) { |
|
| 284 | - return false; |
|
| 285 | - } |
|
| 286 | - } else { |
|
| 287 | - if (!$this->isCreatable('')) { |
|
| 288 | - return false; |
|
| 289 | - } |
|
| 290 | - } |
|
| 291 | - |
|
| 292 | - return $this->nonMaskedStorage->rename($this->getSourcePath($path1), $this->getSourcePath($path2)); |
|
| 293 | - } |
|
| 294 | - |
|
| 295 | - /** |
|
| 296 | - * return mount point of share, relative to data/user/files |
|
| 297 | - * |
|
| 298 | - * @return string |
|
| 299 | - */ |
|
| 300 | - public function getMountPoint() { |
|
| 301 | - return $this->superShare->getTarget(); |
|
| 302 | - } |
|
| 303 | - |
|
| 304 | - /** |
|
| 305 | - * @param string $path |
|
| 306 | - */ |
|
| 307 | - public function setMountPoint($path) { |
|
| 308 | - $this->superShare->setTarget($path); |
|
| 309 | - |
|
| 310 | - foreach ($this->groupedShares as $share) { |
|
| 311 | - $share->setTarget($path); |
|
| 312 | - } |
|
| 313 | - } |
|
| 314 | - |
|
| 315 | - /** |
|
| 316 | - * get the user who shared the file |
|
| 317 | - * |
|
| 318 | - * @return string |
|
| 319 | - */ |
|
| 320 | - public function getSharedFrom() { |
|
| 321 | - return $this->superShare->getShareOwner(); |
|
| 322 | - } |
|
| 323 | - |
|
| 324 | - /** |
|
| 325 | - * @return \OCP\Share\IShare |
|
| 326 | - */ |
|
| 327 | - public function getShare() { |
|
| 328 | - return $this->superShare; |
|
| 329 | - } |
|
| 330 | - |
|
| 331 | - /** |
|
| 332 | - * return share type, can be "file" or "folder" |
|
| 333 | - * |
|
| 334 | - * @return string |
|
| 335 | - */ |
|
| 336 | - public function getItemType() { |
|
| 337 | - return $this->superShare->getNodeType(); |
|
| 338 | - } |
|
| 339 | - |
|
| 340 | - public function getCache($path = '', $storage = null) { |
|
| 341 | - if ($this->cache) { |
|
| 342 | - return $this->cache; |
|
| 343 | - } |
|
| 344 | - if (!$storage) { |
|
| 345 | - $storage = $this; |
|
| 346 | - } |
|
| 347 | - $this->cache = new \OCA\Files_Sharing\Cache($storage, $this->getSourceRootInfo(), $this->superShare); |
|
| 348 | - return $this->cache; |
|
| 349 | - } |
|
| 350 | - |
|
| 351 | - public function getScanner($path = '', $storage = null) { |
|
| 352 | - if (!$storage) { |
|
| 353 | - $storage = $this; |
|
| 354 | - } |
|
| 355 | - return new \OCA\Files_Sharing\Scanner($storage); |
|
| 356 | - } |
|
| 357 | - |
|
| 358 | - public function getPropagator($storage = null) { |
|
| 359 | - if (isset($this->propagator)) { |
|
| 360 | - return $this->propagator; |
|
| 361 | - } |
|
| 362 | - |
|
| 363 | - if (!$storage) { |
|
| 364 | - $storage = $this; |
|
| 365 | - } |
|
| 366 | - $this->propagator = new \OCA\Files_Sharing\SharedPropagator($storage, \OC::$server->getDatabaseConnection()); |
|
| 367 | - return $this->propagator; |
|
| 368 | - } |
|
| 369 | - |
|
| 370 | - public function getOwner($path) { |
|
| 371 | - return $this->superShare->getShareOwner(); |
|
| 372 | - } |
|
| 373 | - |
|
| 374 | - /** |
|
| 375 | - * unshare complete storage, also the grouped shares |
|
| 376 | - * |
|
| 377 | - * @return bool |
|
| 378 | - */ |
|
| 379 | - public function unshareStorage() { |
|
| 380 | - foreach ($this->groupedShares as $share) { |
|
| 381 | - \OC::$server->getShareManager()->deleteFromSelf($share, $this->user); |
|
| 382 | - } |
|
| 383 | - return true; |
|
| 384 | - } |
|
| 385 | - |
|
| 386 | - /** |
|
| 387 | - * @param string $path |
|
| 388 | - * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE |
|
| 389 | - * @param \OCP\Lock\ILockingProvider $provider |
|
| 390 | - * @throws \OCP\Lock\LockedException |
|
| 391 | - */ |
|
| 392 | - public function acquireLock($path, $type, ILockingProvider $provider) { |
|
| 393 | - /** @var \OCP\Files\Storage $targetStorage */ |
|
| 394 | - list($targetStorage, $targetInternalPath) = $this->resolvePath($path); |
|
| 395 | - $targetStorage->acquireLock($targetInternalPath, $type, $provider); |
|
| 396 | - // lock the parent folders of the owner when locking the share as recipient |
|
| 397 | - if ($path === '') { |
|
| 398 | - $sourcePath = $this->ownerView->getPath($this->superShare->getNodeId()); |
|
| 399 | - $this->ownerView->lockFile(dirname($sourcePath), ILockingProvider::LOCK_SHARED, true); |
|
| 400 | - } |
|
| 401 | - } |
|
| 402 | - |
|
| 403 | - /** |
|
| 404 | - * @param string $path |
|
| 405 | - * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE |
|
| 406 | - * @param \OCP\Lock\ILockingProvider $provider |
|
| 407 | - */ |
|
| 408 | - public function releaseLock($path, $type, ILockingProvider $provider) { |
|
| 409 | - /** @var \OCP\Files\Storage $targetStorage */ |
|
| 410 | - list($targetStorage, $targetInternalPath) = $this->resolvePath($path); |
|
| 411 | - $targetStorage->releaseLock($targetInternalPath, $type, $provider); |
|
| 412 | - // unlock the parent folders of the owner when unlocking the share as recipient |
|
| 413 | - if ($path === '') { |
|
| 414 | - $sourcePath = $this->ownerView->getPath($this->superShare->getNodeId()); |
|
| 415 | - $this->ownerView->unlockFile(dirname($sourcePath), ILockingProvider::LOCK_SHARED, true); |
|
| 416 | - } |
|
| 417 | - } |
|
| 418 | - |
|
| 419 | - /** |
|
| 420 | - * @param string $path |
|
| 421 | - * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE |
|
| 422 | - * @param \OCP\Lock\ILockingProvider $provider |
|
| 423 | - */ |
|
| 424 | - public function changeLock($path, $type, ILockingProvider $provider) { |
|
| 425 | - /** @var \OCP\Files\Storage $targetStorage */ |
|
| 426 | - list($targetStorage, $targetInternalPath) = $this->resolvePath($path); |
|
| 427 | - $targetStorage->changeLock($targetInternalPath, $type, $provider); |
|
| 428 | - } |
|
| 429 | - |
|
| 430 | - /** |
|
| 431 | - * @return array [ available, last_checked ] |
|
| 432 | - */ |
|
| 433 | - public function getAvailability() { |
|
| 434 | - // shares do not participate in availability logic |
|
| 435 | - return [ |
|
| 436 | - 'available' => true, |
|
| 437 | - 'last_checked' => 0 |
|
| 438 | - ]; |
|
| 439 | - } |
|
| 440 | - |
|
| 441 | - /** |
|
| 442 | - * @param bool $available |
|
| 443 | - */ |
|
| 444 | - public function setAvailability($available) { |
|
| 445 | - // shares do not participate in availability logic |
|
| 446 | - } |
|
| 447 | - |
|
| 448 | - public function getSourceStorage() { |
|
| 449 | - $this->init(); |
|
| 450 | - return $this->nonMaskedStorage; |
|
| 451 | - } |
|
| 452 | - |
|
| 453 | - public function getWrapperStorage() { |
|
| 454 | - $this->init(); |
|
| 455 | - return $this->storage; |
|
| 456 | - } |
|
| 457 | - |
|
| 458 | - public function file_get_contents($path) { |
|
| 459 | - $info = [ |
|
| 460 | - 'target' => $this->getMountPoint() . '/' . $path, |
|
| 461 | - 'source' => $this->getSourcePath($path), |
|
| 462 | - ]; |
|
| 463 | - \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_get_contents', $info); |
|
| 464 | - return parent::file_get_contents($path); |
|
| 465 | - } |
|
| 466 | - |
|
| 467 | - public function file_put_contents($path, $data) { |
|
| 468 | - $info = [ |
|
| 469 | - 'target' => $this->getMountPoint() . '/' . $path, |
|
| 470 | - 'source' => $this->getSourcePath($path), |
|
| 471 | - ]; |
|
| 472 | - \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_put_contents', $info); |
|
| 473 | - return parent::file_put_contents($path, $data); |
|
| 474 | - } |
|
| 475 | - |
|
| 476 | - public function setMountOptions(array $options) { |
|
| 477 | - $this->mountOptions = $options; |
|
| 478 | - } |
|
| 50 | + /** @var \OCP\Share\IShare */ |
|
| 51 | + private $superShare; |
|
| 52 | + |
|
| 53 | + /** @var \OCP\Share\IShare[] */ |
|
| 54 | + private $groupedShares; |
|
| 55 | + |
|
| 56 | + /** |
|
| 57 | + * @var \OC\Files\View |
|
| 58 | + */ |
|
| 59 | + private $ownerView; |
|
| 60 | + |
|
| 61 | + private $initialized = false; |
|
| 62 | + |
|
| 63 | + /** |
|
| 64 | + * @var ICacheEntry |
|
| 65 | + */ |
|
| 66 | + private $sourceRootInfo; |
|
| 67 | + |
|
| 68 | + /** @var string */ |
|
| 69 | + private $user; |
|
| 70 | + |
|
| 71 | + /** |
|
| 72 | + * @var \OCP\ILogger |
|
| 73 | + */ |
|
| 74 | + private $logger; |
|
| 75 | + |
|
| 76 | + /** @var IStorage */ |
|
| 77 | + private $nonMaskedStorage; |
|
| 78 | + |
|
| 79 | + private $options; |
|
| 80 | + |
|
| 81 | + public function __construct($arguments) { |
|
| 82 | + $this->ownerView = $arguments['ownerView']; |
|
| 83 | + $this->logger = \OC::$server->getLogger(); |
|
| 84 | + |
|
| 85 | + $this->superShare = $arguments['superShare']; |
|
| 86 | + $this->groupedShares = $arguments['groupedShares']; |
|
| 87 | + |
|
| 88 | + $this->user = $arguments['user']; |
|
| 89 | + |
|
| 90 | + parent::__construct([ |
|
| 91 | + 'storage' => null, |
|
| 92 | + 'root' => null, |
|
| 93 | + ]); |
|
| 94 | + } |
|
| 95 | + |
|
| 96 | + /** |
|
| 97 | + * @return ICacheEntry |
|
| 98 | + */ |
|
| 99 | + private function getSourceRootInfo() { |
|
| 100 | + if (is_null($this->sourceRootInfo)) { |
|
| 101 | + if (is_null($this->superShare->getNodeCacheEntry())) { |
|
| 102 | + $this->sourceRootInfo = $this->nonMaskedStorage->getCache()->get($this->rootPath); |
|
| 103 | + } else { |
|
| 104 | + $this->sourceRootInfo = $this->superShare->getNodeCacheEntry(); |
|
| 105 | + } |
|
| 106 | + } |
|
| 107 | + return $this->sourceRootInfo; |
|
| 108 | + } |
|
| 109 | + |
|
| 110 | + private function init() { |
|
| 111 | + if ($this->initialized) { |
|
| 112 | + return; |
|
| 113 | + } |
|
| 114 | + $this->initialized = true; |
|
| 115 | + try { |
|
| 116 | + Filesystem::initMountPoints($this->superShare->getShareOwner()); |
|
| 117 | + $sourcePath = $this->ownerView->getPath($this->superShare->getNodeId()); |
|
| 118 | + list($this->nonMaskedStorage, $this->rootPath) = $this->ownerView->resolvePath($sourcePath); |
|
| 119 | + $this->storage = new PermissionsMask([ |
|
| 120 | + 'storage' => $this->nonMaskedStorage, |
|
| 121 | + 'mask' => $this->superShare->getPermissions() |
|
| 122 | + ]); |
|
| 123 | + } catch (NotFoundException $e) { |
|
| 124 | + $this->storage = new FailedStorage(['exception' => $e]); |
|
| 125 | + $this->rootPath = ''; |
|
| 126 | + } catch (\Exception $e) { |
|
| 127 | + $this->storage = new FailedStorage(['exception' => $e]); |
|
| 128 | + $this->rootPath = ''; |
|
| 129 | + $this->logger->logException($e); |
|
| 130 | + } |
|
| 131 | + } |
|
| 132 | + |
|
| 133 | + /** |
|
| 134 | + * @inheritdoc |
|
| 135 | + */ |
|
| 136 | + public function instanceOfStorage($class) { |
|
| 137 | + if ($class === '\OC\Files\Storage\Common') { |
|
| 138 | + return true; |
|
| 139 | + } |
|
| 140 | + if (in_array($class, ['\OC\Files\Storage\Home', '\OC\Files\ObjectStore\HomeObjectStoreStorage'])) { |
|
| 141 | + return false; |
|
| 142 | + } |
|
| 143 | + return parent::instanceOfStorage($class); |
|
| 144 | + } |
|
| 145 | + |
|
| 146 | + /** |
|
| 147 | + * @return string |
|
| 148 | + */ |
|
| 149 | + public function getShareId() { |
|
| 150 | + return $this->superShare->getId(); |
|
| 151 | + } |
|
| 152 | + |
|
| 153 | + private function isValid() { |
|
| 154 | + return $this->getSourceRootInfo() && ($this->getSourceRootInfo()->getPermissions() & Constants::PERMISSION_SHARE) === Constants::PERMISSION_SHARE; |
|
| 155 | + } |
|
| 156 | + |
|
| 157 | + /** |
|
| 158 | + * get id of the mount point |
|
| 159 | + * |
|
| 160 | + * @return string |
|
| 161 | + */ |
|
| 162 | + public function getId() { |
|
| 163 | + return 'shared::' . $this->getMountPoint(); |
|
| 164 | + } |
|
| 165 | + |
|
| 166 | + /** |
|
| 167 | + * Get the permissions granted for a shared file |
|
| 168 | + * |
|
| 169 | + * @param string $target Shared target file path |
|
| 170 | + * @return int CRUDS permissions granted |
|
| 171 | + */ |
|
| 172 | + public function getPermissions($target = '') { |
|
| 173 | + if (!$this->isValid()) { |
|
| 174 | + return 0; |
|
| 175 | + } |
|
| 176 | + $permissions = $this->superShare->getPermissions(); |
|
| 177 | + // part files and the mount point always have delete permissions |
|
| 178 | + if ($target === '' || pathinfo($target, PATHINFO_EXTENSION) === 'part') { |
|
| 179 | + $permissions |= \OCP\Constants::PERMISSION_DELETE; |
|
| 180 | + } |
|
| 181 | + |
|
| 182 | + if (\OCP\Util::isSharingDisabledForUser()) { |
|
| 183 | + $permissions &= ~\OCP\Constants::PERMISSION_SHARE; |
|
| 184 | + } |
|
| 185 | + |
|
| 186 | + return $permissions; |
|
| 187 | + } |
|
| 188 | + |
|
| 189 | + public function isCreatable($path) { |
|
| 190 | + return ($this->getPermissions($path) & \OCP\Constants::PERMISSION_CREATE); |
|
| 191 | + } |
|
| 192 | + |
|
| 193 | + public function isReadable($path) { |
|
| 194 | + if (!$this->isValid()) { |
|
| 195 | + return false; |
|
| 196 | + } |
|
| 197 | + if (!$this->file_exists($path)) { |
|
| 198 | + return false; |
|
| 199 | + } |
|
| 200 | + /** @var IStorage $storage */ |
|
| 201 | + /** @var string $internalPath */ |
|
| 202 | + list($storage, $internalPath) = $this->resolvePath($path); |
|
| 203 | + return $storage->isReadable($internalPath); |
|
| 204 | + } |
|
| 205 | + |
|
| 206 | + public function isUpdatable($path) { |
|
| 207 | + return ($this->getPermissions($path) & \OCP\Constants::PERMISSION_UPDATE); |
|
| 208 | + } |
|
| 209 | + |
|
| 210 | + public function isDeletable($path) { |
|
| 211 | + return ($this->getPermissions($path) & \OCP\Constants::PERMISSION_DELETE); |
|
| 212 | + } |
|
| 213 | + |
|
| 214 | + public function isSharable($path) { |
|
| 215 | + if (\OCP\Util::isSharingDisabledForUser() || !\OC\Share\Share::isResharingAllowed()) { |
|
| 216 | + return false; |
|
| 217 | + } |
|
| 218 | + return ($this->getPermissions($path) & \OCP\Constants::PERMISSION_SHARE); |
|
| 219 | + } |
|
| 220 | + |
|
| 221 | + public function fopen($path, $mode) { |
|
| 222 | + if ($source = $this->getSourcePath($path)) { |
|
| 223 | + switch ($mode) { |
|
| 224 | + case 'r+': |
|
| 225 | + case 'rb+': |
|
| 226 | + case 'w+': |
|
| 227 | + case 'wb+': |
|
| 228 | + case 'x+': |
|
| 229 | + case 'xb+': |
|
| 230 | + case 'a+': |
|
| 231 | + case 'ab+': |
|
| 232 | + case 'w': |
|
| 233 | + case 'wb': |
|
| 234 | + case 'x': |
|
| 235 | + case 'xb': |
|
| 236 | + case 'a': |
|
| 237 | + case 'ab': |
|
| 238 | + $creatable = $this->isCreatable($path); |
|
| 239 | + $updatable = $this->isUpdatable($path); |
|
| 240 | + // if neither permissions given, no need to continue |
|
| 241 | + if (!$creatable && !$updatable) { |
|
| 242 | + return false; |
|
| 243 | + } |
|
| 244 | + |
|
| 245 | + $exists = $this->file_exists($path); |
|
| 246 | + // if a file exists, updatable permissions are required |
|
| 247 | + if ($exists && !$updatable) { |
|
| 248 | + return false; |
|
| 249 | + } |
|
| 250 | + |
|
| 251 | + // part file is allowed if !$creatable but the final file is $updatable |
|
| 252 | + if (pathinfo($path, PATHINFO_EXTENSION) !== 'part') { |
|
| 253 | + if (!$exists && !$creatable) { |
|
| 254 | + return false; |
|
| 255 | + } |
|
| 256 | + } |
|
| 257 | + } |
|
| 258 | + $info = array( |
|
| 259 | + 'target' => $this->getMountPoint() . $path, |
|
| 260 | + 'source' => $source, |
|
| 261 | + 'mode' => $mode, |
|
| 262 | + ); |
|
| 263 | + \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'fopen', $info); |
|
| 264 | + return $this->nonMaskedStorage->fopen($this->getSourcePath($path), $mode); |
|
| 265 | + } |
|
| 266 | + return false; |
|
| 267 | + } |
|
| 268 | + |
|
| 269 | + /** |
|
| 270 | + * see http://php.net/manual/en/function.rename.php |
|
| 271 | + * |
|
| 272 | + * @param string $path1 |
|
| 273 | + * @param string $path2 |
|
| 274 | + * @return bool |
|
| 275 | + */ |
|
| 276 | + public function rename($path1, $path2) { |
|
| 277 | + $this->init(); |
|
| 278 | + $isPartFile = pathinfo($path1, PATHINFO_EXTENSION) === 'part'; |
|
| 279 | + $targetExists = $this->file_exists($path2); |
|
| 280 | + $sameFodler = dirname($path1) === dirname($path2); |
|
| 281 | + |
|
| 282 | + if ($targetExists || ($sameFodler && !$isPartFile)) { |
|
| 283 | + if (!$this->isUpdatable('')) { |
|
| 284 | + return false; |
|
| 285 | + } |
|
| 286 | + } else { |
|
| 287 | + if (!$this->isCreatable('')) { |
|
| 288 | + return false; |
|
| 289 | + } |
|
| 290 | + } |
|
| 291 | + |
|
| 292 | + return $this->nonMaskedStorage->rename($this->getSourcePath($path1), $this->getSourcePath($path2)); |
|
| 293 | + } |
|
| 294 | + |
|
| 295 | + /** |
|
| 296 | + * return mount point of share, relative to data/user/files |
|
| 297 | + * |
|
| 298 | + * @return string |
|
| 299 | + */ |
|
| 300 | + public function getMountPoint() { |
|
| 301 | + return $this->superShare->getTarget(); |
|
| 302 | + } |
|
| 303 | + |
|
| 304 | + /** |
|
| 305 | + * @param string $path |
|
| 306 | + */ |
|
| 307 | + public function setMountPoint($path) { |
|
| 308 | + $this->superShare->setTarget($path); |
|
| 309 | + |
|
| 310 | + foreach ($this->groupedShares as $share) { |
|
| 311 | + $share->setTarget($path); |
|
| 312 | + } |
|
| 313 | + } |
|
| 314 | + |
|
| 315 | + /** |
|
| 316 | + * get the user who shared the file |
|
| 317 | + * |
|
| 318 | + * @return string |
|
| 319 | + */ |
|
| 320 | + public function getSharedFrom() { |
|
| 321 | + return $this->superShare->getShareOwner(); |
|
| 322 | + } |
|
| 323 | + |
|
| 324 | + /** |
|
| 325 | + * @return \OCP\Share\IShare |
|
| 326 | + */ |
|
| 327 | + public function getShare() { |
|
| 328 | + return $this->superShare; |
|
| 329 | + } |
|
| 330 | + |
|
| 331 | + /** |
|
| 332 | + * return share type, can be "file" or "folder" |
|
| 333 | + * |
|
| 334 | + * @return string |
|
| 335 | + */ |
|
| 336 | + public function getItemType() { |
|
| 337 | + return $this->superShare->getNodeType(); |
|
| 338 | + } |
|
| 339 | + |
|
| 340 | + public function getCache($path = '', $storage = null) { |
|
| 341 | + if ($this->cache) { |
|
| 342 | + return $this->cache; |
|
| 343 | + } |
|
| 344 | + if (!$storage) { |
|
| 345 | + $storage = $this; |
|
| 346 | + } |
|
| 347 | + $this->cache = new \OCA\Files_Sharing\Cache($storage, $this->getSourceRootInfo(), $this->superShare); |
|
| 348 | + return $this->cache; |
|
| 349 | + } |
|
| 350 | + |
|
| 351 | + public function getScanner($path = '', $storage = null) { |
|
| 352 | + if (!$storage) { |
|
| 353 | + $storage = $this; |
|
| 354 | + } |
|
| 355 | + return new \OCA\Files_Sharing\Scanner($storage); |
|
| 356 | + } |
|
| 357 | + |
|
| 358 | + public function getPropagator($storage = null) { |
|
| 359 | + if (isset($this->propagator)) { |
|
| 360 | + return $this->propagator; |
|
| 361 | + } |
|
| 362 | + |
|
| 363 | + if (!$storage) { |
|
| 364 | + $storage = $this; |
|
| 365 | + } |
|
| 366 | + $this->propagator = new \OCA\Files_Sharing\SharedPropagator($storage, \OC::$server->getDatabaseConnection()); |
|
| 367 | + return $this->propagator; |
|
| 368 | + } |
|
| 369 | + |
|
| 370 | + public function getOwner($path) { |
|
| 371 | + return $this->superShare->getShareOwner(); |
|
| 372 | + } |
|
| 373 | + |
|
| 374 | + /** |
|
| 375 | + * unshare complete storage, also the grouped shares |
|
| 376 | + * |
|
| 377 | + * @return bool |
|
| 378 | + */ |
|
| 379 | + public function unshareStorage() { |
|
| 380 | + foreach ($this->groupedShares as $share) { |
|
| 381 | + \OC::$server->getShareManager()->deleteFromSelf($share, $this->user); |
|
| 382 | + } |
|
| 383 | + return true; |
|
| 384 | + } |
|
| 385 | + |
|
| 386 | + /** |
|
| 387 | + * @param string $path |
|
| 388 | + * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE |
|
| 389 | + * @param \OCP\Lock\ILockingProvider $provider |
|
| 390 | + * @throws \OCP\Lock\LockedException |
|
| 391 | + */ |
|
| 392 | + public function acquireLock($path, $type, ILockingProvider $provider) { |
|
| 393 | + /** @var \OCP\Files\Storage $targetStorage */ |
|
| 394 | + list($targetStorage, $targetInternalPath) = $this->resolvePath($path); |
|
| 395 | + $targetStorage->acquireLock($targetInternalPath, $type, $provider); |
|
| 396 | + // lock the parent folders of the owner when locking the share as recipient |
|
| 397 | + if ($path === '') { |
|
| 398 | + $sourcePath = $this->ownerView->getPath($this->superShare->getNodeId()); |
|
| 399 | + $this->ownerView->lockFile(dirname($sourcePath), ILockingProvider::LOCK_SHARED, true); |
|
| 400 | + } |
|
| 401 | + } |
|
| 402 | + |
|
| 403 | + /** |
|
| 404 | + * @param string $path |
|
| 405 | + * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE |
|
| 406 | + * @param \OCP\Lock\ILockingProvider $provider |
|
| 407 | + */ |
|
| 408 | + public function releaseLock($path, $type, ILockingProvider $provider) { |
|
| 409 | + /** @var \OCP\Files\Storage $targetStorage */ |
|
| 410 | + list($targetStorage, $targetInternalPath) = $this->resolvePath($path); |
|
| 411 | + $targetStorage->releaseLock($targetInternalPath, $type, $provider); |
|
| 412 | + // unlock the parent folders of the owner when unlocking the share as recipient |
|
| 413 | + if ($path === '') { |
|
| 414 | + $sourcePath = $this->ownerView->getPath($this->superShare->getNodeId()); |
|
| 415 | + $this->ownerView->unlockFile(dirname($sourcePath), ILockingProvider::LOCK_SHARED, true); |
|
| 416 | + } |
|
| 417 | + } |
|
| 418 | + |
|
| 419 | + /** |
|
| 420 | + * @param string $path |
|
| 421 | + * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE |
|
| 422 | + * @param \OCP\Lock\ILockingProvider $provider |
|
| 423 | + */ |
|
| 424 | + public function changeLock($path, $type, ILockingProvider $provider) { |
|
| 425 | + /** @var \OCP\Files\Storage $targetStorage */ |
|
| 426 | + list($targetStorage, $targetInternalPath) = $this->resolvePath($path); |
|
| 427 | + $targetStorage->changeLock($targetInternalPath, $type, $provider); |
|
| 428 | + } |
|
| 429 | + |
|
| 430 | + /** |
|
| 431 | + * @return array [ available, last_checked ] |
|
| 432 | + */ |
|
| 433 | + public function getAvailability() { |
|
| 434 | + // shares do not participate in availability logic |
|
| 435 | + return [ |
|
| 436 | + 'available' => true, |
|
| 437 | + 'last_checked' => 0 |
|
| 438 | + ]; |
|
| 439 | + } |
|
| 440 | + |
|
| 441 | + /** |
|
| 442 | + * @param bool $available |
|
| 443 | + */ |
|
| 444 | + public function setAvailability($available) { |
|
| 445 | + // shares do not participate in availability logic |
|
| 446 | + } |
|
| 447 | + |
|
| 448 | + public function getSourceStorage() { |
|
| 449 | + $this->init(); |
|
| 450 | + return $this->nonMaskedStorage; |
|
| 451 | + } |
|
| 452 | + |
|
| 453 | + public function getWrapperStorage() { |
|
| 454 | + $this->init(); |
|
| 455 | + return $this->storage; |
|
| 456 | + } |
|
| 457 | + |
|
| 458 | + public function file_get_contents($path) { |
|
| 459 | + $info = [ |
|
| 460 | + 'target' => $this->getMountPoint() . '/' . $path, |
|
| 461 | + 'source' => $this->getSourcePath($path), |
|
| 462 | + ]; |
|
| 463 | + \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_get_contents', $info); |
|
| 464 | + return parent::file_get_contents($path); |
|
| 465 | + } |
|
| 466 | + |
|
| 467 | + public function file_put_contents($path, $data) { |
|
| 468 | + $info = [ |
|
| 469 | + 'target' => $this->getMountPoint() . '/' . $path, |
|
| 470 | + 'source' => $this->getSourcePath($path), |
|
| 471 | + ]; |
|
| 472 | + \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_put_contents', $info); |
|
| 473 | + return parent::file_put_contents($path, $data); |
|
| 474 | + } |
|
| 475 | + |
|
| 476 | + public function setMountOptions(array $options) { |
|
| 477 | + $this->mountOptions = $options; |
|
| 478 | + } |
|
| 479 | 479 | } |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | * @return string |
| 161 | 161 | */ |
| 162 | 162 | public function getId() { |
| 163 | - return 'shared::' . $this->getMountPoint(); |
|
| 163 | + return 'shared::'.$this->getMountPoint(); |
|
| 164 | 164 | } |
| 165 | 165 | |
| 166 | 166 | /** |
@@ -256,7 +256,7 @@ discard block |
||
| 256 | 256 | } |
| 257 | 257 | } |
| 258 | 258 | $info = array( |
| 259 | - 'target' => $this->getMountPoint() . $path, |
|
| 259 | + 'target' => $this->getMountPoint().$path, |
|
| 260 | 260 | 'source' => $source, |
| 261 | 261 | 'mode' => $mode, |
| 262 | 262 | ); |
@@ -457,7 +457,7 @@ discard block |
||
| 457 | 457 | |
| 458 | 458 | public function file_get_contents($path) { |
| 459 | 459 | $info = [ |
| 460 | - 'target' => $this->getMountPoint() . '/' . $path, |
|
| 460 | + 'target' => $this->getMountPoint().'/'.$path, |
|
| 461 | 461 | 'source' => $this->getSourcePath($path), |
| 462 | 462 | ]; |
| 463 | 463 | \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_get_contents', $info); |
@@ -466,7 +466,7 @@ discard block |
||
| 466 | 466 | |
| 467 | 467 | public function file_put_contents($path, $data) { |
| 468 | 468 | $info = [ |
| 469 | - 'target' => $this->getMountPoint() . '/' . $path, |
|
| 469 | + 'target' => $this->getMountPoint().'/'.$path, |
|
| 470 | 470 | 'source' => $this->getSourcePath($path), |
| 471 | 471 | ]; |
| 472 | 472 | \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_put_contents', $info); |
@@ -225,7 +225,7 @@ |
||
| 225 | 225 | /** |
| 226 | 226 | * creates a array with all user data |
| 227 | 227 | * |
| 228 | - * @param $userId |
|
| 228 | + * @param string $userId |
|
| 229 | 229 | * @return array |
| 230 | 230 | * @throws OCSException |
| 231 | 231 | */ |
@@ -46,670 +46,670 @@ |
||
| 46 | 46 | |
| 47 | 47 | class UsersController extends OCSController { |
| 48 | 48 | |
| 49 | - /** @var IUserManager */ |
|
| 50 | - private $userManager; |
|
| 51 | - /** @var IConfig */ |
|
| 52 | - private $config; |
|
| 53 | - /** @var IGroupManager|\OC\Group\Manager */ // FIXME Requires a method that is not on the interface |
|
| 54 | - private $groupManager; |
|
| 55 | - /** @var IUserSession */ |
|
| 56 | - private $userSession; |
|
| 57 | - /** @var AccountManager */ |
|
| 58 | - private $accountManager; |
|
| 59 | - /** @var ILogger */ |
|
| 60 | - private $logger; |
|
| 61 | - |
|
| 62 | - /** |
|
| 63 | - * @param string $appName |
|
| 64 | - * @param IRequest $request |
|
| 65 | - * @param IUserManager $userManager |
|
| 66 | - * @param IConfig $config |
|
| 67 | - * @param IGroupManager $groupManager |
|
| 68 | - * @param IUserSession $userSession |
|
| 69 | - * @param AccountManager $accountManager |
|
| 70 | - * @param ILogger $logger |
|
| 71 | - */ |
|
| 72 | - public function __construct($appName, |
|
| 73 | - IRequest $request, |
|
| 74 | - IUserManager $userManager, |
|
| 75 | - IConfig $config, |
|
| 76 | - IGroupManager $groupManager, |
|
| 77 | - IUserSession $userSession, |
|
| 78 | - AccountManager $accountManager, |
|
| 79 | - ILogger $logger) { |
|
| 80 | - parent::__construct($appName, $request); |
|
| 81 | - |
|
| 82 | - $this->userManager = $userManager; |
|
| 83 | - $this->config = $config; |
|
| 84 | - $this->groupManager = $groupManager; |
|
| 85 | - $this->userSession = $userSession; |
|
| 86 | - $this->accountManager = $accountManager; |
|
| 87 | - $this->logger = $logger; |
|
| 88 | - } |
|
| 89 | - |
|
| 90 | - /** |
|
| 91 | - * @NoAdminRequired |
|
| 92 | - * |
|
| 93 | - * returns a list of users |
|
| 94 | - * |
|
| 95 | - * @param string $search |
|
| 96 | - * @param int $limit |
|
| 97 | - * @param int $offset |
|
| 98 | - * @return DataResponse |
|
| 99 | - */ |
|
| 100 | - public function getUsers($search = '', $limit = null, $offset = null) { |
|
| 101 | - $user = $this->userSession->getUser(); |
|
| 102 | - $users = []; |
|
| 103 | - |
|
| 104 | - // Admin? Or SubAdmin? |
|
| 105 | - $uid = $user->getUID(); |
|
| 106 | - $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 107 | - if($this->groupManager->isAdmin($uid)){ |
|
| 108 | - $users = $this->userManager->search($search, $limit, $offset); |
|
| 109 | - } else if ($subAdminManager->isSubAdmin($user)) { |
|
| 110 | - $subAdminOfGroups = $subAdminManager->getSubAdminsGroups($user); |
|
| 111 | - foreach ($subAdminOfGroups as $key => $group) { |
|
| 112 | - $subAdminOfGroups[$key] = $group->getGID(); |
|
| 113 | - } |
|
| 114 | - |
|
| 115 | - if($offset === null) { |
|
| 116 | - $offset = 0; |
|
| 117 | - } |
|
| 118 | - |
|
| 119 | - $users = []; |
|
| 120 | - foreach ($subAdminOfGroups as $group) { |
|
| 121 | - $users = array_merge($users, $this->groupManager->displayNamesInGroup($group, $search)); |
|
| 122 | - } |
|
| 123 | - |
|
| 124 | - $users = array_slice($users, $offset, $limit); |
|
| 125 | - } |
|
| 126 | - |
|
| 127 | - $users = array_keys($users); |
|
| 128 | - |
|
| 129 | - return new DataResponse([ |
|
| 130 | - 'users' => $users |
|
| 131 | - ]); |
|
| 132 | - } |
|
| 133 | - |
|
| 134 | - /** |
|
| 135 | - * @PasswordConfirmationRequired |
|
| 136 | - * @NoAdminRequired |
|
| 137 | - * |
|
| 138 | - * @param string $userid |
|
| 139 | - * @param string $password |
|
| 140 | - * @param array $groups |
|
| 141 | - * @return DataResponse |
|
| 142 | - * @throws OCSException |
|
| 143 | - */ |
|
| 144 | - public function addUser($userid, $password, $groups = null) { |
|
| 145 | - $user = $this->userSession->getUser(); |
|
| 146 | - $isAdmin = $this->groupManager->isAdmin($user->getUID()); |
|
| 147 | - $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 148 | - |
|
| 149 | - if($this->userManager->userExists($userid)) { |
|
| 150 | - $this->logger->error('Failed addUser attempt: User already exists.', ['app' => 'ocs_api']); |
|
| 151 | - throw new OCSException('User already exists', 102); |
|
| 152 | - } |
|
| 153 | - |
|
| 154 | - if(is_array($groups)) { |
|
| 155 | - foreach ($groups as $group) { |
|
| 156 | - if(!$this->groupManager->groupExists($group)) { |
|
| 157 | - throw new OCSException('group '.$group.' does not exist', 104); |
|
| 158 | - } |
|
| 159 | - if(!$isAdmin && !$subAdminManager->isSubAdminofGroup($user, $this->groupManager->get($group))) { |
|
| 160 | - throw new OCSException('insufficient privileges for group '. $group, 105); |
|
| 161 | - } |
|
| 162 | - } |
|
| 163 | - } else { |
|
| 164 | - if(!$isAdmin) { |
|
| 165 | - throw new OCSException('no group specified (required for subadmins)', 106); |
|
| 166 | - } |
|
| 167 | - } |
|
| 168 | - |
|
| 169 | - try { |
|
| 170 | - $newUser = $this->userManager->createUser($userid, $password); |
|
| 171 | - $this->logger->info('Successful addUser call with userid: '.$userid, ['app' => 'ocs_api']); |
|
| 172 | - |
|
| 173 | - if (is_array($groups)) { |
|
| 174 | - foreach ($groups as $group) { |
|
| 175 | - $this->groupManager->get($group)->addUser($newUser); |
|
| 176 | - $this->logger->info('Added userid '.$userid.' to group '.$group, ['app' => 'ocs_api']); |
|
| 177 | - } |
|
| 178 | - } |
|
| 179 | - return new DataResponse(); |
|
| 180 | - } catch (\Exception $e) { |
|
| 181 | - $this->logger->error('Failed addUser attempt with exception: '.$e->getMessage(), ['app' => 'ocs_api']); |
|
| 182 | - throw new OCSException('Bad request', 101); |
|
| 183 | - } |
|
| 184 | - } |
|
| 185 | - |
|
| 186 | - /** |
|
| 187 | - * @NoAdminRequired |
|
| 188 | - * @NoSubAdminRequired |
|
| 189 | - * |
|
| 190 | - * gets user info |
|
| 191 | - * |
|
| 192 | - * @param string $userId |
|
| 193 | - * @return DataResponse |
|
| 194 | - * @throws OCSException |
|
| 195 | - */ |
|
| 196 | - public function getUser($userId) { |
|
| 197 | - $data = $this->getUserData($userId); |
|
| 198 | - return new DataResponse($data); |
|
| 199 | - } |
|
| 200 | - |
|
| 201 | - /** |
|
| 202 | - * @NoAdminRequired |
|
| 203 | - * @NoSubAdminRequired |
|
| 204 | - * |
|
| 205 | - * gets user info from the currently logged in user |
|
| 206 | - * |
|
| 207 | - * @return DataResponse |
|
| 208 | - * @throws OCSException |
|
| 209 | - */ |
|
| 210 | - public function getCurrentUser() { |
|
| 211 | - $user = $this->userSession->getUser(); |
|
| 212 | - if ($user) { |
|
| 213 | - $data = $this->getUserData($user->getUID()); |
|
| 214 | - // rename "displayname" to "display-name" only for this call to keep |
|
| 215 | - // the API stable. |
|
| 216 | - $data['display-name'] = $data['displayname']; |
|
| 217 | - unset($data['displayname']); |
|
| 218 | - return new DataResponse($data); |
|
| 219 | - |
|
| 220 | - } |
|
| 221 | - |
|
| 222 | - throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 223 | - } |
|
| 224 | - |
|
| 225 | - /** |
|
| 226 | - * creates a array with all user data |
|
| 227 | - * |
|
| 228 | - * @param $userId |
|
| 229 | - * @return array |
|
| 230 | - * @throws OCSException |
|
| 231 | - */ |
|
| 232 | - protected function getUserData($userId) { |
|
| 233 | - $currentLoggedInUser = $this->userSession->getUser(); |
|
| 234 | - |
|
| 235 | - $data = []; |
|
| 236 | - |
|
| 237 | - // Check if the target user exists |
|
| 238 | - $targetUserObject = $this->userManager->get($userId); |
|
| 239 | - if($targetUserObject === null) { |
|
| 240 | - throw new OCSException('The requested user could not be found', \OCP\API::RESPOND_NOT_FOUND); |
|
| 241 | - } |
|
| 242 | - |
|
| 243 | - // Admin? Or SubAdmin? |
|
| 244 | - if($this->groupManager->isAdmin($currentLoggedInUser->getUID()) |
|
| 245 | - || $this->groupManager->getSubAdmin()->isUserAccessible($currentLoggedInUser, $targetUserObject)) { |
|
| 246 | - $data['enabled'] = $this->config->getUserValue($userId, 'core', 'enabled', 'true'); |
|
| 247 | - } else { |
|
| 248 | - // Check they are looking up themselves |
|
| 249 | - if($currentLoggedInUser->getUID() !== $userId) { |
|
| 250 | - throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 251 | - } |
|
| 252 | - } |
|
| 253 | - |
|
| 254 | - $userAccount = $this->accountManager->getUser($targetUserObject); |
|
| 255 | - |
|
| 256 | - // Find the data |
|
| 257 | - $data['id'] = $targetUserObject->getUID(); |
|
| 258 | - $data['quota'] = $this->fillStorageInfo($userId); |
|
| 259 | - $data['email'] = $targetUserObject->getEMailAddress(); |
|
| 260 | - $data['displayname'] = $targetUserObject->getDisplayName(); |
|
| 261 | - $data['phone'] = $userAccount[\OC\Accounts\AccountManager::PROPERTY_PHONE]['value']; |
|
| 262 | - $data['address'] = $userAccount[\OC\Accounts\AccountManager::PROPERTY_ADDRESS]['value']; |
|
| 263 | - $data['webpage'] = $userAccount[\OC\Accounts\AccountManager::PROPERTY_WEBSITE]['value']; |
|
| 264 | - $data['twitter'] = $userAccount[\OC\Accounts\AccountManager::PROPERTY_TWITTER]['value']; |
|
| 265 | - |
|
| 266 | - return $data; |
|
| 267 | - } |
|
| 268 | - |
|
| 269 | - /** |
|
| 270 | - * @NoAdminRequired |
|
| 271 | - * @NoSubAdminRequired |
|
| 272 | - * @PasswordConfirmationRequired |
|
| 273 | - * |
|
| 274 | - * edit users |
|
| 275 | - * |
|
| 276 | - * @param string $userId |
|
| 277 | - * @param string $key |
|
| 278 | - * @param string $value |
|
| 279 | - * @return DataResponse |
|
| 280 | - * @throws OCSException |
|
| 281 | - * @throws OCSForbiddenException |
|
| 282 | - */ |
|
| 283 | - public function editUser($userId, $key, $value) { |
|
| 284 | - $currentLoggedInUser = $this->userSession->getUser(); |
|
| 285 | - |
|
| 286 | - $targetUser = $this->userManager->get($userId); |
|
| 287 | - if($targetUser === null) { |
|
| 288 | - throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 289 | - } |
|
| 290 | - |
|
| 291 | - $permittedFields = []; |
|
| 292 | - if($userId === $currentLoggedInUser->getUID()) { |
|
| 293 | - // Editing self (display, email) |
|
| 294 | - $permittedFields[] = 'display'; |
|
| 295 | - $permittedFields[] = 'email'; |
|
| 296 | - $permittedFields[] = 'password'; |
|
| 297 | - // If admin they can edit their own quota |
|
| 298 | - if($this->groupManager->isAdmin($currentLoggedInUser->getUID())) { |
|
| 299 | - $permittedFields[] = 'quota'; |
|
| 300 | - } |
|
| 301 | - } else { |
|
| 302 | - // Check if admin / subadmin |
|
| 303 | - $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 304 | - if($subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser) |
|
| 305 | - || $this->groupManager->isAdmin($currentLoggedInUser->getUID())) { |
|
| 306 | - // They have permissions over the user |
|
| 307 | - $permittedFields[] = 'display'; |
|
| 308 | - $permittedFields[] = 'quota'; |
|
| 309 | - $permittedFields[] = 'password'; |
|
| 310 | - $permittedFields[] = 'email'; |
|
| 311 | - } else { |
|
| 312 | - // No rights |
|
| 313 | - throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 314 | - } |
|
| 315 | - } |
|
| 316 | - // Check if permitted to edit this field |
|
| 317 | - if(!in_array($key, $permittedFields)) { |
|
| 318 | - throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 319 | - } |
|
| 320 | - // Process the edit |
|
| 321 | - switch($key) { |
|
| 322 | - case 'display': |
|
| 323 | - $targetUser->setDisplayName($value); |
|
| 324 | - break; |
|
| 325 | - case 'quota': |
|
| 326 | - $quota = $value; |
|
| 327 | - if($quota !== 'none' && $quota !== 'default') { |
|
| 328 | - if (is_numeric($quota)) { |
|
| 329 | - $quota = (float) $quota; |
|
| 330 | - } else { |
|
| 331 | - $quota = \OCP\Util::computerFileSize($quota); |
|
| 332 | - } |
|
| 333 | - if ($quota === false) { |
|
| 334 | - throw new OCSException('Invalid quota value '.$value, 103); |
|
| 335 | - } |
|
| 336 | - if($quota === 0) { |
|
| 337 | - $quota = 'default'; |
|
| 338 | - }else if($quota === -1) { |
|
| 339 | - $quota = 'none'; |
|
| 340 | - } else { |
|
| 341 | - $quota = \OCP\Util::humanFileSize($quota); |
|
| 342 | - } |
|
| 343 | - } |
|
| 344 | - $targetUser->setQuota($quota); |
|
| 345 | - break; |
|
| 346 | - case 'password': |
|
| 347 | - $targetUser->setPassword($value); |
|
| 348 | - break; |
|
| 349 | - case 'email': |
|
| 350 | - if(filter_var($value, FILTER_VALIDATE_EMAIL)) { |
|
| 351 | - $targetUser->setEMailAddress($value); |
|
| 352 | - } else { |
|
| 353 | - throw new OCSException('', 102); |
|
| 354 | - } |
|
| 355 | - break; |
|
| 356 | - default: |
|
| 357 | - throw new OCSException('', 103); |
|
| 358 | - } |
|
| 359 | - return new DataResponse(); |
|
| 360 | - } |
|
| 361 | - |
|
| 362 | - /** |
|
| 363 | - * @PasswordConfirmationRequired |
|
| 364 | - * @NoAdminRequired |
|
| 365 | - * |
|
| 366 | - * @param string $userId |
|
| 367 | - * @return DataResponse |
|
| 368 | - * @throws OCSException |
|
| 369 | - * @throws OCSForbiddenException |
|
| 370 | - */ |
|
| 371 | - public function deleteUser($userId) { |
|
| 372 | - $currentLoggedInUser = $this->userSession->getUser(); |
|
| 373 | - |
|
| 374 | - $targetUser = $this->userManager->get($userId); |
|
| 375 | - |
|
| 376 | - if($targetUser === null || $targetUser->getUID() === $currentLoggedInUser->getUID()) { |
|
| 377 | - throw new OCSException('', 101); |
|
| 378 | - } |
|
| 379 | - |
|
| 380 | - // If not permitted |
|
| 381 | - $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 382 | - if(!$this->groupManager->isAdmin($currentLoggedInUser->getUID()) && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)) { |
|
| 383 | - throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 384 | - } |
|
| 385 | - |
|
| 386 | - // Go ahead with the delete |
|
| 387 | - if($targetUser->delete()) { |
|
| 388 | - return new DataResponse(); |
|
| 389 | - } else { |
|
| 390 | - throw new OCSException('', 101); |
|
| 391 | - } |
|
| 392 | - } |
|
| 393 | - |
|
| 394 | - /** |
|
| 395 | - * @PasswordConfirmationRequired |
|
| 396 | - * @NoAdminRequired |
|
| 397 | - * |
|
| 398 | - * @param string $userId |
|
| 399 | - * @return DataResponse |
|
| 400 | - * @throws OCSException |
|
| 401 | - * @throws OCSForbiddenException |
|
| 402 | - */ |
|
| 403 | - public function disableUser($userId) { |
|
| 404 | - return $this->setEnabled($userId, false); |
|
| 405 | - } |
|
| 406 | - |
|
| 407 | - /** |
|
| 408 | - * @PasswordConfirmationRequired |
|
| 409 | - * @NoAdminRequired |
|
| 410 | - * |
|
| 411 | - * @param string $userId |
|
| 412 | - * @return DataResponse |
|
| 413 | - * @throws OCSException |
|
| 414 | - * @throws OCSForbiddenException |
|
| 415 | - */ |
|
| 416 | - public function enableUser($userId) { |
|
| 417 | - return $this->setEnabled($userId, true); |
|
| 418 | - } |
|
| 419 | - |
|
| 420 | - /** |
|
| 421 | - * @param string $userId |
|
| 422 | - * @param bool $value |
|
| 423 | - * @return DataResponse |
|
| 424 | - * @throws OCSException |
|
| 425 | - * @throws OCSForbiddenException |
|
| 426 | - */ |
|
| 427 | - private function setEnabled($userId, $value) { |
|
| 428 | - $currentLoggedInUser = $this->userSession->getUser(); |
|
| 429 | - |
|
| 430 | - $targetUser = $this->userManager->get($userId); |
|
| 431 | - if($targetUser === null || $targetUser->getUID() === $currentLoggedInUser->getUID()) { |
|
| 432 | - throw new OCSException('', 101); |
|
| 433 | - } |
|
| 434 | - |
|
| 435 | - // If not permitted |
|
| 436 | - $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 437 | - if(!$this->groupManager->isAdmin($currentLoggedInUser->getUID()) && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)) { |
|
| 438 | - throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 439 | - } |
|
| 440 | - |
|
| 441 | - // enable/disable the user now |
|
| 442 | - $targetUser->setEnabled($value); |
|
| 443 | - return new DataResponse(); |
|
| 444 | - } |
|
| 445 | - |
|
| 446 | - /** |
|
| 447 | - * @NoAdminRequired |
|
| 448 | - * @NoSubAdminRequired |
|
| 449 | - * |
|
| 450 | - * @param string $userId |
|
| 451 | - * @return DataResponse |
|
| 452 | - * @throws OCSException |
|
| 453 | - */ |
|
| 454 | - public function getUsersGroups($userId) { |
|
| 455 | - $loggedInUser = $this->userSession->getUser(); |
|
| 456 | - |
|
| 457 | - $targetUser = $this->userManager->get($userId); |
|
| 458 | - if($targetUser === null) { |
|
| 459 | - throw new OCSException('', \OCP\API::RESPOND_NOT_FOUND); |
|
| 460 | - } |
|
| 461 | - |
|
| 462 | - if($targetUser->getUID() === $loggedInUser->getUID() || $this->groupManager->isAdmin($loggedInUser->getUID())) { |
|
| 463 | - // Self lookup or admin lookup |
|
| 464 | - return new DataResponse([ |
|
| 465 | - 'groups' => $this->groupManager->getUserGroupIds($targetUser) |
|
| 466 | - ]); |
|
| 467 | - } else { |
|
| 468 | - $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 469 | - |
|
| 470 | - // Looking up someone else |
|
| 471 | - if($subAdminManager->isUserAccessible($loggedInUser, $targetUser)) { |
|
| 472 | - // Return the group that the method caller is subadmin of for the user in question |
|
| 473 | - /** @var IGroup[] $getSubAdminsGroups */ |
|
| 474 | - $getSubAdminsGroups = $subAdminManager->getSubAdminsGroups($loggedInUser); |
|
| 475 | - foreach ($getSubAdminsGroups as $key => $group) { |
|
| 476 | - $getSubAdminsGroups[$key] = $group->getGID(); |
|
| 477 | - } |
|
| 478 | - $groups = array_intersect( |
|
| 479 | - $getSubAdminsGroups, |
|
| 480 | - $this->groupManager->getUserGroupIds($targetUser) |
|
| 481 | - ); |
|
| 482 | - return new DataResponse(['groups' => $groups]); |
|
| 483 | - } else { |
|
| 484 | - // Not permitted |
|
| 485 | - throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 486 | - } |
|
| 487 | - } |
|
| 488 | - |
|
| 489 | - } |
|
| 490 | - |
|
| 491 | - /** |
|
| 492 | - * @PasswordConfirmationRequired |
|
| 493 | - * @NoAdminRequired |
|
| 494 | - * |
|
| 495 | - * @param string $userId |
|
| 496 | - * @param string $groupid |
|
| 497 | - * @return DataResponse |
|
| 498 | - * @throws OCSException |
|
| 499 | - */ |
|
| 500 | - public function addToGroup($userId, $groupid = '') { |
|
| 501 | - if($groupid === '') { |
|
| 502 | - throw new OCSException('', 101); |
|
| 503 | - } |
|
| 504 | - |
|
| 505 | - $group = $this->groupManager->get($groupid); |
|
| 506 | - $targetUser = $this->userManager->get($userId); |
|
| 507 | - if($group === null) { |
|
| 508 | - throw new OCSException('', 102); |
|
| 509 | - } |
|
| 510 | - if($targetUser === null) { |
|
| 511 | - throw new OCSException('', 103); |
|
| 512 | - } |
|
| 513 | - |
|
| 514 | - // If they're not an admin, check they are a subadmin of the group in question |
|
| 515 | - $loggedInUser = $this->userSession->getUser(); |
|
| 516 | - $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 517 | - if (!$this->groupManager->isAdmin($loggedInUser->getUID()) && !$subAdminManager->isSubAdminOfGroup($loggedInUser, $group)) { |
|
| 518 | - throw new OCSException('', 104); |
|
| 519 | - } |
|
| 520 | - |
|
| 521 | - // Add user to group |
|
| 522 | - $group->addUser($targetUser); |
|
| 523 | - return new DataResponse(); |
|
| 524 | - } |
|
| 525 | - |
|
| 526 | - /** |
|
| 527 | - * @PasswordConfirmationRequired |
|
| 528 | - * @NoAdminRequired |
|
| 529 | - * |
|
| 530 | - * @param string $userId |
|
| 531 | - * @param string $groupid |
|
| 532 | - * @return DataResponse |
|
| 533 | - * @throws OCSException |
|
| 534 | - */ |
|
| 535 | - public function removeFromGroup($userId, $groupid) { |
|
| 536 | - $loggedInUser = $this->userSession->getUser(); |
|
| 537 | - |
|
| 538 | - if($groupid === null) { |
|
| 539 | - throw new OCSException('', 101); |
|
| 540 | - } |
|
| 541 | - |
|
| 542 | - $group = $this->groupManager->get($groupid); |
|
| 543 | - if($group === null) { |
|
| 544 | - throw new OCSException('', 102); |
|
| 545 | - } |
|
| 546 | - |
|
| 547 | - $targetUser = $this->userManager->get($userId); |
|
| 548 | - if($targetUser === null) { |
|
| 549 | - throw new OCSException('', 103); |
|
| 550 | - } |
|
| 551 | - |
|
| 552 | - // If they're not an admin, check they are a subadmin of the group in question |
|
| 553 | - $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 554 | - if (!$this->groupManager->isAdmin($loggedInUser->getUID()) && !$subAdminManager->isSubAdminOfGroup($loggedInUser, $group)) { |
|
| 555 | - throw new OCSException('', 104); |
|
| 556 | - } |
|
| 557 | - |
|
| 558 | - // Check they aren't removing themselves from 'admin' or their 'subadmin; group |
|
| 559 | - if ($userId === $loggedInUser->getUID()) { |
|
| 560 | - if ($this->groupManager->isAdmin($loggedInUser->getUID())) { |
|
| 561 | - if ($group->getGID() === 'admin') { |
|
| 562 | - throw new OCSException('Cannot remove yourself from the admin group', 105); |
|
| 563 | - } |
|
| 564 | - } else { |
|
| 565 | - // Not an admin, so the user must be a subadmin of this group, but that is not allowed. |
|
| 566 | - throw new OCSException('Cannot remove yourself from this group as you are a SubAdmin', 105); |
|
| 567 | - } |
|
| 568 | - |
|
| 569 | - } else if (!$this->groupManager->isAdmin($loggedInUser->getUID())) { |
|
| 570 | - /** @var IGroup[] $subAdminGroups */ |
|
| 571 | - $subAdminGroups = $subAdminManager->getSubAdminsGroups($loggedInUser); |
|
| 572 | - $subAdminGroups = array_map(function (IGroup $subAdminGroup) { |
|
| 573 | - return $subAdminGroup->getGID(); |
|
| 574 | - }, $subAdminGroups); |
|
| 575 | - $userGroups = $this->groupManager->getUserGroupIds($targetUser); |
|
| 576 | - $userSubAdminGroups = array_intersect($subAdminGroups, $userGroups); |
|
| 577 | - |
|
| 578 | - if (count($userSubAdminGroups) <= 1) { |
|
| 579 | - // Subadmin must not be able to remove a user from all their subadmin groups. |
|
| 580 | - throw new OCSException('Cannot remove user from this group as this is the only remaining group you are a SubAdmin of', 105); |
|
| 581 | - } |
|
| 582 | - } |
|
| 583 | - |
|
| 584 | - // Remove user from group |
|
| 585 | - $group->removeUser($targetUser); |
|
| 586 | - return new DataResponse(); |
|
| 587 | - } |
|
| 588 | - |
|
| 589 | - /** |
|
| 590 | - * Creates a subadmin |
|
| 591 | - * |
|
| 592 | - * @PasswordConfirmationRequired |
|
| 593 | - * |
|
| 594 | - * @param string $userId |
|
| 595 | - * @param string $groupid |
|
| 596 | - * @return DataResponse |
|
| 597 | - * @throws OCSException |
|
| 598 | - */ |
|
| 599 | - public function addSubAdmin($userId, $groupid) { |
|
| 600 | - $group = $this->groupManager->get($groupid); |
|
| 601 | - $user = $this->userManager->get($userId); |
|
| 602 | - |
|
| 603 | - // Check if the user exists |
|
| 604 | - if($user === null) { |
|
| 605 | - throw new OCSException('User does not exist', 101); |
|
| 606 | - } |
|
| 607 | - // Check if group exists |
|
| 608 | - if($group === null) { |
|
| 609 | - throw new OCSException('Group:'.$groupid.' does not exist', 102); |
|
| 610 | - } |
|
| 611 | - // Check if trying to make subadmin of admin group |
|
| 612 | - if(strtolower($groupid) === 'admin') { |
|
| 613 | - throw new OCSException('Cannot create subadmins for admin group', 103); |
|
| 614 | - } |
|
| 615 | - |
|
| 616 | - $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 617 | - |
|
| 618 | - // We cannot be subadmin twice |
|
| 619 | - if ($subAdminManager->isSubAdminofGroup($user, $group)) { |
|
| 620 | - return new DataResponse(); |
|
| 621 | - } |
|
| 622 | - // Go |
|
| 623 | - if($subAdminManager->createSubAdmin($user, $group)) { |
|
| 624 | - return new DataResponse(); |
|
| 625 | - } else { |
|
| 626 | - throw new OCSException('Unknown error occurred', 103); |
|
| 627 | - } |
|
| 628 | - } |
|
| 629 | - |
|
| 630 | - /** |
|
| 631 | - * Removes a subadmin from a group |
|
| 632 | - * |
|
| 633 | - * @PasswordConfirmationRequired |
|
| 634 | - * |
|
| 635 | - * @param string $userId |
|
| 636 | - * @param string $groupid |
|
| 637 | - * @return DataResponse |
|
| 638 | - * @throws OCSException |
|
| 639 | - */ |
|
| 640 | - public function removeSubAdmin($userId, $groupid) { |
|
| 641 | - $group = $this->groupManager->get($groupid); |
|
| 642 | - $user = $this->userManager->get($userId); |
|
| 643 | - $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 644 | - |
|
| 645 | - // Check if the user exists |
|
| 646 | - if($user === null) { |
|
| 647 | - throw new OCSException('User does not exist', 101); |
|
| 648 | - } |
|
| 649 | - // Check if the group exists |
|
| 650 | - if($group === null) { |
|
| 651 | - throw new OCSException('Group does not exist', 101); |
|
| 652 | - } |
|
| 653 | - // Check if they are a subadmin of this said group |
|
| 654 | - if(!$subAdminManager->isSubAdminofGroup($user, $group)) { |
|
| 655 | - throw new OCSException('User is not a subadmin of this group', 102); |
|
| 656 | - } |
|
| 657 | - |
|
| 658 | - // Go |
|
| 659 | - if($subAdminManager->deleteSubAdmin($user, $group)) { |
|
| 660 | - return new DataResponse(); |
|
| 661 | - } else { |
|
| 662 | - throw new OCSException('Unknown error occurred', 103); |
|
| 663 | - } |
|
| 664 | - } |
|
| 665 | - |
|
| 666 | - /** |
|
| 667 | - * Get the groups a user is a subadmin of |
|
| 668 | - * |
|
| 669 | - * @param string $userId |
|
| 670 | - * @return DataResponse |
|
| 671 | - * @throws OCSException |
|
| 672 | - */ |
|
| 673 | - public function getUserSubAdminGroups($userId) { |
|
| 674 | - $user = $this->userManager->get($userId); |
|
| 675 | - // Check if the user exists |
|
| 676 | - if($user === null) { |
|
| 677 | - throw new OCSException('User does not exist', 101); |
|
| 678 | - } |
|
| 679 | - |
|
| 680 | - // Get the subadmin groups |
|
| 681 | - $groups = $this->groupManager->getSubAdmin()->getSubAdminsGroups($user); |
|
| 682 | - foreach ($groups as $key => $group) { |
|
| 683 | - $groups[$key] = $group->getGID(); |
|
| 684 | - } |
|
| 685 | - |
|
| 686 | - if(!$groups) { |
|
| 687 | - throw new OCSException('Unknown error occurred', 102); |
|
| 688 | - } else { |
|
| 689 | - return new DataResponse($groups); |
|
| 690 | - } |
|
| 691 | - } |
|
| 692 | - |
|
| 693 | - /** |
|
| 694 | - * @param string $userId |
|
| 695 | - * @return array |
|
| 696 | - * @throws \OCP\Files\NotFoundException |
|
| 697 | - */ |
|
| 698 | - protected function fillStorageInfo($userId) { |
|
| 699 | - try { |
|
| 700 | - \OC_Util::tearDownFS(); |
|
| 701 | - \OC_Util::setupFS($userId); |
|
| 702 | - $storage = OC_Helper::getStorageInfo('/'); |
|
| 703 | - $data = [ |
|
| 704 | - 'free' => $storage['free'], |
|
| 705 | - 'used' => $storage['used'], |
|
| 706 | - 'total' => $storage['total'], |
|
| 707 | - 'relative' => $storage['relative'], |
|
| 708 | - 'quota' => $storage['quota'], |
|
| 709 | - ]; |
|
| 710 | - } catch (NotFoundException $ex) { |
|
| 711 | - $data = []; |
|
| 712 | - } |
|
| 713 | - return $data; |
|
| 714 | - } |
|
| 49 | + /** @var IUserManager */ |
|
| 50 | + private $userManager; |
|
| 51 | + /** @var IConfig */ |
|
| 52 | + private $config; |
|
| 53 | + /** @var IGroupManager|\OC\Group\Manager */ // FIXME Requires a method that is not on the interface |
|
| 54 | + private $groupManager; |
|
| 55 | + /** @var IUserSession */ |
|
| 56 | + private $userSession; |
|
| 57 | + /** @var AccountManager */ |
|
| 58 | + private $accountManager; |
|
| 59 | + /** @var ILogger */ |
|
| 60 | + private $logger; |
|
| 61 | + |
|
| 62 | + /** |
|
| 63 | + * @param string $appName |
|
| 64 | + * @param IRequest $request |
|
| 65 | + * @param IUserManager $userManager |
|
| 66 | + * @param IConfig $config |
|
| 67 | + * @param IGroupManager $groupManager |
|
| 68 | + * @param IUserSession $userSession |
|
| 69 | + * @param AccountManager $accountManager |
|
| 70 | + * @param ILogger $logger |
|
| 71 | + */ |
|
| 72 | + public function __construct($appName, |
|
| 73 | + IRequest $request, |
|
| 74 | + IUserManager $userManager, |
|
| 75 | + IConfig $config, |
|
| 76 | + IGroupManager $groupManager, |
|
| 77 | + IUserSession $userSession, |
|
| 78 | + AccountManager $accountManager, |
|
| 79 | + ILogger $logger) { |
|
| 80 | + parent::__construct($appName, $request); |
|
| 81 | + |
|
| 82 | + $this->userManager = $userManager; |
|
| 83 | + $this->config = $config; |
|
| 84 | + $this->groupManager = $groupManager; |
|
| 85 | + $this->userSession = $userSession; |
|
| 86 | + $this->accountManager = $accountManager; |
|
| 87 | + $this->logger = $logger; |
|
| 88 | + } |
|
| 89 | + |
|
| 90 | + /** |
|
| 91 | + * @NoAdminRequired |
|
| 92 | + * |
|
| 93 | + * returns a list of users |
|
| 94 | + * |
|
| 95 | + * @param string $search |
|
| 96 | + * @param int $limit |
|
| 97 | + * @param int $offset |
|
| 98 | + * @return DataResponse |
|
| 99 | + */ |
|
| 100 | + public function getUsers($search = '', $limit = null, $offset = null) { |
|
| 101 | + $user = $this->userSession->getUser(); |
|
| 102 | + $users = []; |
|
| 103 | + |
|
| 104 | + // Admin? Or SubAdmin? |
|
| 105 | + $uid = $user->getUID(); |
|
| 106 | + $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 107 | + if($this->groupManager->isAdmin($uid)){ |
|
| 108 | + $users = $this->userManager->search($search, $limit, $offset); |
|
| 109 | + } else if ($subAdminManager->isSubAdmin($user)) { |
|
| 110 | + $subAdminOfGroups = $subAdminManager->getSubAdminsGroups($user); |
|
| 111 | + foreach ($subAdminOfGroups as $key => $group) { |
|
| 112 | + $subAdminOfGroups[$key] = $group->getGID(); |
|
| 113 | + } |
|
| 114 | + |
|
| 115 | + if($offset === null) { |
|
| 116 | + $offset = 0; |
|
| 117 | + } |
|
| 118 | + |
|
| 119 | + $users = []; |
|
| 120 | + foreach ($subAdminOfGroups as $group) { |
|
| 121 | + $users = array_merge($users, $this->groupManager->displayNamesInGroup($group, $search)); |
|
| 122 | + } |
|
| 123 | + |
|
| 124 | + $users = array_slice($users, $offset, $limit); |
|
| 125 | + } |
|
| 126 | + |
|
| 127 | + $users = array_keys($users); |
|
| 128 | + |
|
| 129 | + return new DataResponse([ |
|
| 130 | + 'users' => $users |
|
| 131 | + ]); |
|
| 132 | + } |
|
| 133 | + |
|
| 134 | + /** |
|
| 135 | + * @PasswordConfirmationRequired |
|
| 136 | + * @NoAdminRequired |
|
| 137 | + * |
|
| 138 | + * @param string $userid |
|
| 139 | + * @param string $password |
|
| 140 | + * @param array $groups |
|
| 141 | + * @return DataResponse |
|
| 142 | + * @throws OCSException |
|
| 143 | + */ |
|
| 144 | + public function addUser($userid, $password, $groups = null) { |
|
| 145 | + $user = $this->userSession->getUser(); |
|
| 146 | + $isAdmin = $this->groupManager->isAdmin($user->getUID()); |
|
| 147 | + $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 148 | + |
|
| 149 | + if($this->userManager->userExists($userid)) { |
|
| 150 | + $this->logger->error('Failed addUser attempt: User already exists.', ['app' => 'ocs_api']); |
|
| 151 | + throw new OCSException('User already exists', 102); |
|
| 152 | + } |
|
| 153 | + |
|
| 154 | + if(is_array($groups)) { |
|
| 155 | + foreach ($groups as $group) { |
|
| 156 | + if(!$this->groupManager->groupExists($group)) { |
|
| 157 | + throw new OCSException('group '.$group.' does not exist', 104); |
|
| 158 | + } |
|
| 159 | + if(!$isAdmin && !$subAdminManager->isSubAdminofGroup($user, $this->groupManager->get($group))) { |
|
| 160 | + throw new OCSException('insufficient privileges for group '. $group, 105); |
|
| 161 | + } |
|
| 162 | + } |
|
| 163 | + } else { |
|
| 164 | + if(!$isAdmin) { |
|
| 165 | + throw new OCSException('no group specified (required for subadmins)', 106); |
|
| 166 | + } |
|
| 167 | + } |
|
| 168 | + |
|
| 169 | + try { |
|
| 170 | + $newUser = $this->userManager->createUser($userid, $password); |
|
| 171 | + $this->logger->info('Successful addUser call with userid: '.$userid, ['app' => 'ocs_api']); |
|
| 172 | + |
|
| 173 | + if (is_array($groups)) { |
|
| 174 | + foreach ($groups as $group) { |
|
| 175 | + $this->groupManager->get($group)->addUser($newUser); |
|
| 176 | + $this->logger->info('Added userid '.$userid.' to group '.$group, ['app' => 'ocs_api']); |
|
| 177 | + } |
|
| 178 | + } |
|
| 179 | + return new DataResponse(); |
|
| 180 | + } catch (\Exception $e) { |
|
| 181 | + $this->logger->error('Failed addUser attempt with exception: '.$e->getMessage(), ['app' => 'ocs_api']); |
|
| 182 | + throw new OCSException('Bad request', 101); |
|
| 183 | + } |
|
| 184 | + } |
|
| 185 | + |
|
| 186 | + /** |
|
| 187 | + * @NoAdminRequired |
|
| 188 | + * @NoSubAdminRequired |
|
| 189 | + * |
|
| 190 | + * gets user info |
|
| 191 | + * |
|
| 192 | + * @param string $userId |
|
| 193 | + * @return DataResponse |
|
| 194 | + * @throws OCSException |
|
| 195 | + */ |
|
| 196 | + public function getUser($userId) { |
|
| 197 | + $data = $this->getUserData($userId); |
|
| 198 | + return new DataResponse($data); |
|
| 199 | + } |
|
| 200 | + |
|
| 201 | + /** |
|
| 202 | + * @NoAdminRequired |
|
| 203 | + * @NoSubAdminRequired |
|
| 204 | + * |
|
| 205 | + * gets user info from the currently logged in user |
|
| 206 | + * |
|
| 207 | + * @return DataResponse |
|
| 208 | + * @throws OCSException |
|
| 209 | + */ |
|
| 210 | + public function getCurrentUser() { |
|
| 211 | + $user = $this->userSession->getUser(); |
|
| 212 | + if ($user) { |
|
| 213 | + $data = $this->getUserData($user->getUID()); |
|
| 214 | + // rename "displayname" to "display-name" only for this call to keep |
|
| 215 | + // the API stable. |
|
| 216 | + $data['display-name'] = $data['displayname']; |
|
| 217 | + unset($data['displayname']); |
|
| 218 | + return new DataResponse($data); |
|
| 219 | + |
|
| 220 | + } |
|
| 221 | + |
|
| 222 | + throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 223 | + } |
|
| 224 | + |
|
| 225 | + /** |
|
| 226 | + * creates a array with all user data |
|
| 227 | + * |
|
| 228 | + * @param $userId |
|
| 229 | + * @return array |
|
| 230 | + * @throws OCSException |
|
| 231 | + */ |
|
| 232 | + protected function getUserData($userId) { |
|
| 233 | + $currentLoggedInUser = $this->userSession->getUser(); |
|
| 234 | + |
|
| 235 | + $data = []; |
|
| 236 | + |
|
| 237 | + // Check if the target user exists |
|
| 238 | + $targetUserObject = $this->userManager->get($userId); |
|
| 239 | + if($targetUserObject === null) { |
|
| 240 | + throw new OCSException('The requested user could not be found', \OCP\API::RESPOND_NOT_FOUND); |
|
| 241 | + } |
|
| 242 | + |
|
| 243 | + // Admin? Or SubAdmin? |
|
| 244 | + if($this->groupManager->isAdmin($currentLoggedInUser->getUID()) |
|
| 245 | + || $this->groupManager->getSubAdmin()->isUserAccessible($currentLoggedInUser, $targetUserObject)) { |
|
| 246 | + $data['enabled'] = $this->config->getUserValue($userId, 'core', 'enabled', 'true'); |
|
| 247 | + } else { |
|
| 248 | + // Check they are looking up themselves |
|
| 249 | + if($currentLoggedInUser->getUID() !== $userId) { |
|
| 250 | + throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 251 | + } |
|
| 252 | + } |
|
| 253 | + |
|
| 254 | + $userAccount = $this->accountManager->getUser($targetUserObject); |
|
| 255 | + |
|
| 256 | + // Find the data |
|
| 257 | + $data['id'] = $targetUserObject->getUID(); |
|
| 258 | + $data['quota'] = $this->fillStorageInfo($userId); |
|
| 259 | + $data['email'] = $targetUserObject->getEMailAddress(); |
|
| 260 | + $data['displayname'] = $targetUserObject->getDisplayName(); |
|
| 261 | + $data['phone'] = $userAccount[\OC\Accounts\AccountManager::PROPERTY_PHONE]['value']; |
|
| 262 | + $data['address'] = $userAccount[\OC\Accounts\AccountManager::PROPERTY_ADDRESS]['value']; |
|
| 263 | + $data['webpage'] = $userAccount[\OC\Accounts\AccountManager::PROPERTY_WEBSITE]['value']; |
|
| 264 | + $data['twitter'] = $userAccount[\OC\Accounts\AccountManager::PROPERTY_TWITTER]['value']; |
|
| 265 | + |
|
| 266 | + return $data; |
|
| 267 | + } |
|
| 268 | + |
|
| 269 | + /** |
|
| 270 | + * @NoAdminRequired |
|
| 271 | + * @NoSubAdminRequired |
|
| 272 | + * @PasswordConfirmationRequired |
|
| 273 | + * |
|
| 274 | + * edit users |
|
| 275 | + * |
|
| 276 | + * @param string $userId |
|
| 277 | + * @param string $key |
|
| 278 | + * @param string $value |
|
| 279 | + * @return DataResponse |
|
| 280 | + * @throws OCSException |
|
| 281 | + * @throws OCSForbiddenException |
|
| 282 | + */ |
|
| 283 | + public function editUser($userId, $key, $value) { |
|
| 284 | + $currentLoggedInUser = $this->userSession->getUser(); |
|
| 285 | + |
|
| 286 | + $targetUser = $this->userManager->get($userId); |
|
| 287 | + if($targetUser === null) { |
|
| 288 | + throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 289 | + } |
|
| 290 | + |
|
| 291 | + $permittedFields = []; |
|
| 292 | + if($userId === $currentLoggedInUser->getUID()) { |
|
| 293 | + // Editing self (display, email) |
|
| 294 | + $permittedFields[] = 'display'; |
|
| 295 | + $permittedFields[] = 'email'; |
|
| 296 | + $permittedFields[] = 'password'; |
|
| 297 | + // If admin they can edit their own quota |
|
| 298 | + if($this->groupManager->isAdmin($currentLoggedInUser->getUID())) { |
|
| 299 | + $permittedFields[] = 'quota'; |
|
| 300 | + } |
|
| 301 | + } else { |
|
| 302 | + // Check if admin / subadmin |
|
| 303 | + $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 304 | + if($subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser) |
|
| 305 | + || $this->groupManager->isAdmin($currentLoggedInUser->getUID())) { |
|
| 306 | + // They have permissions over the user |
|
| 307 | + $permittedFields[] = 'display'; |
|
| 308 | + $permittedFields[] = 'quota'; |
|
| 309 | + $permittedFields[] = 'password'; |
|
| 310 | + $permittedFields[] = 'email'; |
|
| 311 | + } else { |
|
| 312 | + // No rights |
|
| 313 | + throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 314 | + } |
|
| 315 | + } |
|
| 316 | + // Check if permitted to edit this field |
|
| 317 | + if(!in_array($key, $permittedFields)) { |
|
| 318 | + throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 319 | + } |
|
| 320 | + // Process the edit |
|
| 321 | + switch($key) { |
|
| 322 | + case 'display': |
|
| 323 | + $targetUser->setDisplayName($value); |
|
| 324 | + break; |
|
| 325 | + case 'quota': |
|
| 326 | + $quota = $value; |
|
| 327 | + if($quota !== 'none' && $quota !== 'default') { |
|
| 328 | + if (is_numeric($quota)) { |
|
| 329 | + $quota = (float) $quota; |
|
| 330 | + } else { |
|
| 331 | + $quota = \OCP\Util::computerFileSize($quota); |
|
| 332 | + } |
|
| 333 | + if ($quota === false) { |
|
| 334 | + throw new OCSException('Invalid quota value '.$value, 103); |
|
| 335 | + } |
|
| 336 | + if($quota === 0) { |
|
| 337 | + $quota = 'default'; |
|
| 338 | + }else if($quota === -1) { |
|
| 339 | + $quota = 'none'; |
|
| 340 | + } else { |
|
| 341 | + $quota = \OCP\Util::humanFileSize($quota); |
|
| 342 | + } |
|
| 343 | + } |
|
| 344 | + $targetUser->setQuota($quota); |
|
| 345 | + break; |
|
| 346 | + case 'password': |
|
| 347 | + $targetUser->setPassword($value); |
|
| 348 | + break; |
|
| 349 | + case 'email': |
|
| 350 | + if(filter_var($value, FILTER_VALIDATE_EMAIL)) { |
|
| 351 | + $targetUser->setEMailAddress($value); |
|
| 352 | + } else { |
|
| 353 | + throw new OCSException('', 102); |
|
| 354 | + } |
|
| 355 | + break; |
|
| 356 | + default: |
|
| 357 | + throw new OCSException('', 103); |
|
| 358 | + } |
|
| 359 | + return new DataResponse(); |
|
| 360 | + } |
|
| 361 | + |
|
| 362 | + /** |
|
| 363 | + * @PasswordConfirmationRequired |
|
| 364 | + * @NoAdminRequired |
|
| 365 | + * |
|
| 366 | + * @param string $userId |
|
| 367 | + * @return DataResponse |
|
| 368 | + * @throws OCSException |
|
| 369 | + * @throws OCSForbiddenException |
|
| 370 | + */ |
|
| 371 | + public function deleteUser($userId) { |
|
| 372 | + $currentLoggedInUser = $this->userSession->getUser(); |
|
| 373 | + |
|
| 374 | + $targetUser = $this->userManager->get($userId); |
|
| 375 | + |
|
| 376 | + if($targetUser === null || $targetUser->getUID() === $currentLoggedInUser->getUID()) { |
|
| 377 | + throw new OCSException('', 101); |
|
| 378 | + } |
|
| 379 | + |
|
| 380 | + // If not permitted |
|
| 381 | + $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 382 | + if(!$this->groupManager->isAdmin($currentLoggedInUser->getUID()) && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)) { |
|
| 383 | + throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 384 | + } |
|
| 385 | + |
|
| 386 | + // Go ahead with the delete |
|
| 387 | + if($targetUser->delete()) { |
|
| 388 | + return new DataResponse(); |
|
| 389 | + } else { |
|
| 390 | + throw new OCSException('', 101); |
|
| 391 | + } |
|
| 392 | + } |
|
| 393 | + |
|
| 394 | + /** |
|
| 395 | + * @PasswordConfirmationRequired |
|
| 396 | + * @NoAdminRequired |
|
| 397 | + * |
|
| 398 | + * @param string $userId |
|
| 399 | + * @return DataResponse |
|
| 400 | + * @throws OCSException |
|
| 401 | + * @throws OCSForbiddenException |
|
| 402 | + */ |
|
| 403 | + public function disableUser($userId) { |
|
| 404 | + return $this->setEnabled($userId, false); |
|
| 405 | + } |
|
| 406 | + |
|
| 407 | + /** |
|
| 408 | + * @PasswordConfirmationRequired |
|
| 409 | + * @NoAdminRequired |
|
| 410 | + * |
|
| 411 | + * @param string $userId |
|
| 412 | + * @return DataResponse |
|
| 413 | + * @throws OCSException |
|
| 414 | + * @throws OCSForbiddenException |
|
| 415 | + */ |
|
| 416 | + public function enableUser($userId) { |
|
| 417 | + return $this->setEnabled($userId, true); |
|
| 418 | + } |
|
| 419 | + |
|
| 420 | + /** |
|
| 421 | + * @param string $userId |
|
| 422 | + * @param bool $value |
|
| 423 | + * @return DataResponse |
|
| 424 | + * @throws OCSException |
|
| 425 | + * @throws OCSForbiddenException |
|
| 426 | + */ |
|
| 427 | + private function setEnabled($userId, $value) { |
|
| 428 | + $currentLoggedInUser = $this->userSession->getUser(); |
|
| 429 | + |
|
| 430 | + $targetUser = $this->userManager->get($userId); |
|
| 431 | + if($targetUser === null || $targetUser->getUID() === $currentLoggedInUser->getUID()) { |
|
| 432 | + throw new OCSException('', 101); |
|
| 433 | + } |
|
| 434 | + |
|
| 435 | + // If not permitted |
|
| 436 | + $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 437 | + if(!$this->groupManager->isAdmin($currentLoggedInUser->getUID()) && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)) { |
|
| 438 | + throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 439 | + } |
|
| 440 | + |
|
| 441 | + // enable/disable the user now |
|
| 442 | + $targetUser->setEnabled($value); |
|
| 443 | + return new DataResponse(); |
|
| 444 | + } |
|
| 445 | + |
|
| 446 | + /** |
|
| 447 | + * @NoAdminRequired |
|
| 448 | + * @NoSubAdminRequired |
|
| 449 | + * |
|
| 450 | + * @param string $userId |
|
| 451 | + * @return DataResponse |
|
| 452 | + * @throws OCSException |
|
| 453 | + */ |
|
| 454 | + public function getUsersGroups($userId) { |
|
| 455 | + $loggedInUser = $this->userSession->getUser(); |
|
| 456 | + |
|
| 457 | + $targetUser = $this->userManager->get($userId); |
|
| 458 | + if($targetUser === null) { |
|
| 459 | + throw new OCSException('', \OCP\API::RESPOND_NOT_FOUND); |
|
| 460 | + } |
|
| 461 | + |
|
| 462 | + if($targetUser->getUID() === $loggedInUser->getUID() || $this->groupManager->isAdmin($loggedInUser->getUID())) { |
|
| 463 | + // Self lookup or admin lookup |
|
| 464 | + return new DataResponse([ |
|
| 465 | + 'groups' => $this->groupManager->getUserGroupIds($targetUser) |
|
| 466 | + ]); |
|
| 467 | + } else { |
|
| 468 | + $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 469 | + |
|
| 470 | + // Looking up someone else |
|
| 471 | + if($subAdminManager->isUserAccessible($loggedInUser, $targetUser)) { |
|
| 472 | + // Return the group that the method caller is subadmin of for the user in question |
|
| 473 | + /** @var IGroup[] $getSubAdminsGroups */ |
|
| 474 | + $getSubAdminsGroups = $subAdminManager->getSubAdminsGroups($loggedInUser); |
|
| 475 | + foreach ($getSubAdminsGroups as $key => $group) { |
|
| 476 | + $getSubAdminsGroups[$key] = $group->getGID(); |
|
| 477 | + } |
|
| 478 | + $groups = array_intersect( |
|
| 479 | + $getSubAdminsGroups, |
|
| 480 | + $this->groupManager->getUserGroupIds($targetUser) |
|
| 481 | + ); |
|
| 482 | + return new DataResponse(['groups' => $groups]); |
|
| 483 | + } else { |
|
| 484 | + // Not permitted |
|
| 485 | + throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
|
| 486 | + } |
|
| 487 | + } |
|
| 488 | + |
|
| 489 | + } |
|
| 490 | + |
|
| 491 | + /** |
|
| 492 | + * @PasswordConfirmationRequired |
|
| 493 | + * @NoAdminRequired |
|
| 494 | + * |
|
| 495 | + * @param string $userId |
|
| 496 | + * @param string $groupid |
|
| 497 | + * @return DataResponse |
|
| 498 | + * @throws OCSException |
|
| 499 | + */ |
|
| 500 | + public function addToGroup($userId, $groupid = '') { |
|
| 501 | + if($groupid === '') { |
|
| 502 | + throw new OCSException('', 101); |
|
| 503 | + } |
|
| 504 | + |
|
| 505 | + $group = $this->groupManager->get($groupid); |
|
| 506 | + $targetUser = $this->userManager->get($userId); |
|
| 507 | + if($group === null) { |
|
| 508 | + throw new OCSException('', 102); |
|
| 509 | + } |
|
| 510 | + if($targetUser === null) { |
|
| 511 | + throw new OCSException('', 103); |
|
| 512 | + } |
|
| 513 | + |
|
| 514 | + // If they're not an admin, check they are a subadmin of the group in question |
|
| 515 | + $loggedInUser = $this->userSession->getUser(); |
|
| 516 | + $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 517 | + if (!$this->groupManager->isAdmin($loggedInUser->getUID()) && !$subAdminManager->isSubAdminOfGroup($loggedInUser, $group)) { |
|
| 518 | + throw new OCSException('', 104); |
|
| 519 | + } |
|
| 520 | + |
|
| 521 | + // Add user to group |
|
| 522 | + $group->addUser($targetUser); |
|
| 523 | + return new DataResponse(); |
|
| 524 | + } |
|
| 525 | + |
|
| 526 | + /** |
|
| 527 | + * @PasswordConfirmationRequired |
|
| 528 | + * @NoAdminRequired |
|
| 529 | + * |
|
| 530 | + * @param string $userId |
|
| 531 | + * @param string $groupid |
|
| 532 | + * @return DataResponse |
|
| 533 | + * @throws OCSException |
|
| 534 | + */ |
|
| 535 | + public function removeFromGroup($userId, $groupid) { |
|
| 536 | + $loggedInUser = $this->userSession->getUser(); |
|
| 537 | + |
|
| 538 | + if($groupid === null) { |
|
| 539 | + throw new OCSException('', 101); |
|
| 540 | + } |
|
| 541 | + |
|
| 542 | + $group = $this->groupManager->get($groupid); |
|
| 543 | + if($group === null) { |
|
| 544 | + throw new OCSException('', 102); |
|
| 545 | + } |
|
| 546 | + |
|
| 547 | + $targetUser = $this->userManager->get($userId); |
|
| 548 | + if($targetUser === null) { |
|
| 549 | + throw new OCSException('', 103); |
|
| 550 | + } |
|
| 551 | + |
|
| 552 | + // If they're not an admin, check they are a subadmin of the group in question |
|
| 553 | + $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 554 | + if (!$this->groupManager->isAdmin($loggedInUser->getUID()) && !$subAdminManager->isSubAdminOfGroup($loggedInUser, $group)) { |
|
| 555 | + throw new OCSException('', 104); |
|
| 556 | + } |
|
| 557 | + |
|
| 558 | + // Check they aren't removing themselves from 'admin' or their 'subadmin; group |
|
| 559 | + if ($userId === $loggedInUser->getUID()) { |
|
| 560 | + if ($this->groupManager->isAdmin($loggedInUser->getUID())) { |
|
| 561 | + if ($group->getGID() === 'admin') { |
|
| 562 | + throw new OCSException('Cannot remove yourself from the admin group', 105); |
|
| 563 | + } |
|
| 564 | + } else { |
|
| 565 | + // Not an admin, so the user must be a subadmin of this group, but that is not allowed. |
|
| 566 | + throw new OCSException('Cannot remove yourself from this group as you are a SubAdmin', 105); |
|
| 567 | + } |
|
| 568 | + |
|
| 569 | + } else if (!$this->groupManager->isAdmin($loggedInUser->getUID())) { |
|
| 570 | + /** @var IGroup[] $subAdminGroups */ |
|
| 571 | + $subAdminGroups = $subAdminManager->getSubAdminsGroups($loggedInUser); |
|
| 572 | + $subAdminGroups = array_map(function (IGroup $subAdminGroup) { |
|
| 573 | + return $subAdminGroup->getGID(); |
|
| 574 | + }, $subAdminGroups); |
|
| 575 | + $userGroups = $this->groupManager->getUserGroupIds($targetUser); |
|
| 576 | + $userSubAdminGroups = array_intersect($subAdminGroups, $userGroups); |
|
| 577 | + |
|
| 578 | + if (count($userSubAdminGroups) <= 1) { |
|
| 579 | + // Subadmin must not be able to remove a user from all their subadmin groups. |
|
| 580 | + throw new OCSException('Cannot remove user from this group as this is the only remaining group you are a SubAdmin of', 105); |
|
| 581 | + } |
|
| 582 | + } |
|
| 583 | + |
|
| 584 | + // Remove user from group |
|
| 585 | + $group->removeUser($targetUser); |
|
| 586 | + return new DataResponse(); |
|
| 587 | + } |
|
| 588 | + |
|
| 589 | + /** |
|
| 590 | + * Creates a subadmin |
|
| 591 | + * |
|
| 592 | + * @PasswordConfirmationRequired |
|
| 593 | + * |
|
| 594 | + * @param string $userId |
|
| 595 | + * @param string $groupid |
|
| 596 | + * @return DataResponse |
|
| 597 | + * @throws OCSException |
|
| 598 | + */ |
|
| 599 | + public function addSubAdmin($userId, $groupid) { |
|
| 600 | + $group = $this->groupManager->get($groupid); |
|
| 601 | + $user = $this->userManager->get($userId); |
|
| 602 | + |
|
| 603 | + // Check if the user exists |
|
| 604 | + if($user === null) { |
|
| 605 | + throw new OCSException('User does not exist', 101); |
|
| 606 | + } |
|
| 607 | + // Check if group exists |
|
| 608 | + if($group === null) { |
|
| 609 | + throw new OCSException('Group:'.$groupid.' does not exist', 102); |
|
| 610 | + } |
|
| 611 | + // Check if trying to make subadmin of admin group |
|
| 612 | + if(strtolower($groupid) === 'admin') { |
|
| 613 | + throw new OCSException('Cannot create subadmins for admin group', 103); |
|
| 614 | + } |
|
| 615 | + |
|
| 616 | + $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 617 | + |
|
| 618 | + // We cannot be subadmin twice |
|
| 619 | + if ($subAdminManager->isSubAdminofGroup($user, $group)) { |
|
| 620 | + return new DataResponse(); |
|
| 621 | + } |
|
| 622 | + // Go |
|
| 623 | + if($subAdminManager->createSubAdmin($user, $group)) { |
|
| 624 | + return new DataResponse(); |
|
| 625 | + } else { |
|
| 626 | + throw new OCSException('Unknown error occurred', 103); |
|
| 627 | + } |
|
| 628 | + } |
|
| 629 | + |
|
| 630 | + /** |
|
| 631 | + * Removes a subadmin from a group |
|
| 632 | + * |
|
| 633 | + * @PasswordConfirmationRequired |
|
| 634 | + * |
|
| 635 | + * @param string $userId |
|
| 636 | + * @param string $groupid |
|
| 637 | + * @return DataResponse |
|
| 638 | + * @throws OCSException |
|
| 639 | + */ |
|
| 640 | + public function removeSubAdmin($userId, $groupid) { |
|
| 641 | + $group = $this->groupManager->get($groupid); |
|
| 642 | + $user = $this->userManager->get($userId); |
|
| 643 | + $subAdminManager = $this->groupManager->getSubAdmin(); |
|
| 644 | + |
|
| 645 | + // Check if the user exists |
|
| 646 | + if($user === null) { |
|
| 647 | + throw new OCSException('User does not exist', 101); |
|
| 648 | + } |
|
| 649 | + // Check if the group exists |
|
| 650 | + if($group === null) { |
|
| 651 | + throw new OCSException('Group does not exist', 101); |
|
| 652 | + } |
|
| 653 | + // Check if they are a subadmin of this said group |
|
| 654 | + if(!$subAdminManager->isSubAdminofGroup($user, $group)) { |
|
| 655 | + throw new OCSException('User is not a subadmin of this group', 102); |
|
| 656 | + } |
|
| 657 | + |
|
| 658 | + // Go |
|
| 659 | + if($subAdminManager->deleteSubAdmin($user, $group)) { |
|
| 660 | + return new DataResponse(); |
|
| 661 | + } else { |
|
| 662 | + throw new OCSException('Unknown error occurred', 103); |
|
| 663 | + } |
|
| 664 | + } |
|
| 665 | + |
|
| 666 | + /** |
|
| 667 | + * Get the groups a user is a subadmin of |
|
| 668 | + * |
|
| 669 | + * @param string $userId |
|
| 670 | + * @return DataResponse |
|
| 671 | + * @throws OCSException |
|
| 672 | + */ |
|
| 673 | + public function getUserSubAdminGroups($userId) { |
|
| 674 | + $user = $this->userManager->get($userId); |
|
| 675 | + // Check if the user exists |
|
| 676 | + if($user === null) { |
|
| 677 | + throw new OCSException('User does not exist', 101); |
|
| 678 | + } |
|
| 679 | + |
|
| 680 | + // Get the subadmin groups |
|
| 681 | + $groups = $this->groupManager->getSubAdmin()->getSubAdminsGroups($user); |
|
| 682 | + foreach ($groups as $key => $group) { |
|
| 683 | + $groups[$key] = $group->getGID(); |
|
| 684 | + } |
|
| 685 | + |
|
| 686 | + if(!$groups) { |
|
| 687 | + throw new OCSException('Unknown error occurred', 102); |
|
| 688 | + } else { |
|
| 689 | + return new DataResponse($groups); |
|
| 690 | + } |
|
| 691 | + } |
|
| 692 | + |
|
| 693 | + /** |
|
| 694 | + * @param string $userId |
|
| 695 | + * @return array |
|
| 696 | + * @throws \OCP\Files\NotFoundException |
|
| 697 | + */ |
|
| 698 | + protected function fillStorageInfo($userId) { |
|
| 699 | + try { |
|
| 700 | + \OC_Util::tearDownFS(); |
|
| 701 | + \OC_Util::setupFS($userId); |
|
| 702 | + $storage = OC_Helper::getStorageInfo('/'); |
|
| 703 | + $data = [ |
|
| 704 | + 'free' => $storage['free'], |
|
| 705 | + 'used' => $storage['used'], |
|
| 706 | + 'total' => $storage['total'], |
|
| 707 | + 'relative' => $storage['relative'], |
|
| 708 | + 'quota' => $storage['quota'], |
|
| 709 | + ]; |
|
| 710 | + } catch (NotFoundException $ex) { |
|
| 711 | + $data = []; |
|
| 712 | + } |
|
| 713 | + return $data; |
|
| 714 | + } |
|
| 715 | 715 | } |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | // Admin? Or SubAdmin? |
| 105 | 105 | $uid = $user->getUID(); |
| 106 | 106 | $subAdminManager = $this->groupManager->getSubAdmin(); |
| 107 | - if($this->groupManager->isAdmin($uid)){ |
|
| 107 | + if ($this->groupManager->isAdmin($uid)) { |
|
| 108 | 108 | $users = $this->userManager->search($search, $limit, $offset); |
| 109 | 109 | } else if ($subAdminManager->isSubAdmin($user)) { |
| 110 | 110 | $subAdminOfGroups = $subAdminManager->getSubAdminsGroups($user); |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | $subAdminOfGroups[$key] = $group->getGID(); |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | - if($offset === null) { |
|
| 115 | + if ($offset === null) { |
|
| 116 | 116 | $offset = 0; |
| 117 | 117 | } |
| 118 | 118 | |
@@ -146,22 +146,22 @@ discard block |
||
| 146 | 146 | $isAdmin = $this->groupManager->isAdmin($user->getUID()); |
| 147 | 147 | $subAdminManager = $this->groupManager->getSubAdmin(); |
| 148 | 148 | |
| 149 | - if($this->userManager->userExists($userid)) { |
|
| 149 | + if ($this->userManager->userExists($userid)) { |
|
| 150 | 150 | $this->logger->error('Failed addUser attempt: User already exists.', ['app' => 'ocs_api']); |
| 151 | 151 | throw new OCSException('User already exists', 102); |
| 152 | 152 | } |
| 153 | 153 | |
| 154 | - if(is_array($groups)) { |
|
| 154 | + if (is_array($groups)) { |
|
| 155 | 155 | foreach ($groups as $group) { |
| 156 | - if(!$this->groupManager->groupExists($group)) { |
|
| 156 | + if (!$this->groupManager->groupExists($group)) { |
|
| 157 | 157 | throw new OCSException('group '.$group.' does not exist', 104); |
| 158 | 158 | } |
| 159 | - if(!$isAdmin && !$subAdminManager->isSubAdminofGroup($user, $this->groupManager->get($group))) { |
|
| 160 | - throw new OCSException('insufficient privileges for group '. $group, 105); |
|
| 159 | + if (!$isAdmin && !$subAdminManager->isSubAdminofGroup($user, $this->groupManager->get($group))) { |
|
| 160 | + throw new OCSException('insufficient privileges for group '.$group, 105); |
|
| 161 | 161 | } |
| 162 | 162 | } |
| 163 | 163 | } else { |
| 164 | - if(!$isAdmin) { |
|
| 164 | + if (!$isAdmin) { |
|
| 165 | 165 | throw new OCSException('no group specified (required for subadmins)', 106); |
| 166 | 166 | } |
| 167 | 167 | } |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | public function getCurrentUser() { |
| 211 | 211 | $user = $this->userSession->getUser(); |
| 212 | 212 | if ($user) { |
| 213 | - $data = $this->getUserData($user->getUID()); |
|
| 213 | + $data = $this->getUserData($user->getUID()); |
|
| 214 | 214 | // rename "displayname" to "display-name" only for this call to keep |
| 215 | 215 | // the API stable. |
| 216 | 216 | $data['display-name'] = $data['displayname']; |
@@ -236,17 +236,17 @@ discard block |
||
| 236 | 236 | |
| 237 | 237 | // Check if the target user exists |
| 238 | 238 | $targetUserObject = $this->userManager->get($userId); |
| 239 | - if($targetUserObject === null) { |
|
| 239 | + if ($targetUserObject === null) { |
|
| 240 | 240 | throw new OCSException('The requested user could not be found', \OCP\API::RESPOND_NOT_FOUND); |
| 241 | 241 | } |
| 242 | 242 | |
| 243 | 243 | // Admin? Or SubAdmin? |
| 244 | - if($this->groupManager->isAdmin($currentLoggedInUser->getUID()) |
|
| 244 | + if ($this->groupManager->isAdmin($currentLoggedInUser->getUID()) |
|
| 245 | 245 | || $this->groupManager->getSubAdmin()->isUserAccessible($currentLoggedInUser, $targetUserObject)) { |
| 246 | 246 | $data['enabled'] = $this->config->getUserValue($userId, 'core', 'enabled', 'true'); |
| 247 | 247 | } else { |
| 248 | 248 | // Check they are looking up themselves |
| 249 | - if($currentLoggedInUser->getUID() !== $userId) { |
|
| 249 | + if ($currentLoggedInUser->getUID() !== $userId) { |
|
| 250 | 250 | throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
| 251 | 251 | } |
| 252 | 252 | } |
@@ -284,24 +284,24 @@ discard block |
||
| 284 | 284 | $currentLoggedInUser = $this->userSession->getUser(); |
| 285 | 285 | |
| 286 | 286 | $targetUser = $this->userManager->get($userId); |
| 287 | - if($targetUser === null) { |
|
| 287 | + if ($targetUser === null) { |
|
| 288 | 288 | throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
| 289 | 289 | } |
| 290 | 290 | |
| 291 | 291 | $permittedFields = []; |
| 292 | - if($userId === $currentLoggedInUser->getUID()) { |
|
| 292 | + if ($userId === $currentLoggedInUser->getUID()) { |
|
| 293 | 293 | // Editing self (display, email) |
| 294 | 294 | $permittedFields[] = 'display'; |
| 295 | 295 | $permittedFields[] = 'email'; |
| 296 | 296 | $permittedFields[] = 'password'; |
| 297 | 297 | // If admin they can edit their own quota |
| 298 | - if($this->groupManager->isAdmin($currentLoggedInUser->getUID())) { |
|
| 298 | + if ($this->groupManager->isAdmin($currentLoggedInUser->getUID())) { |
|
| 299 | 299 | $permittedFields[] = 'quota'; |
| 300 | 300 | } |
| 301 | 301 | } else { |
| 302 | 302 | // Check if admin / subadmin |
| 303 | 303 | $subAdminManager = $this->groupManager->getSubAdmin(); |
| 304 | - if($subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser) |
|
| 304 | + if ($subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser) |
|
| 305 | 305 | || $this->groupManager->isAdmin($currentLoggedInUser->getUID())) { |
| 306 | 306 | // They have permissions over the user |
| 307 | 307 | $permittedFields[] = 'display'; |
@@ -314,17 +314,17 @@ discard block |
||
| 314 | 314 | } |
| 315 | 315 | } |
| 316 | 316 | // Check if permitted to edit this field |
| 317 | - if(!in_array($key, $permittedFields)) { |
|
| 317 | + if (!in_array($key, $permittedFields)) { |
|
| 318 | 318 | throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
| 319 | 319 | } |
| 320 | 320 | // Process the edit |
| 321 | - switch($key) { |
|
| 321 | + switch ($key) { |
|
| 322 | 322 | case 'display': |
| 323 | 323 | $targetUser->setDisplayName($value); |
| 324 | 324 | break; |
| 325 | 325 | case 'quota': |
| 326 | 326 | $quota = $value; |
| 327 | - if($quota !== 'none' && $quota !== 'default') { |
|
| 327 | + if ($quota !== 'none' && $quota !== 'default') { |
|
| 328 | 328 | if (is_numeric($quota)) { |
| 329 | 329 | $quota = (float) $quota; |
| 330 | 330 | } else { |
@@ -333,9 +333,9 @@ discard block |
||
| 333 | 333 | if ($quota === false) { |
| 334 | 334 | throw new OCSException('Invalid quota value '.$value, 103); |
| 335 | 335 | } |
| 336 | - if($quota === 0) { |
|
| 336 | + if ($quota === 0) { |
|
| 337 | 337 | $quota = 'default'; |
| 338 | - }else if($quota === -1) { |
|
| 338 | + } else if ($quota === -1) { |
|
| 339 | 339 | $quota = 'none'; |
| 340 | 340 | } else { |
| 341 | 341 | $quota = \OCP\Util::humanFileSize($quota); |
@@ -347,7 +347,7 @@ discard block |
||
| 347 | 347 | $targetUser->setPassword($value); |
| 348 | 348 | break; |
| 349 | 349 | case 'email': |
| 350 | - if(filter_var($value, FILTER_VALIDATE_EMAIL)) { |
|
| 350 | + if (filter_var($value, FILTER_VALIDATE_EMAIL)) { |
|
| 351 | 351 | $targetUser->setEMailAddress($value); |
| 352 | 352 | } else { |
| 353 | 353 | throw new OCSException('', 102); |
@@ -373,18 +373,18 @@ discard block |
||
| 373 | 373 | |
| 374 | 374 | $targetUser = $this->userManager->get($userId); |
| 375 | 375 | |
| 376 | - if($targetUser === null || $targetUser->getUID() === $currentLoggedInUser->getUID()) { |
|
| 376 | + if ($targetUser === null || $targetUser->getUID() === $currentLoggedInUser->getUID()) { |
|
| 377 | 377 | throw new OCSException('', 101); |
| 378 | 378 | } |
| 379 | 379 | |
| 380 | 380 | // If not permitted |
| 381 | 381 | $subAdminManager = $this->groupManager->getSubAdmin(); |
| 382 | - if(!$this->groupManager->isAdmin($currentLoggedInUser->getUID()) && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)) { |
|
| 382 | + if (!$this->groupManager->isAdmin($currentLoggedInUser->getUID()) && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)) { |
|
| 383 | 383 | throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
| 384 | 384 | } |
| 385 | 385 | |
| 386 | 386 | // Go ahead with the delete |
| 387 | - if($targetUser->delete()) { |
|
| 387 | + if ($targetUser->delete()) { |
|
| 388 | 388 | return new DataResponse(); |
| 389 | 389 | } else { |
| 390 | 390 | throw new OCSException('', 101); |
@@ -428,13 +428,13 @@ discard block |
||
| 428 | 428 | $currentLoggedInUser = $this->userSession->getUser(); |
| 429 | 429 | |
| 430 | 430 | $targetUser = $this->userManager->get($userId); |
| 431 | - if($targetUser === null || $targetUser->getUID() === $currentLoggedInUser->getUID()) { |
|
| 431 | + if ($targetUser === null || $targetUser->getUID() === $currentLoggedInUser->getUID()) { |
|
| 432 | 432 | throw new OCSException('', 101); |
| 433 | 433 | } |
| 434 | 434 | |
| 435 | 435 | // If not permitted |
| 436 | 436 | $subAdminManager = $this->groupManager->getSubAdmin(); |
| 437 | - if(!$this->groupManager->isAdmin($currentLoggedInUser->getUID()) && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)) { |
|
| 437 | + if (!$this->groupManager->isAdmin($currentLoggedInUser->getUID()) && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)) { |
|
| 438 | 438 | throw new OCSException('', \OCP\API::RESPOND_UNAUTHORISED); |
| 439 | 439 | } |
| 440 | 440 | |
@@ -455,11 +455,11 @@ discard block |
||
| 455 | 455 | $loggedInUser = $this->userSession->getUser(); |
| 456 | 456 | |
| 457 | 457 | $targetUser = $this->userManager->get($userId); |
| 458 | - if($targetUser === null) { |
|
| 458 | + if ($targetUser === null) { |
|
| 459 | 459 | throw new OCSException('', \OCP\API::RESPOND_NOT_FOUND); |
| 460 | 460 | } |
| 461 | 461 | |
| 462 | - if($targetUser->getUID() === $loggedInUser->getUID() || $this->groupManager->isAdmin($loggedInUser->getUID())) { |
|
| 462 | + if ($targetUser->getUID() === $loggedInUser->getUID() || $this->groupManager->isAdmin($loggedInUser->getUID())) { |
|
| 463 | 463 | // Self lookup or admin lookup |
| 464 | 464 | return new DataResponse([ |
| 465 | 465 | 'groups' => $this->groupManager->getUserGroupIds($targetUser) |
@@ -468,7 +468,7 @@ discard block |
||
| 468 | 468 | $subAdminManager = $this->groupManager->getSubAdmin(); |
| 469 | 469 | |
| 470 | 470 | // Looking up someone else |
| 471 | - if($subAdminManager->isUserAccessible($loggedInUser, $targetUser)) { |
|
| 471 | + if ($subAdminManager->isUserAccessible($loggedInUser, $targetUser)) { |
|
| 472 | 472 | // Return the group that the method caller is subadmin of for the user in question |
| 473 | 473 | /** @var IGroup[] $getSubAdminsGroups */ |
| 474 | 474 | $getSubAdminsGroups = $subAdminManager->getSubAdminsGroups($loggedInUser); |
@@ -498,16 +498,16 @@ discard block |
||
| 498 | 498 | * @throws OCSException |
| 499 | 499 | */ |
| 500 | 500 | public function addToGroup($userId, $groupid = '') { |
| 501 | - if($groupid === '') { |
|
| 501 | + if ($groupid === '') { |
|
| 502 | 502 | throw new OCSException('', 101); |
| 503 | 503 | } |
| 504 | 504 | |
| 505 | 505 | $group = $this->groupManager->get($groupid); |
| 506 | 506 | $targetUser = $this->userManager->get($userId); |
| 507 | - if($group === null) { |
|
| 507 | + if ($group === null) { |
|
| 508 | 508 | throw new OCSException('', 102); |
| 509 | 509 | } |
| 510 | - if($targetUser === null) { |
|
| 510 | + if ($targetUser === null) { |
|
| 511 | 511 | throw new OCSException('', 103); |
| 512 | 512 | } |
| 513 | 513 | |
@@ -535,17 +535,17 @@ discard block |
||
| 535 | 535 | public function removeFromGroup($userId, $groupid) { |
| 536 | 536 | $loggedInUser = $this->userSession->getUser(); |
| 537 | 537 | |
| 538 | - if($groupid === null) { |
|
| 538 | + if ($groupid === null) { |
|
| 539 | 539 | throw new OCSException('', 101); |
| 540 | 540 | } |
| 541 | 541 | |
| 542 | 542 | $group = $this->groupManager->get($groupid); |
| 543 | - if($group === null) { |
|
| 543 | + if ($group === null) { |
|
| 544 | 544 | throw new OCSException('', 102); |
| 545 | 545 | } |
| 546 | 546 | |
| 547 | 547 | $targetUser = $this->userManager->get($userId); |
| 548 | - if($targetUser === null) { |
|
| 548 | + if ($targetUser === null) { |
|
| 549 | 549 | throw new OCSException('', 103); |
| 550 | 550 | } |
| 551 | 551 | |
@@ -569,7 +569,7 @@ discard block |
||
| 569 | 569 | } else if (!$this->groupManager->isAdmin($loggedInUser->getUID())) { |
| 570 | 570 | /** @var IGroup[] $subAdminGroups */ |
| 571 | 571 | $subAdminGroups = $subAdminManager->getSubAdminsGroups($loggedInUser); |
| 572 | - $subAdminGroups = array_map(function (IGroup $subAdminGroup) { |
|
| 572 | + $subAdminGroups = array_map(function(IGroup $subAdminGroup) { |
|
| 573 | 573 | return $subAdminGroup->getGID(); |
| 574 | 574 | }, $subAdminGroups); |
| 575 | 575 | $userGroups = $this->groupManager->getUserGroupIds($targetUser); |
@@ -601,15 +601,15 @@ discard block |
||
| 601 | 601 | $user = $this->userManager->get($userId); |
| 602 | 602 | |
| 603 | 603 | // Check if the user exists |
| 604 | - if($user === null) { |
|
| 604 | + if ($user === null) { |
|
| 605 | 605 | throw new OCSException('User does not exist', 101); |
| 606 | 606 | } |
| 607 | 607 | // Check if group exists |
| 608 | - if($group === null) { |
|
| 609 | - throw new OCSException('Group:'.$groupid.' does not exist', 102); |
|
| 608 | + if ($group === null) { |
|
| 609 | + throw new OCSException('Group:'.$groupid.' does not exist', 102); |
|
| 610 | 610 | } |
| 611 | 611 | // Check if trying to make subadmin of admin group |
| 612 | - if(strtolower($groupid) === 'admin') { |
|
| 612 | + if (strtolower($groupid) === 'admin') { |
|
| 613 | 613 | throw new OCSException('Cannot create subadmins for admin group', 103); |
| 614 | 614 | } |
| 615 | 615 | |
@@ -620,7 +620,7 @@ discard block |
||
| 620 | 620 | return new DataResponse(); |
| 621 | 621 | } |
| 622 | 622 | // Go |
| 623 | - if($subAdminManager->createSubAdmin($user, $group)) { |
|
| 623 | + if ($subAdminManager->createSubAdmin($user, $group)) { |
|
| 624 | 624 | return new DataResponse(); |
| 625 | 625 | } else { |
| 626 | 626 | throw new OCSException('Unknown error occurred', 103); |
@@ -643,20 +643,20 @@ discard block |
||
| 643 | 643 | $subAdminManager = $this->groupManager->getSubAdmin(); |
| 644 | 644 | |
| 645 | 645 | // Check if the user exists |
| 646 | - if($user === null) { |
|
| 646 | + if ($user === null) { |
|
| 647 | 647 | throw new OCSException('User does not exist', 101); |
| 648 | 648 | } |
| 649 | 649 | // Check if the group exists |
| 650 | - if($group === null) { |
|
| 650 | + if ($group === null) { |
|
| 651 | 651 | throw new OCSException('Group does not exist', 101); |
| 652 | 652 | } |
| 653 | 653 | // Check if they are a subadmin of this said group |
| 654 | - if(!$subAdminManager->isSubAdminofGroup($user, $group)) { |
|
| 654 | + if (!$subAdminManager->isSubAdminofGroup($user, $group)) { |
|
| 655 | 655 | throw new OCSException('User is not a subadmin of this group', 102); |
| 656 | 656 | } |
| 657 | 657 | |
| 658 | 658 | // Go |
| 659 | - if($subAdminManager->deleteSubAdmin($user, $group)) { |
|
| 659 | + if ($subAdminManager->deleteSubAdmin($user, $group)) { |
|
| 660 | 660 | return new DataResponse(); |
| 661 | 661 | } else { |
| 662 | 662 | throw new OCSException('Unknown error occurred', 103); |
@@ -673,7 +673,7 @@ discard block |
||
| 673 | 673 | public function getUserSubAdminGroups($userId) { |
| 674 | 674 | $user = $this->userManager->get($userId); |
| 675 | 675 | // Check if the user exists |
| 676 | - if($user === null) { |
|
| 676 | + if ($user === null) { |
|
| 677 | 677 | throw new OCSException('User does not exist', 101); |
| 678 | 678 | } |
| 679 | 679 | |
@@ -683,7 +683,7 @@ discard block |
||
| 683 | 683 | $groups[$key] = $group->getGID(); |
| 684 | 684 | } |
| 685 | 685 | |
| 686 | - if(!$groups) { |
|
| 686 | + if (!$groups) { |
|
| 687 | 687 | throw new OCSException('Unknown error occurred', 102); |
| 688 | 688 | } else { |
| 689 | 689 | return new DataResponse($groups); |
@@ -335,7 +335,7 @@ |
||
| 335 | 335 | } |
| 336 | 336 | if($quota === 0) { |
| 337 | 337 | $quota = 'default'; |
| 338 | - }else if($quota === -1) { |
|
| 338 | + } else if($quota === -1) { |
|
| 339 | 339 | $quota = 'none'; |
| 340 | 340 | } else { |
| 341 | 341 | $quota = \OCP\Util::humanFileSize($quota); |
@@ -185,10 +185,10 @@ discard block |
||
| 185 | 185 | * publish activity if a file/folder was shared by mail |
| 186 | 186 | * |
| 187 | 187 | * @param $subject |
| 188 | - * @param $parameters |
|
| 189 | - * @param $affectedUser |
|
| 188 | + * @param string[] $parameters |
|
| 189 | + * @param string $affectedUser |
|
| 190 | 190 | * @param $fileId |
| 191 | - * @param $filePath |
|
| 191 | + * @param string $filePath |
|
| 192 | 192 | */ |
| 193 | 193 | protected function publishActivity($subject, $parameters, $affectedUser, $fileId, $filePath) { |
| 194 | 194 | $event = $this->activityManager->generateEvent(); |
@@ -240,6 +240,12 @@ discard block |
||
| 240 | 240 | |
| 241 | 241 | } |
| 242 | 242 | |
| 243 | + /** |
|
| 244 | + * @param string $link |
|
| 245 | + * @param string $owner |
|
| 246 | + * @param string $initiator |
|
| 247 | + * @param string $shareWith |
|
| 248 | + */ |
|
| 243 | 249 | protected function sendMailNotification($filename, $link, $owner, $initiator, $shareWith) { |
| 244 | 250 | $ownerUser = $this->userManager->get($owner); |
| 245 | 251 | $initiatorUser = $this->userManager->get($initiator); |
@@ -269,6 +275,7 @@ discard block |
||
| 269 | 275 | * @param $link |
| 270 | 276 | * @param $owner |
| 271 | 277 | * @param $initiator |
| 278 | + * @param string $template |
|
| 272 | 279 | * @return string plain text mail |
| 273 | 280 | * @throws HintException |
| 274 | 281 | */ |
@@ -708,7 +715,7 @@ discard block |
||
| 708 | 715 | /** |
| 709 | 716 | * get database row of a give share |
| 710 | 717 | * |
| 711 | - * @param $id |
|
| 718 | + * @param integer $id |
|
| 712 | 719 | * @return array |
| 713 | 720 | * @throws ShareNotFound |
| 714 | 721 | */ |
@@ -48,728 +48,728 @@ |
||
| 48 | 48 | */ |
| 49 | 49 | class ShareByMailProvider implements IShareProvider { |
| 50 | 50 | |
| 51 | - /** @var IDBConnection */ |
|
| 52 | - private $dbConnection; |
|
| 53 | - |
|
| 54 | - /** @var ILogger */ |
|
| 55 | - private $logger; |
|
| 56 | - |
|
| 57 | - /** @var ISecureRandom */ |
|
| 58 | - private $secureRandom; |
|
| 59 | - |
|
| 60 | - /** @var IUserManager */ |
|
| 61 | - private $userManager; |
|
| 62 | - |
|
| 63 | - /** @var IRootFolder */ |
|
| 64 | - private $rootFolder; |
|
| 65 | - |
|
| 66 | - /** @var IL10N */ |
|
| 67 | - private $l; |
|
| 68 | - |
|
| 69 | - /** @var IMailer */ |
|
| 70 | - private $mailer; |
|
| 71 | - |
|
| 72 | - /** @var IURLGenerator */ |
|
| 73 | - private $urlGenerator; |
|
| 74 | - |
|
| 75 | - /** @var IManager */ |
|
| 76 | - private $activityManager; |
|
| 77 | - |
|
| 78 | - /** |
|
| 79 | - * Return the identifier of this provider. |
|
| 80 | - * |
|
| 81 | - * @return string Containing only [a-zA-Z0-9] |
|
| 82 | - */ |
|
| 83 | - public function identifier() { |
|
| 84 | - return 'ocShareByMail'; |
|
| 85 | - } |
|
| 86 | - |
|
| 87 | - /** |
|
| 88 | - * DefaultShareProvider constructor. |
|
| 89 | - * |
|
| 90 | - * @param IDBConnection $connection |
|
| 91 | - * @param ISecureRandom $secureRandom |
|
| 92 | - * @param IUserManager $userManager |
|
| 93 | - * @param IRootFolder $rootFolder |
|
| 94 | - * @param IL10N $l |
|
| 95 | - * @param ILogger $logger |
|
| 96 | - * @param IMailer $mailer |
|
| 97 | - * @param IURLGenerator $urlGenerator |
|
| 98 | - * @param IManager $activityManager |
|
| 99 | - */ |
|
| 100 | - public function __construct( |
|
| 101 | - IDBConnection $connection, |
|
| 102 | - ISecureRandom $secureRandom, |
|
| 103 | - IUserManager $userManager, |
|
| 104 | - IRootFolder $rootFolder, |
|
| 105 | - IL10N $l, |
|
| 106 | - ILogger $logger, |
|
| 107 | - IMailer $mailer, |
|
| 108 | - IURLGenerator $urlGenerator, |
|
| 109 | - IManager $activityManager |
|
| 110 | - ) { |
|
| 111 | - $this->dbConnection = $connection; |
|
| 112 | - $this->secureRandom = $secureRandom; |
|
| 113 | - $this->userManager = $userManager; |
|
| 114 | - $this->rootFolder = $rootFolder; |
|
| 115 | - $this->l = $l; |
|
| 116 | - $this->logger = $logger; |
|
| 117 | - $this->mailer = $mailer; |
|
| 118 | - $this->urlGenerator = $urlGenerator; |
|
| 119 | - $this->activityManager = $activityManager; |
|
| 120 | - } |
|
| 121 | - |
|
| 122 | - /** |
|
| 123 | - * Share a path |
|
| 124 | - * |
|
| 125 | - * @param IShare $share |
|
| 126 | - * @return IShare The share object |
|
| 127 | - * @throws ShareNotFound |
|
| 128 | - * @throws \Exception |
|
| 129 | - */ |
|
| 130 | - public function create(IShare $share) { |
|
| 131 | - |
|
| 132 | - $shareWith = $share->getSharedWith(); |
|
| 133 | - /* |
|
| 51 | + /** @var IDBConnection */ |
|
| 52 | + private $dbConnection; |
|
| 53 | + |
|
| 54 | + /** @var ILogger */ |
|
| 55 | + private $logger; |
|
| 56 | + |
|
| 57 | + /** @var ISecureRandom */ |
|
| 58 | + private $secureRandom; |
|
| 59 | + |
|
| 60 | + /** @var IUserManager */ |
|
| 61 | + private $userManager; |
|
| 62 | + |
|
| 63 | + /** @var IRootFolder */ |
|
| 64 | + private $rootFolder; |
|
| 65 | + |
|
| 66 | + /** @var IL10N */ |
|
| 67 | + private $l; |
|
| 68 | + |
|
| 69 | + /** @var IMailer */ |
|
| 70 | + private $mailer; |
|
| 71 | + |
|
| 72 | + /** @var IURLGenerator */ |
|
| 73 | + private $urlGenerator; |
|
| 74 | + |
|
| 75 | + /** @var IManager */ |
|
| 76 | + private $activityManager; |
|
| 77 | + |
|
| 78 | + /** |
|
| 79 | + * Return the identifier of this provider. |
|
| 80 | + * |
|
| 81 | + * @return string Containing only [a-zA-Z0-9] |
|
| 82 | + */ |
|
| 83 | + public function identifier() { |
|
| 84 | + return 'ocShareByMail'; |
|
| 85 | + } |
|
| 86 | + |
|
| 87 | + /** |
|
| 88 | + * DefaultShareProvider constructor. |
|
| 89 | + * |
|
| 90 | + * @param IDBConnection $connection |
|
| 91 | + * @param ISecureRandom $secureRandom |
|
| 92 | + * @param IUserManager $userManager |
|
| 93 | + * @param IRootFolder $rootFolder |
|
| 94 | + * @param IL10N $l |
|
| 95 | + * @param ILogger $logger |
|
| 96 | + * @param IMailer $mailer |
|
| 97 | + * @param IURLGenerator $urlGenerator |
|
| 98 | + * @param IManager $activityManager |
|
| 99 | + */ |
|
| 100 | + public function __construct( |
|
| 101 | + IDBConnection $connection, |
|
| 102 | + ISecureRandom $secureRandom, |
|
| 103 | + IUserManager $userManager, |
|
| 104 | + IRootFolder $rootFolder, |
|
| 105 | + IL10N $l, |
|
| 106 | + ILogger $logger, |
|
| 107 | + IMailer $mailer, |
|
| 108 | + IURLGenerator $urlGenerator, |
|
| 109 | + IManager $activityManager |
|
| 110 | + ) { |
|
| 111 | + $this->dbConnection = $connection; |
|
| 112 | + $this->secureRandom = $secureRandom; |
|
| 113 | + $this->userManager = $userManager; |
|
| 114 | + $this->rootFolder = $rootFolder; |
|
| 115 | + $this->l = $l; |
|
| 116 | + $this->logger = $logger; |
|
| 117 | + $this->mailer = $mailer; |
|
| 118 | + $this->urlGenerator = $urlGenerator; |
|
| 119 | + $this->activityManager = $activityManager; |
|
| 120 | + } |
|
| 121 | + |
|
| 122 | + /** |
|
| 123 | + * Share a path |
|
| 124 | + * |
|
| 125 | + * @param IShare $share |
|
| 126 | + * @return IShare The share object |
|
| 127 | + * @throws ShareNotFound |
|
| 128 | + * @throws \Exception |
|
| 129 | + */ |
|
| 130 | + public function create(IShare $share) { |
|
| 131 | + |
|
| 132 | + $shareWith = $share->getSharedWith(); |
|
| 133 | + /* |
|
| 134 | 134 | * Check if file is not already shared with the remote user |
| 135 | 135 | */ |
| 136 | - $alreadyShared = $this->getSharedWith($shareWith, \OCP\Share::SHARE_TYPE_EMAIL, $share->getNode(), 1, 0); |
|
| 137 | - if (!empty($alreadyShared)) { |
|
| 138 | - $message = 'Sharing %s failed, this item is already shared with %s'; |
|
| 139 | - $message_t = $this->l->t('Sharing %s failed, this item is already shared with %s', array($share->getNode()->getName(), $shareWith)); |
|
| 140 | - $this->logger->debug(sprintf($message, $share->getNode()->getName(), $shareWith), ['app' => 'Federated File Sharing']); |
|
| 141 | - throw new \Exception($message_t); |
|
| 142 | - } |
|
| 143 | - |
|
| 144 | - $shareId = $this->createMailShare($share); |
|
| 145 | - $this->createActivity($share); |
|
| 146 | - $data = $this->getRawShare($shareId); |
|
| 147 | - return $this->createShareObject($data); |
|
| 148 | - |
|
| 149 | - } |
|
| 150 | - |
|
| 151 | - /** |
|
| 152 | - * create activity if a file/folder was shared by mail |
|
| 153 | - * |
|
| 154 | - * @param IShare $share |
|
| 155 | - */ |
|
| 156 | - protected function createActivity(IShare $share) { |
|
| 157 | - |
|
| 158 | - $userFolder = $this->rootFolder->getUserFolder($share->getSharedBy()); |
|
| 159 | - |
|
| 160 | - $this->publishActivity( |
|
| 161 | - Activity::SUBJECT_SHARED_EMAIL_SELF, |
|
| 162 | - [$userFolder->getRelativePath($share->getNode()->getPath()), $share->getSharedWith()], |
|
| 163 | - $share->getSharedBy(), |
|
| 164 | - $share->getNode()->getId(), |
|
| 165 | - $userFolder->getRelativePath($share->getNode()->getPath()) |
|
| 166 | - ); |
|
| 167 | - |
|
| 168 | - if ($share->getShareOwner() !== $share->getSharedBy()) { |
|
| 169 | - $ownerFolder = $this->rootFolder->getUserFolder($share->getShareOwner()); |
|
| 170 | - $fileId = $share->getNode()->getId(); |
|
| 171 | - $nodes = $ownerFolder->getById($fileId); |
|
| 172 | - $ownerPath = $nodes[0]->getPath(); |
|
| 173 | - $this->publishActivity( |
|
| 174 | - Activity::SUBJECT_SHARED_EMAIL_BY, |
|
| 175 | - [$ownerFolder->getRelativePath($ownerPath), $share->getSharedWith(), $share->getSharedBy()], |
|
| 176 | - $share->getShareOwner(), |
|
| 177 | - $fileId, |
|
| 178 | - $ownerFolder->getRelativePath($ownerPath) |
|
| 179 | - ); |
|
| 180 | - } |
|
| 181 | - |
|
| 182 | - } |
|
| 183 | - |
|
| 184 | - /** |
|
| 185 | - * publish activity if a file/folder was shared by mail |
|
| 186 | - * |
|
| 187 | - * @param $subject |
|
| 188 | - * @param $parameters |
|
| 189 | - * @param $affectedUser |
|
| 190 | - * @param $fileId |
|
| 191 | - * @param $filePath |
|
| 192 | - */ |
|
| 193 | - protected function publishActivity($subject, $parameters, $affectedUser, $fileId, $filePath) { |
|
| 194 | - $event = $this->activityManager->generateEvent(); |
|
| 195 | - $event->setApp('sharebymail') |
|
| 196 | - ->setType('shared') |
|
| 197 | - ->setSubject($subject, $parameters) |
|
| 198 | - ->setAffectedUser($affectedUser) |
|
| 199 | - ->setObject('files', $fileId, $filePath); |
|
| 200 | - $this->activityManager->publish($event); |
|
| 201 | - |
|
| 202 | - } |
|
| 203 | - |
|
| 204 | - /** |
|
| 205 | - * @param IShare $share |
|
| 206 | - * @return int |
|
| 207 | - * @throws \Exception |
|
| 208 | - */ |
|
| 209 | - protected function createMailShare(IShare $share) { |
|
| 210 | - $share->setToken($this->generateToken()); |
|
| 211 | - $shareId = $this->addShareToDB( |
|
| 212 | - $share->getNodeId(), |
|
| 213 | - $share->getNodeType(), |
|
| 214 | - $share->getSharedWith(), |
|
| 215 | - $share->getSharedBy(), |
|
| 216 | - $share->getShareOwner(), |
|
| 217 | - $share->getPermissions(), |
|
| 218 | - $share->getToken() |
|
| 219 | - ); |
|
| 220 | - |
|
| 221 | - try { |
|
| 222 | - $link = $this->urlGenerator->linkToRouteAbsolute('files_sharing.sharecontroller.showShare', |
|
| 223 | - ['token' => $share->getToken()]); |
|
| 224 | - $this->sendMailNotification($share->getNode()->getName(), |
|
| 225 | - $link, |
|
| 226 | - $share->getShareOwner(), |
|
| 227 | - $share->getSharedBy(), $share->getSharedWith()); |
|
| 228 | - } catch (HintException $hintException) { |
|
| 229 | - $this->logger->error('Failed to send share by mail: ' . $hintException->getMessage()); |
|
| 230 | - $this->removeShareFromTable($shareId); |
|
| 231 | - throw $hintException; |
|
| 232 | - } catch (\Exception $e) { |
|
| 233 | - $this->logger->error('Failed to send share by mail: ' . $e->getMessage()); |
|
| 234 | - $this->removeShareFromTable($shareId); |
|
| 235 | - throw new HintException('Failed to send share by mail', |
|
| 236 | - $this->l->t('Failed to send share by E-mail')); |
|
| 237 | - } |
|
| 238 | - |
|
| 239 | - return $shareId; |
|
| 240 | - |
|
| 241 | - } |
|
| 242 | - |
|
| 243 | - protected function sendMailNotification($filename, $link, $owner, $initiator, $shareWith) { |
|
| 244 | - $ownerUser = $this->userManager->get($owner); |
|
| 245 | - $initiatorUser = $this->userManager->get($initiator); |
|
| 246 | - $ownerDisplayName = ($ownerUser instanceof IUser) ? $ownerUser->getDisplayName() : $owner; |
|
| 247 | - $initiatorDisplayName = ($initiatorUser instanceof IUser) ? $initiatorUser->getDisplayName() : $initiator; |
|
| 248 | - if ($owner === $initiator) { |
|
| 249 | - $subject = (string)$this->l->t('%s shared »%s« with you', array($ownerDisplayName, $filename)); |
|
| 250 | - } else { |
|
| 251 | - $subject = (string)$this->l->t('%s shared »%s« with you on behalf of %s', array($ownerDisplayName, $filename, $initiatorDisplayName)); |
|
| 252 | - } |
|
| 253 | - |
|
| 254 | - $message = $this->mailer->createMessage(); |
|
| 255 | - $htmlBody = $this->createMailBody('mail', $filename, $link, $ownerDisplayName, $initiatorDisplayName); |
|
| 256 | - $textBody = $this->createMailBody('altmail', $filename, $link, $ownerDisplayName, $initiatorDisplayName); |
|
| 257 | - $message->setTo([$shareWith]); |
|
| 258 | - $message->setSubject($subject); |
|
| 259 | - $message->setBody($textBody, 'text/plain'); |
|
| 260 | - $message->setHtmlBody($htmlBody); |
|
| 261 | - $this->mailer->send($message); |
|
| 262 | - |
|
| 263 | - } |
|
| 264 | - |
|
| 265 | - /** |
|
| 266 | - * create mail body |
|
| 267 | - * |
|
| 268 | - * @param $filename |
|
| 269 | - * @param $link |
|
| 270 | - * @param $owner |
|
| 271 | - * @param $initiator |
|
| 272 | - * @return string plain text mail |
|
| 273 | - * @throws HintException |
|
| 274 | - */ |
|
| 275 | - protected function createMailBody($template, $filename, $link, $owner, $initiator) { |
|
| 276 | - |
|
| 277 | - $mailBodyTemplate = new Template('sharebymail', $template, ''); |
|
| 278 | - $mailBodyTemplate->assign ('filename', $filename); |
|
| 279 | - $mailBodyTemplate->assign ('link', $link); |
|
| 280 | - $mailBodyTemplate->assign ('owner', $owner); |
|
| 281 | - $mailBodyTemplate->assign ('initiator', $initiator); |
|
| 282 | - $mailBodyTemplate->assign ('onBehalfOf', $initiator !== $owner); |
|
| 283 | - $mailBody = $mailBodyTemplate->fetchPage(); |
|
| 284 | - |
|
| 285 | - if (is_string($mailBody)) { |
|
| 286 | - return $mailBody; |
|
| 287 | - } |
|
| 288 | - |
|
| 289 | - throw new HintException('Failed to create the E-mail', |
|
| 290 | - $this->l->t('Failed to create the E-mail')); |
|
| 291 | - } |
|
| 292 | - |
|
| 293 | - /** |
|
| 294 | - * generate share token |
|
| 295 | - * |
|
| 296 | - * @return string |
|
| 297 | - */ |
|
| 298 | - protected function generateToken() { |
|
| 299 | - $token = $this->secureRandom->generate( |
|
| 300 | - 15, ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_UPPER . ISecureRandom::CHAR_DIGITS); |
|
| 301 | - return $token; |
|
| 302 | - } |
|
| 303 | - |
|
| 304 | - /** |
|
| 305 | - * Get all children of this share |
|
| 306 | - * |
|
| 307 | - * @param IShare $parent |
|
| 308 | - * @return IShare[] |
|
| 309 | - */ |
|
| 310 | - public function getChildren(IShare $parent) { |
|
| 311 | - $children = []; |
|
| 312 | - |
|
| 313 | - $qb = $this->dbConnection->getQueryBuilder(); |
|
| 314 | - $qb->select('*') |
|
| 315 | - ->from('share') |
|
| 316 | - ->where($qb->expr()->eq('parent', $qb->createNamedParameter($parent->getId()))) |
|
| 317 | - ->andWhere($qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL))) |
|
| 318 | - ->orderBy('id'); |
|
| 319 | - |
|
| 320 | - $cursor = $qb->execute(); |
|
| 321 | - while($data = $cursor->fetch()) { |
|
| 322 | - $children[] = $this->createShareObject($data); |
|
| 323 | - } |
|
| 324 | - $cursor->closeCursor(); |
|
| 325 | - |
|
| 326 | - return $children; |
|
| 327 | - } |
|
| 328 | - |
|
| 329 | - /** |
|
| 330 | - * add share to the database and return the ID |
|
| 331 | - * |
|
| 332 | - * @param int $itemSource |
|
| 333 | - * @param string $itemType |
|
| 334 | - * @param string $shareWith |
|
| 335 | - * @param string $sharedBy |
|
| 336 | - * @param string $uidOwner |
|
| 337 | - * @param int $permissions |
|
| 338 | - * @param string $token |
|
| 339 | - * @return int |
|
| 340 | - */ |
|
| 341 | - protected function addShareToDB($itemSource, $itemType, $shareWith, $sharedBy, $uidOwner, $permissions, $token) { |
|
| 342 | - $qb = $this->dbConnection->getQueryBuilder(); |
|
| 343 | - $qb->insert('share') |
|
| 344 | - ->setValue('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL)) |
|
| 345 | - ->setValue('item_type', $qb->createNamedParameter($itemType)) |
|
| 346 | - ->setValue('item_source', $qb->createNamedParameter($itemSource)) |
|
| 347 | - ->setValue('file_source', $qb->createNamedParameter($itemSource)) |
|
| 348 | - ->setValue('share_with', $qb->createNamedParameter($shareWith)) |
|
| 349 | - ->setValue('uid_owner', $qb->createNamedParameter($uidOwner)) |
|
| 350 | - ->setValue('uid_initiator', $qb->createNamedParameter($sharedBy)) |
|
| 351 | - ->setValue('permissions', $qb->createNamedParameter($permissions)) |
|
| 352 | - ->setValue('token', $qb->createNamedParameter($token)) |
|
| 353 | - ->setValue('stime', $qb->createNamedParameter(time())); |
|
| 354 | - |
|
| 355 | - /* |
|
| 136 | + $alreadyShared = $this->getSharedWith($shareWith, \OCP\Share::SHARE_TYPE_EMAIL, $share->getNode(), 1, 0); |
|
| 137 | + if (!empty($alreadyShared)) { |
|
| 138 | + $message = 'Sharing %s failed, this item is already shared with %s'; |
|
| 139 | + $message_t = $this->l->t('Sharing %s failed, this item is already shared with %s', array($share->getNode()->getName(), $shareWith)); |
|
| 140 | + $this->logger->debug(sprintf($message, $share->getNode()->getName(), $shareWith), ['app' => 'Federated File Sharing']); |
|
| 141 | + throw new \Exception($message_t); |
|
| 142 | + } |
|
| 143 | + |
|
| 144 | + $shareId = $this->createMailShare($share); |
|
| 145 | + $this->createActivity($share); |
|
| 146 | + $data = $this->getRawShare($shareId); |
|
| 147 | + return $this->createShareObject($data); |
|
| 148 | + |
|
| 149 | + } |
|
| 150 | + |
|
| 151 | + /** |
|
| 152 | + * create activity if a file/folder was shared by mail |
|
| 153 | + * |
|
| 154 | + * @param IShare $share |
|
| 155 | + */ |
|
| 156 | + protected function createActivity(IShare $share) { |
|
| 157 | + |
|
| 158 | + $userFolder = $this->rootFolder->getUserFolder($share->getSharedBy()); |
|
| 159 | + |
|
| 160 | + $this->publishActivity( |
|
| 161 | + Activity::SUBJECT_SHARED_EMAIL_SELF, |
|
| 162 | + [$userFolder->getRelativePath($share->getNode()->getPath()), $share->getSharedWith()], |
|
| 163 | + $share->getSharedBy(), |
|
| 164 | + $share->getNode()->getId(), |
|
| 165 | + $userFolder->getRelativePath($share->getNode()->getPath()) |
|
| 166 | + ); |
|
| 167 | + |
|
| 168 | + if ($share->getShareOwner() !== $share->getSharedBy()) { |
|
| 169 | + $ownerFolder = $this->rootFolder->getUserFolder($share->getShareOwner()); |
|
| 170 | + $fileId = $share->getNode()->getId(); |
|
| 171 | + $nodes = $ownerFolder->getById($fileId); |
|
| 172 | + $ownerPath = $nodes[0]->getPath(); |
|
| 173 | + $this->publishActivity( |
|
| 174 | + Activity::SUBJECT_SHARED_EMAIL_BY, |
|
| 175 | + [$ownerFolder->getRelativePath($ownerPath), $share->getSharedWith(), $share->getSharedBy()], |
|
| 176 | + $share->getShareOwner(), |
|
| 177 | + $fileId, |
|
| 178 | + $ownerFolder->getRelativePath($ownerPath) |
|
| 179 | + ); |
|
| 180 | + } |
|
| 181 | + |
|
| 182 | + } |
|
| 183 | + |
|
| 184 | + /** |
|
| 185 | + * publish activity if a file/folder was shared by mail |
|
| 186 | + * |
|
| 187 | + * @param $subject |
|
| 188 | + * @param $parameters |
|
| 189 | + * @param $affectedUser |
|
| 190 | + * @param $fileId |
|
| 191 | + * @param $filePath |
|
| 192 | + */ |
|
| 193 | + protected function publishActivity($subject, $parameters, $affectedUser, $fileId, $filePath) { |
|
| 194 | + $event = $this->activityManager->generateEvent(); |
|
| 195 | + $event->setApp('sharebymail') |
|
| 196 | + ->setType('shared') |
|
| 197 | + ->setSubject($subject, $parameters) |
|
| 198 | + ->setAffectedUser($affectedUser) |
|
| 199 | + ->setObject('files', $fileId, $filePath); |
|
| 200 | + $this->activityManager->publish($event); |
|
| 201 | + |
|
| 202 | + } |
|
| 203 | + |
|
| 204 | + /** |
|
| 205 | + * @param IShare $share |
|
| 206 | + * @return int |
|
| 207 | + * @throws \Exception |
|
| 208 | + */ |
|
| 209 | + protected function createMailShare(IShare $share) { |
|
| 210 | + $share->setToken($this->generateToken()); |
|
| 211 | + $shareId = $this->addShareToDB( |
|
| 212 | + $share->getNodeId(), |
|
| 213 | + $share->getNodeType(), |
|
| 214 | + $share->getSharedWith(), |
|
| 215 | + $share->getSharedBy(), |
|
| 216 | + $share->getShareOwner(), |
|
| 217 | + $share->getPermissions(), |
|
| 218 | + $share->getToken() |
|
| 219 | + ); |
|
| 220 | + |
|
| 221 | + try { |
|
| 222 | + $link = $this->urlGenerator->linkToRouteAbsolute('files_sharing.sharecontroller.showShare', |
|
| 223 | + ['token' => $share->getToken()]); |
|
| 224 | + $this->sendMailNotification($share->getNode()->getName(), |
|
| 225 | + $link, |
|
| 226 | + $share->getShareOwner(), |
|
| 227 | + $share->getSharedBy(), $share->getSharedWith()); |
|
| 228 | + } catch (HintException $hintException) { |
|
| 229 | + $this->logger->error('Failed to send share by mail: ' . $hintException->getMessage()); |
|
| 230 | + $this->removeShareFromTable($shareId); |
|
| 231 | + throw $hintException; |
|
| 232 | + } catch (\Exception $e) { |
|
| 233 | + $this->logger->error('Failed to send share by mail: ' . $e->getMessage()); |
|
| 234 | + $this->removeShareFromTable($shareId); |
|
| 235 | + throw new HintException('Failed to send share by mail', |
|
| 236 | + $this->l->t('Failed to send share by E-mail')); |
|
| 237 | + } |
|
| 238 | + |
|
| 239 | + return $shareId; |
|
| 240 | + |
|
| 241 | + } |
|
| 242 | + |
|
| 243 | + protected function sendMailNotification($filename, $link, $owner, $initiator, $shareWith) { |
|
| 244 | + $ownerUser = $this->userManager->get($owner); |
|
| 245 | + $initiatorUser = $this->userManager->get($initiator); |
|
| 246 | + $ownerDisplayName = ($ownerUser instanceof IUser) ? $ownerUser->getDisplayName() : $owner; |
|
| 247 | + $initiatorDisplayName = ($initiatorUser instanceof IUser) ? $initiatorUser->getDisplayName() : $initiator; |
|
| 248 | + if ($owner === $initiator) { |
|
| 249 | + $subject = (string)$this->l->t('%s shared »%s« with you', array($ownerDisplayName, $filename)); |
|
| 250 | + } else { |
|
| 251 | + $subject = (string)$this->l->t('%s shared »%s« with you on behalf of %s', array($ownerDisplayName, $filename, $initiatorDisplayName)); |
|
| 252 | + } |
|
| 253 | + |
|
| 254 | + $message = $this->mailer->createMessage(); |
|
| 255 | + $htmlBody = $this->createMailBody('mail', $filename, $link, $ownerDisplayName, $initiatorDisplayName); |
|
| 256 | + $textBody = $this->createMailBody('altmail', $filename, $link, $ownerDisplayName, $initiatorDisplayName); |
|
| 257 | + $message->setTo([$shareWith]); |
|
| 258 | + $message->setSubject($subject); |
|
| 259 | + $message->setBody($textBody, 'text/plain'); |
|
| 260 | + $message->setHtmlBody($htmlBody); |
|
| 261 | + $this->mailer->send($message); |
|
| 262 | + |
|
| 263 | + } |
|
| 264 | + |
|
| 265 | + /** |
|
| 266 | + * create mail body |
|
| 267 | + * |
|
| 268 | + * @param $filename |
|
| 269 | + * @param $link |
|
| 270 | + * @param $owner |
|
| 271 | + * @param $initiator |
|
| 272 | + * @return string plain text mail |
|
| 273 | + * @throws HintException |
|
| 274 | + */ |
|
| 275 | + protected function createMailBody($template, $filename, $link, $owner, $initiator) { |
|
| 276 | + |
|
| 277 | + $mailBodyTemplate = new Template('sharebymail', $template, ''); |
|
| 278 | + $mailBodyTemplate->assign ('filename', $filename); |
|
| 279 | + $mailBodyTemplate->assign ('link', $link); |
|
| 280 | + $mailBodyTemplate->assign ('owner', $owner); |
|
| 281 | + $mailBodyTemplate->assign ('initiator', $initiator); |
|
| 282 | + $mailBodyTemplate->assign ('onBehalfOf', $initiator !== $owner); |
|
| 283 | + $mailBody = $mailBodyTemplate->fetchPage(); |
|
| 284 | + |
|
| 285 | + if (is_string($mailBody)) { |
|
| 286 | + return $mailBody; |
|
| 287 | + } |
|
| 288 | + |
|
| 289 | + throw new HintException('Failed to create the E-mail', |
|
| 290 | + $this->l->t('Failed to create the E-mail')); |
|
| 291 | + } |
|
| 292 | + |
|
| 293 | + /** |
|
| 294 | + * generate share token |
|
| 295 | + * |
|
| 296 | + * @return string |
|
| 297 | + */ |
|
| 298 | + protected function generateToken() { |
|
| 299 | + $token = $this->secureRandom->generate( |
|
| 300 | + 15, ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_UPPER . ISecureRandom::CHAR_DIGITS); |
|
| 301 | + return $token; |
|
| 302 | + } |
|
| 303 | + |
|
| 304 | + /** |
|
| 305 | + * Get all children of this share |
|
| 306 | + * |
|
| 307 | + * @param IShare $parent |
|
| 308 | + * @return IShare[] |
|
| 309 | + */ |
|
| 310 | + public function getChildren(IShare $parent) { |
|
| 311 | + $children = []; |
|
| 312 | + |
|
| 313 | + $qb = $this->dbConnection->getQueryBuilder(); |
|
| 314 | + $qb->select('*') |
|
| 315 | + ->from('share') |
|
| 316 | + ->where($qb->expr()->eq('parent', $qb->createNamedParameter($parent->getId()))) |
|
| 317 | + ->andWhere($qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL))) |
|
| 318 | + ->orderBy('id'); |
|
| 319 | + |
|
| 320 | + $cursor = $qb->execute(); |
|
| 321 | + while($data = $cursor->fetch()) { |
|
| 322 | + $children[] = $this->createShareObject($data); |
|
| 323 | + } |
|
| 324 | + $cursor->closeCursor(); |
|
| 325 | + |
|
| 326 | + return $children; |
|
| 327 | + } |
|
| 328 | + |
|
| 329 | + /** |
|
| 330 | + * add share to the database and return the ID |
|
| 331 | + * |
|
| 332 | + * @param int $itemSource |
|
| 333 | + * @param string $itemType |
|
| 334 | + * @param string $shareWith |
|
| 335 | + * @param string $sharedBy |
|
| 336 | + * @param string $uidOwner |
|
| 337 | + * @param int $permissions |
|
| 338 | + * @param string $token |
|
| 339 | + * @return int |
|
| 340 | + */ |
|
| 341 | + protected function addShareToDB($itemSource, $itemType, $shareWith, $sharedBy, $uidOwner, $permissions, $token) { |
|
| 342 | + $qb = $this->dbConnection->getQueryBuilder(); |
|
| 343 | + $qb->insert('share') |
|
| 344 | + ->setValue('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL)) |
|
| 345 | + ->setValue('item_type', $qb->createNamedParameter($itemType)) |
|
| 346 | + ->setValue('item_source', $qb->createNamedParameter($itemSource)) |
|
| 347 | + ->setValue('file_source', $qb->createNamedParameter($itemSource)) |
|
| 348 | + ->setValue('share_with', $qb->createNamedParameter($shareWith)) |
|
| 349 | + ->setValue('uid_owner', $qb->createNamedParameter($uidOwner)) |
|
| 350 | + ->setValue('uid_initiator', $qb->createNamedParameter($sharedBy)) |
|
| 351 | + ->setValue('permissions', $qb->createNamedParameter($permissions)) |
|
| 352 | + ->setValue('token', $qb->createNamedParameter($token)) |
|
| 353 | + ->setValue('stime', $qb->createNamedParameter(time())); |
|
| 354 | + |
|
| 355 | + /* |
|
| 356 | 356 | * Added to fix https://github.com/owncloud/core/issues/22215 |
| 357 | 357 | * Can be removed once we get rid of ajax/share.php |
| 358 | 358 | */ |
| 359 | - $qb->setValue('file_target', $qb->createNamedParameter('')); |
|
| 360 | - |
|
| 361 | - $qb->execute(); |
|
| 362 | - $id = $qb->getLastInsertId(); |
|
| 363 | - |
|
| 364 | - return (int)$id; |
|
| 365 | - } |
|
| 366 | - |
|
| 367 | - /** |
|
| 368 | - * Update a share |
|
| 369 | - * |
|
| 370 | - * @param IShare $share |
|
| 371 | - * @return IShare The share object |
|
| 372 | - */ |
|
| 373 | - public function update(IShare $share) { |
|
| 374 | - /* |
|
| 359 | + $qb->setValue('file_target', $qb->createNamedParameter('')); |
|
| 360 | + |
|
| 361 | + $qb->execute(); |
|
| 362 | + $id = $qb->getLastInsertId(); |
|
| 363 | + |
|
| 364 | + return (int)$id; |
|
| 365 | + } |
|
| 366 | + |
|
| 367 | + /** |
|
| 368 | + * Update a share |
|
| 369 | + * |
|
| 370 | + * @param IShare $share |
|
| 371 | + * @return IShare The share object |
|
| 372 | + */ |
|
| 373 | + public function update(IShare $share) { |
|
| 374 | + /* |
|
| 375 | 375 | * We allow updating the permissions of mail shares |
| 376 | 376 | */ |
| 377 | - $qb = $this->dbConnection->getQueryBuilder(); |
|
| 378 | - $qb->update('share') |
|
| 379 | - ->where($qb->expr()->eq('id', $qb->createNamedParameter($share->getId()))) |
|
| 380 | - ->set('permissions', $qb->createNamedParameter($share->getPermissions())) |
|
| 381 | - ->set('uid_owner', $qb->createNamedParameter($share->getShareOwner())) |
|
| 382 | - ->set('uid_initiator', $qb->createNamedParameter($share->getSharedBy())) |
|
| 383 | - ->execute(); |
|
| 384 | - |
|
| 385 | - return $share; |
|
| 386 | - } |
|
| 387 | - |
|
| 388 | - /** |
|
| 389 | - * @inheritdoc |
|
| 390 | - */ |
|
| 391 | - public function move(IShare $share, $recipient) { |
|
| 392 | - /** |
|
| 393 | - * nothing to do here, mail shares are only outgoing shares |
|
| 394 | - */ |
|
| 395 | - return $share; |
|
| 396 | - } |
|
| 397 | - |
|
| 398 | - /** |
|
| 399 | - * Delete a share (owner unShares the file) |
|
| 400 | - * |
|
| 401 | - * @param IShare $share |
|
| 402 | - */ |
|
| 403 | - public function delete(IShare $share) { |
|
| 404 | - $this->removeShareFromTable($share->getId()); |
|
| 405 | - } |
|
| 406 | - |
|
| 407 | - /** |
|
| 408 | - * @inheritdoc |
|
| 409 | - */ |
|
| 410 | - public function deleteFromSelf(IShare $share, $recipient) { |
|
| 411 | - // nothing to do here, mail shares are only outgoing shares |
|
| 412 | - return; |
|
| 413 | - } |
|
| 414 | - |
|
| 415 | - /** |
|
| 416 | - * @inheritdoc |
|
| 417 | - */ |
|
| 418 | - public function getSharesBy($userId, $shareType, $node, $reshares, $limit, $offset) { |
|
| 419 | - $qb = $this->dbConnection->getQueryBuilder(); |
|
| 420 | - $qb->select('*') |
|
| 421 | - ->from('share'); |
|
| 422 | - |
|
| 423 | - $qb->andWhere($qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL))); |
|
| 424 | - |
|
| 425 | - /** |
|
| 426 | - * Reshares for this user are shares where they are the owner. |
|
| 427 | - */ |
|
| 428 | - if ($reshares === false) { |
|
| 429 | - //Special case for old shares created via the web UI |
|
| 430 | - $or1 = $qb->expr()->andX( |
|
| 431 | - $qb->expr()->eq('uid_owner', $qb->createNamedParameter($userId)), |
|
| 432 | - $qb->expr()->isNull('uid_initiator') |
|
| 433 | - ); |
|
| 434 | - |
|
| 435 | - $qb->andWhere( |
|
| 436 | - $qb->expr()->orX( |
|
| 437 | - $qb->expr()->eq('uid_initiator', $qb->createNamedParameter($userId)), |
|
| 438 | - $or1 |
|
| 439 | - ) |
|
| 440 | - ); |
|
| 441 | - } else { |
|
| 442 | - $qb->andWhere( |
|
| 443 | - $qb->expr()->orX( |
|
| 444 | - $qb->expr()->eq('uid_owner', $qb->createNamedParameter($userId)), |
|
| 445 | - $qb->expr()->eq('uid_initiator', $qb->createNamedParameter($userId)) |
|
| 446 | - ) |
|
| 447 | - ); |
|
| 448 | - } |
|
| 449 | - |
|
| 450 | - if ($node !== null) { |
|
| 451 | - $qb->andWhere($qb->expr()->eq('file_source', $qb->createNamedParameter($node->getId()))); |
|
| 452 | - } |
|
| 453 | - |
|
| 454 | - if ($limit !== -1) { |
|
| 455 | - $qb->setMaxResults($limit); |
|
| 456 | - } |
|
| 457 | - |
|
| 458 | - $qb->setFirstResult($offset); |
|
| 459 | - $qb->orderBy('id'); |
|
| 460 | - |
|
| 461 | - $cursor = $qb->execute(); |
|
| 462 | - $shares = []; |
|
| 463 | - while($data = $cursor->fetch()) { |
|
| 464 | - $shares[] = $this->createShareObject($data); |
|
| 465 | - } |
|
| 466 | - $cursor->closeCursor(); |
|
| 467 | - |
|
| 468 | - return $shares; |
|
| 469 | - } |
|
| 470 | - |
|
| 471 | - /** |
|
| 472 | - * @inheritdoc |
|
| 473 | - */ |
|
| 474 | - public function getShareById($id, $recipientId = null) { |
|
| 475 | - $qb = $this->dbConnection->getQueryBuilder(); |
|
| 476 | - |
|
| 477 | - $qb->select('*') |
|
| 478 | - ->from('share') |
|
| 479 | - ->where($qb->expr()->eq('id', $qb->createNamedParameter($id))) |
|
| 480 | - ->andWhere($qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL))); |
|
| 481 | - |
|
| 482 | - $cursor = $qb->execute(); |
|
| 483 | - $data = $cursor->fetch(); |
|
| 484 | - $cursor->closeCursor(); |
|
| 485 | - |
|
| 486 | - if ($data === false) { |
|
| 487 | - throw new ShareNotFound(); |
|
| 488 | - } |
|
| 489 | - |
|
| 490 | - try { |
|
| 491 | - $share = $this->createShareObject($data); |
|
| 492 | - } catch (InvalidShare $e) { |
|
| 493 | - throw new ShareNotFound(); |
|
| 494 | - } |
|
| 495 | - |
|
| 496 | - return $share; |
|
| 497 | - } |
|
| 498 | - |
|
| 499 | - /** |
|
| 500 | - * Get shares for a given path |
|
| 501 | - * |
|
| 502 | - * @param \OCP\Files\Node $path |
|
| 503 | - * @return IShare[] |
|
| 504 | - */ |
|
| 505 | - public function getSharesByPath(Node $path) { |
|
| 506 | - $qb = $this->dbConnection->getQueryBuilder(); |
|
| 507 | - |
|
| 508 | - $cursor = $qb->select('*') |
|
| 509 | - ->from('share') |
|
| 510 | - ->andWhere($qb->expr()->eq('file_source', $qb->createNamedParameter($path->getId()))) |
|
| 511 | - ->andWhere($qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL))) |
|
| 512 | - ->execute(); |
|
| 513 | - |
|
| 514 | - $shares = []; |
|
| 515 | - while($data = $cursor->fetch()) { |
|
| 516 | - $shares[] = $this->createShareObject($data); |
|
| 517 | - } |
|
| 518 | - $cursor->closeCursor(); |
|
| 519 | - |
|
| 520 | - return $shares; |
|
| 521 | - } |
|
| 522 | - |
|
| 523 | - /** |
|
| 524 | - * @inheritdoc |
|
| 525 | - */ |
|
| 526 | - public function getSharedWith($userId, $shareType, $node, $limit, $offset) { |
|
| 527 | - /** @var IShare[] $shares */ |
|
| 528 | - $shares = []; |
|
| 529 | - |
|
| 530 | - //Get shares directly with this user |
|
| 531 | - $qb = $this->dbConnection->getQueryBuilder(); |
|
| 532 | - $qb->select('*') |
|
| 533 | - ->from('share'); |
|
| 534 | - |
|
| 535 | - // Order by id |
|
| 536 | - $qb->orderBy('id'); |
|
| 537 | - |
|
| 538 | - // Set limit and offset |
|
| 539 | - if ($limit !== -1) { |
|
| 540 | - $qb->setMaxResults($limit); |
|
| 541 | - } |
|
| 542 | - $qb->setFirstResult($offset); |
|
| 543 | - |
|
| 544 | - $qb->where($qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL))); |
|
| 545 | - $qb->andWhere($qb->expr()->eq('share_with', $qb->createNamedParameter($userId))); |
|
| 546 | - |
|
| 547 | - // Filter by node if provided |
|
| 548 | - if ($node !== null) { |
|
| 549 | - $qb->andWhere($qb->expr()->eq('file_source', $qb->createNamedParameter($node->getId()))); |
|
| 550 | - } |
|
| 551 | - |
|
| 552 | - $cursor = $qb->execute(); |
|
| 553 | - |
|
| 554 | - while($data = $cursor->fetch()) { |
|
| 555 | - $shares[] = $this->createShareObject($data); |
|
| 556 | - } |
|
| 557 | - $cursor->closeCursor(); |
|
| 558 | - |
|
| 559 | - |
|
| 560 | - return $shares; |
|
| 561 | - } |
|
| 562 | - |
|
| 563 | - /** |
|
| 564 | - * Get a share by token |
|
| 565 | - * |
|
| 566 | - * @param string $token |
|
| 567 | - * @return IShare |
|
| 568 | - * @throws ShareNotFound |
|
| 569 | - */ |
|
| 570 | - public function getShareByToken($token) { |
|
| 571 | - $qb = $this->dbConnection->getQueryBuilder(); |
|
| 572 | - |
|
| 573 | - $cursor = $qb->select('*') |
|
| 574 | - ->from('share') |
|
| 575 | - ->where($qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL))) |
|
| 576 | - ->andWhere($qb->expr()->eq('token', $qb->createNamedParameter($token))) |
|
| 577 | - ->execute(); |
|
| 578 | - |
|
| 579 | - $data = $cursor->fetch(); |
|
| 580 | - |
|
| 581 | - if ($data === false) { |
|
| 582 | - throw new ShareNotFound('Share not found', $this->l->t('Could not find share')); |
|
| 583 | - } |
|
| 584 | - |
|
| 585 | - try { |
|
| 586 | - $share = $this->createShareObject($data); |
|
| 587 | - } catch (InvalidShare $e) { |
|
| 588 | - throw new ShareNotFound('Share not found', $this->l->t('Could not find share')); |
|
| 589 | - } |
|
| 590 | - |
|
| 591 | - return $share; |
|
| 592 | - } |
|
| 593 | - |
|
| 594 | - /** |
|
| 595 | - * remove share from table |
|
| 596 | - * |
|
| 597 | - * @param string $shareId |
|
| 598 | - */ |
|
| 599 | - protected function removeShareFromTable($shareId) { |
|
| 600 | - $qb = $this->dbConnection->getQueryBuilder(); |
|
| 601 | - $qb->delete('share') |
|
| 602 | - ->where($qb->expr()->eq('id', $qb->createNamedParameter($shareId))); |
|
| 603 | - $qb->execute(); |
|
| 604 | - } |
|
| 605 | - |
|
| 606 | - /** |
|
| 607 | - * Create a share object from an database row |
|
| 608 | - * |
|
| 609 | - * @param array $data |
|
| 610 | - * @return IShare |
|
| 611 | - * @throws InvalidShare |
|
| 612 | - * @throws ShareNotFound |
|
| 613 | - */ |
|
| 614 | - protected function createShareObject($data) { |
|
| 615 | - |
|
| 616 | - $share = new Share($this->rootFolder, $this->userManager); |
|
| 617 | - $share->setId((int)$data['id']) |
|
| 618 | - ->setShareType((int)$data['share_type']) |
|
| 619 | - ->setPermissions((int)$data['permissions']) |
|
| 620 | - ->setTarget($data['file_target']) |
|
| 621 | - ->setMailSend((bool)$data['mail_send']) |
|
| 622 | - ->setToken($data['token']); |
|
| 623 | - |
|
| 624 | - $shareTime = new \DateTime(); |
|
| 625 | - $shareTime->setTimestamp((int)$data['stime']); |
|
| 626 | - $share->setShareTime($shareTime); |
|
| 627 | - $share->setSharedWith($data['share_with']); |
|
| 628 | - |
|
| 629 | - if ($data['uid_initiator'] !== null) { |
|
| 630 | - $share->setShareOwner($data['uid_owner']); |
|
| 631 | - $share->setSharedBy($data['uid_initiator']); |
|
| 632 | - } else { |
|
| 633 | - //OLD SHARE |
|
| 634 | - $share->setSharedBy($data['uid_owner']); |
|
| 635 | - $path = $this->getNode($share->getSharedBy(), (int)$data['file_source']); |
|
| 636 | - |
|
| 637 | - $owner = $path->getOwner(); |
|
| 638 | - $share->setShareOwner($owner->getUID()); |
|
| 639 | - } |
|
| 640 | - |
|
| 641 | - $share->setNodeId((int)$data['file_source']); |
|
| 642 | - $share->setNodeType($data['item_type']); |
|
| 643 | - |
|
| 644 | - $share->setProviderId($this->identifier()); |
|
| 645 | - |
|
| 646 | - return $share; |
|
| 647 | - } |
|
| 648 | - |
|
| 649 | - /** |
|
| 650 | - * Get the node with file $id for $user |
|
| 651 | - * |
|
| 652 | - * @param string $userId |
|
| 653 | - * @param int $id |
|
| 654 | - * @return \OCP\Files\File|\OCP\Files\Folder |
|
| 655 | - * @throws InvalidShare |
|
| 656 | - */ |
|
| 657 | - private function getNode($userId, $id) { |
|
| 658 | - try { |
|
| 659 | - $userFolder = $this->rootFolder->getUserFolder($userId); |
|
| 660 | - } catch (NotFoundException $e) { |
|
| 661 | - throw new InvalidShare(); |
|
| 662 | - } |
|
| 663 | - |
|
| 664 | - $nodes = $userFolder->getById($id); |
|
| 665 | - |
|
| 666 | - if (empty($nodes)) { |
|
| 667 | - throw new InvalidShare(); |
|
| 668 | - } |
|
| 669 | - |
|
| 670 | - return $nodes[0]; |
|
| 671 | - } |
|
| 672 | - |
|
| 673 | - /** |
|
| 674 | - * A user is deleted from the system |
|
| 675 | - * So clean up the relevant shares. |
|
| 676 | - * |
|
| 677 | - * @param string $uid |
|
| 678 | - * @param int $shareType |
|
| 679 | - */ |
|
| 680 | - public function userDeleted($uid, $shareType) { |
|
| 681 | - $qb = $this->dbConnection->getQueryBuilder(); |
|
| 682 | - |
|
| 683 | - $qb->delete('share') |
|
| 684 | - ->where($qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL))) |
|
| 685 | - ->andWhere($qb->expr()->eq('uid_owner', $qb->createNamedParameter($uid))) |
|
| 686 | - ->execute(); |
|
| 687 | - } |
|
| 688 | - |
|
| 689 | - /** |
|
| 690 | - * This provider does not support group shares |
|
| 691 | - * |
|
| 692 | - * @param string $gid |
|
| 693 | - */ |
|
| 694 | - public function groupDeleted($gid) { |
|
| 695 | - return; |
|
| 696 | - } |
|
| 697 | - |
|
| 698 | - /** |
|
| 699 | - * This provider does not support group shares |
|
| 700 | - * |
|
| 701 | - * @param string $uid |
|
| 702 | - * @param string $gid |
|
| 703 | - */ |
|
| 704 | - public function userDeletedFromGroup($uid, $gid) { |
|
| 705 | - return; |
|
| 706 | - } |
|
| 707 | - |
|
| 708 | - /** |
|
| 709 | - * get database row of a give share |
|
| 710 | - * |
|
| 711 | - * @param $id |
|
| 712 | - * @return array |
|
| 713 | - * @throws ShareNotFound |
|
| 714 | - */ |
|
| 715 | - protected function getRawShare($id) { |
|
| 716 | - |
|
| 717 | - // Now fetch the inserted share and create a complete share object |
|
| 718 | - $qb = $this->dbConnection->getQueryBuilder(); |
|
| 719 | - $qb->select('*') |
|
| 720 | - ->from('share') |
|
| 721 | - ->where($qb->expr()->eq('id', $qb->createNamedParameter($id))); |
|
| 722 | - |
|
| 723 | - $cursor = $qb->execute(); |
|
| 724 | - $data = $cursor->fetch(); |
|
| 725 | - $cursor->closeCursor(); |
|
| 726 | - |
|
| 727 | - if ($data === false) { |
|
| 728 | - throw new ShareNotFound; |
|
| 729 | - } |
|
| 730 | - |
|
| 731 | - return $data; |
|
| 732 | - } |
|
| 733 | - |
|
| 734 | - public function getSharesInFolder($userId, Folder $node, $reshares) { |
|
| 735 | - $qb = $this->dbConnection->getQueryBuilder(); |
|
| 736 | - $qb->select('*') |
|
| 737 | - ->from('share', 's') |
|
| 738 | - ->andWhere($qb->expr()->orX( |
|
| 739 | - $qb->expr()->eq('item_type', $qb->createNamedParameter('file')), |
|
| 740 | - $qb->expr()->eq('item_type', $qb->createNamedParameter('folder')) |
|
| 741 | - )) |
|
| 742 | - ->andWhere( |
|
| 743 | - $qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL)) |
|
| 744 | - ); |
|
| 745 | - |
|
| 746 | - /** |
|
| 747 | - * Reshares for this user are shares where they are the owner. |
|
| 748 | - */ |
|
| 749 | - if ($reshares === false) { |
|
| 750 | - $qb->andWhere($qb->expr()->eq('uid_initiator', $qb->createNamedParameter($userId))); |
|
| 751 | - } else { |
|
| 752 | - $qb->andWhere( |
|
| 753 | - $qb->expr()->orX( |
|
| 754 | - $qb->expr()->eq('uid_owner', $qb->createNamedParameter($userId)), |
|
| 755 | - $qb->expr()->eq('uid_initiator', $qb->createNamedParameter($userId)) |
|
| 756 | - ) |
|
| 757 | - ); |
|
| 758 | - } |
|
| 759 | - |
|
| 760 | - $qb->innerJoin('s', 'filecache' ,'f', 's.file_source = f.fileid'); |
|
| 761 | - $qb->andWhere($qb->expr()->eq('f.parent', $qb->createNamedParameter($node->getId()))); |
|
| 762 | - |
|
| 763 | - $qb->orderBy('id'); |
|
| 764 | - |
|
| 765 | - $cursor = $qb->execute(); |
|
| 766 | - $shares = []; |
|
| 767 | - while ($data = $cursor->fetch()) { |
|
| 768 | - $shares[$data['fileid']][] = $this->createShareObject($data); |
|
| 769 | - } |
|
| 770 | - $cursor->closeCursor(); |
|
| 771 | - |
|
| 772 | - return $shares; |
|
| 773 | - } |
|
| 377 | + $qb = $this->dbConnection->getQueryBuilder(); |
|
| 378 | + $qb->update('share') |
|
| 379 | + ->where($qb->expr()->eq('id', $qb->createNamedParameter($share->getId()))) |
|
| 380 | + ->set('permissions', $qb->createNamedParameter($share->getPermissions())) |
|
| 381 | + ->set('uid_owner', $qb->createNamedParameter($share->getShareOwner())) |
|
| 382 | + ->set('uid_initiator', $qb->createNamedParameter($share->getSharedBy())) |
|
| 383 | + ->execute(); |
|
| 384 | + |
|
| 385 | + return $share; |
|
| 386 | + } |
|
| 387 | + |
|
| 388 | + /** |
|
| 389 | + * @inheritdoc |
|
| 390 | + */ |
|
| 391 | + public function move(IShare $share, $recipient) { |
|
| 392 | + /** |
|
| 393 | + * nothing to do here, mail shares are only outgoing shares |
|
| 394 | + */ |
|
| 395 | + return $share; |
|
| 396 | + } |
|
| 397 | + |
|
| 398 | + /** |
|
| 399 | + * Delete a share (owner unShares the file) |
|
| 400 | + * |
|
| 401 | + * @param IShare $share |
|
| 402 | + */ |
|
| 403 | + public function delete(IShare $share) { |
|
| 404 | + $this->removeShareFromTable($share->getId()); |
|
| 405 | + } |
|
| 406 | + |
|
| 407 | + /** |
|
| 408 | + * @inheritdoc |
|
| 409 | + */ |
|
| 410 | + public function deleteFromSelf(IShare $share, $recipient) { |
|
| 411 | + // nothing to do here, mail shares are only outgoing shares |
|
| 412 | + return; |
|
| 413 | + } |
|
| 414 | + |
|
| 415 | + /** |
|
| 416 | + * @inheritdoc |
|
| 417 | + */ |
|
| 418 | + public function getSharesBy($userId, $shareType, $node, $reshares, $limit, $offset) { |
|
| 419 | + $qb = $this->dbConnection->getQueryBuilder(); |
|
| 420 | + $qb->select('*') |
|
| 421 | + ->from('share'); |
|
| 422 | + |
|
| 423 | + $qb->andWhere($qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL))); |
|
| 424 | + |
|
| 425 | + /** |
|
| 426 | + * Reshares for this user are shares where they are the owner. |
|
| 427 | + */ |
|
| 428 | + if ($reshares === false) { |
|
| 429 | + //Special case for old shares created via the web UI |
|
| 430 | + $or1 = $qb->expr()->andX( |
|
| 431 | + $qb->expr()->eq('uid_owner', $qb->createNamedParameter($userId)), |
|
| 432 | + $qb->expr()->isNull('uid_initiator') |
|
| 433 | + ); |
|
| 434 | + |
|
| 435 | + $qb->andWhere( |
|
| 436 | + $qb->expr()->orX( |
|
| 437 | + $qb->expr()->eq('uid_initiator', $qb->createNamedParameter($userId)), |
|
| 438 | + $or1 |
|
| 439 | + ) |
|
| 440 | + ); |
|
| 441 | + } else { |
|
| 442 | + $qb->andWhere( |
|
| 443 | + $qb->expr()->orX( |
|
| 444 | + $qb->expr()->eq('uid_owner', $qb->createNamedParameter($userId)), |
|
| 445 | + $qb->expr()->eq('uid_initiator', $qb->createNamedParameter($userId)) |
|
| 446 | + ) |
|
| 447 | + ); |
|
| 448 | + } |
|
| 449 | + |
|
| 450 | + if ($node !== null) { |
|
| 451 | + $qb->andWhere($qb->expr()->eq('file_source', $qb->createNamedParameter($node->getId()))); |
|
| 452 | + } |
|
| 453 | + |
|
| 454 | + if ($limit !== -1) { |
|
| 455 | + $qb->setMaxResults($limit); |
|
| 456 | + } |
|
| 457 | + |
|
| 458 | + $qb->setFirstResult($offset); |
|
| 459 | + $qb->orderBy('id'); |
|
| 460 | + |
|
| 461 | + $cursor = $qb->execute(); |
|
| 462 | + $shares = []; |
|
| 463 | + while($data = $cursor->fetch()) { |
|
| 464 | + $shares[] = $this->createShareObject($data); |
|
| 465 | + } |
|
| 466 | + $cursor->closeCursor(); |
|
| 467 | + |
|
| 468 | + return $shares; |
|
| 469 | + } |
|
| 470 | + |
|
| 471 | + /** |
|
| 472 | + * @inheritdoc |
|
| 473 | + */ |
|
| 474 | + public function getShareById($id, $recipientId = null) { |
|
| 475 | + $qb = $this->dbConnection->getQueryBuilder(); |
|
| 476 | + |
|
| 477 | + $qb->select('*') |
|
| 478 | + ->from('share') |
|
| 479 | + ->where($qb->expr()->eq('id', $qb->createNamedParameter($id))) |
|
| 480 | + ->andWhere($qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL))); |
|
| 481 | + |
|
| 482 | + $cursor = $qb->execute(); |
|
| 483 | + $data = $cursor->fetch(); |
|
| 484 | + $cursor->closeCursor(); |
|
| 485 | + |
|
| 486 | + if ($data === false) { |
|
| 487 | + throw new ShareNotFound(); |
|
| 488 | + } |
|
| 489 | + |
|
| 490 | + try { |
|
| 491 | + $share = $this->createShareObject($data); |
|
| 492 | + } catch (InvalidShare $e) { |
|
| 493 | + throw new ShareNotFound(); |
|
| 494 | + } |
|
| 495 | + |
|
| 496 | + return $share; |
|
| 497 | + } |
|
| 498 | + |
|
| 499 | + /** |
|
| 500 | + * Get shares for a given path |
|
| 501 | + * |
|
| 502 | + * @param \OCP\Files\Node $path |
|
| 503 | + * @return IShare[] |
|
| 504 | + */ |
|
| 505 | + public function getSharesByPath(Node $path) { |
|
| 506 | + $qb = $this->dbConnection->getQueryBuilder(); |
|
| 507 | + |
|
| 508 | + $cursor = $qb->select('*') |
|
| 509 | + ->from('share') |
|
| 510 | + ->andWhere($qb->expr()->eq('file_source', $qb->createNamedParameter($path->getId()))) |
|
| 511 | + ->andWhere($qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL))) |
|
| 512 | + ->execute(); |
|
| 513 | + |
|
| 514 | + $shares = []; |
|
| 515 | + while($data = $cursor->fetch()) { |
|
| 516 | + $shares[] = $this->createShareObject($data); |
|
| 517 | + } |
|
| 518 | + $cursor->closeCursor(); |
|
| 519 | + |
|
| 520 | + return $shares; |
|
| 521 | + } |
|
| 522 | + |
|
| 523 | + /** |
|
| 524 | + * @inheritdoc |
|
| 525 | + */ |
|
| 526 | + public function getSharedWith($userId, $shareType, $node, $limit, $offset) { |
|
| 527 | + /** @var IShare[] $shares */ |
|
| 528 | + $shares = []; |
|
| 529 | + |
|
| 530 | + //Get shares directly with this user |
|
| 531 | + $qb = $this->dbConnection->getQueryBuilder(); |
|
| 532 | + $qb->select('*') |
|
| 533 | + ->from('share'); |
|
| 534 | + |
|
| 535 | + // Order by id |
|
| 536 | + $qb->orderBy('id'); |
|
| 537 | + |
|
| 538 | + // Set limit and offset |
|
| 539 | + if ($limit !== -1) { |
|
| 540 | + $qb->setMaxResults($limit); |
|
| 541 | + } |
|
| 542 | + $qb->setFirstResult($offset); |
|
| 543 | + |
|
| 544 | + $qb->where($qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL))); |
|
| 545 | + $qb->andWhere($qb->expr()->eq('share_with', $qb->createNamedParameter($userId))); |
|
| 546 | + |
|
| 547 | + // Filter by node if provided |
|
| 548 | + if ($node !== null) { |
|
| 549 | + $qb->andWhere($qb->expr()->eq('file_source', $qb->createNamedParameter($node->getId()))); |
|
| 550 | + } |
|
| 551 | + |
|
| 552 | + $cursor = $qb->execute(); |
|
| 553 | + |
|
| 554 | + while($data = $cursor->fetch()) { |
|
| 555 | + $shares[] = $this->createShareObject($data); |
|
| 556 | + } |
|
| 557 | + $cursor->closeCursor(); |
|
| 558 | + |
|
| 559 | + |
|
| 560 | + return $shares; |
|
| 561 | + } |
|
| 562 | + |
|
| 563 | + /** |
|
| 564 | + * Get a share by token |
|
| 565 | + * |
|
| 566 | + * @param string $token |
|
| 567 | + * @return IShare |
|
| 568 | + * @throws ShareNotFound |
|
| 569 | + */ |
|
| 570 | + public function getShareByToken($token) { |
|
| 571 | + $qb = $this->dbConnection->getQueryBuilder(); |
|
| 572 | + |
|
| 573 | + $cursor = $qb->select('*') |
|
| 574 | + ->from('share') |
|
| 575 | + ->where($qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL))) |
|
| 576 | + ->andWhere($qb->expr()->eq('token', $qb->createNamedParameter($token))) |
|
| 577 | + ->execute(); |
|
| 578 | + |
|
| 579 | + $data = $cursor->fetch(); |
|
| 580 | + |
|
| 581 | + if ($data === false) { |
|
| 582 | + throw new ShareNotFound('Share not found', $this->l->t('Could not find share')); |
|
| 583 | + } |
|
| 584 | + |
|
| 585 | + try { |
|
| 586 | + $share = $this->createShareObject($data); |
|
| 587 | + } catch (InvalidShare $e) { |
|
| 588 | + throw new ShareNotFound('Share not found', $this->l->t('Could not find share')); |
|
| 589 | + } |
|
| 590 | + |
|
| 591 | + return $share; |
|
| 592 | + } |
|
| 593 | + |
|
| 594 | + /** |
|
| 595 | + * remove share from table |
|
| 596 | + * |
|
| 597 | + * @param string $shareId |
|
| 598 | + */ |
|
| 599 | + protected function removeShareFromTable($shareId) { |
|
| 600 | + $qb = $this->dbConnection->getQueryBuilder(); |
|
| 601 | + $qb->delete('share') |
|
| 602 | + ->where($qb->expr()->eq('id', $qb->createNamedParameter($shareId))); |
|
| 603 | + $qb->execute(); |
|
| 604 | + } |
|
| 605 | + |
|
| 606 | + /** |
|
| 607 | + * Create a share object from an database row |
|
| 608 | + * |
|
| 609 | + * @param array $data |
|
| 610 | + * @return IShare |
|
| 611 | + * @throws InvalidShare |
|
| 612 | + * @throws ShareNotFound |
|
| 613 | + */ |
|
| 614 | + protected function createShareObject($data) { |
|
| 615 | + |
|
| 616 | + $share = new Share($this->rootFolder, $this->userManager); |
|
| 617 | + $share->setId((int)$data['id']) |
|
| 618 | + ->setShareType((int)$data['share_type']) |
|
| 619 | + ->setPermissions((int)$data['permissions']) |
|
| 620 | + ->setTarget($data['file_target']) |
|
| 621 | + ->setMailSend((bool)$data['mail_send']) |
|
| 622 | + ->setToken($data['token']); |
|
| 623 | + |
|
| 624 | + $shareTime = new \DateTime(); |
|
| 625 | + $shareTime->setTimestamp((int)$data['stime']); |
|
| 626 | + $share->setShareTime($shareTime); |
|
| 627 | + $share->setSharedWith($data['share_with']); |
|
| 628 | + |
|
| 629 | + if ($data['uid_initiator'] !== null) { |
|
| 630 | + $share->setShareOwner($data['uid_owner']); |
|
| 631 | + $share->setSharedBy($data['uid_initiator']); |
|
| 632 | + } else { |
|
| 633 | + //OLD SHARE |
|
| 634 | + $share->setSharedBy($data['uid_owner']); |
|
| 635 | + $path = $this->getNode($share->getSharedBy(), (int)$data['file_source']); |
|
| 636 | + |
|
| 637 | + $owner = $path->getOwner(); |
|
| 638 | + $share->setShareOwner($owner->getUID()); |
|
| 639 | + } |
|
| 640 | + |
|
| 641 | + $share->setNodeId((int)$data['file_source']); |
|
| 642 | + $share->setNodeType($data['item_type']); |
|
| 643 | + |
|
| 644 | + $share->setProviderId($this->identifier()); |
|
| 645 | + |
|
| 646 | + return $share; |
|
| 647 | + } |
|
| 648 | + |
|
| 649 | + /** |
|
| 650 | + * Get the node with file $id for $user |
|
| 651 | + * |
|
| 652 | + * @param string $userId |
|
| 653 | + * @param int $id |
|
| 654 | + * @return \OCP\Files\File|\OCP\Files\Folder |
|
| 655 | + * @throws InvalidShare |
|
| 656 | + */ |
|
| 657 | + private function getNode($userId, $id) { |
|
| 658 | + try { |
|
| 659 | + $userFolder = $this->rootFolder->getUserFolder($userId); |
|
| 660 | + } catch (NotFoundException $e) { |
|
| 661 | + throw new InvalidShare(); |
|
| 662 | + } |
|
| 663 | + |
|
| 664 | + $nodes = $userFolder->getById($id); |
|
| 665 | + |
|
| 666 | + if (empty($nodes)) { |
|
| 667 | + throw new InvalidShare(); |
|
| 668 | + } |
|
| 669 | + |
|
| 670 | + return $nodes[0]; |
|
| 671 | + } |
|
| 672 | + |
|
| 673 | + /** |
|
| 674 | + * A user is deleted from the system |
|
| 675 | + * So clean up the relevant shares. |
|
| 676 | + * |
|
| 677 | + * @param string $uid |
|
| 678 | + * @param int $shareType |
|
| 679 | + */ |
|
| 680 | + public function userDeleted($uid, $shareType) { |
|
| 681 | + $qb = $this->dbConnection->getQueryBuilder(); |
|
| 682 | + |
|
| 683 | + $qb->delete('share') |
|
| 684 | + ->where($qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL))) |
|
| 685 | + ->andWhere($qb->expr()->eq('uid_owner', $qb->createNamedParameter($uid))) |
|
| 686 | + ->execute(); |
|
| 687 | + } |
|
| 688 | + |
|
| 689 | + /** |
|
| 690 | + * This provider does not support group shares |
|
| 691 | + * |
|
| 692 | + * @param string $gid |
|
| 693 | + */ |
|
| 694 | + public function groupDeleted($gid) { |
|
| 695 | + return; |
|
| 696 | + } |
|
| 697 | + |
|
| 698 | + /** |
|
| 699 | + * This provider does not support group shares |
|
| 700 | + * |
|
| 701 | + * @param string $uid |
|
| 702 | + * @param string $gid |
|
| 703 | + */ |
|
| 704 | + public function userDeletedFromGroup($uid, $gid) { |
|
| 705 | + return; |
|
| 706 | + } |
|
| 707 | + |
|
| 708 | + /** |
|
| 709 | + * get database row of a give share |
|
| 710 | + * |
|
| 711 | + * @param $id |
|
| 712 | + * @return array |
|
| 713 | + * @throws ShareNotFound |
|
| 714 | + */ |
|
| 715 | + protected function getRawShare($id) { |
|
| 716 | + |
|
| 717 | + // Now fetch the inserted share and create a complete share object |
|
| 718 | + $qb = $this->dbConnection->getQueryBuilder(); |
|
| 719 | + $qb->select('*') |
|
| 720 | + ->from('share') |
|
| 721 | + ->where($qb->expr()->eq('id', $qb->createNamedParameter($id))); |
|
| 722 | + |
|
| 723 | + $cursor = $qb->execute(); |
|
| 724 | + $data = $cursor->fetch(); |
|
| 725 | + $cursor->closeCursor(); |
|
| 726 | + |
|
| 727 | + if ($data === false) { |
|
| 728 | + throw new ShareNotFound; |
|
| 729 | + } |
|
| 730 | + |
|
| 731 | + return $data; |
|
| 732 | + } |
|
| 733 | + |
|
| 734 | + public function getSharesInFolder($userId, Folder $node, $reshares) { |
|
| 735 | + $qb = $this->dbConnection->getQueryBuilder(); |
|
| 736 | + $qb->select('*') |
|
| 737 | + ->from('share', 's') |
|
| 738 | + ->andWhere($qb->expr()->orX( |
|
| 739 | + $qb->expr()->eq('item_type', $qb->createNamedParameter('file')), |
|
| 740 | + $qb->expr()->eq('item_type', $qb->createNamedParameter('folder')) |
|
| 741 | + )) |
|
| 742 | + ->andWhere( |
|
| 743 | + $qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_EMAIL)) |
|
| 744 | + ); |
|
| 745 | + |
|
| 746 | + /** |
|
| 747 | + * Reshares for this user are shares where they are the owner. |
|
| 748 | + */ |
|
| 749 | + if ($reshares === false) { |
|
| 750 | + $qb->andWhere($qb->expr()->eq('uid_initiator', $qb->createNamedParameter($userId))); |
|
| 751 | + } else { |
|
| 752 | + $qb->andWhere( |
|
| 753 | + $qb->expr()->orX( |
|
| 754 | + $qb->expr()->eq('uid_owner', $qb->createNamedParameter($userId)), |
|
| 755 | + $qb->expr()->eq('uid_initiator', $qb->createNamedParameter($userId)) |
|
| 756 | + ) |
|
| 757 | + ); |
|
| 758 | + } |
|
| 759 | + |
|
| 760 | + $qb->innerJoin('s', 'filecache' ,'f', 's.file_source = f.fileid'); |
|
| 761 | + $qb->andWhere($qb->expr()->eq('f.parent', $qb->createNamedParameter($node->getId()))); |
|
| 762 | + |
|
| 763 | + $qb->orderBy('id'); |
|
| 764 | + |
|
| 765 | + $cursor = $qb->execute(); |
|
| 766 | + $shares = []; |
|
| 767 | + while ($data = $cursor->fetch()) { |
|
| 768 | + $shares[$data['fileid']][] = $this->createShareObject($data); |
|
| 769 | + } |
|
| 770 | + $cursor->closeCursor(); |
|
| 771 | + |
|
| 772 | + return $shares; |
|
| 773 | + } |
|
| 774 | 774 | |
| 775 | 775 | } |
@@ -226,11 +226,11 @@ discard block |
||
| 226 | 226 | $share->getShareOwner(), |
| 227 | 227 | $share->getSharedBy(), $share->getSharedWith()); |
| 228 | 228 | } catch (HintException $hintException) { |
| 229 | - $this->logger->error('Failed to send share by mail: ' . $hintException->getMessage()); |
|
| 229 | + $this->logger->error('Failed to send share by mail: '.$hintException->getMessage()); |
|
| 230 | 230 | $this->removeShareFromTable($shareId); |
| 231 | 231 | throw $hintException; |
| 232 | 232 | } catch (\Exception $e) { |
| 233 | - $this->logger->error('Failed to send share by mail: ' . $e->getMessage()); |
|
| 233 | + $this->logger->error('Failed to send share by mail: '.$e->getMessage()); |
|
| 234 | 234 | $this->removeShareFromTable($shareId); |
| 235 | 235 | throw new HintException('Failed to send share by mail', |
| 236 | 236 | $this->l->t('Failed to send share by E-mail')); |
@@ -246,9 +246,9 @@ discard block |
||
| 246 | 246 | $ownerDisplayName = ($ownerUser instanceof IUser) ? $ownerUser->getDisplayName() : $owner; |
| 247 | 247 | $initiatorDisplayName = ($initiatorUser instanceof IUser) ? $initiatorUser->getDisplayName() : $initiator; |
| 248 | 248 | if ($owner === $initiator) { |
| 249 | - $subject = (string)$this->l->t('%s shared »%s« with you', array($ownerDisplayName, $filename)); |
|
| 249 | + $subject = (string) $this->l->t('%s shared »%s« with you', array($ownerDisplayName, $filename)); |
|
| 250 | 250 | } else { |
| 251 | - $subject = (string)$this->l->t('%s shared »%s« with you on behalf of %s', array($ownerDisplayName, $filename, $initiatorDisplayName)); |
|
| 251 | + $subject = (string) $this->l->t('%s shared »%s« with you on behalf of %s', array($ownerDisplayName, $filename, $initiatorDisplayName)); |
|
| 252 | 252 | } |
| 253 | 253 | |
| 254 | 254 | $message = $this->mailer->createMessage(); |
@@ -275,11 +275,11 @@ discard block |
||
| 275 | 275 | protected function createMailBody($template, $filename, $link, $owner, $initiator) { |
| 276 | 276 | |
| 277 | 277 | $mailBodyTemplate = new Template('sharebymail', $template, ''); |
| 278 | - $mailBodyTemplate->assign ('filename', $filename); |
|
| 279 | - $mailBodyTemplate->assign ('link', $link); |
|
| 280 | - $mailBodyTemplate->assign ('owner', $owner); |
|
| 281 | - $mailBodyTemplate->assign ('initiator', $initiator); |
|
| 282 | - $mailBodyTemplate->assign ('onBehalfOf', $initiator !== $owner); |
|
| 278 | + $mailBodyTemplate->assign('filename', $filename); |
|
| 279 | + $mailBodyTemplate->assign('link', $link); |
|
| 280 | + $mailBodyTemplate->assign('owner', $owner); |
|
| 281 | + $mailBodyTemplate->assign('initiator', $initiator); |
|
| 282 | + $mailBodyTemplate->assign('onBehalfOf', $initiator !== $owner); |
|
| 283 | 283 | $mailBody = $mailBodyTemplate->fetchPage(); |
| 284 | 284 | |
| 285 | 285 | if (is_string($mailBody)) { |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | */ |
| 298 | 298 | protected function generateToken() { |
| 299 | 299 | $token = $this->secureRandom->generate( |
| 300 | - 15, ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_UPPER . ISecureRandom::CHAR_DIGITS); |
|
| 300 | + 15, ISecureRandom::CHAR_LOWER.ISecureRandom::CHAR_UPPER.ISecureRandom::CHAR_DIGITS); |
|
| 301 | 301 | return $token; |
| 302 | 302 | } |
| 303 | 303 | |
@@ -318,7 +318,7 @@ discard block |
||
| 318 | 318 | ->orderBy('id'); |
| 319 | 319 | |
| 320 | 320 | $cursor = $qb->execute(); |
| 321 | - while($data = $cursor->fetch()) { |
|
| 321 | + while ($data = $cursor->fetch()) { |
|
| 322 | 322 | $children[] = $this->createShareObject($data); |
| 323 | 323 | } |
| 324 | 324 | $cursor->closeCursor(); |
@@ -361,7 +361,7 @@ discard block |
||
| 361 | 361 | $qb->execute(); |
| 362 | 362 | $id = $qb->getLastInsertId(); |
| 363 | 363 | |
| 364 | - return (int)$id; |
|
| 364 | + return (int) $id; |
|
| 365 | 365 | } |
| 366 | 366 | |
| 367 | 367 | /** |
@@ -460,7 +460,7 @@ discard block |
||
| 460 | 460 | |
| 461 | 461 | $cursor = $qb->execute(); |
| 462 | 462 | $shares = []; |
| 463 | - while($data = $cursor->fetch()) { |
|
| 463 | + while ($data = $cursor->fetch()) { |
|
| 464 | 464 | $shares[] = $this->createShareObject($data); |
| 465 | 465 | } |
| 466 | 466 | $cursor->closeCursor(); |
@@ -512,7 +512,7 @@ discard block |
||
| 512 | 512 | ->execute(); |
| 513 | 513 | |
| 514 | 514 | $shares = []; |
| 515 | - while($data = $cursor->fetch()) { |
|
| 515 | + while ($data = $cursor->fetch()) { |
|
| 516 | 516 | $shares[] = $this->createShareObject($data); |
| 517 | 517 | } |
| 518 | 518 | $cursor->closeCursor(); |
@@ -551,7 +551,7 @@ discard block |
||
| 551 | 551 | |
| 552 | 552 | $cursor = $qb->execute(); |
| 553 | 553 | |
| 554 | - while($data = $cursor->fetch()) { |
|
| 554 | + while ($data = $cursor->fetch()) { |
|
| 555 | 555 | $shares[] = $this->createShareObject($data); |
| 556 | 556 | } |
| 557 | 557 | $cursor->closeCursor(); |
@@ -614,15 +614,15 @@ discard block |
||
| 614 | 614 | protected function createShareObject($data) { |
| 615 | 615 | |
| 616 | 616 | $share = new Share($this->rootFolder, $this->userManager); |
| 617 | - $share->setId((int)$data['id']) |
|
| 618 | - ->setShareType((int)$data['share_type']) |
|
| 619 | - ->setPermissions((int)$data['permissions']) |
|
| 617 | + $share->setId((int) $data['id']) |
|
| 618 | + ->setShareType((int) $data['share_type']) |
|
| 619 | + ->setPermissions((int) $data['permissions']) |
|
| 620 | 620 | ->setTarget($data['file_target']) |
| 621 | - ->setMailSend((bool)$data['mail_send']) |
|
| 621 | + ->setMailSend((bool) $data['mail_send']) |
|
| 622 | 622 | ->setToken($data['token']); |
| 623 | 623 | |
| 624 | 624 | $shareTime = new \DateTime(); |
| 625 | - $shareTime->setTimestamp((int)$data['stime']); |
|
| 625 | + $shareTime->setTimestamp((int) $data['stime']); |
|
| 626 | 626 | $share->setShareTime($shareTime); |
| 627 | 627 | $share->setSharedWith($data['share_with']); |
| 628 | 628 | |
@@ -632,13 +632,13 @@ discard block |
||
| 632 | 632 | } else { |
| 633 | 633 | //OLD SHARE |
| 634 | 634 | $share->setSharedBy($data['uid_owner']); |
| 635 | - $path = $this->getNode($share->getSharedBy(), (int)$data['file_source']); |
|
| 635 | + $path = $this->getNode($share->getSharedBy(), (int) $data['file_source']); |
|
| 636 | 636 | |
| 637 | 637 | $owner = $path->getOwner(); |
| 638 | 638 | $share->setShareOwner($owner->getUID()); |
| 639 | 639 | } |
| 640 | 640 | |
| 641 | - $share->setNodeId((int)$data['file_source']); |
|
| 641 | + $share->setNodeId((int) $data['file_source']); |
|
| 642 | 642 | $share->setNodeType($data['item_type']); |
| 643 | 643 | |
| 644 | 644 | $share->setProviderId($this->identifier()); |
@@ -757,7 +757,7 @@ discard block |
||
| 757 | 757 | ); |
| 758 | 758 | } |
| 759 | 759 | |
| 760 | - $qb->innerJoin('s', 'filecache' ,'f', 's.file_source = f.fileid'); |
|
| 760 | + $qb->innerJoin('s', 'filecache', 'f', 's.file_source = f.fileid'); |
|
| 761 | 761 | $qb->andWhere($qb->expr()->eq('f.parent', $qb->createNamedParameter($node->getId()))); |
| 762 | 762 | |
| 763 | 763 | $qb->orderBy('id'); |
@@ -124,6 +124,9 @@ |
||
| 124 | 124 | return $nextPrefix; |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | + /** |
|
| 128 | + * @param string $value |
|
| 129 | + */ |
|
| 127 | 130 | private function getServersConfig($value) { |
| 128 | 131 | $regex = '/' . $value . '$/S'; |
| 129 | 132 | |
@@ -34,126 +34,126 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | class Helper { |
| 36 | 36 | |
| 37 | - /** @var IConfig */ |
|
| 38 | - private $config; |
|
| 39 | - |
|
| 40 | - /** |
|
| 41 | - * Helper constructor. |
|
| 42 | - * |
|
| 43 | - * @param IConfig $config |
|
| 44 | - */ |
|
| 45 | - public function __construct(IConfig $config) { |
|
| 46 | - $this->config = $config; |
|
| 47 | - } |
|
| 48 | - |
|
| 49 | - /** |
|
| 50 | - * returns prefixes for each saved LDAP/AD server configuration. |
|
| 51 | - * @param bool $activeConfigurations optional, whether only active configuration shall be |
|
| 52 | - * retrieved, defaults to false |
|
| 53 | - * @return array with a list of the available prefixes |
|
| 54 | - * |
|
| 55 | - * Configuration prefixes are used to set up configurations for n LDAP or |
|
| 56 | - * AD servers. Since configuration is stored in the database, table |
|
| 57 | - * appconfig under appid user_ldap, the common identifiers in column |
|
| 58 | - * 'configkey' have a prefix. The prefix for the very first server |
|
| 59 | - * configuration is empty. |
|
| 60 | - * Configkey Examples: |
|
| 61 | - * Server 1: ldap_login_filter |
|
| 62 | - * Server 2: s1_ldap_login_filter |
|
| 63 | - * Server 3: s2_ldap_login_filter |
|
| 64 | - * |
|
| 65 | - * The prefix needs to be passed to the constructor of Connection class, |
|
| 66 | - * except the default (first) server shall be connected to. |
|
| 67 | - * |
|
| 68 | - */ |
|
| 69 | - public function getServerConfigurationPrefixes($activeConfigurations = false) { |
|
| 70 | - $referenceConfigkey = 'ldap_configuration_active'; |
|
| 71 | - |
|
| 72 | - $keys = $this->getServersConfig($referenceConfigkey); |
|
| 73 | - |
|
| 74 | - $prefixes = []; |
|
| 75 | - foreach ($keys as $key) { |
|
| 76 | - if ($activeConfigurations && $this->config->getAppValue('user_ldap', $key, '0') !== '1') { |
|
| 77 | - continue; |
|
| 78 | - } |
|
| 79 | - |
|
| 80 | - $len = strlen($key) - strlen($referenceConfigkey); |
|
| 81 | - $prefixes[] = substr($key, 0, $len); |
|
| 82 | - } |
|
| 83 | - |
|
| 84 | - return $prefixes; |
|
| 85 | - } |
|
| 86 | - |
|
| 87 | - /** |
|
| 88 | - * |
|
| 89 | - * determines the host for every configured connection |
|
| 90 | - * @return array an array with configprefix as keys |
|
| 91 | - * |
|
| 92 | - */ |
|
| 93 | - public function getServerConfigurationHosts() { |
|
| 94 | - $referenceConfigkey = 'ldap_host'; |
|
| 95 | - |
|
| 96 | - $keys = $this->getServersConfig($referenceConfigkey); |
|
| 97 | - |
|
| 98 | - $result = array(); |
|
| 99 | - foreach($keys as $key) { |
|
| 100 | - $len = strlen($key) - strlen($referenceConfigkey); |
|
| 101 | - $prefix = substr($key, 0, $len); |
|
| 102 | - $result[$prefix] = $this->config->getAppValue('user_ldap', $key); |
|
| 103 | - } |
|
| 104 | - |
|
| 105 | - return $result; |
|
| 106 | - } |
|
| 107 | - |
|
| 108 | - /** |
|
| 109 | - * return the next available configuration prefix |
|
| 110 | - * |
|
| 111 | - * @return string |
|
| 112 | - */ |
|
| 113 | - public function getNextServerConfigurationPrefix() { |
|
| 114 | - $serverConnections = $this->getServerConfigurationPrefixes(); |
|
| 115 | - |
|
| 116 | - if(count($serverConnections) === 0) { |
|
| 117 | - return 's01'; |
|
| 118 | - } |
|
| 119 | - |
|
| 120 | - sort($serverConnections); |
|
| 121 | - $lastKey = array_pop($serverConnections); |
|
| 122 | - $lastNumber = intval(str_replace('s', '', $lastKey)); |
|
| 123 | - $nextPrefix = 's' . str_pad($lastNumber + 1, 2, '0', STR_PAD_LEFT); |
|
| 124 | - return $nextPrefix; |
|
| 125 | - } |
|
| 126 | - |
|
| 127 | - private function getServersConfig($value) { |
|
| 128 | - $regex = '/' . $value . '$/S'; |
|
| 129 | - |
|
| 130 | - $keys = $this->config->getAppKeys('user_ldap'); |
|
| 131 | - $result = []; |
|
| 132 | - foreach ($keys as $key) { |
|
| 133 | - if (preg_match($regex, $key) === 1) { |
|
| 134 | - $result[] = $key; |
|
| 135 | - } |
|
| 136 | - } |
|
| 137 | - |
|
| 138 | - return $result; |
|
| 139 | - } |
|
| 140 | - |
|
| 141 | - /** |
|
| 142 | - * deletes a given saved LDAP/AD server configuration. |
|
| 143 | - * @param string $prefix the configuration prefix of the config to delete |
|
| 144 | - * @return bool true on success, false otherwise |
|
| 145 | - */ |
|
| 146 | - public function deleteServerConfiguration($prefix) { |
|
| 147 | - if(!in_array($prefix, self::getServerConfigurationPrefixes())) { |
|
| 148 | - return false; |
|
| 149 | - } |
|
| 150 | - |
|
| 151 | - $saveOtherConfigurations = ''; |
|
| 152 | - if(empty($prefix)) { |
|
| 153 | - $saveOtherConfigurations = 'AND `configkey` NOT LIKE \'s%\''; |
|
| 154 | - } |
|
| 155 | - |
|
| 156 | - $query = \OCP\DB::prepare(' |
|
| 37 | + /** @var IConfig */ |
|
| 38 | + private $config; |
|
| 39 | + |
|
| 40 | + /** |
|
| 41 | + * Helper constructor. |
|
| 42 | + * |
|
| 43 | + * @param IConfig $config |
|
| 44 | + */ |
|
| 45 | + public function __construct(IConfig $config) { |
|
| 46 | + $this->config = $config; |
|
| 47 | + } |
|
| 48 | + |
|
| 49 | + /** |
|
| 50 | + * returns prefixes for each saved LDAP/AD server configuration. |
|
| 51 | + * @param bool $activeConfigurations optional, whether only active configuration shall be |
|
| 52 | + * retrieved, defaults to false |
|
| 53 | + * @return array with a list of the available prefixes |
|
| 54 | + * |
|
| 55 | + * Configuration prefixes are used to set up configurations for n LDAP or |
|
| 56 | + * AD servers. Since configuration is stored in the database, table |
|
| 57 | + * appconfig under appid user_ldap, the common identifiers in column |
|
| 58 | + * 'configkey' have a prefix. The prefix for the very first server |
|
| 59 | + * configuration is empty. |
|
| 60 | + * Configkey Examples: |
|
| 61 | + * Server 1: ldap_login_filter |
|
| 62 | + * Server 2: s1_ldap_login_filter |
|
| 63 | + * Server 3: s2_ldap_login_filter |
|
| 64 | + * |
|
| 65 | + * The prefix needs to be passed to the constructor of Connection class, |
|
| 66 | + * except the default (first) server shall be connected to. |
|
| 67 | + * |
|
| 68 | + */ |
|
| 69 | + public function getServerConfigurationPrefixes($activeConfigurations = false) { |
|
| 70 | + $referenceConfigkey = 'ldap_configuration_active'; |
|
| 71 | + |
|
| 72 | + $keys = $this->getServersConfig($referenceConfigkey); |
|
| 73 | + |
|
| 74 | + $prefixes = []; |
|
| 75 | + foreach ($keys as $key) { |
|
| 76 | + if ($activeConfigurations && $this->config->getAppValue('user_ldap', $key, '0') !== '1') { |
|
| 77 | + continue; |
|
| 78 | + } |
|
| 79 | + |
|
| 80 | + $len = strlen($key) - strlen($referenceConfigkey); |
|
| 81 | + $prefixes[] = substr($key, 0, $len); |
|
| 82 | + } |
|
| 83 | + |
|
| 84 | + return $prefixes; |
|
| 85 | + } |
|
| 86 | + |
|
| 87 | + /** |
|
| 88 | + * |
|
| 89 | + * determines the host for every configured connection |
|
| 90 | + * @return array an array with configprefix as keys |
|
| 91 | + * |
|
| 92 | + */ |
|
| 93 | + public function getServerConfigurationHosts() { |
|
| 94 | + $referenceConfigkey = 'ldap_host'; |
|
| 95 | + |
|
| 96 | + $keys = $this->getServersConfig($referenceConfigkey); |
|
| 97 | + |
|
| 98 | + $result = array(); |
|
| 99 | + foreach($keys as $key) { |
|
| 100 | + $len = strlen($key) - strlen($referenceConfigkey); |
|
| 101 | + $prefix = substr($key, 0, $len); |
|
| 102 | + $result[$prefix] = $this->config->getAppValue('user_ldap', $key); |
|
| 103 | + } |
|
| 104 | + |
|
| 105 | + return $result; |
|
| 106 | + } |
|
| 107 | + |
|
| 108 | + /** |
|
| 109 | + * return the next available configuration prefix |
|
| 110 | + * |
|
| 111 | + * @return string |
|
| 112 | + */ |
|
| 113 | + public function getNextServerConfigurationPrefix() { |
|
| 114 | + $serverConnections = $this->getServerConfigurationPrefixes(); |
|
| 115 | + |
|
| 116 | + if(count($serverConnections) === 0) { |
|
| 117 | + return 's01'; |
|
| 118 | + } |
|
| 119 | + |
|
| 120 | + sort($serverConnections); |
|
| 121 | + $lastKey = array_pop($serverConnections); |
|
| 122 | + $lastNumber = intval(str_replace('s', '', $lastKey)); |
|
| 123 | + $nextPrefix = 's' . str_pad($lastNumber + 1, 2, '0', STR_PAD_LEFT); |
|
| 124 | + return $nextPrefix; |
|
| 125 | + } |
|
| 126 | + |
|
| 127 | + private function getServersConfig($value) { |
|
| 128 | + $regex = '/' . $value . '$/S'; |
|
| 129 | + |
|
| 130 | + $keys = $this->config->getAppKeys('user_ldap'); |
|
| 131 | + $result = []; |
|
| 132 | + foreach ($keys as $key) { |
|
| 133 | + if (preg_match($regex, $key) === 1) { |
|
| 134 | + $result[] = $key; |
|
| 135 | + } |
|
| 136 | + } |
|
| 137 | + |
|
| 138 | + return $result; |
|
| 139 | + } |
|
| 140 | + |
|
| 141 | + /** |
|
| 142 | + * deletes a given saved LDAP/AD server configuration. |
|
| 143 | + * @param string $prefix the configuration prefix of the config to delete |
|
| 144 | + * @return bool true on success, false otherwise |
|
| 145 | + */ |
|
| 146 | + public function deleteServerConfiguration($prefix) { |
|
| 147 | + if(!in_array($prefix, self::getServerConfigurationPrefixes())) { |
|
| 148 | + return false; |
|
| 149 | + } |
|
| 150 | + |
|
| 151 | + $saveOtherConfigurations = ''; |
|
| 152 | + if(empty($prefix)) { |
|
| 153 | + $saveOtherConfigurations = 'AND `configkey` NOT LIKE \'s%\''; |
|
| 154 | + } |
|
| 155 | + |
|
| 156 | + $query = \OCP\DB::prepare(' |
|
| 157 | 157 | DELETE |
| 158 | 158 | FROM `*PREFIX*appconfig` |
| 159 | 159 | WHERE `configkey` LIKE ? |
@@ -161,145 +161,145 @@ discard block |
||
| 161 | 161 | AND `appid` = \'user_ldap\' |
| 162 | 162 | AND `configkey` NOT IN (\'enabled\', \'installed_version\', \'types\', \'bgjUpdateGroupsLastRun\') |
| 163 | 163 | '); |
| 164 | - $delRows = $query->execute(array($prefix.'%')); |
|
| 165 | - |
|
| 166 | - if(\OCP\DB::isError($delRows)) { |
|
| 167 | - return false; |
|
| 168 | - } |
|
| 169 | - |
|
| 170 | - if($delRows === 0) { |
|
| 171 | - return false; |
|
| 172 | - } |
|
| 173 | - |
|
| 174 | - return true; |
|
| 175 | - } |
|
| 176 | - |
|
| 177 | - /** |
|
| 178 | - * checks whether there is one or more disabled LDAP configurations |
|
| 179 | - * @throws \Exception |
|
| 180 | - * @return bool |
|
| 181 | - */ |
|
| 182 | - public function haveDisabledConfigurations() { |
|
| 183 | - $all = $this->getServerConfigurationPrefixes(false); |
|
| 184 | - $active = $this->getServerConfigurationPrefixes(true); |
|
| 185 | - |
|
| 186 | - if(!is_array($all) || !is_array($active)) { |
|
| 187 | - throw new \Exception('Unexpected Return Value'); |
|
| 188 | - } |
|
| 189 | - |
|
| 190 | - return count($all) !== count($active) || count($all) === 0; |
|
| 191 | - } |
|
| 192 | - |
|
| 193 | - /** |
|
| 194 | - * extracts the domain from a given URL |
|
| 195 | - * @param string $url the URL |
|
| 196 | - * @return string|false domain as string on success, false otherwise |
|
| 197 | - */ |
|
| 198 | - public function getDomainFromURL($url) { |
|
| 199 | - $uinfo = parse_url($url); |
|
| 200 | - if(!is_array($uinfo)) { |
|
| 201 | - return false; |
|
| 202 | - } |
|
| 203 | - |
|
| 204 | - $domain = false; |
|
| 205 | - if(isset($uinfo['host'])) { |
|
| 206 | - $domain = $uinfo['host']; |
|
| 207 | - } else if(isset($uinfo['path'])) { |
|
| 208 | - $domain = $uinfo['path']; |
|
| 209 | - } |
|
| 210 | - |
|
| 211 | - return $domain; |
|
| 212 | - } |
|
| 164 | + $delRows = $query->execute(array($prefix.'%')); |
|
| 165 | + |
|
| 166 | + if(\OCP\DB::isError($delRows)) { |
|
| 167 | + return false; |
|
| 168 | + } |
|
| 169 | + |
|
| 170 | + if($delRows === 0) { |
|
| 171 | + return false; |
|
| 172 | + } |
|
| 173 | + |
|
| 174 | + return true; |
|
| 175 | + } |
|
| 176 | + |
|
| 177 | + /** |
|
| 178 | + * checks whether there is one or more disabled LDAP configurations |
|
| 179 | + * @throws \Exception |
|
| 180 | + * @return bool |
|
| 181 | + */ |
|
| 182 | + public function haveDisabledConfigurations() { |
|
| 183 | + $all = $this->getServerConfigurationPrefixes(false); |
|
| 184 | + $active = $this->getServerConfigurationPrefixes(true); |
|
| 185 | + |
|
| 186 | + if(!is_array($all) || !is_array($active)) { |
|
| 187 | + throw new \Exception('Unexpected Return Value'); |
|
| 188 | + } |
|
| 189 | + |
|
| 190 | + return count($all) !== count($active) || count($all) === 0; |
|
| 191 | + } |
|
| 192 | + |
|
| 193 | + /** |
|
| 194 | + * extracts the domain from a given URL |
|
| 195 | + * @param string $url the URL |
|
| 196 | + * @return string|false domain as string on success, false otherwise |
|
| 197 | + */ |
|
| 198 | + public function getDomainFromURL($url) { |
|
| 199 | + $uinfo = parse_url($url); |
|
| 200 | + if(!is_array($uinfo)) { |
|
| 201 | + return false; |
|
| 202 | + } |
|
| 203 | + |
|
| 204 | + $domain = false; |
|
| 205 | + if(isset($uinfo['host'])) { |
|
| 206 | + $domain = $uinfo['host']; |
|
| 207 | + } else if(isset($uinfo['path'])) { |
|
| 208 | + $domain = $uinfo['path']; |
|
| 209 | + } |
|
| 210 | + |
|
| 211 | + return $domain; |
|
| 212 | + } |
|
| 213 | 213 | |
| 214 | - /** |
|
| 215 | - * |
|
| 216 | - * Set the LDAPProvider in the config |
|
| 217 | - * |
|
| 218 | - */ |
|
| 219 | - public function setLDAPProvider() { |
|
| 220 | - $current = \OC::$server->getConfig()->getSystemValue('ldapProviderFactory', null); |
|
| 221 | - if(is_null($current)) { |
|
| 222 | - \OC::$server->getConfig()->setSystemValue('ldapProviderFactory', '\\OCA\\User_LDAP\\LDAPProviderFactory'); |
|
| 223 | - } |
|
| 224 | - } |
|
| 214 | + /** |
|
| 215 | + * |
|
| 216 | + * Set the LDAPProvider in the config |
|
| 217 | + * |
|
| 218 | + */ |
|
| 219 | + public function setLDAPProvider() { |
|
| 220 | + $current = \OC::$server->getConfig()->getSystemValue('ldapProviderFactory', null); |
|
| 221 | + if(is_null($current)) { |
|
| 222 | + \OC::$server->getConfig()->setSystemValue('ldapProviderFactory', '\\OCA\\User_LDAP\\LDAPProviderFactory'); |
|
| 223 | + } |
|
| 224 | + } |
|
| 225 | 225 | |
| 226 | - /** |
|
| 227 | - * sanitizes a DN received from the LDAP server |
|
| 228 | - * @param array $dn the DN in question |
|
| 229 | - * @return array the sanitized DN |
|
| 230 | - */ |
|
| 231 | - public function sanitizeDN($dn) { |
|
| 232 | - //treating multiple base DNs |
|
| 233 | - if(is_array($dn)) { |
|
| 234 | - $result = array(); |
|
| 235 | - foreach($dn as $singleDN) { |
|
| 236 | - $result[] = $this->sanitizeDN($singleDN); |
|
| 237 | - } |
|
| 238 | - return $result; |
|
| 239 | - } |
|
| 240 | - |
|
| 241 | - //OID sometimes gives back DNs with whitespace after the comma |
|
| 242 | - // a la "uid=foo, cn=bar, dn=..." We need to tackle this! |
|
| 243 | - $dn = preg_replace('/([^\\\]),(\s+)/u', '\1,', $dn); |
|
| 244 | - |
|
| 245 | - //make comparisons and everything work |
|
| 246 | - $dn = mb_strtolower($dn, 'UTF-8'); |
|
| 247 | - |
|
| 248 | - //escape DN values according to RFC 2253 – this is already done by ldap_explode_dn |
|
| 249 | - //to use the DN in search filters, \ needs to be escaped to \5c additionally |
|
| 250 | - //to use them in bases, we convert them back to simple backslashes in readAttribute() |
|
| 251 | - $replacements = array( |
|
| 252 | - '\,' => '\5c2C', |
|
| 253 | - '\=' => '\5c3D', |
|
| 254 | - '\+' => '\5c2B', |
|
| 255 | - '\<' => '\5c3C', |
|
| 256 | - '\>' => '\5c3E', |
|
| 257 | - '\;' => '\5c3B', |
|
| 258 | - '\"' => '\5c22', |
|
| 259 | - '\#' => '\5c23', |
|
| 260 | - '(' => '\28', |
|
| 261 | - ')' => '\29', |
|
| 262 | - '*' => '\2A', |
|
| 263 | - ); |
|
| 264 | - $dn = str_replace(array_keys($replacements), array_values($replacements), $dn); |
|
| 265 | - |
|
| 266 | - return $dn; |
|
| 267 | - } |
|
| 226 | + /** |
|
| 227 | + * sanitizes a DN received from the LDAP server |
|
| 228 | + * @param array $dn the DN in question |
|
| 229 | + * @return array the sanitized DN |
|
| 230 | + */ |
|
| 231 | + public function sanitizeDN($dn) { |
|
| 232 | + //treating multiple base DNs |
|
| 233 | + if(is_array($dn)) { |
|
| 234 | + $result = array(); |
|
| 235 | + foreach($dn as $singleDN) { |
|
| 236 | + $result[] = $this->sanitizeDN($singleDN); |
|
| 237 | + } |
|
| 238 | + return $result; |
|
| 239 | + } |
|
| 240 | + |
|
| 241 | + //OID sometimes gives back DNs with whitespace after the comma |
|
| 242 | + // a la "uid=foo, cn=bar, dn=..." We need to tackle this! |
|
| 243 | + $dn = preg_replace('/([^\\\]),(\s+)/u', '\1,', $dn); |
|
| 244 | + |
|
| 245 | + //make comparisons and everything work |
|
| 246 | + $dn = mb_strtolower($dn, 'UTF-8'); |
|
| 247 | + |
|
| 248 | + //escape DN values according to RFC 2253 – this is already done by ldap_explode_dn |
|
| 249 | + //to use the DN in search filters, \ needs to be escaped to \5c additionally |
|
| 250 | + //to use them in bases, we convert them back to simple backslashes in readAttribute() |
|
| 251 | + $replacements = array( |
|
| 252 | + '\,' => '\5c2C', |
|
| 253 | + '\=' => '\5c3D', |
|
| 254 | + '\+' => '\5c2B', |
|
| 255 | + '\<' => '\5c3C', |
|
| 256 | + '\>' => '\5c3E', |
|
| 257 | + '\;' => '\5c3B', |
|
| 258 | + '\"' => '\5c22', |
|
| 259 | + '\#' => '\5c23', |
|
| 260 | + '(' => '\28', |
|
| 261 | + ')' => '\29', |
|
| 262 | + '*' => '\2A', |
|
| 263 | + ); |
|
| 264 | + $dn = str_replace(array_keys($replacements), array_values($replacements), $dn); |
|
| 265 | + |
|
| 266 | + return $dn; |
|
| 267 | + } |
|
| 268 | 268 | |
| 269 | - /** |
|
| 270 | - * converts a stored DN so it can be used as base parameter for LDAP queries, internally we store them for usage in LDAP filters |
|
| 271 | - * @param string $dn the DN |
|
| 272 | - * @return string |
|
| 273 | - */ |
|
| 274 | - public function DNasBaseParameter($dn) { |
|
| 275 | - return str_ireplace('\\5c', '\\', $dn); |
|
| 276 | - } |
|
| 277 | - |
|
| 278 | - /** |
|
| 279 | - * listens to a hook thrown by server2server sharing and replaces the given |
|
| 280 | - * login name by a username, if it matches an LDAP user. |
|
| 281 | - * |
|
| 282 | - * @param array $param |
|
| 283 | - * @throws \Exception |
|
| 284 | - */ |
|
| 285 | - public static function loginName2UserName($param) { |
|
| 286 | - if(!isset($param['uid'])) { |
|
| 287 | - throw new \Exception('key uid is expected to be set in $param'); |
|
| 288 | - } |
|
| 289 | - |
|
| 290 | - //ain't it ironic? |
|
| 291 | - $helper = new Helper(\OC::$server->getConfig()); |
|
| 292 | - |
|
| 293 | - $configPrefixes = $helper->getServerConfigurationPrefixes(true); |
|
| 294 | - $ldapWrapper = new LDAP(); |
|
| 295 | - $ocConfig = \OC::$server->getConfig(); |
|
| 296 | - |
|
| 297 | - $userBackend = new User_Proxy( |
|
| 298 | - $configPrefixes, $ldapWrapper, $ocConfig |
|
| 299 | - ); |
|
| 300 | - $uid = $userBackend->loginName2UserName($param['uid'] ); |
|
| 301 | - if($uid !== false) { |
|
| 302 | - $param['uid'] = $uid; |
|
| 303 | - } |
|
| 304 | - } |
|
| 269 | + /** |
|
| 270 | + * converts a stored DN so it can be used as base parameter for LDAP queries, internally we store them for usage in LDAP filters |
|
| 271 | + * @param string $dn the DN |
|
| 272 | + * @return string |
|
| 273 | + */ |
|
| 274 | + public function DNasBaseParameter($dn) { |
|
| 275 | + return str_ireplace('\\5c', '\\', $dn); |
|
| 276 | + } |
|
| 277 | + |
|
| 278 | + /** |
|
| 279 | + * listens to a hook thrown by server2server sharing and replaces the given |
|
| 280 | + * login name by a username, if it matches an LDAP user. |
|
| 281 | + * |
|
| 282 | + * @param array $param |
|
| 283 | + * @throws \Exception |
|
| 284 | + */ |
|
| 285 | + public static function loginName2UserName($param) { |
|
| 286 | + if(!isset($param['uid'])) { |
|
| 287 | + throw new \Exception('key uid is expected to be set in $param'); |
|
| 288 | + } |
|
| 289 | + |
|
| 290 | + //ain't it ironic? |
|
| 291 | + $helper = new Helper(\OC::$server->getConfig()); |
|
| 292 | + |
|
| 293 | + $configPrefixes = $helper->getServerConfigurationPrefixes(true); |
|
| 294 | + $ldapWrapper = new LDAP(); |
|
| 295 | + $ocConfig = \OC::$server->getConfig(); |
|
| 296 | + |
|
| 297 | + $userBackend = new User_Proxy( |
|
| 298 | + $configPrefixes, $ldapWrapper, $ocConfig |
|
| 299 | + ); |
|
| 300 | + $uid = $userBackend->loginName2UserName($param['uid'] ); |
|
| 301 | + if($uid !== false) { |
|
| 302 | + $param['uid'] = $uid; |
|
| 303 | + } |
|
| 304 | + } |
|
| 305 | 305 | } |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | $keys = $this->getServersConfig($referenceConfigkey); |
| 97 | 97 | |
| 98 | 98 | $result = array(); |
| 99 | - foreach($keys as $key) { |
|
| 99 | + foreach ($keys as $key) { |
|
| 100 | 100 | $len = strlen($key) - strlen($referenceConfigkey); |
| 101 | 101 | $prefix = substr($key, 0, $len); |
| 102 | 102 | $result[$prefix] = $this->config->getAppValue('user_ldap', $key); |
@@ -113,19 +113,19 @@ discard block |
||
| 113 | 113 | public function getNextServerConfigurationPrefix() { |
| 114 | 114 | $serverConnections = $this->getServerConfigurationPrefixes(); |
| 115 | 115 | |
| 116 | - if(count($serverConnections) === 0) { |
|
| 116 | + if (count($serverConnections) === 0) { |
|
| 117 | 117 | return 's01'; |
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | sort($serverConnections); |
| 121 | 121 | $lastKey = array_pop($serverConnections); |
| 122 | 122 | $lastNumber = intval(str_replace('s', '', $lastKey)); |
| 123 | - $nextPrefix = 's' . str_pad($lastNumber + 1, 2, '0', STR_PAD_LEFT); |
|
| 123 | + $nextPrefix = 's'.str_pad($lastNumber + 1, 2, '0', STR_PAD_LEFT); |
|
| 124 | 124 | return $nextPrefix; |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | private function getServersConfig($value) { |
| 128 | - $regex = '/' . $value . '$/S'; |
|
| 128 | + $regex = '/'.$value.'$/S'; |
|
| 129 | 129 | |
| 130 | 130 | $keys = $this->config->getAppKeys('user_ldap'); |
| 131 | 131 | $result = []; |
@@ -144,12 +144,12 @@ discard block |
||
| 144 | 144 | * @return bool true on success, false otherwise |
| 145 | 145 | */ |
| 146 | 146 | public function deleteServerConfiguration($prefix) { |
| 147 | - if(!in_array($prefix, self::getServerConfigurationPrefixes())) { |
|
| 147 | + if (!in_array($prefix, self::getServerConfigurationPrefixes())) { |
|
| 148 | 148 | return false; |
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | $saveOtherConfigurations = ''; |
| 152 | - if(empty($prefix)) { |
|
| 152 | + if (empty($prefix)) { |
|
| 153 | 153 | $saveOtherConfigurations = 'AND `configkey` NOT LIKE \'s%\''; |
| 154 | 154 | } |
| 155 | 155 | |
@@ -163,11 +163,11 @@ discard block |
||
| 163 | 163 | '); |
| 164 | 164 | $delRows = $query->execute(array($prefix.'%')); |
| 165 | 165 | |
| 166 | - if(\OCP\DB::isError($delRows)) { |
|
| 166 | + if (\OCP\DB::isError($delRows)) { |
|
| 167 | 167 | return false; |
| 168 | 168 | } |
| 169 | 169 | |
| 170 | - if($delRows === 0) { |
|
| 170 | + if ($delRows === 0) { |
|
| 171 | 171 | return false; |
| 172 | 172 | } |
| 173 | 173 | |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | $all = $this->getServerConfigurationPrefixes(false); |
| 184 | 184 | $active = $this->getServerConfigurationPrefixes(true); |
| 185 | 185 | |
| 186 | - if(!is_array($all) || !is_array($active)) { |
|
| 186 | + if (!is_array($all) || !is_array($active)) { |
|
| 187 | 187 | throw new \Exception('Unexpected Return Value'); |
| 188 | 188 | } |
| 189 | 189 | |
@@ -197,14 +197,14 @@ discard block |
||
| 197 | 197 | */ |
| 198 | 198 | public function getDomainFromURL($url) { |
| 199 | 199 | $uinfo = parse_url($url); |
| 200 | - if(!is_array($uinfo)) { |
|
| 200 | + if (!is_array($uinfo)) { |
|
| 201 | 201 | return false; |
| 202 | 202 | } |
| 203 | 203 | |
| 204 | 204 | $domain = false; |
| 205 | - if(isset($uinfo['host'])) { |
|
| 205 | + if (isset($uinfo['host'])) { |
|
| 206 | 206 | $domain = $uinfo['host']; |
| 207 | - } else if(isset($uinfo['path'])) { |
|
| 207 | + } else if (isset($uinfo['path'])) { |
|
| 208 | 208 | $domain = $uinfo['path']; |
| 209 | 209 | } |
| 210 | 210 | |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | */ |
| 219 | 219 | public function setLDAPProvider() { |
| 220 | 220 | $current = \OC::$server->getConfig()->getSystemValue('ldapProviderFactory', null); |
| 221 | - if(is_null($current)) { |
|
| 221 | + if (is_null($current)) { |
|
| 222 | 222 | \OC::$server->getConfig()->setSystemValue('ldapProviderFactory', '\\OCA\\User_LDAP\\LDAPProviderFactory'); |
| 223 | 223 | } |
| 224 | 224 | } |
@@ -230,9 +230,9 @@ discard block |
||
| 230 | 230 | */ |
| 231 | 231 | public function sanitizeDN($dn) { |
| 232 | 232 | //treating multiple base DNs |
| 233 | - if(is_array($dn)) { |
|
| 233 | + if (is_array($dn)) { |
|
| 234 | 234 | $result = array(); |
| 235 | - foreach($dn as $singleDN) { |
|
| 235 | + foreach ($dn as $singleDN) { |
|
| 236 | 236 | $result[] = $this->sanitizeDN($singleDN); |
| 237 | 237 | } |
| 238 | 238 | return $result; |
@@ -283,7 +283,7 @@ discard block |
||
| 283 | 283 | * @throws \Exception |
| 284 | 284 | */ |
| 285 | 285 | public static function loginName2UserName($param) { |
| 286 | - if(!isset($param['uid'])) { |
|
| 286 | + if (!isset($param['uid'])) { |
|
| 287 | 287 | throw new \Exception('key uid is expected to be set in $param'); |
| 288 | 288 | } |
| 289 | 289 | |
@@ -294,11 +294,11 @@ discard block |
||
| 294 | 294 | $ldapWrapper = new LDAP(); |
| 295 | 295 | $ocConfig = \OC::$server->getConfig(); |
| 296 | 296 | |
| 297 | - $userBackend = new User_Proxy( |
|
| 297 | + $userBackend = new User_Proxy( |
|
| 298 | 298 | $configPrefixes, $ldapWrapper, $ocConfig |
| 299 | 299 | ); |
| 300 | - $uid = $userBackend->loginName2UserName($param['uid'] ); |
|
| 301 | - if($uid !== false) { |
|
| 300 | + $uid = $userBackend->loginName2UserName($param['uid']); |
|
| 301 | + if ($uid !== false) { |
|
| 302 | 302 | $param['uid'] = $uid; |
| 303 | 303 | } |
| 304 | 304 | } |
@@ -104,6 +104,10 @@ |
||
| 104 | 104 | // TODO: dont check/enforce 2FA if a auth token is used |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | + /** |
|
| 108 | + * @param Controller $controller |
|
| 109 | + * @param string $methodName |
|
| 110 | + */ |
|
| 107 | 111 | private function checkTwoFactor($controller, $methodName, IUser $user) { |
| 108 | 112 | // If two-factor auth is in progress disallow access to any controllers |
| 109 | 113 | // defined within "LoginController". |
@@ -41,98 +41,98 @@ |
||
| 41 | 41 | |
| 42 | 42 | class TwoFactorMiddleware extends Middleware { |
| 43 | 43 | |
| 44 | - /** @var Manager */ |
|
| 45 | - private $twoFactorManager; |
|
| 46 | - |
|
| 47 | - /** @var Session */ |
|
| 48 | - private $userSession; |
|
| 49 | - |
|
| 50 | - /** @var ISession */ |
|
| 51 | - private $session; |
|
| 52 | - |
|
| 53 | - /** @var IURLGenerator */ |
|
| 54 | - private $urlGenerator; |
|
| 55 | - |
|
| 56 | - /** @var IControllerMethodReflector */ |
|
| 57 | - private $reflector; |
|
| 58 | - |
|
| 59 | - /** @var IRequest */ |
|
| 60 | - private $request; |
|
| 61 | - |
|
| 62 | - /** |
|
| 63 | - * @param Manager $twoFactorManager |
|
| 64 | - * @param Session $userSession |
|
| 65 | - * @param ISession $session |
|
| 66 | - * @param IURLGenerator $urlGenerator |
|
| 67 | - */ |
|
| 68 | - public function __construct(Manager $twoFactorManager, Session $userSession, ISession $session, |
|
| 69 | - IURLGenerator $urlGenerator, IControllerMethodReflector $reflector, IRequest $request) { |
|
| 70 | - $this->twoFactorManager = $twoFactorManager; |
|
| 71 | - $this->userSession = $userSession; |
|
| 72 | - $this->session = $session; |
|
| 73 | - $this->urlGenerator = $urlGenerator; |
|
| 74 | - $this->reflector = $reflector; |
|
| 75 | - $this->request = $request; |
|
| 76 | - } |
|
| 77 | - |
|
| 78 | - /** |
|
| 79 | - * @param Controller $controller |
|
| 80 | - * @param string $methodName |
|
| 81 | - */ |
|
| 82 | - public function beforeController($controller, $methodName) { |
|
| 83 | - if ($this->reflector->hasAnnotation('PublicPage')) { |
|
| 84 | - // Don't block public pages |
|
| 85 | - return; |
|
| 86 | - } |
|
| 87 | - |
|
| 88 | - if ($controller instanceof LoginController && $methodName === 'logout') { |
|
| 89 | - // Don't block the logout page, to allow canceling the 2FA |
|
| 90 | - return; |
|
| 91 | - } |
|
| 92 | - |
|
| 93 | - if ($this->userSession->isLoggedIn()) { |
|
| 94 | - $user = $this->userSession->getUser(); |
|
| 95 | - |
|
| 96 | - if ($this->twoFactorManager->isTwoFactorAuthenticated($user)) { |
|
| 97 | - $this->checkTwoFactor($controller, $methodName, $user); |
|
| 98 | - } else if ($controller instanceof TwoFactorChallengeController) { |
|
| 99 | - // Allow access to the two-factor controllers only if two-factor authentication |
|
| 100 | - // is in progress. |
|
| 101 | - throw new UserAlreadyLoggedInException(); |
|
| 102 | - } |
|
| 103 | - } |
|
| 104 | - // TODO: dont check/enforce 2FA if a auth token is used |
|
| 105 | - } |
|
| 106 | - |
|
| 107 | - private function checkTwoFactor($controller, $methodName, IUser $user) { |
|
| 108 | - // If two-factor auth is in progress disallow access to any controllers |
|
| 109 | - // defined within "LoginController". |
|
| 110 | - $needsSecondFactor = $this->twoFactorManager->needsSecondFactor($user); |
|
| 111 | - $twoFactor = $controller instanceof TwoFactorChallengeController; |
|
| 112 | - |
|
| 113 | - // Disallow access to any controller if 2FA needs to be checked |
|
| 114 | - if ($needsSecondFactor && !$twoFactor) { |
|
| 115 | - throw new TwoFactorAuthRequiredException(); |
|
| 116 | - } |
|
| 117 | - |
|
| 118 | - // Allow access to the two-factor controllers only if two-factor authentication |
|
| 119 | - // is in progress. |
|
| 120 | - if (!$needsSecondFactor && $twoFactor) { |
|
| 121 | - throw new UserAlreadyLoggedInException(); |
|
| 122 | - } |
|
| 123 | - } |
|
| 124 | - |
|
| 125 | - public function afterException($controller, $methodName, Exception $exception) { |
|
| 126 | - if ($exception instanceof TwoFactorAuthRequiredException) { |
|
| 127 | - return new RedirectResponse($this->urlGenerator->linkToRoute('core.TwoFactorChallenge.selectChallenge', [ |
|
| 128 | - 'redirect_url' => urlencode($this->request->server['REQUEST_URI']), |
|
| 129 | - ])); |
|
| 130 | - } |
|
| 131 | - if ($exception instanceof UserAlreadyLoggedInException) { |
|
| 132 | - return new RedirectResponse($this->urlGenerator->linkToRoute('files.view.index')); |
|
| 133 | - } |
|
| 134 | - |
|
| 135 | - throw $exception; |
|
| 136 | - } |
|
| 44 | + /** @var Manager */ |
|
| 45 | + private $twoFactorManager; |
|
| 46 | + |
|
| 47 | + /** @var Session */ |
|
| 48 | + private $userSession; |
|
| 49 | + |
|
| 50 | + /** @var ISession */ |
|
| 51 | + private $session; |
|
| 52 | + |
|
| 53 | + /** @var IURLGenerator */ |
|
| 54 | + private $urlGenerator; |
|
| 55 | + |
|
| 56 | + /** @var IControllerMethodReflector */ |
|
| 57 | + private $reflector; |
|
| 58 | + |
|
| 59 | + /** @var IRequest */ |
|
| 60 | + private $request; |
|
| 61 | + |
|
| 62 | + /** |
|
| 63 | + * @param Manager $twoFactorManager |
|
| 64 | + * @param Session $userSession |
|
| 65 | + * @param ISession $session |
|
| 66 | + * @param IURLGenerator $urlGenerator |
|
| 67 | + */ |
|
| 68 | + public function __construct(Manager $twoFactorManager, Session $userSession, ISession $session, |
|
| 69 | + IURLGenerator $urlGenerator, IControllerMethodReflector $reflector, IRequest $request) { |
|
| 70 | + $this->twoFactorManager = $twoFactorManager; |
|
| 71 | + $this->userSession = $userSession; |
|
| 72 | + $this->session = $session; |
|
| 73 | + $this->urlGenerator = $urlGenerator; |
|
| 74 | + $this->reflector = $reflector; |
|
| 75 | + $this->request = $request; |
|
| 76 | + } |
|
| 77 | + |
|
| 78 | + /** |
|
| 79 | + * @param Controller $controller |
|
| 80 | + * @param string $methodName |
|
| 81 | + */ |
|
| 82 | + public function beforeController($controller, $methodName) { |
|
| 83 | + if ($this->reflector->hasAnnotation('PublicPage')) { |
|
| 84 | + // Don't block public pages |
|
| 85 | + return; |
|
| 86 | + } |
|
| 87 | + |
|
| 88 | + if ($controller instanceof LoginController && $methodName === 'logout') { |
|
| 89 | + // Don't block the logout page, to allow canceling the 2FA |
|
| 90 | + return; |
|
| 91 | + } |
|
| 92 | + |
|
| 93 | + if ($this->userSession->isLoggedIn()) { |
|
| 94 | + $user = $this->userSession->getUser(); |
|
| 95 | + |
|
| 96 | + if ($this->twoFactorManager->isTwoFactorAuthenticated($user)) { |
|
| 97 | + $this->checkTwoFactor($controller, $methodName, $user); |
|
| 98 | + } else if ($controller instanceof TwoFactorChallengeController) { |
|
| 99 | + // Allow access to the two-factor controllers only if two-factor authentication |
|
| 100 | + // is in progress. |
|
| 101 | + throw new UserAlreadyLoggedInException(); |
|
| 102 | + } |
|
| 103 | + } |
|
| 104 | + // TODO: dont check/enforce 2FA if a auth token is used |
|
| 105 | + } |
|
| 106 | + |
|
| 107 | + private function checkTwoFactor($controller, $methodName, IUser $user) { |
|
| 108 | + // If two-factor auth is in progress disallow access to any controllers |
|
| 109 | + // defined within "LoginController". |
|
| 110 | + $needsSecondFactor = $this->twoFactorManager->needsSecondFactor($user); |
|
| 111 | + $twoFactor = $controller instanceof TwoFactorChallengeController; |
|
| 112 | + |
|
| 113 | + // Disallow access to any controller if 2FA needs to be checked |
|
| 114 | + if ($needsSecondFactor && !$twoFactor) { |
|
| 115 | + throw new TwoFactorAuthRequiredException(); |
|
| 116 | + } |
|
| 117 | + |
|
| 118 | + // Allow access to the two-factor controllers only if two-factor authentication |
|
| 119 | + // is in progress. |
|
| 120 | + if (!$needsSecondFactor && $twoFactor) { |
|
| 121 | + throw new UserAlreadyLoggedInException(); |
|
| 122 | + } |
|
| 123 | + } |
|
| 124 | + |
|
| 125 | + public function afterException($controller, $methodName, Exception $exception) { |
|
| 126 | + if ($exception instanceof TwoFactorAuthRequiredException) { |
|
| 127 | + return new RedirectResponse($this->urlGenerator->linkToRoute('core.TwoFactorChallenge.selectChallenge', [ |
|
| 128 | + 'redirect_url' => urlencode($this->request->server['REQUEST_URI']), |
|
| 129 | + ])); |
|
| 130 | + } |
|
| 131 | + if ($exception instanceof UserAlreadyLoggedInException) { |
|
| 132 | + return new RedirectResponse($this->urlGenerator->linkToRoute('files.view.index')); |
|
| 133 | + } |
|
| 134 | + |
|
| 135 | + throw $exception; |
|
| 136 | + } |
|
| 137 | 137 | |
| 138 | 138 | } |
@@ -102,7 +102,7 @@ |
||
| 102 | 102 | * @param bool $isLoggedIn |
| 103 | 103 | * @param bool $isAdminUser |
| 104 | 104 | * @param ContentSecurityPolicyManager $contentSecurityPolicyManager |
| 105 | - * @param CSRFTokenManager $csrfTokenManager |
|
| 105 | + * @param CsrfTokenManager $csrfTokenManager |
|
| 106 | 106 | * @param ContentSecurityPolicyNonceManager $cspNonceManager |
| 107 | 107 | * @param Throttler $throttler |
| 108 | 108 | */ |
@@ -64,219 +64,219 @@ |
||
| 64 | 64 | * check fails |
| 65 | 65 | */ |
| 66 | 66 | class SecurityMiddleware extends Middleware { |
| 67 | - /** @var INavigationManager */ |
|
| 68 | - private $navigationManager; |
|
| 69 | - /** @var IRequest */ |
|
| 70 | - private $request; |
|
| 71 | - /** @var ControllerMethodReflector */ |
|
| 72 | - private $reflector; |
|
| 73 | - /** @var string */ |
|
| 74 | - private $appName; |
|
| 75 | - /** @var IURLGenerator */ |
|
| 76 | - private $urlGenerator; |
|
| 77 | - /** @var ILogger */ |
|
| 78 | - private $logger; |
|
| 79 | - /** @var ISession */ |
|
| 80 | - private $session; |
|
| 81 | - /** @var bool */ |
|
| 82 | - private $isLoggedIn; |
|
| 83 | - /** @var bool */ |
|
| 84 | - private $isAdminUser; |
|
| 85 | - /** @var ContentSecurityPolicyManager */ |
|
| 86 | - private $contentSecurityPolicyManager; |
|
| 87 | - /** @var CsrfTokenManager */ |
|
| 88 | - private $csrfTokenManager; |
|
| 89 | - /** @var ContentSecurityPolicyNonceManager */ |
|
| 90 | - private $cspNonceManager; |
|
| 91 | - /** @var Throttler */ |
|
| 92 | - private $throttler; |
|
| 67 | + /** @var INavigationManager */ |
|
| 68 | + private $navigationManager; |
|
| 69 | + /** @var IRequest */ |
|
| 70 | + private $request; |
|
| 71 | + /** @var ControllerMethodReflector */ |
|
| 72 | + private $reflector; |
|
| 73 | + /** @var string */ |
|
| 74 | + private $appName; |
|
| 75 | + /** @var IURLGenerator */ |
|
| 76 | + private $urlGenerator; |
|
| 77 | + /** @var ILogger */ |
|
| 78 | + private $logger; |
|
| 79 | + /** @var ISession */ |
|
| 80 | + private $session; |
|
| 81 | + /** @var bool */ |
|
| 82 | + private $isLoggedIn; |
|
| 83 | + /** @var bool */ |
|
| 84 | + private $isAdminUser; |
|
| 85 | + /** @var ContentSecurityPolicyManager */ |
|
| 86 | + private $contentSecurityPolicyManager; |
|
| 87 | + /** @var CsrfTokenManager */ |
|
| 88 | + private $csrfTokenManager; |
|
| 89 | + /** @var ContentSecurityPolicyNonceManager */ |
|
| 90 | + private $cspNonceManager; |
|
| 91 | + /** @var Throttler */ |
|
| 92 | + private $throttler; |
|
| 93 | 93 | |
| 94 | - /** |
|
| 95 | - * @param IRequest $request |
|
| 96 | - * @param ControllerMethodReflector $reflector |
|
| 97 | - * @param INavigationManager $navigationManager |
|
| 98 | - * @param IURLGenerator $urlGenerator |
|
| 99 | - * @param ILogger $logger |
|
| 100 | - * @param ISession $session |
|
| 101 | - * @param string $appName |
|
| 102 | - * @param bool $isLoggedIn |
|
| 103 | - * @param bool $isAdminUser |
|
| 104 | - * @param ContentSecurityPolicyManager $contentSecurityPolicyManager |
|
| 105 | - * @param CSRFTokenManager $csrfTokenManager |
|
| 106 | - * @param ContentSecurityPolicyNonceManager $cspNonceManager |
|
| 107 | - * @param Throttler $throttler |
|
| 108 | - */ |
|
| 109 | - public function __construct(IRequest $request, |
|
| 110 | - ControllerMethodReflector $reflector, |
|
| 111 | - INavigationManager $navigationManager, |
|
| 112 | - IURLGenerator $urlGenerator, |
|
| 113 | - ILogger $logger, |
|
| 114 | - ISession $session, |
|
| 115 | - $appName, |
|
| 116 | - $isLoggedIn, |
|
| 117 | - $isAdminUser, |
|
| 118 | - ContentSecurityPolicyManager $contentSecurityPolicyManager, |
|
| 119 | - CsrfTokenManager $csrfTokenManager, |
|
| 120 | - ContentSecurityPolicyNonceManager $cspNonceManager, |
|
| 121 | - Throttler $throttler) { |
|
| 122 | - $this->navigationManager = $navigationManager; |
|
| 123 | - $this->request = $request; |
|
| 124 | - $this->reflector = $reflector; |
|
| 125 | - $this->appName = $appName; |
|
| 126 | - $this->urlGenerator = $urlGenerator; |
|
| 127 | - $this->logger = $logger; |
|
| 128 | - $this->session = $session; |
|
| 129 | - $this->isLoggedIn = $isLoggedIn; |
|
| 130 | - $this->isAdminUser = $isAdminUser; |
|
| 131 | - $this->contentSecurityPolicyManager = $contentSecurityPolicyManager; |
|
| 132 | - $this->csrfTokenManager = $csrfTokenManager; |
|
| 133 | - $this->cspNonceManager = $cspNonceManager; |
|
| 134 | - $this->throttler = $throttler; |
|
| 135 | - } |
|
| 94 | + /** |
|
| 95 | + * @param IRequest $request |
|
| 96 | + * @param ControllerMethodReflector $reflector |
|
| 97 | + * @param INavigationManager $navigationManager |
|
| 98 | + * @param IURLGenerator $urlGenerator |
|
| 99 | + * @param ILogger $logger |
|
| 100 | + * @param ISession $session |
|
| 101 | + * @param string $appName |
|
| 102 | + * @param bool $isLoggedIn |
|
| 103 | + * @param bool $isAdminUser |
|
| 104 | + * @param ContentSecurityPolicyManager $contentSecurityPolicyManager |
|
| 105 | + * @param CSRFTokenManager $csrfTokenManager |
|
| 106 | + * @param ContentSecurityPolicyNonceManager $cspNonceManager |
|
| 107 | + * @param Throttler $throttler |
|
| 108 | + */ |
|
| 109 | + public function __construct(IRequest $request, |
|
| 110 | + ControllerMethodReflector $reflector, |
|
| 111 | + INavigationManager $navigationManager, |
|
| 112 | + IURLGenerator $urlGenerator, |
|
| 113 | + ILogger $logger, |
|
| 114 | + ISession $session, |
|
| 115 | + $appName, |
|
| 116 | + $isLoggedIn, |
|
| 117 | + $isAdminUser, |
|
| 118 | + ContentSecurityPolicyManager $contentSecurityPolicyManager, |
|
| 119 | + CsrfTokenManager $csrfTokenManager, |
|
| 120 | + ContentSecurityPolicyNonceManager $cspNonceManager, |
|
| 121 | + Throttler $throttler) { |
|
| 122 | + $this->navigationManager = $navigationManager; |
|
| 123 | + $this->request = $request; |
|
| 124 | + $this->reflector = $reflector; |
|
| 125 | + $this->appName = $appName; |
|
| 126 | + $this->urlGenerator = $urlGenerator; |
|
| 127 | + $this->logger = $logger; |
|
| 128 | + $this->session = $session; |
|
| 129 | + $this->isLoggedIn = $isLoggedIn; |
|
| 130 | + $this->isAdminUser = $isAdminUser; |
|
| 131 | + $this->contentSecurityPolicyManager = $contentSecurityPolicyManager; |
|
| 132 | + $this->csrfTokenManager = $csrfTokenManager; |
|
| 133 | + $this->cspNonceManager = $cspNonceManager; |
|
| 134 | + $this->throttler = $throttler; |
|
| 135 | + } |
|
| 136 | 136 | |
| 137 | 137 | |
| 138 | - /** |
|
| 139 | - * This runs all the security checks before a method call. The |
|
| 140 | - * security checks are determined by inspecting the controller method |
|
| 141 | - * annotations |
|
| 142 | - * @param Controller $controller the controller |
|
| 143 | - * @param string $methodName the name of the method |
|
| 144 | - * @throws SecurityException when a security check fails |
|
| 145 | - */ |
|
| 146 | - public function beforeController($controller, $methodName) { |
|
| 138 | + /** |
|
| 139 | + * This runs all the security checks before a method call. The |
|
| 140 | + * security checks are determined by inspecting the controller method |
|
| 141 | + * annotations |
|
| 142 | + * @param Controller $controller the controller |
|
| 143 | + * @param string $methodName the name of the method |
|
| 144 | + * @throws SecurityException when a security check fails |
|
| 145 | + */ |
|
| 146 | + public function beforeController($controller, $methodName) { |
|
| 147 | 147 | |
| 148 | - // this will set the current navigation entry of the app, use this only |
|
| 149 | - // for normal HTML requests and not for AJAX requests |
|
| 150 | - $this->navigationManager->setActiveEntry($this->appName); |
|
| 148 | + // this will set the current navigation entry of the app, use this only |
|
| 149 | + // for normal HTML requests and not for AJAX requests |
|
| 150 | + $this->navigationManager->setActiveEntry($this->appName); |
|
| 151 | 151 | |
| 152 | - // security checks |
|
| 153 | - $isPublicPage = $this->reflector->hasAnnotation('PublicPage'); |
|
| 154 | - if(!$isPublicPage) { |
|
| 155 | - if(!$this->isLoggedIn) { |
|
| 156 | - throw new NotLoggedInException(); |
|
| 157 | - } |
|
| 152 | + // security checks |
|
| 153 | + $isPublicPage = $this->reflector->hasAnnotation('PublicPage'); |
|
| 154 | + if(!$isPublicPage) { |
|
| 155 | + if(!$this->isLoggedIn) { |
|
| 156 | + throw new NotLoggedInException(); |
|
| 157 | + } |
|
| 158 | 158 | |
| 159 | - if(!$this->reflector->hasAnnotation('NoAdminRequired')) { |
|
| 160 | - if(!$this->isAdminUser) { |
|
| 161 | - throw new NotAdminException(); |
|
| 162 | - } |
|
| 163 | - } |
|
| 164 | - } |
|
| 159 | + if(!$this->reflector->hasAnnotation('NoAdminRequired')) { |
|
| 160 | + if(!$this->isAdminUser) { |
|
| 161 | + throw new NotAdminException(); |
|
| 162 | + } |
|
| 163 | + } |
|
| 164 | + } |
|
| 165 | 165 | |
| 166 | - if ($this->reflector->hasAnnotation('PasswordConfirmationRequired')) { |
|
| 167 | - $lastConfirm = (int) $this->session->get('last-password-confirm'); |
|
| 168 | - if ($lastConfirm < (time() - (30 * 60 + 15))) { // allow 15 seconds delay |
|
| 169 | - throw new NotConfirmedException(); |
|
| 170 | - } |
|
| 171 | - } |
|
| 166 | + if ($this->reflector->hasAnnotation('PasswordConfirmationRequired')) { |
|
| 167 | + $lastConfirm = (int) $this->session->get('last-password-confirm'); |
|
| 168 | + if ($lastConfirm < (time() - (30 * 60 + 15))) { // allow 15 seconds delay |
|
| 169 | + throw new NotConfirmedException(); |
|
| 170 | + } |
|
| 171 | + } |
|
| 172 | 172 | |
| 173 | - // Check for strict cookie requirement |
|
| 174 | - if($this->reflector->hasAnnotation('StrictCookieRequired') || !$this->reflector->hasAnnotation('NoCSRFRequired')) { |
|
| 175 | - if(!$this->request->passesStrictCookieCheck()) { |
|
| 176 | - throw new StrictCookieMissingException(); |
|
| 177 | - } |
|
| 178 | - } |
|
| 179 | - // CSRF check - also registers the CSRF token since the session may be closed later |
|
| 180 | - Util::callRegister(); |
|
| 181 | - if(!$this->reflector->hasAnnotation('NoCSRFRequired')) { |
|
| 182 | - /* |
|
| 173 | + // Check for strict cookie requirement |
|
| 174 | + if($this->reflector->hasAnnotation('StrictCookieRequired') || !$this->reflector->hasAnnotation('NoCSRFRequired')) { |
|
| 175 | + if(!$this->request->passesStrictCookieCheck()) { |
|
| 176 | + throw new StrictCookieMissingException(); |
|
| 177 | + } |
|
| 178 | + } |
|
| 179 | + // CSRF check - also registers the CSRF token since the session may be closed later |
|
| 180 | + Util::callRegister(); |
|
| 181 | + if(!$this->reflector->hasAnnotation('NoCSRFRequired')) { |
|
| 182 | + /* |
|
| 183 | 183 | * Only allow the CSRF check to fail on OCS Requests. This kind of |
| 184 | 184 | * hacks around that we have no full token auth in place yet and we |
| 185 | 185 | * do want to offer CSRF checks for web requests. |
| 186 | 186 | */ |
| 187 | - if(!$this->request->passesCSRFCheck() && !( |
|
| 188 | - $controller instanceof OCSController && |
|
| 189 | - $this->request->getHeader('OCS-APIREQUEST') === 'true')) { |
|
| 190 | - throw new CrossSiteRequestForgeryException(); |
|
| 191 | - } |
|
| 192 | - } |
|
| 187 | + if(!$this->request->passesCSRFCheck() && !( |
|
| 188 | + $controller instanceof OCSController && |
|
| 189 | + $this->request->getHeader('OCS-APIREQUEST') === 'true')) { |
|
| 190 | + throw new CrossSiteRequestForgeryException(); |
|
| 191 | + } |
|
| 192 | + } |
|
| 193 | 193 | |
| 194 | - if($this->reflector->hasAnnotation('BruteForceProtection')) { |
|
| 195 | - $action = $this->reflector->getAnnotationParameter('BruteForceProtection'); |
|
| 196 | - $this->throttler->sleepDelay($this->request->getRemoteAddress(), $action); |
|
| 197 | - $this->throttler->registerAttempt($action, $this->request->getRemoteAddress()); |
|
| 198 | - } |
|
| 194 | + if($this->reflector->hasAnnotation('BruteForceProtection')) { |
|
| 195 | + $action = $this->reflector->getAnnotationParameter('BruteForceProtection'); |
|
| 196 | + $this->throttler->sleepDelay($this->request->getRemoteAddress(), $action); |
|
| 197 | + $this->throttler->registerAttempt($action, $this->request->getRemoteAddress()); |
|
| 198 | + } |
|
| 199 | 199 | |
| 200 | - /** |
|
| 201 | - * FIXME: Use DI once available |
|
| 202 | - * Checks if app is enabled (also includes a check whether user is allowed to access the resource) |
|
| 203 | - * The getAppPath() check is here since components such as settings also use the AppFramework and |
|
| 204 | - * therefore won't pass this check. |
|
| 205 | - */ |
|
| 206 | - if(\OC_App::getAppPath($this->appName) !== false && !\OC_App::isEnabled($this->appName)) { |
|
| 207 | - throw new AppNotEnabledException(); |
|
| 208 | - } |
|
| 200 | + /** |
|
| 201 | + * FIXME: Use DI once available |
|
| 202 | + * Checks if app is enabled (also includes a check whether user is allowed to access the resource) |
|
| 203 | + * The getAppPath() check is here since components such as settings also use the AppFramework and |
|
| 204 | + * therefore won't pass this check. |
|
| 205 | + */ |
|
| 206 | + if(\OC_App::getAppPath($this->appName) !== false && !\OC_App::isEnabled($this->appName)) { |
|
| 207 | + throw new AppNotEnabledException(); |
|
| 208 | + } |
|
| 209 | 209 | |
| 210 | - } |
|
| 210 | + } |
|
| 211 | 211 | |
| 212 | - /** |
|
| 213 | - * Performs the default CSP modifications that may be injected by other |
|
| 214 | - * applications |
|
| 215 | - * |
|
| 216 | - * @param Controller $controller |
|
| 217 | - * @param string $methodName |
|
| 218 | - * @param Response $response |
|
| 219 | - * @return Response |
|
| 220 | - */ |
|
| 221 | - public function afterController($controller, $methodName, Response $response) { |
|
| 222 | - $policy = !is_null($response->getContentSecurityPolicy()) ? $response->getContentSecurityPolicy() : new ContentSecurityPolicy(); |
|
| 212 | + /** |
|
| 213 | + * Performs the default CSP modifications that may be injected by other |
|
| 214 | + * applications |
|
| 215 | + * |
|
| 216 | + * @param Controller $controller |
|
| 217 | + * @param string $methodName |
|
| 218 | + * @param Response $response |
|
| 219 | + * @return Response |
|
| 220 | + */ |
|
| 221 | + public function afterController($controller, $methodName, Response $response) { |
|
| 222 | + $policy = !is_null($response->getContentSecurityPolicy()) ? $response->getContentSecurityPolicy() : new ContentSecurityPolicy(); |
|
| 223 | 223 | |
| 224 | - if (get_class($policy) === EmptyContentSecurityPolicy::class) { |
|
| 225 | - return $response; |
|
| 226 | - } |
|
| 224 | + if (get_class($policy) === EmptyContentSecurityPolicy::class) { |
|
| 225 | + return $response; |
|
| 226 | + } |
|
| 227 | 227 | |
| 228 | - $defaultPolicy = $this->contentSecurityPolicyManager->getDefaultPolicy(); |
|
| 229 | - $defaultPolicy = $this->contentSecurityPolicyManager->mergePolicies($defaultPolicy, $policy); |
|
| 228 | + $defaultPolicy = $this->contentSecurityPolicyManager->getDefaultPolicy(); |
|
| 229 | + $defaultPolicy = $this->contentSecurityPolicyManager->mergePolicies($defaultPolicy, $policy); |
|
| 230 | 230 | |
| 231 | - if($this->cspNonceManager->browserSupportsCspV3()) { |
|
| 232 | - $defaultPolicy->useJsNonce($this->csrfTokenManager->getToken()->getEncryptedValue()); |
|
| 233 | - } |
|
| 231 | + if($this->cspNonceManager->browserSupportsCspV3()) { |
|
| 232 | + $defaultPolicy->useJsNonce($this->csrfTokenManager->getToken()->getEncryptedValue()); |
|
| 233 | + } |
|
| 234 | 234 | |
| 235 | - $response->setContentSecurityPolicy($defaultPolicy); |
|
| 235 | + $response->setContentSecurityPolicy($defaultPolicy); |
|
| 236 | 236 | |
| 237 | - return $response; |
|
| 238 | - } |
|
| 237 | + return $response; |
|
| 238 | + } |
|
| 239 | 239 | |
| 240 | - /** |
|
| 241 | - * If an SecurityException is being caught, ajax requests return a JSON error |
|
| 242 | - * response and non ajax requests redirect to the index |
|
| 243 | - * @param Controller $controller the controller that is being called |
|
| 244 | - * @param string $methodName the name of the method that will be called on |
|
| 245 | - * the controller |
|
| 246 | - * @param \Exception $exception the thrown exception |
|
| 247 | - * @throws \Exception the passed in exception if it can't handle it |
|
| 248 | - * @return Response a Response object or null in case that the exception could not be handled |
|
| 249 | - */ |
|
| 250 | - public function afterException($controller, $methodName, \Exception $exception) { |
|
| 251 | - if($exception instanceof SecurityException) { |
|
| 252 | - if($exception instanceof StrictCookieMissingException) { |
|
| 253 | - return new RedirectResponse(\OC::$WEBROOT); |
|
| 254 | - } |
|
| 255 | - if (stripos($this->request->getHeader('Accept'),'html') === false) { |
|
| 256 | - $response = new JSONResponse( |
|
| 257 | - array('message' => $exception->getMessage()), |
|
| 258 | - $exception->getCode() |
|
| 259 | - ); |
|
| 260 | - } else { |
|
| 261 | - if($exception instanceof NotLoggedInException) { |
|
| 262 | - $url = $this->urlGenerator->linkToRoute( |
|
| 263 | - 'core.login.showLoginForm', |
|
| 264 | - [ |
|
| 265 | - 'redirect_url' => $this->request->server['REQUEST_URI'], |
|
| 266 | - ] |
|
| 267 | - ); |
|
| 268 | - $response = new RedirectResponse($url); |
|
| 269 | - } else { |
|
| 270 | - $response = new TemplateResponse('core', '403', ['file' => $exception->getMessage()], 'guest'); |
|
| 271 | - $response->setStatus($exception->getCode()); |
|
| 272 | - } |
|
| 273 | - } |
|
| 240 | + /** |
|
| 241 | + * If an SecurityException is being caught, ajax requests return a JSON error |
|
| 242 | + * response and non ajax requests redirect to the index |
|
| 243 | + * @param Controller $controller the controller that is being called |
|
| 244 | + * @param string $methodName the name of the method that will be called on |
|
| 245 | + * the controller |
|
| 246 | + * @param \Exception $exception the thrown exception |
|
| 247 | + * @throws \Exception the passed in exception if it can't handle it |
|
| 248 | + * @return Response a Response object or null in case that the exception could not be handled |
|
| 249 | + */ |
|
| 250 | + public function afterException($controller, $methodName, \Exception $exception) { |
|
| 251 | + if($exception instanceof SecurityException) { |
|
| 252 | + if($exception instanceof StrictCookieMissingException) { |
|
| 253 | + return new RedirectResponse(\OC::$WEBROOT); |
|
| 254 | + } |
|
| 255 | + if (stripos($this->request->getHeader('Accept'),'html') === false) { |
|
| 256 | + $response = new JSONResponse( |
|
| 257 | + array('message' => $exception->getMessage()), |
|
| 258 | + $exception->getCode() |
|
| 259 | + ); |
|
| 260 | + } else { |
|
| 261 | + if($exception instanceof NotLoggedInException) { |
|
| 262 | + $url = $this->urlGenerator->linkToRoute( |
|
| 263 | + 'core.login.showLoginForm', |
|
| 264 | + [ |
|
| 265 | + 'redirect_url' => $this->request->server['REQUEST_URI'], |
|
| 266 | + ] |
|
| 267 | + ); |
|
| 268 | + $response = new RedirectResponse($url); |
|
| 269 | + } else { |
|
| 270 | + $response = new TemplateResponse('core', '403', ['file' => $exception->getMessage()], 'guest'); |
|
| 271 | + $response->setStatus($exception->getCode()); |
|
| 272 | + } |
|
| 273 | + } |
|
| 274 | 274 | |
| 275 | - $this->logger->debug($exception->getMessage()); |
|
| 276 | - return $response; |
|
| 277 | - } |
|
| 275 | + $this->logger->debug($exception->getMessage()); |
|
| 276 | + return $response; |
|
| 277 | + } |
|
| 278 | 278 | |
| 279 | - throw $exception; |
|
| 280 | - } |
|
| 279 | + throw $exception; |
|
| 280 | + } |
|
| 281 | 281 | |
| 282 | 282 | } |
@@ -151,13 +151,13 @@ discard block |
||
| 151 | 151 | |
| 152 | 152 | // security checks |
| 153 | 153 | $isPublicPage = $this->reflector->hasAnnotation('PublicPage'); |
| 154 | - if(!$isPublicPage) { |
|
| 155 | - if(!$this->isLoggedIn) { |
|
| 154 | + if (!$isPublicPage) { |
|
| 155 | + if (!$this->isLoggedIn) { |
|
| 156 | 156 | throw new NotLoggedInException(); |
| 157 | 157 | } |
| 158 | 158 | |
| 159 | - if(!$this->reflector->hasAnnotation('NoAdminRequired')) { |
|
| 160 | - if(!$this->isAdminUser) { |
|
| 159 | + if (!$this->reflector->hasAnnotation('NoAdminRequired')) { |
|
| 160 | + if (!$this->isAdminUser) { |
|
| 161 | 161 | throw new NotAdminException(); |
| 162 | 162 | } |
| 163 | 163 | } |
@@ -171,27 +171,27 @@ discard block |
||
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | // Check for strict cookie requirement |
| 174 | - if($this->reflector->hasAnnotation('StrictCookieRequired') || !$this->reflector->hasAnnotation('NoCSRFRequired')) { |
|
| 175 | - if(!$this->request->passesStrictCookieCheck()) { |
|
| 174 | + if ($this->reflector->hasAnnotation('StrictCookieRequired') || !$this->reflector->hasAnnotation('NoCSRFRequired')) { |
|
| 175 | + if (!$this->request->passesStrictCookieCheck()) { |
|
| 176 | 176 | throw new StrictCookieMissingException(); |
| 177 | 177 | } |
| 178 | 178 | } |
| 179 | 179 | // CSRF check - also registers the CSRF token since the session may be closed later |
| 180 | 180 | Util::callRegister(); |
| 181 | - if(!$this->reflector->hasAnnotation('NoCSRFRequired')) { |
|
| 181 | + if (!$this->reflector->hasAnnotation('NoCSRFRequired')) { |
|
| 182 | 182 | /* |
| 183 | 183 | * Only allow the CSRF check to fail on OCS Requests. This kind of |
| 184 | 184 | * hacks around that we have no full token auth in place yet and we |
| 185 | 185 | * do want to offer CSRF checks for web requests. |
| 186 | 186 | */ |
| 187 | - if(!$this->request->passesCSRFCheck() && !( |
|
| 187 | + if (!$this->request->passesCSRFCheck() && !( |
|
| 188 | 188 | $controller instanceof OCSController && |
| 189 | 189 | $this->request->getHeader('OCS-APIREQUEST') === 'true')) { |
| 190 | 190 | throw new CrossSiteRequestForgeryException(); |
| 191 | 191 | } |
| 192 | 192 | } |
| 193 | 193 | |
| 194 | - if($this->reflector->hasAnnotation('BruteForceProtection')) { |
|
| 194 | + if ($this->reflector->hasAnnotation('BruteForceProtection')) { |
|
| 195 | 195 | $action = $this->reflector->getAnnotationParameter('BruteForceProtection'); |
| 196 | 196 | $this->throttler->sleepDelay($this->request->getRemoteAddress(), $action); |
| 197 | 197 | $this->throttler->registerAttempt($action, $this->request->getRemoteAddress()); |
@@ -203,7 +203,7 @@ discard block |
||
| 203 | 203 | * The getAppPath() check is here since components such as settings also use the AppFramework and |
| 204 | 204 | * therefore won't pass this check. |
| 205 | 205 | */ |
| 206 | - if(\OC_App::getAppPath($this->appName) !== false && !\OC_App::isEnabled($this->appName)) { |
|
| 206 | + if (\OC_App::getAppPath($this->appName) !== false && !\OC_App::isEnabled($this->appName)) { |
|
| 207 | 207 | throw new AppNotEnabledException(); |
| 208 | 208 | } |
| 209 | 209 | |
@@ -228,7 +228,7 @@ discard block |
||
| 228 | 228 | $defaultPolicy = $this->contentSecurityPolicyManager->getDefaultPolicy(); |
| 229 | 229 | $defaultPolicy = $this->contentSecurityPolicyManager->mergePolicies($defaultPolicy, $policy); |
| 230 | 230 | |
| 231 | - if($this->cspNonceManager->browserSupportsCspV3()) { |
|
| 231 | + if ($this->cspNonceManager->browserSupportsCspV3()) { |
|
| 232 | 232 | $defaultPolicy->useJsNonce($this->csrfTokenManager->getToken()->getEncryptedValue()); |
| 233 | 233 | } |
| 234 | 234 | |
@@ -248,17 +248,17 @@ discard block |
||
| 248 | 248 | * @return Response a Response object or null in case that the exception could not be handled |
| 249 | 249 | */ |
| 250 | 250 | public function afterException($controller, $methodName, \Exception $exception) { |
| 251 | - if($exception instanceof SecurityException) { |
|
| 252 | - if($exception instanceof StrictCookieMissingException) { |
|
| 251 | + if ($exception instanceof SecurityException) { |
|
| 252 | + if ($exception instanceof StrictCookieMissingException) { |
|
| 253 | 253 | return new RedirectResponse(\OC::$WEBROOT); |
| 254 | 254 | } |
| 255 | - if (stripos($this->request->getHeader('Accept'),'html') === false) { |
|
| 255 | + if (stripos($this->request->getHeader('Accept'), 'html') === false) { |
|
| 256 | 256 | $response = new JSONResponse( |
| 257 | 257 | array('message' => $exception->getMessage()), |
| 258 | 258 | $exception->getCode() |
| 259 | 259 | ); |
| 260 | 260 | } else { |
| 261 | - if($exception instanceof NotLoggedInException) { |
|
| 261 | + if ($exception instanceof NotLoggedInException) { |
|
| 262 | 262 | $url = $this->urlGenerator->linkToRoute( |
| 263 | 263 | 'core.login.showLoginForm', |
| 264 | 264 | [ |
@@ -370,6 +370,7 @@ |
||
| 370 | 370 | |
| 371 | 371 | /** |
| 372 | 372 | * write back temporary files |
| 373 | + * @param string $path |
|
| 373 | 374 | */ |
| 374 | 375 | function writeBack($tmpFile, $path) { |
| 375 | 376 | $this->addFile($path, $tmpFile); |
@@ -34,199 +34,199 @@ |
||
| 34 | 34 | use Icewind\Streams\CallbackWrapper; |
| 35 | 35 | |
| 36 | 36 | class ZIP extends Archive{ |
| 37 | - /** |
|
| 38 | - * @var \ZipArchive zip |
|
| 39 | - */ |
|
| 40 | - private $zip=null; |
|
| 41 | - private $path; |
|
| 37 | + /** |
|
| 38 | + * @var \ZipArchive zip |
|
| 39 | + */ |
|
| 40 | + private $zip=null; |
|
| 41 | + private $path; |
|
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * @param string $source |
|
| 45 | - */ |
|
| 46 | - function __construct($source) { |
|
| 47 | - $this->path=$source; |
|
| 48 | - $this->zip=new \ZipArchive(); |
|
| 49 | - if($this->zip->open($source, \ZipArchive::CREATE)) { |
|
| 50 | - }else{ |
|
| 51 | - \OCP\Util::writeLog('files_archive', 'Error while opening archive '.$source, \OCP\Util::WARN); |
|
| 52 | - } |
|
| 53 | - } |
|
| 54 | - /** |
|
| 55 | - * add an empty folder to the archive |
|
| 56 | - * @param string $path |
|
| 57 | - * @return bool |
|
| 58 | - */ |
|
| 59 | - function addFolder($path) { |
|
| 60 | - return $this->zip->addEmptyDir($path); |
|
| 61 | - } |
|
| 62 | - /** |
|
| 63 | - * add a file to the archive |
|
| 64 | - * @param string $path |
|
| 65 | - * @param string $source either a local file or string data |
|
| 66 | - * @return bool |
|
| 67 | - */ |
|
| 68 | - function addFile($path, $source='') { |
|
| 69 | - if($source and $source[0]=='/' and file_exists($source)) { |
|
| 70 | - $result=$this->zip->addFile($source, $path); |
|
| 71 | - }else{ |
|
| 72 | - $result=$this->zip->addFromString($path, $source); |
|
| 73 | - } |
|
| 74 | - if($result) { |
|
| 75 | - $this->zip->close();//close and reopen to save the zip |
|
| 76 | - $this->zip->open($this->path); |
|
| 77 | - } |
|
| 78 | - return $result; |
|
| 79 | - } |
|
| 80 | - /** |
|
| 81 | - * rename a file or folder in the archive |
|
| 82 | - * @param string $source |
|
| 83 | - * @param string $dest |
|
| 84 | - * @return boolean|null |
|
| 85 | - */ |
|
| 86 | - function rename($source, $dest) { |
|
| 87 | - $source=$this->stripPath($source); |
|
| 88 | - $dest=$this->stripPath($dest); |
|
| 89 | - $this->zip->renameName($source, $dest); |
|
| 90 | - } |
|
| 91 | - /** |
|
| 92 | - * get the uncompressed size of a file in the archive |
|
| 93 | - * @param string $path |
|
| 94 | - * @return int |
|
| 95 | - */ |
|
| 96 | - function filesize($path) { |
|
| 97 | - $stat=$this->zip->statName($path); |
|
| 98 | - return $stat['size']; |
|
| 99 | - } |
|
| 100 | - /** |
|
| 101 | - * get the last modified time of a file in the archive |
|
| 102 | - * @param string $path |
|
| 103 | - * @return int |
|
| 104 | - */ |
|
| 105 | - function mtime($path) { |
|
| 106 | - return filemtime($this->path); |
|
| 107 | - } |
|
| 108 | - /** |
|
| 109 | - * get the files in a folder |
|
| 110 | - * @param string $path |
|
| 111 | - * @return array |
|
| 112 | - */ |
|
| 113 | - function getFolder($path) { |
|
| 114 | - $files=$this->getFiles(); |
|
| 115 | - $folderContent=array(); |
|
| 116 | - $pathLength=strlen($path); |
|
| 117 | - foreach($files as $file) { |
|
| 118 | - if(substr($file, 0, $pathLength)==$path and $file!=$path) { |
|
| 119 | - if(strrpos(substr($file, 0, -1), '/')<=$pathLength) { |
|
| 120 | - $folderContent[]=substr($file, $pathLength); |
|
| 121 | - } |
|
| 122 | - } |
|
| 123 | - } |
|
| 124 | - return $folderContent; |
|
| 125 | - } |
|
| 126 | - /** |
|
| 127 | - * get all files in the archive |
|
| 128 | - * @return array |
|
| 129 | - */ |
|
| 130 | - function getFiles() { |
|
| 131 | - $fileCount=$this->zip->numFiles; |
|
| 132 | - $files=array(); |
|
| 133 | - for($i=0;$i<$fileCount;$i++) { |
|
| 134 | - $files[]=$this->zip->getNameIndex($i); |
|
| 135 | - } |
|
| 136 | - return $files; |
|
| 137 | - } |
|
| 138 | - /** |
|
| 139 | - * get the content of a file |
|
| 140 | - * @param string $path |
|
| 141 | - * @return string |
|
| 142 | - */ |
|
| 143 | - function getFile($path) { |
|
| 144 | - return $this->zip->getFromName($path); |
|
| 145 | - } |
|
| 146 | - /** |
|
| 147 | - * extract a single file from the archive |
|
| 148 | - * @param string $path |
|
| 149 | - * @param string $dest |
|
| 150 | - * @return boolean|null |
|
| 151 | - */ |
|
| 152 | - function extractFile($path, $dest) { |
|
| 153 | - $fp = $this->zip->getStream($path); |
|
| 154 | - file_put_contents($dest, $fp); |
|
| 155 | - } |
|
| 156 | - /** |
|
| 157 | - * extract the archive |
|
| 158 | - * @param string $dest |
|
| 159 | - * @return bool |
|
| 160 | - */ |
|
| 161 | - function extract($dest) { |
|
| 162 | - return $this->zip->extractTo($dest); |
|
| 163 | - } |
|
| 164 | - /** |
|
| 165 | - * check if a file or folder exists in the archive |
|
| 166 | - * @param string $path |
|
| 167 | - * @return bool |
|
| 168 | - */ |
|
| 169 | - function fileExists($path) { |
|
| 170 | - return ($this->zip->locateName($path)!==false) or ($this->zip->locateName($path.'/')!==false); |
|
| 171 | - } |
|
| 172 | - /** |
|
| 173 | - * remove a file or folder from the archive |
|
| 174 | - * @param string $path |
|
| 175 | - * @return bool |
|
| 176 | - */ |
|
| 177 | - function remove($path) { |
|
| 178 | - if($this->fileExists($path.'/')) { |
|
| 179 | - return $this->zip->deleteName($path.'/'); |
|
| 180 | - }else{ |
|
| 181 | - return $this->zip->deleteName($path); |
|
| 182 | - } |
|
| 183 | - } |
|
| 184 | - /** |
|
| 185 | - * get a file handler |
|
| 186 | - * @param string $path |
|
| 187 | - * @param string $mode |
|
| 188 | - * @return resource |
|
| 189 | - */ |
|
| 190 | - function getStream($path, $mode) { |
|
| 191 | - if($mode=='r' or $mode=='rb') { |
|
| 192 | - return $this->zip->getStream($path); |
|
| 193 | - } else { |
|
| 194 | - //since we can't directly get a writable stream, |
|
| 195 | - //make a temp copy of the file and put it back |
|
| 196 | - //in the archive when the stream is closed |
|
| 197 | - if(strrpos($path, '.')!==false) { |
|
| 198 | - $ext=substr($path, strrpos($path, '.')); |
|
| 199 | - }else{ |
|
| 200 | - $ext=''; |
|
| 201 | - } |
|
| 202 | - $tmpFile=\OCP\Files::tmpFile($ext); |
|
| 203 | - if($this->fileExists($path)) { |
|
| 204 | - $this->extractFile($path, $tmpFile); |
|
| 205 | - } |
|
| 206 | - $handle = fopen($tmpFile, $mode); |
|
| 207 | - return CallbackWrapper::wrap($handle, null, null, function () use ($path, $tmpFile) { |
|
| 208 | - $this->writeBack($tmpFile, $path); |
|
| 209 | - }); |
|
| 210 | - } |
|
| 211 | - } |
|
| 43 | + /** |
|
| 44 | + * @param string $source |
|
| 45 | + */ |
|
| 46 | + function __construct($source) { |
|
| 47 | + $this->path=$source; |
|
| 48 | + $this->zip=new \ZipArchive(); |
|
| 49 | + if($this->zip->open($source, \ZipArchive::CREATE)) { |
|
| 50 | + }else{ |
|
| 51 | + \OCP\Util::writeLog('files_archive', 'Error while opening archive '.$source, \OCP\Util::WARN); |
|
| 52 | + } |
|
| 53 | + } |
|
| 54 | + /** |
|
| 55 | + * add an empty folder to the archive |
|
| 56 | + * @param string $path |
|
| 57 | + * @return bool |
|
| 58 | + */ |
|
| 59 | + function addFolder($path) { |
|
| 60 | + return $this->zip->addEmptyDir($path); |
|
| 61 | + } |
|
| 62 | + /** |
|
| 63 | + * add a file to the archive |
|
| 64 | + * @param string $path |
|
| 65 | + * @param string $source either a local file or string data |
|
| 66 | + * @return bool |
|
| 67 | + */ |
|
| 68 | + function addFile($path, $source='') { |
|
| 69 | + if($source and $source[0]=='/' and file_exists($source)) { |
|
| 70 | + $result=$this->zip->addFile($source, $path); |
|
| 71 | + }else{ |
|
| 72 | + $result=$this->zip->addFromString($path, $source); |
|
| 73 | + } |
|
| 74 | + if($result) { |
|
| 75 | + $this->zip->close();//close and reopen to save the zip |
|
| 76 | + $this->zip->open($this->path); |
|
| 77 | + } |
|
| 78 | + return $result; |
|
| 79 | + } |
|
| 80 | + /** |
|
| 81 | + * rename a file or folder in the archive |
|
| 82 | + * @param string $source |
|
| 83 | + * @param string $dest |
|
| 84 | + * @return boolean|null |
|
| 85 | + */ |
|
| 86 | + function rename($source, $dest) { |
|
| 87 | + $source=$this->stripPath($source); |
|
| 88 | + $dest=$this->stripPath($dest); |
|
| 89 | + $this->zip->renameName($source, $dest); |
|
| 90 | + } |
|
| 91 | + /** |
|
| 92 | + * get the uncompressed size of a file in the archive |
|
| 93 | + * @param string $path |
|
| 94 | + * @return int |
|
| 95 | + */ |
|
| 96 | + function filesize($path) { |
|
| 97 | + $stat=$this->zip->statName($path); |
|
| 98 | + return $stat['size']; |
|
| 99 | + } |
|
| 100 | + /** |
|
| 101 | + * get the last modified time of a file in the archive |
|
| 102 | + * @param string $path |
|
| 103 | + * @return int |
|
| 104 | + */ |
|
| 105 | + function mtime($path) { |
|
| 106 | + return filemtime($this->path); |
|
| 107 | + } |
|
| 108 | + /** |
|
| 109 | + * get the files in a folder |
|
| 110 | + * @param string $path |
|
| 111 | + * @return array |
|
| 112 | + */ |
|
| 113 | + function getFolder($path) { |
|
| 114 | + $files=$this->getFiles(); |
|
| 115 | + $folderContent=array(); |
|
| 116 | + $pathLength=strlen($path); |
|
| 117 | + foreach($files as $file) { |
|
| 118 | + if(substr($file, 0, $pathLength)==$path and $file!=$path) { |
|
| 119 | + if(strrpos(substr($file, 0, -1), '/')<=$pathLength) { |
|
| 120 | + $folderContent[]=substr($file, $pathLength); |
|
| 121 | + } |
|
| 122 | + } |
|
| 123 | + } |
|
| 124 | + return $folderContent; |
|
| 125 | + } |
|
| 126 | + /** |
|
| 127 | + * get all files in the archive |
|
| 128 | + * @return array |
|
| 129 | + */ |
|
| 130 | + function getFiles() { |
|
| 131 | + $fileCount=$this->zip->numFiles; |
|
| 132 | + $files=array(); |
|
| 133 | + for($i=0;$i<$fileCount;$i++) { |
|
| 134 | + $files[]=$this->zip->getNameIndex($i); |
|
| 135 | + } |
|
| 136 | + return $files; |
|
| 137 | + } |
|
| 138 | + /** |
|
| 139 | + * get the content of a file |
|
| 140 | + * @param string $path |
|
| 141 | + * @return string |
|
| 142 | + */ |
|
| 143 | + function getFile($path) { |
|
| 144 | + return $this->zip->getFromName($path); |
|
| 145 | + } |
|
| 146 | + /** |
|
| 147 | + * extract a single file from the archive |
|
| 148 | + * @param string $path |
|
| 149 | + * @param string $dest |
|
| 150 | + * @return boolean|null |
|
| 151 | + */ |
|
| 152 | + function extractFile($path, $dest) { |
|
| 153 | + $fp = $this->zip->getStream($path); |
|
| 154 | + file_put_contents($dest, $fp); |
|
| 155 | + } |
|
| 156 | + /** |
|
| 157 | + * extract the archive |
|
| 158 | + * @param string $dest |
|
| 159 | + * @return bool |
|
| 160 | + */ |
|
| 161 | + function extract($dest) { |
|
| 162 | + return $this->zip->extractTo($dest); |
|
| 163 | + } |
|
| 164 | + /** |
|
| 165 | + * check if a file or folder exists in the archive |
|
| 166 | + * @param string $path |
|
| 167 | + * @return bool |
|
| 168 | + */ |
|
| 169 | + function fileExists($path) { |
|
| 170 | + return ($this->zip->locateName($path)!==false) or ($this->zip->locateName($path.'/')!==false); |
|
| 171 | + } |
|
| 172 | + /** |
|
| 173 | + * remove a file or folder from the archive |
|
| 174 | + * @param string $path |
|
| 175 | + * @return bool |
|
| 176 | + */ |
|
| 177 | + function remove($path) { |
|
| 178 | + if($this->fileExists($path.'/')) { |
|
| 179 | + return $this->zip->deleteName($path.'/'); |
|
| 180 | + }else{ |
|
| 181 | + return $this->zip->deleteName($path); |
|
| 182 | + } |
|
| 183 | + } |
|
| 184 | + /** |
|
| 185 | + * get a file handler |
|
| 186 | + * @param string $path |
|
| 187 | + * @param string $mode |
|
| 188 | + * @return resource |
|
| 189 | + */ |
|
| 190 | + function getStream($path, $mode) { |
|
| 191 | + if($mode=='r' or $mode=='rb') { |
|
| 192 | + return $this->zip->getStream($path); |
|
| 193 | + } else { |
|
| 194 | + //since we can't directly get a writable stream, |
|
| 195 | + //make a temp copy of the file and put it back |
|
| 196 | + //in the archive when the stream is closed |
|
| 197 | + if(strrpos($path, '.')!==false) { |
|
| 198 | + $ext=substr($path, strrpos($path, '.')); |
|
| 199 | + }else{ |
|
| 200 | + $ext=''; |
|
| 201 | + } |
|
| 202 | + $tmpFile=\OCP\Files::tmpFile($ext); |
|
| 203 | + if($this->fileExists($path)) { |
|
| 204 | + $this->extractFile($path, $tmpFile); |
|
| 205 | + } |
|
| 206 | + $handle = fopen($tmpFile, $mode); |
|
| 207 | + return CallbackWrapper::wrap($handle, null, null, function () use ($path, $tmpFile) { |
|
| 208 | + $this->writeBack($tmpFile, $path); |
|
| 209 | + }); |
|
| 210 | + } |
|
| 211 | + } |
|
| 212 | 212 | |
| 213 | - /** |
|
| 214 | - * write back temporary files |
|
| 215 | - */ |
|
| 216 | - function writeBack($tmpFile, $path) { |
|
| 217 | - $this->addFile($path, $tmpFile); |
|
| 218 | - unlink($tmpFile); |
|
| 219 | - } |
|
| 213 | + /** |
|
| 214 | + * write back temporary files |
|
| 215 | + */ |
|
| 216 | + function writeBack($tmpFile, $path) { |
|
| 217 | + $this->addFile($path, $tmpFile); |
|
| 218 | + unlink($tmpFile); |
|
| 219 | + } |
|
| 220 | 220 | |
| 221 | - /** |
|
| 222 | - * @param string $path |
|
| 223 | - * @return string |
|
| 224 | - */ |
|
| 225 | - private function stripPath($path) { |
|
| 226 | - if(!$path || $path[0]=='/') { |
|
| 227 | - return substr($path, 1); |
|
| 228 | - }else{ |
|
| 229 | - return $path; |
|
| 230 | - } |
|
| 231 | - } |
|
| 221 | + /** |
|
| 222 | + * @param string $path |
|
| 223 | + * @return string |
|
| 224 | + */ |
|
| 225 | + private function stripPath($path) { |
|
| 226 | + if(!$path || $path[0]=='/') { |
|
| 227 | + return substr($path, 1); |
|
| 228 | + }else{ |
|
| 229 | + return $path; |
|
| 230 | + } |
|
| 231 | + } |
|
| 232 | 232 | } |
@@ -33,21 +33,21 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | use Icewind\Streams\CallbackWrapper; |
| 35 | 35 | |
| 36 | -class ZIP extends Archive{ |
|
| 36 | +class ZIP extends Archive { |
|
| 37 | 37 | /** |
| 38 | 38 | * @var \ZipArchive zip |
| 39 | 39 | */ |
| 40 | - private $zip=null; |
|
| 40 | + private $zip = null; |
|
| 41 | 41 | private $path; |
| 42 | 42 | |
| 43 | 43 | /** |
| 44 | 44 | * @param string $source |
| 45 | 45 | */ |
| 46 | 46 | function __construct($source) { |
| 47 | - $this->path=$source; |
|
| 48 | - $this->zip=new \ZipArchive(); |
|
| 49 | - if($this->zip->open($source, \ZipArchive::CREATE)) { |
|
| 50 | - }else{ |
|
| 47 | + $this->path = $source; |
|
| 48 | + $this->zip = new \ZipArchive(); |
|
| 49 | + if ($this->zip->open($source, \ZipArchive::CREATE)) { |
|
| 50 | + } else { |
|
| 51 | 51 | \OCP\Util::writeLog('files_archive', 'Error while opening archive '.$source, \OCP\Util::WARN); |
| 52 | 52 | } |
| 53 | 53 | } |
@@ -65,14 +65,14 @@ discard block |
||
| 65 | 65 | * @param string $source either a local file or string data |
| 66 | 66 | * @return bool |
| 67 | 67 | */ |
| 68 | - function addFile($path, $source='') { |
|
| 69 | - if($source and $source[0]=='/' and file_exists($source)) { |
|
| 70 | - $result=$this->zip->addFile($source, $path); |
|
| 71 | - }else{ |
|
| 72 | - $result=$this->zip->addFromString($path, $source); |
|
| 68 | + function addFile($path, $source = '') { |
|
| 69 | + if ($source and $source[0] == '/' and file_exists($source)) { |
|
| 70 | + $result = $this->zip->addFile($source, $path); |
|
| 71 | + } else { |
|
| 72 | + $result = $this->zip->addFromString($path, $source); |
|
| 73 | 73 | } |
| 74 | - if($result) { |
|
| 75 | - $this->zip->close();//close and reopen to save the zip |
|
| 74 | + if ($result) { |
|
| 75 | + $this->zip->close(); //close and reopen to save the zip |
|
| 76 | 76 | $this->zip->open($this->path); |
| 77 | 77 | } |
| 78 | 78 | return $result; |
@@ -84,8 +84,8 @@ discard block |
||
| 84 | 84 | * @return boolean|null |
| 85 | 85 | */ |
| 86 | 86 | function rename($source, $dest) { |
| 87 | - $source=$this->stripPath($source); |
|
| 88 | - $dest=$this->stripPath($dest); |
|
| 87 | + $source = $this->stripPath($source); |
|
| 88 | + $dest = $this->stripPath($dest); |
|
| 89 | 89 | $this->zip->renameName($source, $dest); |
| 90 | 90 | } |
| 91 | 91 | /** |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | * @return int |
| 95 | 95 | */ |
| 96 | 96 | function filesize($path) { |
| 97 | - $stat=$this->zip->statName($path); |
|
| 97 | + $stat = $this->zip->statName($path); |
|
| 98 | 98 | return $stat['size']; |
| 99 | 99 | } |
| 100 | 100 | /** |
@@ -111,13 +111,13 @@ discard block |
||
| 111 | 111 | * @return array |
| 112 | 112 | */ |
| 113 | 113 | function getFolder($path) { |
| 114 | - $files=$this->getFiles(); |
|
| 115 | - $folderContent=array(); |
|
| 116 | - $pathLength=strlen($path); |
|
| 117 | - foreach($files as $file) { |
|
| 118 | - if(substr($file, 0, $pathLength)==$path and $file!=$path) { |
|
| 119 | - if(strrpos(substr($file, 0, -1), '/')<=$pathLength) { |
|
| 120 | - $folderContent[]=substr($file, $pathLength); |
|
| 114 | + $files = $this->getFiles(); |
|
| 115 | + $folderContent = array(); |
|
| 116 | + $pathLength = strlen($path); |
|
| 117 | + foreach ($files as $file) { |
|
| 118 | + if (substr($file, 0, $pathLength) == $path and $file != $path) { |
|
| 119 | + if (strrpos(substr($file, 0, -1), '/') <= $pathLength) { |
|
| 120 | + $folderContent[] = substr($file, $pathLength); |
|
| 121 | 121 | } |
| 122 | 122 | } |
| 123 | 123 | } |
@@ -128,10 +128,10 @@ discard block |
||
| 128 | 128 | * @return array |
| 129 | 129 | */ |
| 130 | 130 | function getFiles() { |
| 131 | - $fileCount=$this->zip->numFiles; |
|
| 132 | - $files=array(); |
|
| 133 | - for($i=0;$i<$fileCount;$i++) { |
|
| 134 | - $files[]=$this->zip->getNameIndex($i); |
|
| 131 | + $fileCount = $this->zip->numFiles; |
|
| 132 | + $files = array(); |
|
| 133 | + for ($i = 0; $i < $fileCount; $i++) { |
|
| 134 | + $files[] = $this->zip->getNameIndex($i); |
|
| 135 | 135 | } |
| 136 | 136 | return $files; |
| 137 | 137 | } |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | * @return bool |
| 168 | 168 | */ |
| 169 | 169 | function fileExists($path) { |
| 170 | - return ($this->zip->locateName($path)!==false) or ($this->zip->locateName($path.'/')!==false); |
|
| 170 | + return ($this->zip->locateName($path) !== false) or ($this->zip->locateName($path.'/') !== false); |
|
| 171 | 171 | } |
| 172 | 172 | /** |
| 173 | 173 | * remove a file or folder from the archive |
@@ -175,9 +175,9 @@ discard block |
||
| 175 | 175 | * @return bool |
| 176 | 176 | */ |
| 177 | 177 | function remove($path) { |
| 178 | - if($this->fileExists($path.'/')) { |
|
| 178 | + if ($this->fileExists($path.'/')) { |
|
| 179 | 179 | return $this->zip->deleteName($path.'/'); |
| 180 | - }else{ |
|
| 180 | + } else { |
|
| 181 | 181 | return $this->zip->deleteName($path); |
| 182 | 182 | } |
| 183 | 183 | } |
@@ -188,23 +188,23 @@ discard block |
||
| 188 | 188 | * @return resource |
| 189 | 189 | */ |
| 190 | 190 | function getStream($path, $mode) { |
| 191 | - if($mode=='r' or $mode=='rb') { |
|
| 191 | + if ($mode == 'r' or $mode == 'rb') { |
|
| 192 | 192 | return $this->zip->getStream($path); |
| 193 | 193 | } else { |
| 194 | 194 | //since we can't directly get a writable stream, |
| 195 | 195 | //make a temp copy of the file and put it back |
| 196 | 196 | //in the archive when the stream is closed |
| 197 | - if(strrpos($path, '.')!==false) { |
|
| 198 | - $ext=substr($path, strrpos($path, '.')); |
|
| 199 | - }else{ |
|
| 200 | - $ext=''; |
|
| 197 | + if (strrpos($path, '.') !== false) { |
|
| 198 | + $ext = substr($path, strrpos($path, '.')); |
|
| 199 | + } else { |
|
| 200 | + $ext = ''; |
|
| 201 | 201 | } |
| 202 | - $tmpFile=\OCP\Files::tmpFile($ext); |
|
| 203 | - if($this->fileExists($path)) { |
|
| 202 | + $tmpFile = \OCP\Files::tmpFile($ext); |
|
| 203 | + if ($this->fileExists($path)) { |
|
| 204 | 204 | $this->extractFile($path, $tmpFile); |
| 205 | 205 | } |
| 206 | 206 | $handle = fopen($tmpFile, $mode); |
| 207 | - return CallbackWrapper::wrap($handle, null, null, function () use ($path, $tmpFile) { |
|
| 207 | + return CallbackWrapper::wrap($handle, null, null, function() use ($path, $tmpFile) { |
|
| 208 | 208 | $this->writeBack($tmpFile, $path); |
| 209 | 209 | }); |
| 210 | 210 | } |
@@ -223,9 +223,9 @@ discard block |
||
| 223 | 223 | * @return string |
| 224 | 224 | */ |
| 225 | 225 | private function stripPath($path) { |
| 226 | - if(!$path || $path[0]=='/') { |
|
| 226 | + if (!$path || $path[0] == '/') { |
|
| 227 | 227 | return substr($path, 1); |
| 228 | - }else{ |
|
| 228 | + } else { |
|
| 229 | 229 | return $path; |
| 230 | 230 | } |
| 231 | 231 | } |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | $this->path=$source; |
| 48 | 48 | $this->zip=new \ZipArchive(); |
| 49 | 49 | if($this->zip->open($source, \ZipArchive::CREATE)) { |
| 50 | - }else{ |
|
| 50 | + } else{ |
|
| 51 | 51 | \OCP\Util::writeLog('files_archive', 'Error while opening archive '.$source, \OCP\Util::WARN); |
| 52 | 52 | } |
| 53 | 53 | } |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | function addFile($path, $source='') { |
| 69 | 69 | if($source and $source[0]=='/' and file_exists($source)) { |
| 70 | 70 | $result=$this->zip->addFile($source, $path); |
| 71 | - }else{ |
|
| 71 | + } else{ |
|
| 72 | 72 | $result=$this->zip->addFromString($path, $source); |
| 73 | 73 | } |
| 74 | 74 | if($result) { |
@@ -177,7 +177,7 @@ discard block |
||
| 177 | 177 | function remove($path) { |
| 178 | 178 | if($this->fileExists($path.'/')) { |
| 179 | 179 | return $this->zip->deleteName($path.'/'); |
| 180 | - }else{ |
|
| 180 | + } else{ |
|
| 181 | 181 | return $this->zip->deleteName($path); |
| 182 | 182 | } |
| 183 | 183 | } |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | //in the archive when the stream is closed |
| 197 | 197 | if(strrpos($path, '.')!==false) { |
| 198 | 198 | $ext=substr($path, strrpos($path, '.')); |
| 199 | - }else{ |
|
| 199 | + } else{ |
|
| 200 | 200 | $ext=''; |
| 201 | 201 | } |
| 202 | 202 | $tmpFile=\OCP\Files::tmpFile($ext); |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | private function stripPath($path) { |
| 226 | 226 | if(!$path || $path[0]=='/') { |
| 227 | 227 | return substr($path, 1); |
| 228 | - }else{ |
|
| 228 | + } else{ |
|
| 229 | 229 | return $path; |
| 230 | 230 | } |
| 231 | 231 | } |
@@ -194,6 +194,9 @@ |
||
| 194 | 194 | return $this->getCache()->getStatus($this->getSourcePath($file)); |
| 195 | 195 | } |
| 196 | 196 | |
| 197 | + /** |
|
| 198 | + * @param ICacheEntry[] $results |
|
| 199 | + */ |
|
| 197 | 200 | private function formatSearchResults($results) { |
| 198 | 201 | $results = array_filter($results, array($this, 'filterCacheEntry')); |
| 199 | 202 | $results = array_values($results); |
@@ -33,279 +33,279 @@ |
||
| 33 | 33 | * Jail to a subdirectory of the wrapped cache |
| 34 | 34 | */ |
| 35 | 35 | class CacheJail extends CacheWrapper { |
| 36 | - /** |
|
| 37 | - * @var string |
|
| 38 | - */ |
|
| 39 | - protected $root; |
|
| 36 | + /** |
|
| 37 | + * @var string |
|
| 38 | + */ |
|
| 39 | + protected $root; |
|
| 40 | 40 | |
| 41 | - /** |
|
| 42 | - * @param \OCP\Files\Cache\ICache $cache |
|
| 43 | - * @param string $root |
|
| 44 | - */ |
|
| 45 | - public function __construct($cache, $root) { |
|
| 46 | - parent::__construct($cache); |
|
| 47 | - $this->root = $root; |
|
| 48 | - } |
|
| 41 | + /** |
|
| 42 | + * @param \OCP\Files\Cache\ICache $cache |
|
| 43 | + * @param string $root |
|
| 44 | + */ |
|
| 45 | + public function __construct($cache, $root) { |
|
| 46 | + parent::__construct($cache); |
|
| 47 | + $this->root = $root; |
|
| 48 | + } |
|
| 49 | 49 | |
| 50 | - protected function getSourcePath($path) { |
|
| 51 | - if ($path === '') { |
|
| 52 | - return $this->root; |
|
| 53 | - } else { |
|
| 54 | - return $this->root . '/' . ltrim($path, '/'); |
|
| 55 | - } |
|
| 56 | - } |
|
| 50 | + protected function getSourcePath($path) { |
|
| 51 | + if ($path === '') { |
|
| 52 | + return $this->root; |
|
| 53 | + } else { |
|
| 54 | + return $this->root . '/' . ltrim($path, '/'); |
|
| 55 | + } |
|
| 56 | + } |
|
| 57 | 57 | |
| 58 | - /** |
|
| 59 | - * @param string $path |
|
| 60 | - * @return null|string the jailed path or null if the path is outside the jail |
|
| 61 | - */ |
|
| 62 | - protected function getJailedPath($path) { |
|
| 63 | - if ($this->root === '') { |
|
| 64 | - return $path; |
|
| 65 | - } |
|
| 66 | - $rootLength = strlen($this->root) + 1; |
|
| 67 | - if ($path === $this->root) { |
|
| 68 | - return ''; |
|
| 69 | - } else if (substr($path, 0, $rootLength) === $this->root . '/') { |
|
| 70 | - return substr($path, $rootLength); |
|
| 71 | - } else { |
|
| 72 | - return null; |
|
| 73 | - } |
|
| 74 | - } |
|
| 58 | + /** |
|
| 59 | + * @param string $path |
|
| 60 | + * @return null|string the jailed path or null if the path is outside the jail |
|
| 61 | + */ |
|
| 62 | + protected function getJailedPath($path) { |
|
| 63 | + if ($this->root === '') { |
|
| 64 | + return $path; |
|
| 65 | + } |
|
| 66 | + $rootLength = strlen($this->root) + 1; |
|
| 67 | + if ($path === $this->root) { |
|
| 68 | + return ''; |
|
| 69 | + } else if (substr($path, 0, $rootLength) === $this->root . '/') { |
|
| 70 | + return substr($path, $rootLength); |
|
| 71 | + } else { |
|
| 72 | + return null; |
|
| 73 | + } |
|
| 74 | + } |
|
| 75 | 75 | |
| 76 | - /** |
|
| 77 | - * @param ICacheEntry|array $entry |
|
| 78 | - * @return array |
|
| 79 | - */ |
|
| 80 | - protected function formatCacheEntry($entry) { |
|
| 81 | - if (isset($entry['path'])) { |
|
| 82 | - $entry['path'] = $this->getJailedPath($entry['path']); |
|
| 83 | - } |
|
| 84 | - return $entry; |
|
| 85 | - } |
|
| 76 | + /** |
|
| 77 | + * @param ICacheEntry|array $entry |
|
| 78 | + * @return array |
|
| 79 | + */ |
|
| 80 | + protected function formatCacheEntry($entry) { |
|
| 81 | + if (isset($entry['path'])) { |
|
| 82 | + $entry['path'] = $this->getJailedPath($entry['path']); |
|
| 83 | + } |
|
| 84 | + return $entry; |
|
| 85 | + } |
|
| 86 | 86 | |
| 87 | - protected function filterCacheEntry($entry) { |
|
| 88 | - $rootLength = strlen($this->root) + 1; |
|
| 89 | - return ($entry['path'] === $this->root) or (substr($entry['path'], 0, $rootLength) === $this->root . '/'); |
|
| 90 | - } |
|
| 87 | + protected function filterCacheEntry($entry) { |
|
| 88 | + $rootLength = strlen($this->root) + 1; |
|
| 89 | + return ($entry['path'] === $this->root) or (substr($entry['path'], 0, $rootLength) === $this->root . '/'); |
|
| 90 | + } |
|
| 91 | 91 | |
| 92 | - /** |
|
| 93 | - * get the stored metadata of a file or folder |
|
| 94 | - * |
|
| 95 | - * @param string /int $file |
|
| 96 | - * @return array|false |
|
| 97 | - */ |
|
| 98 | - public function get($file) { |
|
| 99 | - if (is_string($file) or $file == '') { |
|
| 100 | - $file = $this->getSourcePath($file); |
|
| 101 | - } |
|
| 102 | - return parent::get($file); |
|
| 103 | - } |
|
| 92 | + /** |
|
| 93 | + * get the stored metadata of a file or folder |
|
| 94 | + * |
|
| 95 | + * @param string /int $file |
|
| 96 | + * @return array|false |
|
| 97 | + */ |
|
| 98 | + public function get($file) { |
|
| 99 | + if (is_string($file) or $file == '') { |
|
| 100 | + $file = $this->getSourcePath($file); |
|
| 101 | + } |
|
| 102 | + return parent::get($file); |
|
| 103 | + } |
|
| 104 | 104 | |
| 105 | - /** |
|
| 106 | - * insert meta data for a new file or folder |
|
| 107 | - * |
|
| 108 | - * @param string $file |
|
| 109 | - * @param array $data |
|
| 110 | - * |
|
| 111 | - * @return int file id |
|
| 112 | - * @throws \RuntimeException |
|
| 113 | - */ |
|
| 114 | - public function insert($file, array $data) { |
|
| 115 | - return $this->getCache()->insert($this->getSourcePath($file), $data); |
|
| 116 | - } |
|
| 105 | + /** |
|
| 106 | + * insert meta data for a new file or folder |
|
| 107 | + * |
|
| 108 | + * @param string $file |
|
| 109 | + * @param array $data |
|
| 110 | + * |
|
| 111 | + * @return int file id |
|
| 112 | + * @throws \RuntimeException |
|
| 113 | + */ |
|
| 114 | + public function insert($file, array $data) { |
|
| 115 | + return $this->getCache()->insert($this->getSourcePath($file), $data); |
|
| 116 | + } |
|
| 117 | 117 | |
| 118 | - /** |
|
| 119 | - * update the metadata in the cache |
|
| 120 | - * |
|
| 121 | - * @param int $id |
|
| 122 | - * @param array $data |
|
| 123 | - */ |
|
| 124 | - public function update($id, array $data) { |
|
| 125 | - $this->getCache()->update($id, $data); |
|
| 126 | - } |
|
| 118 | + /** |
|
| 119 | + * update the metadata in the cache |
|
| 120 | + * |
|
| 121 | + * @param int $id |
|
| 122 | + * @param array $data |
|
| 123 | + */ |
|
| 124 | + public function update($id, array $data) { |
|
| 125 | + $this->getCache()->update($id, $data); |
|
| 126 | + } |
|
| 127 | 127 | |
| 128 | - /** |
|
| 129 | - * get the file id for a file |
|
| 130 | - * |
|
| 131 | - * @param string $file |
|
| 132 | - * @return int |
|
| 133 | - */ |
|
| 134 | - public function getId($file) { |
|
| 135 | - return $this->getCache()->getId($this->getSourcePath($file)); |
|
| 136 | - } |
|
| 128 | + /** |
|
| 129 | + * get the file id for a file |
|
| 130 | + * |
|
| 131 | + * @param string $file |
|
| 132 | + * @return int |
|
| 133 | + */ |
|
| 134 | + public function getId($file) { |
|
| 135 | + return $this->getCache()->getId($this->getSourcePath($file)); |
|
| 136 | + } |
|
| 137 | 137 | |
| 138 | - /** |
|
| 139 | - * get the id of the parent folder of a file |
|
| 140 | - * |
|
| 141 | - * @param string $file |
|
| 142 | - * @return int |
|
| 143 | - */ |
|
| 144 | - public function getParentId($file) { |
|
| 145 | - return $this->getCache()->getParentId($this->getSourcePath($file)); |
|
| 146 | - } |
|
| 138 | + /** |
|
| 139 | + * get the id of the parent folder of a file |
|
| 140 | + * |
|
| 141 | + * @param string $file |
|
| 142 | + * @return int |
|
| 143 | + */ |
|
| 144 | + public function getParentId($file) { |
|
| 145 | + return $this->getCache()->getParentId($this->getSourcePath($file)); |
|
| 146 | + } |
|
| 147 | 147 | |
| 148 | - /** |
|
| 149 | - * check if a file is available in the cache |
|
| 150 | - * |
|
| 151 | - * @param string $file |
|
| 152 | - * @return bool |
|
| 153 | - */ |
|
| 154 | - public function inCache($file) { |
|
| 155 | - return $this->getCache()->inCache($this->getSourcePath($file)); |
|
| 156 | - } |
|
| 148 | + /** |
|
| 149 | + * check if a file is available in the cache |
|
| 150 | + * |
|
| 151 | + * @param string $file |
|
| 152 | + * @return bool |
|
| 153 | + */ |
|
| 154 | + public function inCache($file) { |
|
| 155 | + return $this->getCache()->inCache($this->getSourcePath($file)); |
|
| 156 | + } |
|
| 157 | 157 | |
| 158 | - /** |
|
| 159 | - * remove a file or folder from the cache |
|
| 160 | - * |
|
| 161 | - * @param string $file |
|
| 162 | - */ |
|
| 163 | - public function remove($file) { |
|
| 164 | - $this->getCache()->remove($this->getSourcePath($file)); |
|
| 165 | - } |
|
| 158 | + /** |
|
| 159 | + * remove a file or folder from the cache |
|
| 160 | + * |
|
| 161 | + * @param string $file |
|
| 162 | + */ |
|
| 163 | + public function remove($file) { |
|
| 164 | + $this->getCache()->remove($this->getSourcePath($file)); |
|
| 165 | + } |
|
| 166 | 166 | |
| 167 | - /** |
|
| 168 | - * Move a file or folder in the cache |
|
| 169 | - * |
|
| 170 | - * @param string $source |
|
| 171 | - * @param string $target |
|
| 172 | - */ |
|
| 173 | - public function move($source, $target) { |
|
| 174 | - $this->getCache()->move($this->getSourcePath($source), $this->getSourcePath($target)); |
|
| 175 | - } |
|
| 167 | + /** |
|
| 168 | + * Move a file or folder in the cache |
|
| 169 | + * |
|
| 170 | + * @param string $source |
|
| 171 | + * @param string $target |
|
| 172 | + */ |
|
| 173 | + public function move($source, $target) { |
|
| 174 | + $this->getCache()->move($this->getSourcePath($source), $this->getSourcePath($target)); |
|
| 175 | + } |
|
| 176 | 176 | |
| 177 | - /** |
|
| 178 | - * remove all entries for files that are stored on the storage from the cache |
|
| 179 | - */ |
|
| 180 | - public function clear() { |
|
| 181 | - $this->getCache()->remove($this->root); |
|
| 182 | - } |
|
| 177 | + /** |
|
| 178 | + * remove all entries for files that are stored on the storage from the cache |
|
| 179 | + */ |
|
| 180 | + public function clear() { |
|
| 181 | + $this->getCache()->remove($this->root); |
|
| 182 | + } |
|
| 183 | 183 | |
| 184 | - /** |
|
| 185 | - * @param string $file |
|
| 186 | - * |
|
| 187 | - * @return int Cache::NOT_FOUND, Cache::PARTIAL, Cache::SHALLOW or Cache::COMPLETE |
|
| 188 | - */ |
|
| 189 | - public function getStatus($file) { |
|
| 190 | - return $this->getCache()->getStatus($this->getSourcePath($file)); |
|
| 191 | - } |
|
| 184 | + /** |
|
| 185 | + * @param string $file |
|
| 186 | + * |
|
| 187 | + * @return int Cache::NOT_FOUND, Cache::PARTIAL, Cache::SHALLOW or Cache::COMPLETE |
|
| 188 | + */ |
|
| 189 | + public function getStatus($file) { |
|
| 190 | + return $this->getCache()->getStatus($this->getSourcePath($file)); |
|
| 191 | + } |
|
| 192 | 192 | |
| 193 | - private function formatSearchResults($results) { |
|
| 194 | - $results = array_filter($results, array($this, 'filterCacheEntry')); |
|
| 195 | - $results = array_values($results); |
|
| 196 | - return array_map(array($this, 'formatCacheEntry'), $results); |
|
| 197 | - } |
|
| 193 | + private function formatSearchResults($results) { |
|
| 194 | + $results = array_filter($results, array($this, 'filterCacheEntry')); |
|
| 195 | + $results = array_values($results); |
|
| 196 | + return array_map(array($this, 'formatCacheEntry'), $results); |
|
| 197 | + } |
|
| 198 | 198 | |
| 199 | - /** |
|
| 200 | - * search for files matching $pattern |
|
| 201 | - * |
|
| 202 | - * @param string $pattern |
|
| 203 | - * @return array an array of file data |
|
| 204 | - */ |
|
| 205 | - public function search($pattern) { |
|
| 206 | - $results = $this->getCache()->search($pattern); |
|
| 207 | - return $this->formatSearchResults($results); |
|
| 208 | - } |
|
| 199 | + /** |
|
| 200 | + * search for files matching $pattern |
|
| 201 | + * |
|
| 202 | + * @param string $pattern |
|
| 203 | + * @return array an array of file data |
|
| 204 | + */ |
|
| 205 | + public function search($pattern) { |
|
| 206 | + $results = $this->getCache()->search($pattern); |
|
| 207 | + return $this->formatSearchResults($results); |
|
| 208 | + } |
|
| 209 | 209 | |
| 210 | - /** |
|
| 211 | - * search for files by mimetype |
|
| 212 | - * |
|
| 213 | - * @param string $mimetype |
|
| 214 | - * @return array |
|
| 215 | - */ |
|
| 216 | - public function searchByMime($mimetype) { |
|
| 217 | - $results = $this->getCache()->searchByMime($mimetype); |
|
| 218 | - return $this->formatSearchResults($results); |
|
| 219 | - } |
|
| 210 | + /** |
|
| 211 | + * search for files by mimetype |
|
| 212 | + * |
|
| 213 | + * @param string $mimetype |
|
| 214 | + * @return array |
|
| 215 | + */ |
|
| 216 | + public function searchByMime($mimetype) { |
|
| 217 | + $results = $this->getCache()->searchByMime($mimetype); |
|
| 218 | + return $this->formatSearchResults($results); |
|
| 219 | + } |
|
| 220 | 220 | |
| 221 | - /** |
|
| 222 | - * search for files by mimetype |
|
| 223 | - * |
|
| 224 | - * @param string|int $tag name or tag id |
|
| 225 | - * @param string $userId owner of the tags |
|
| 226 | - * @return array |
|
| 227 | - */ |
|
| 228 | - public function searchByTag($tag, $userId) { |
|
| 229 | - $results = $this->getCache()->searchByTag($tag, $userId); |
|
| 230 | - return $this->formatSearchResults($results); |
|
| 231 | - } |
|
| 221 | + /** |
|
| 222 | + * search for files by mimetype |
|
| 223 | + * |
|
| 224 | + * @param string|int $tag name or tag id |
|
| 225 | + * @param string $userId owner of the tags |
|
| 226 | + * @return array |
|
| 227 | + */ |
|
| 228 | + public function searchByTag($tag, $userId) { |
|
| 229 | + $results = $this->getCache()->searchByTag($tag, $userId); |
|
| 230 | + return $this->formatSearchResults($results); |
|
| 231 | + } |
|
| 232 | 232 | |
| 233 | - /** |
|
| 234 | - * update the folder size and the size of all parent folders |
|
| 235 | - * |
|
| 236 | - * @param string|boolean $path |
|
| 237 | - * @param array $data (optional) meta data of the folder |
|
| 238 | - */ |
|
| 239 | - public function correctFolderSize($path, $data = null) { |
|
| 240 | - if ($this->getCache() instanceof Cache) { |
|
| 241 | - $this->getCache()->correctFolderSize($this->getSourcePath($path), $data); |
|
| 242 | - } |
|
| 243 | - } |
|
| 233 | + /** |
|
| 234 | + * update the folder size and the size of all parent folders |
|
| 235 | + * |
|
| 236 | + * @param string|boolean $path |
|
| 237 | + * @param array $data (optional) meta data of the folder |
|
| 238 | + */ |
|
| 239 | + public function correctFolderSize($path, $data = null) { |
|
| 240 | + if ($this->getCache() instanceof Cache) { |
|
| 241 | + $this->getCache()->correctFolderSize($this->getSourcePath($path), $data); |
|
| 242 | + } |
|
| 243 | + } |
|
| 244 | 244 | |
| 245 | - /** |
|
| 246 | - * get the size of a folder and set it in the cache |
|
| 247 | - * |
|
| 248 | - * @param string $path |
|
| 249 | - * @param array $entry (optional) meta data of the folder |
|
| 250 | - * @return int |
|
| 251 | - */ |
|
| 252 | - public function calculateFolderSize($path, $entry = null) { |
|
| 253 | - if ($this->getCache() instanceof Cache) { |
|
| 254 | - return $this->getCache()->calculateFolderSize($this->getSourcePath($path), $entry); |
|
| 255 | - } else { |
|
| 256 | - return 0; |
|
| 257 | - } |
|
| 245 | + /** |
|
| 246 | + * get the size of a folder and set it in the cache |
|
| 247 | + * |
|
| 248 | + * @param string $path |
|
| 249 | + * @param array $entry (optional) meta data of the folder |
|
| 250 | + * @return int |
|
| 251 | + */ |
|
| 252 | + public function calculateFolderSize($path, $entry = null) { |
|
| 253 | + if ($this->getCache() instanceof Cache) { |
|
| 254 | + return $this->getCache()->calculateFolderSize($this->getSourcePath($path), $entry); |
|
| 255 | + } else { |
|
| 256 | + return 0; |
|
| 257 | + } |
|
| 258 | 258 | |
| 259 | - } |
|
| 259 | + } |
|
| 260 | 260 | |
| 261 | - /** |
|
| 262 | - * get all file ids on the files on the storage |
|
| 263 | - * |
|
| 264 | - * @return int[] |
|
| 265 | - */ |
|
| 266 | - public function getAll() { |
|
| 267 | - // not supported |
|
| 268 | - return array(); |
|
| 269 | - } |
|
| 261 | + /** |
|
| 262 | + * get all file ids on the files on the storage |
|
| 263 | + * |
|
| 264 | + * @return int[] |
|
| 265 | + */ |
|
| 266 | + public function getAll() { |
|
| 267 | + // not supported |
|
| 268 | + return array(); |
|
| 269 | + } |
|
| 270 | 270 | |
| 271 | - /** |
|
| 272 | - * find a folder in the cache which has not been fully scanned |
|
| 273 | - * |
|
| 274 | - * If multiply incomplete folders are in the cache, the one with the highest id will be returned, |
|
| 275 | - * use the one with the highest id gives the best result with the background scanner, since that is most |
|
| 276 | - * likely the folder where we stopped scanning previously |
|
| 277 | - * |
|
| 278 | - * @return string|bool the path of the folder or false when no folder matched |
|
| 279 | - */ |
|
| 280 | - public function getIncomplete() { |
|
| 281 | - // not supported |
|
| 282 | - return false; |
|
| 283 | - } |
|
| 271 | + /** |
|
| 272 | + * find a folder in the cache which has not been fully scanned |
|
| 273 | + * |
|
| 274 | + * If multiply incomplete folders are in the cache, the one with the highest id will be returned, |
|
| 275 | + * use the one with the highest id gives the best result with the background scanner, since that is most |
|
| 276 | + * likely the folder where we stopped scanning previously |
|
| 277 | + * |
|
| 278 | + * @return string|bool the path of the folder or false when no folder matched |
|
| 279 | + */ |
|
| 280 | + public function getIncomplete() { |
|
| 281 | + // not supported |
|
| 282 | + return false; |
|
| 283 | + } |
|
| 284 | 284 | |
| 285 | - /** |
|
| 286 | - * get the path of a file on this storage by it's id |
|
| 287 | - * |
|
| 288 | - * @param int $id |
|
| 289 | - * @return string|null |
|
| 290 | - */ |
|
| 291 | - public function getPathById($id) { |
|
| 292 | - $path = $this->getCache()->getPathById($id); |
|
| 293 | - return $this->getJailedPath($path); |
|
| 294 | - } |
|
| 285 | + /** |
|
| 286 | + * get the path of a file on this storage by it's id |
|
| 287 | + * |
|
| 288 | + * @param int $id |
|
| 289 | + * @return string|null |
|
| 290 | + */ |
|
| 291 | + public function getPathById($id) { |
|
| 292 | + $path = $this->getCache()->getPathById($id); |
|
| 293 | + return $this->getJailedPath($path); |
|
| 294 | + } |
|
| 295 | 295 | |
| 296 | - /** |
|
| 297 | - * Move a file or folder in the cache |
|
| 298 | - * |
|
| 299 | - * Note that this should make sure the entries are removed from the source cache |
|
| 300 | - * |
|
| 301 | - * @param \OCP\Files\Cache\ICache $sourceCache |
|
| 302 | - * @param string $sourcePath |
|
| 303 | - * @param string $targetPath |
|
| 304 | - */ |
|
| 305 | - public function moveFromCache(\OCP\Files\Cache\ICache $sourceCache, $sourcePath, $targetPath) { |
|
| 306 | - if ($sourceCache === $this) { |
|
| 307 | - return $this->move($sourcePath, $targetPath); |
|
| 308 | - } |
|
| 309 | - return $this->getCache()->moveFromCache($sourceCache, $sourcePath, $this->getSourcePath($targetPath)); |
|
| 310 | - } |
|
| 296 | + /** |
|
| 297 | + * Move a file or folder in the cache |
|
| 298 | + * |
|
| 299 | + * Note that this should make sure the entries are removed from the source cache |
|
| 300 | + * |
|
| 301 | + * @param \OCP\Files\Cache\ICache $sourceCache |
|
| 302 | + * @param string $sourcePath |
|
| 303 | + * @param string $targetPath |
|
| 304 | + */ |
|
| 305 | + public function moveFromCache(\OCP\Files\Cache\ICache $sourceCache, $sourcePath, $targetPath) { |
|
| 306 | + if ($sourceCache === $this) { |
|
| 307 | + return $this->move($sourcePath, $targetPath); |
|
| 308 | + } |
|
| 309 | + return $this->getCache()->moveFromCache($sourceCache, $sourcePath, $this->getSourcePath($targetPath)); |
|
| 310 | + } |
|
| 311 | 311 | } |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | if ($path === '') { |
| 52 | 52 | return $this->root; |
| 53 | 53 | } else { |
| 54 | - return $this->root . '/' . ltrim($path, '/'); |
|
| 54 | + return $this->root.'/'.ltrim($path, '/'); |
|
| 55 | 55 | } |
| 56 | 56 | } |
| 57 | 57 | |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | $rootLength = strlen($this->root) + 1; |
| 67 | 67 | if ($path === $this->root) { |
| 68 | 68 | return ''; |
| 69 | - } else if (substr($path, 0, $rootLength) === $this->root . '/') { |
|
| 69 | + } else if (substr($path, 0, $rootLength) === $this->root.'/') { |
|
| 70 | 70 | return substr($path, $rootLength); |
| 71 | 71 | } else { |
| 72 | 72 | return null; |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | protected function filterCacheEntry($entry) { |
| 88 | 88 | $rootLength = strlen($this->root) + 1; |
| 89 | - return ($entry['path'] === $this->root) or (substr($entry['path'], 0, $rootLength) === $this->root . '/'); |
|
| 89 | + return ($entry['path'] === $this->root) or (substr($entry['path'], 0, $rootLength) === $this->root.'/'); |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | /** |
@@ -32,7 +32,6 @@ |
||
| 32 | 32 | |
| 33 | 33 | use OCP\Files\Cache\ICacheEntry; |
| 34 | 34 | use OCP\Files\Mount\IMountPoint; |
| 35 | -use OCP\Files\Storage\IStorage; |
|
| 36 | 35 | use OCP\Files\IHomeStorage; |
| 37 | 36 | use OCP\IUser; |
| 38 | 37 | |
@@ -37,354 +37,354 @@ |
||
| 37 | 37 | use OCP\IUser; |
| 38 | 38 | |
| 39 | 39 | class FileInfo implements \OCP\Files\FileInfo, \ArrayAccess { |
| 40 | - /** |
|
| 41 | - * @var array $data |
|
| 42 | - */ |
|
| 43 | - private $data; |
|
| 44 | - |
|
| 45 | - /** |
|
| 46 | - * @var string $path |
|
| 47 | - */ |
|
| 48 | - private $path; |
|
| 49 | - |
|
| 50 | - /** |
|
| 51 | - * @var \OC\Files\Storage\Storage $storage |
|
| 52 | - */ |
|
| 53 | - private $storage; |
|
| 54 | - |
|
| 55 | - /** |
|
| 56 | - * @var string $internalPath |
|
| 57 | - */ |
|
| 58 | - private $internalPath; |
|
| 59 | - |
|
| 60 | - /** |
|
| 61 | - * @var \OCP\Files\Mount\IMountPoint |
|
| 62 | - */ |
|
| 63 | - private $mount; |
|
| 64 | - |
|
| 65 | - /** |
|
| 66 | - * @var IUser |
|
| 67 | - */ |
|
| 68 | - private $owner; |
|
| 69 | - |
|
| 70 | - /** |
|
| 71 | - * @var string[] |
|
| 72 | - */ |
|
| 73 | - private $childEtags = []; |
|
| 74 | - |
|
| 75 | - /** |
|
| 76 | - * @var IMountPoint[] |
|
| 77 | - */ |
|
| 78 | - private $subMounts = []; |
|
| 79 | - |
|
| 80 | - private $subMountsUsed = false; |
|
| 81 | - |
|
| 82 | - /** |
|
| 83 | - * @param string|boolean $path |
|
| 84 | - * @param Storage\Storage $storage |
|
| 85 | - * @param string $internalPath |
|
| 86 | - * @param array|ICacheEntry $data |
|
| 87 | - * @param \OCP\Files\Mount\IMountPoint $mount |
|
| 88 | - * @param \OCP\IUser|null $owner |
|
| 89 | - */ |
|
| 90 | - public function __construct($path, $storage, $internalPath, $data, $mount, $owner= null) { |
|
| 91 | - $this->path = $path; |
|
| 92 | - $this->storage = $storage; |
|
| 93 | - $this->internalPath = $internalPath; |
|
| 94 | - $this->data = $data; |
|
| 95 | - $this->mount = $mount; |
|
| 96 | - $this->owner = $owner; |
|
| 97 | - } |
|
| 98 | - |
|
| 99 | - public function offsetSet($offset, $value) { |
|
| 100 | - $this->data[$offset] = $value; |
|
| 101 | - } |
|
| 102 | - |
|
| 103 | - public function offsetExists($offset) { |
|
| 104 | - return isset($this->data[$offset]); |
|
| 105 | - } |
|
| 106 | - |
|
| 107 | - public function offsetUnset($offset) { |
|
| 108 | - unset($this->data[$offset]); |
|
| 109 | - } |
|
| 110 | - |
|
| 111 | - public function offsetGet($offset) { |
|
| 112 | - if ($offset === 'type') { |
|
| 113 | - return $this->getType(); |
|
| 114 | - } else if ($offset === 'etag') { |
|
| 115 | - return $this->getEtag(); |
|
| 116 | - } else if ($offset === 'size') { |
|
| 117 | - return $this->getSize(); |
|
| 118 | - } else if ($offset === 'mtime') { |
|
| 119 | - return $this->getMTime(); |
|
| 120 | - } elseif ($offset === 'permissions') { |
|
| 121 | - return $this->getPermissions(); |
|
| 122 | - } elseif (isset($this->data[$offset])) { |
|
| 123 | - return $this->data[$offset]; |
|
| 124 | - } else { |
|
| 125 | - return null; |
|
| 126 | - } |
|
| 127 | - } |
|
| 128 | - |
|
| 129 | - /** |
|
| 130 | - * @return string |
|
| 131 | - */ |
|
| 132 | - public function getPath() { |
|
| 133 | - return $this->path; |
|
| 134 | - } |
|
| 135 | - |
|
| 136 | - /** |
|
| 137 | - * @return \OCP\Files\Storage |
|
| 138 | - */ |
|
| 139 | - public function getStorage() { |
|
| 140 | - return $this->storage; |
|
| 141 | - } |
|
| 142 | - |
|
| 143 | - /** |
|
| 144 | - * @return string |
|
| 145 | - */ |
|
| 146 | - public function getInternalPath() { |
|
| 147 | - return $this->internalPath; |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - /** |
|
| 151 | - * @return int |
|
| 152 | - */ |
|
| 153 | - public function getId() { |
|
| 154 | - return $this->data['fileid']; |
|
| 155 | - } |
|
| 156 | - |
|
| 157 | - /** |
|
| 158 | - * @return string |
|
| 159 | - */ |
|
| 160 | - public function getMimetype() { |
|
| 161 | - return $this->data['mimetype']; |
|
| 162 | - } |
|
| 163 | - |
|
| 164 | - /** |
|
| 165 | - * @return string |
|
| 166 | - */ |
|
| 167 | - public function getMimePart() { |
|
| 168 | - return $this->data['mimepart']; |
|
| 169 | - } |
|
| 170 | - |
|
| 171 | - /** |
|
| 172 | - * @return string |
|
| 173 | - */ |
|
| 174 | - public function getName() { |
|
| 175 | - return basename($this->getPath()); |
|
| 176 | - } |
|
| 177 | - |
|
| 178 | - /** |
|
| 179 | - * @return string |
|
| 180 | - */ |
|
| 181 | - public function getEtag() { |
|
| 182 | - $this->updateEntryfromSubMounts(); |
|
| 183 | - if (count($this->childEtags) > 0) { |
|
| 184 | - $combinedEtag = $this->data['etag'] . '::' . implode('::', $this->childEtags); |
|
| 185 | - return md5($combinedEtag); |
|
| 186 | - } else { |
|
| 187 | - return $this->data['etag']; |
|
| 188 | - } |
|
| 189 | - } |
|
| 190 | - |
|
| 191 | - /** |
|
| 192 | - * @return int |
|
| 193 | - */ |
|
| 194 | - public function getSize() { |
|
| 195 | - $this->updateEntryfromSubMounts(); |
|
| 196 | - return isset($this->data['size']) ? $this->data['size'] : 0; |
|
| 197 | - } |
|
| 198 | - |
|
| 199 | - /** |
|
| 200 | - * @return int |
|
| 201 | - */ |
|
| 202 | - public function getMTime() { |
|
| 203 | - $this->updateEntryfromSubMounts(); |
|
| 204 | - return $this->data['mtime']; |
|
| 205 | - } |
|
| 206 | - |
|
| 207 | - /** |
|
| 208 | - * @return bool |
|
| 209 | - */ |
|
| 210 | - public function isEncrypted() { |
|
| 211 | - return $this->data['encrypted']; |
|
| 212 | - } |
|
| 213 | - |
|
| 214 | - /** |
|
| 215 | - * Return the currently version used for the HMAC in the encryption app |
|
| 216 | - * |
|
| 217 | - * @return int |
|
| 218 | - */ |
|
| 219 | - public function getEncryptedVersion() { |
|
| 220 | - return isset($this->data['encryptedVersion']) ? (int) $this->data['encryptedVersion'] : 1; |
|
| 221 | - } |
|
| 222 | - |
|
| 223 | - /** |
|
| 224 | - * @return int |
|
| 225 | - */ |
|
| 226 | - public function getPermissions() { |
|
| 227 | - $perms = $this->data['permissions']; |
|
| 228 | - if (\OCP\Util::isSharingDisabledForUser() || ($this->isShared() && !\OC\Share\Share::isResharingAllowed())) { |
|
| 229 | - $perms = $perms & ~\OCP\Constants::PERMISSION_SHARE; |
|
| 230 | - } |
|
| 231 | - return $perms; |
|
| 232 | - } |
|
| 233 | - |
|
| 234 | - /** |
|
| 235 | - * @return \OCP\Files\FileInfo::TYPE_FILE|\OCP\Files\FileInfo::TYPE_FOLDER |
|
| 236 | - */ |
|
| 237 | - public function getType() { |
|
| 238 | - if (!isset($this->data['type'])) { |
|
| 239 | - $this->data['type'] = ($this->getMimetype() === 'httpd/unix-directory') ? self::TYPE_FOLDER : self::TYPE_FILE; |
|
| 240 | - } |
|
| 241 | - return $this->data['type']; |
|
| 242 | - } |
|
| 243 | - |
|
| 244 | - public function getData() { |
|
| 245 | - return $this->data; |
|
| 246 | - } |
|
| 247 | - |
|
| 248 | - /** |
|
| 249 | - * @param int $permissions |
|
| 250 | - * @return bool |
|
| 251 | - */ |
|
| 252 | - protected function checkPermissions($permissions) { |
|
| 253 | - return ($this->getPermissions() & $permissions) === $permissions; |
|
| 254 | - } |
|
| 255 | - |
|
| 256 | - /** |
|
| 257 | - * @return bool |
|
| 258 | - */ |
|
| 259 | - public function isReadable() { |
|
| 260 | - return $this->checkPermissions(\OCP\Constants::PERMISSION_READ); |
|
| 261 | - } |
|
| 262 | - |
|
| 263 | - /** |
|
| 264 | - * @return bool |
|
| 265 | - */ |
|
| 266 | - public function isUpdateable() { |
|
| 267 | - return $this->checkPermissions(\OCP\Constants::PERMISSION_UPDATE); |
|
| 268 | - } |
|
| 269 | - |
|
| 270 | - /** |
|
| 271 | - * Check whether new files or folders can be created inside this folder |
|
| 272 | - * |
|
| 273 | - * @return bool |
|
| 274 | - */ |
|
| 275 | - public function isCreatable() { |
|
| 276 | - return $this->checkPermissions(\OCP\Constants::PERMISSION_CREATE); |
|
| 277 | - } |
|
| 278 | - |
|
| 279 | - /** |
|
| 280 | - * @return bool |
|
| 281 | - */ |
|
| 282 | - public function isDeletable() { |
|
| 283 | - return $this->checkPermissions(\OCP\Constants::PERMISSION_DELETE); |
|
| 284 | - } |
|
| 285 | - |
|
| 286 | - /** |
|
| 287 | - * @return bool |
|
| 288 | - */ |
|
| 289 | - public function isShareable() { |
|
| 290 | - return $this->checkPermissions(\OCP\Constants::PERMISSION_SHARE); |
|
| 291 | - } |
|
| 292 | - |
|
| 293 | - /** |
|
| 294 | - * Check if a file or folder is shared |
|
| 295 | - * |
|
| 296 | - * @return bool |
|
| 297 | - */ |
|
| 298 | - public function isShared() { |
|
| 299 | - $sid = $this->getStorage()->getId(); |
|
| 300 | - if (!is_null($sid)) { |
|
| 301 | - $sid = explode(':', $sid); |
|
| 302 | - return ($sid[0] === 'shared'); |
|
| 303 | - } |
|
| 304 | - |
|
| 305 | - return false; |
|
| 306 | - } |
|
| 307 | - |
|
| 308 | - public function isMounted() { |
|
| 309 | - $storage = $this->getStorage(); |
|
| 310 | - if ($storage->instanceOfStorage('\OCP\Files\IHomeStorage')) { |
|
| 311 | - return false; |
|
| 312 | - } |
|
| 313 | - $sid = $storage->getId(); |
|
| 314 | - if (!is_null($sid)) { |
|
| 315 | - $sid = explode(':', $sid); |
|
| 316 | - return ($sid[0] !== 'home' and $sid[0] !== 'shared'); |
|
| 317 | - } |
|
| 318 | - |
|
| 319 | - return false; |
|
| 320 | - } |
|
| 321 | - |
|
| 322 | - /** |
|
| 323 | - * Get the mountpoint the file belongs to |
|
| 324 | - * |
|
| 325 | - * @return \OCP\Files\Mount\IMountPoint |
|
| 326 | - */ |
|
| 327 | - public function getMountPoint() { |
|
| 328 | - return $this->mount; |
|
| 329 | - } |
|
| 330 | - |
|
| 331 | - /** |
|
| 332 | - * Get the owner of the file |
|
| 333 | - * |
|
| 334 | - * @return \OCP\IUser |
|
| 335 | - */ |
|
| 336 | - public function getOwner() { |
|
| 337 | - return $this->owner; |
|
| 338 | - } |
|
| 339 | - |
|
| 340 | - /** |
|
| 341 | - * @param IMountPoint[] $mounts |
|
| 342 | - */ |
|
| 343 | - public function setSubMounts(array $mounts) { |
|
| 344 | - $this->subMounts = $mounts; |
|
| 345 | - } |
|
| 346 | - |
|
| 347 | - private function updateEntryfromSubMounts() { |
|
| 348 | - if ($this->subMountsUsed) { |
|
| 349 | - return; |
|
| 350 | - } |
|
| 351 | - $this->subMountsUsed = true; |
|
| 352 | - foreach ($this->subMounts as $mount) { |
|
| 353 | - $subStorage = $mount->getStorage(); |
|
| 354 | - if ($subStorage) { |
|
| 355 | - $subCache = $subStorage->getCache(''); |
|
| 356 | - $rootEntry = $subCache->get(''); |
|
| 357 | - $this->addSubEntry($rootEntry, $mount->getMountPoint()); |
|
| 358 | - } |
|
| 359 | - } |
|
| 360 | - } |
|
| 361 | - |
|
| 362 | - /** |
|
| 363 | - * Add a cache entry which is the child of this folder |
|
| 364 | - * |
|
| 365 | - * Sets the size, etag and size to for cross-storage childs |
|
| 366 | - * |
|
| 367 | - * @param array|ICacheEntry $data cache entry for the child |
|
| 368 | - * @param string $entryPath full path of the child entry |
|
| 369 | - */ |
|
| 370 | - public function addSubEntry($data, $entryPath) { |
|
| 371 | - $this->data['size'] += isset($data['size']) ? $data['size'] : 0; |
|
| 372 | - if (isset($data['mtime'])) { |
|
| 373 | - $this->data['mtime'] = max($this->data['mtime'], $data['mtime']); |
|
| 374 | - } |
|
| 375 | - if (isset($data['etag'])) { |
|
| 376 | - // prefix the etag with the relative path of the subentry to propagate etag on mount moves |
|
| 377 | - $relativeEntryPath = substr($entryPath, strlen($this->getPath())); |
|
| 378 | - // attach the permissions to propagate etag on permision changes of submounts |
|
| 379 | - $permissions = isset($data['permissions']) ? $data['permissions'] : 0; |
|
| 380 | - $this->childEtags[] = $relativeEntryPath . '/' . $data['etag'] . $permissions; |
|
| 381 | - } |
|
| 382 | - } |
|
| 383 | - |
|
| 384 | - /** |
|
| 385 | - * @inheritdoc |
|
| 386 | - */ |
|
| 387 | - public function getChecksum() { |
|
| 388 | - return $this->data['checksum']; |
|
| 389 | - } |
|
| 40 | + /** |
|
| 41 | + * @var array $data |
|
| 42 | + */ |
|
| 43 | + private $data; |
|
| 44 | + |
|
| 45 | + /** |
|
| 46 | + * @var string $path |
|
| 47 | + */ |
|
| 48 | + private $path; |
|
| 49 | + |
|
| 50 | + /** |
|
| 51 | + * @var \OC\Files\Storage\Storage $storage |
|
| 52 | + */ |
|
| 53 | + private $storage; |
|
| 54 | + |
|
| 55 | + /** |
|
| 56 | + * @var string $internalPath |
|
| 57 | + */ |
|
| 58 | + private $internalPath; |
|
| 59 | + |
|
| 60 | + /** |
|
| 61 | + * @var \OCP\Files\Mount\IMountPoint |
|
| 62 | + */ |
|
| 63 | + private $mount; |
|
| 64 | + |
|
| 65 | + /** |
|
| 66 | + * @var IUser |
|
| 67 | + */ |
|
| 68 | + private $owner; |
|
| 69 | + |
|
| 70 | + /** |
|
| 71 | + * @var string[] |
|
| 72 | + */ |
|
| 73 | + private $childEtags = []; |
|
| 74 | + |
|
| 75 | + /** |
|
| 76 | + * @var IMountPoint[] |
|
| 77 | + */ |
|
| 78 | + private $subMounts = []; |
|
| 79 | + |
|
| 80 | + private $subMountsUsed = false; |
|
| 81 | + |
|
| 82 | + /** |
|
| 83 | + * @param string|boolean $path |
|
| 84 | + * @param Storage\Storage $storage |
|
| 85 | + * @param string $internalPath |
|
| 86 | + * @param array|ICacheEntry $data |
|
| 87 | + * @param \OCP\Files\Mount\IMountPoint $mount |
|
| 88 | + * @param \OCP\IUser|null $owner |
|
| 89 | + */ |
|
| 90 | + public function __construct($path, $storage, $internalPath, $data, $mount, $owner= null) { |
|
| 91 | + $this->path = $path; |
|
| 92 | + $this->storage = $storage; |
|
| 93 | + $this->internalPath = $internalPath; |
|
| 94 | + $this->data = $data; |
|
| 95 | + $this->mount = $mount; |
|
| 96 | + $this->owner = $owner; |
|
| 97 | + } |
|
| 98 | + |
|
| 99 | + public function offsetSet($offset, $value) { |
|
| 100 | + $this->data[$offset] = $value; |
|
| 101 | + } |
|
| 102 | + |
|
| 103 | + public function offsetExists($offset) { |
|
| 104 | + return isset($this->data[$offset]); |
|
| 105 | + } |
|
| 106 | + |
|
| 107 | + public function offsetUnset($offset) { |
|
| 108 | + unset($this->data[$offset]); |
|
| 109 | + } |
|
| 110 | + |
|
| 111 | + public function offsetGet($offset) { |
|
| 112 | + if ($offset === 'type') { |
|
| 113 | + return $this->getType(); |
|
| 114 | + } else if ($offset === 'etag') { |
|
| 115 | + return $this->getEtag(); |
|
| 116 | + } else if ($offset === 'size') { |
|
| 117 | + return $this->getSize(); |
|
| 118 | + } else if ($offset === 'mtime') { |
|
| 119 | + return $this->getMTime(); |
|
| 120 | + } elseif ($offset === 'permissions') { |
|
| 121 | + return $this->getPermissions(); |
|
| 122 | + } elseif (isset($this->data[$offset])) { |
|
| 123 | + return $this->data[$offset]; |
|
| 124 | + } else { |
|
| 125 | + return null; |
|
| 126 | + } |
|
| 127 | + } |
|
| 128 | + |
|
| 129 | + /** |
|
| 130 | + * @return string |
|
| 131 | + */ |
|
| 132 | + public function getPath() { |
|
| 133 | + return $this->path; |
|
| 134 | + } |
|
| 135 | + |
|
| 136 | + /** |
|
| 137 | + * @return \OCP\Files\Storage |
|
| 138 | + */ |
|
| 139 | + public function getStorage() { |
|
| 140 | + return $this->storage; |
|
| 141 | + } |
|
| 142 | + |
|
| 143 | + /** |
|
| 144 | + * @return string |
|
| 145 | + */ |
|
| 146 | + public function getInternalPath() { |
|
| 147 | + return $this->internalPath; |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + /** |
|
| 151 | + * @return int |
|
| 152 | + */ |
|
| 153 | + public function getId() { |
|
| 154 | + return $this->data['fileid']; |
|
| 155 | + } |
|
| 156 | + |
|
| 157 | + /** |
|
| 158 | + * @return string |
|
| 159 | + */ |
|
| 160 | + public function getMimetype() { |
|
| 161 | + return $this->data['mimetype']; |
|
| 162 | + } |
|
| 163 | + |
|
| 164 | + /** |
|
| 165 | + * @return string |
|
| 166 | + */ |
|
| 167 | + public function getMimePart() { |
|
| 168 | + return $this->data['mimepart']; |
|
| 169 | + } |
|
| 170 | + |
|
| 171 | + /** |
|
| 172 | + * @return string |
|
| 173 | + */ |
|
| 174 | + public function getName() { |
|
| 175 | + return basename($this->getPath()); |
|
| 176 | + } |
|
| 177 | + |
|
| 178 | + /** |
|
| 179 | + * @return string |
|
| 180 | + */ |
|
| 181 | + public function getEtag() { |
|
| 182 | + $this->updateEntryfromSubMounts(); |
|
| 183 | + if (count($this->childEtags) > 0) { |
|
| 184 | + $combinedEtag = $this->data['etag'] . '::' . implode('::', $this->childEtags); |
|
| 185 | + return md5($combinedEtag); |
|
| 186 | + } else { |
|
| 187 | + return $this->data['etag']; |
|
| 188 | + } |
|
| 189 | + } |
|
| 190 | + |
|
| 191 | + /** |
|
| 192 | + * @return int |
|
| 193 | + */ |
|
| 194 | + public function getSize() { |
|
| 195 | + $this->updateEntryfromSubMounts(); |
|
| 196 | + return isset($this->data['size']) ? $this->data['size'] : 0; |
|
| 197 | + } |
|
| 198 | + |
|
| 199 | + /** |
|
| 200 | + * @return int |
|
| 201 | + */ |
|
| 202 | + public function getMTime() { |
|
| 203 | + $this->updateEntryfromSubMounts(); |
|
| 204 | + return $this->data['mtime']; |
|
| 205 | + } |
|
| 206 | + |
|
| 207 | + /** |
|
| 208 | + * @return bool |
|
| 209 | + */ |
|
| 210 | + public function isEncrypted() { |
|
| 211 | + return $this->data['encrypted']; |
|
| 212 | + } |
|
| 213 | + |
|
| 214 | + /** |
|
| 215 | + * Return the currently version used for the HMAC in the encryption app |
|
| 216 | + * |
|
| 217 | + * @return int |
|
| 218 | + */ |
|
| 219 | + public function getEncryptedVersion() { |
|
| 220 | + return isset($this->data['encryptedVersion']) ? (int) $this->data['encryptedVersion'] : 1; |
|
| 221 | + } |
|
| 222 | + |
|
| 223 | + /** |
|
| 224 | + * @return int |
|
| 225 | + */ |
|
| 226 | + public function getPermissions() { |
|
| 227 | + $perms = $this->data['permissions']; |
|
| 228 | + if (\OCP\Util::isSharingDisabledForUser() || ($this->isShared() && !\OC\Share\Share::isResharingAllowed())) { |
|
| 229 | + $perms = $perms & ~\OCP\Constants::PERMISSION_SHARE; |
|
| 230 | + } |
|
| 231 | + return $perms; |
|
| 232 | + } |
|
| 233 | + |
|
| 234 | + /** |
|
| 235 | + * @return \OCP\Files\FileInfo::TYPE_FILE|\OCP\Files\FileInfo::TYPE_FOLDER |
|
| 236 | + */ |
|
| 237 | + public function getType() { |
|
| 238 | + if (!isset($this->data['type'])) { |
|
| 239 | + $this->data['type'] = ($this->getMimetype() === 'httpd/unix-directory') ? self::TYPE_FOLDER : self::TYPE_FILE; |
|
| 240 | + } |
|
| 241 | + return $this->data['type']; |
|
| 242 | + } |
|
| 243 | + |
|
| 244 | + public function getData() { |
|
| 245 | + return $this->data; |
|
| 246 | + } |
|
| 247 | + |
|
| 248 | + /** |
|
| 249 | + * @param int $permissions |
|
| 250 | + * @return bool |
|
| 251 | + */ |
|
| 252 | + protected function checkPermissions($permissions) { |
|
| 253 | + return ($this->getPermissions() & $permissions) === $permissions; |
|
| 254 | + } |
|
| 255 | + |
|
| 256 | + /** |
|
| 257 | + * @return bool |
|
| 258 | + */ |
|
| 259 | + public function isReadable() { |
|
| 260 | + return $this->checkPermissions(\OCP\Constants::PERMISSION_READ); |
|
| 261 | + } |
|
| 262 | + |
|
| 263 | + /** |
|
| 264 | + * @return bool |
|
| 265 | + */ |
|
| 266 | + public function isUpdateable() { |
|
| 267 | + return $this->checkPermissions(\OCP\Constants::PERMISSION_UPDATE); |
|
| 268 | + } |
|
| 269 | + |
|
| 270 | + /** |
|
| 271 | + * Check whether new files or folders can be created inside this folder |
|
| 272 | + * |
|
| 273 | + * @return bool |
|
| 274 | + */ |
|
| 275 | + public function isCreatable() { |
|
| 276 | + return $this->checkPermissions(\OCP\Constants::PERMISSION_CREATE); |
|
| 277 | + } |
|
| 278 | + |
|
| 279 | + /** |
|
| 280 | + * @return bool |
|
| 281 | + */ |
|
| 282 | + public function isDeletable() { |
|
| 283 | + return $this->checkPermissions(\OCP\Constants::PERMISSION_DELETE); |
|
| 284 | + } |
|
| 285 | + |
|
| 286 | + /** |
|
| 287 | + * @return bool |
|
| 288 | + */ |
|
| 289 | + public function isShareable() { |
|
| 290 | + return $this->checkPermissions(\OCP\Constants::PERMISSION_SHARE); |
|
| 291 | + } |
|
| 292 | + |
|
| 293 | + /** |
|
| 294 | + * Check if a file or folder is shared |
|
| 295 | + * |
|
| 296 | + * @return bool |
|
| 297 | + */ |
|
| 298 | + public function isShared() { |
|
| 299 | + $sid = $this->getStorage()->getId(); |
|
| 300 | + if (!is_null($sid)) { |
|
| 301 | + $sid = explode(':', $sid); |
|
| 302 | + return ($sid[0] === 'shared'); |
|
| 303 | + } |
|
| 304 | + |
|
| 305 | + return false; |
|
| 306 | + } |
|
| 307 | + |
|
| 308 | + public function isMounted() { |
|
| 309 | + $storage = $this->getStorage(); |
|
| 310 | + if ($storage->instanceOfStorage('\OCP\Files\IHomeStorage')) { |
|
| 311 | + return false; |
|
| 312 | + } |
|
| 313 | + $sid = $storage->getId(); |
|
| 314 | + if (!is_null($sid)) { |
|
| 315 | + $sid = explode(':', $sid); |
|
| 316 | + return ($sid[0] !== 'home' and $sid[0] !== 'shared'); |
|
| 317 | + } |
|
| 318 | + |
|
| 319 | + return false; |
|
| 320 | + } |
|
| 321 | + |
|
| 322 | + /** |
|
| 323 | + * Get the mountpoint the file belongs to |
|
| 324 | + * |
|
| 325 | + * @return \OCP\Files\Mount\IMountPoint |
|
| 326 | + */ |
|
| 327 | + public function getMountPoint() { |
|
| 328 | + return $this->mount; |
|
| 329 | + } |
|
| 330 | + |
|
| 331 | + /** |
|
| 332 | + * Get the owner of the file |
|
| 333 | + * |
|
| 334 | + * @return \OCP\IUser |
|
| 335 | + */ |
|
| 336 | + public function getOwner() { |
|
| 337 | + return $this->owner; |
|
| 338 | + } |
|
| 339 | + |
|
| 340 | + /** |
|
| 341 | + * @param IMountPoint[] $mounts |
|
| 342 | + */ |
|
| 343 | + public function setSubMounts(array $mounts) { |
|
| 344 | + $this->subMounts = $mounts; |
|
| 345 | + } |
|
| 346 | + |
|
| 347 | + private function updateEntryfromSubMounts() { |
|
| 348 | + if ($this->subMountsUsed) { |
|
| 349 | + return; |
|
| 350 | + } |
|
| 351 | + $this->subMountsUsed = true; |
|
| 352 | + foreach ($this->subMounts as $mount) { |
|
| 353 | + $subStorage = $mount->getStorage(); |
|
| 354 | + if ($subStorage) { |
|
| 355 | + $subCache = $subStorage->getCache(''); |
|
| 356 | + $rootEntry = $subCache->get(''); |
|
| 357 | + $this->addSubEntry($rootEntry, $mount->getMountPoint()); |
|
| 358 | + } |
|
| 359 | + } |
|
| 360 | + } |
|
| 361 | + |
|
| 362 | + /** |
|
| 363 | + * Add a cache entry which is the child of this folder |
|
| 364 | + * |
|
| 365 | + * Sets the size, etag and size to for cross-storage childs |
|
| 366 | + * |
|
| 367 | + * @param array|ICacheEntry $data cache entry for the child |
|
| 368 | + * @param string $entryPath full path of the child entry |
|
| 369 | + */ |
|
| 370 | + public function addSubEntry($data, $entryPath) { |
|
| 371 | + $this->data['size'] += isset($data['size']) ? $data['size'] : 0; |
|
| 372 | + if (isset($data['mtime'])) { |
|
| 373 | + $this->data['mtime'] = max($this->data['mtime'], $data['mtime']); |
|
| 374 | + } |
|
| 375 | + if (isset($data['etag'])) { |
|
| 376 | + // prefix the etag with the relative path of the subentry to propagate etag on mount moves |
|
| 377 | + $relativeEntryPath = substr($entryPath, strlen($this->getPath())); |
|
| 378 | + // attach the permissions to propagate etag on permision changes of submounts |
|
| 379 | + $permissions = isset($data['permissions']) ? $data['permissions'] : 0; |
|
| 380 | + $this->childEtags[] = $relativeEntryPath . '/' . $data['etag'] . $permissions; |
|
| 381 | + } |
|
| 382 | + } |
|
| 383 | + |
|
| 384 | + /** |
|
| 385 | + * @inheritdoc |
|
| 386 | + */ |
|
| 387 | + public function getChecksum() { |
|
| 388 | + return $this->data['checksum']; |
|
| 389 | + } |
|
| 390 | 390 | } |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | * @param \OCP\Files\Mount\IMountPoint $mount |
| 88 | 88 | * @param \OCP\IUser|null $owner |
| 89 | 89 | */ |
| 90 | - public function __construct($path, $storage, $internalPath, $data, $mount, $owner= null) { |
|
| 90 | + public function __construct($path, $storage, $internalPath, $data, $mount, $owner = null) { |
|
| 91 | 91 | $this->path = $path; |
| 92 | 92 | $this->storage = $storage; |
| 93 | 93 | $this->internalPath = $internalPath; |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | public function getEtag() { |
| 182 | 182 | $this->updateEntryfromSubMounts(); |
| 183 | 183 | if (count($this->childEtags) > 0) { |
| 184 | - $combinedEtag = $this->data['etag'] . '::' . implode('::', $this->childEtags); |
|
| 184 | + $combinedEtag = $this->data['etag'].'::'.implode('::', $this->childEtags); |
|
| 185 | 185 | return md5($combinedEtag); |
| 186 | 186 | } else { |
| 187 | 187 | return $this->data['etag']; |
@@ -377,7 +377,7 @@ discard block |
||
| 377 | 377 | $relativeEntryPath = substr($entryPath, strlen($this->getPath())); |
| 378 | 378 | // attach the permissions to propagate etag on permision changes of submounts |
| 379 | 379 | $permissions = isset($data['permissions']) ? $data['permissions'] : 0; |
| 380 | - $this->childEtags[] = $relativeEntryPath . '/' . $data['etag'] . $permissions; |
|
| 380 | + $this->childEtags[] = $relativeEntryPath.'/'.$data['etag'].$permissions; |
|
| 381 | 381 | } |
| 382 | 382 | } |
| 383 | 383 | |