| Total Complexity | 285 |
| Total Lines | 1772 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
Complex classes like Manager often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Manager, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 78 | class Manager implements IManager { |
||
| 79 | |||
| 80 | /** @var IProviderFactory */ |
||
| 81 | private $factory; |
||
| 82 | /** @var ILogger */ |
||
| 83 | private $logger; |
||
| 84 | /** @var IConfig */ |
||
| 85 | private $config; |
||
| 86 | /** @var ISecureRandom */ |
||
| 87 | private $secureRandom; |
||
| 88 | /** @var IHasher */ |
||
| 89 | private $hasher; |
||
| 90 | /** @var IMountManager */ |
||
| 91 | private $mountManager; |
||
| 92 | /** @var IGroupManager */ |
||
| 93 | private $groupManager; |
||
| 94 | /** @var IL10N */ |
||
| 95 | private $l; |
||
| 96 | /** @var IFactory */ |
||
| 97 | private $l10nFactory; |
||
| 98 | /** @var IUserManager */ |
||
| 99 | private $userManager; |
||
| 100 | /** @var IRootFolder */ |
||
| 101 | private $rootFolder; |
||
| 102 | /** @var CappedMemoryCache */ |
||
| 103 | private $sharingDisabledForUsersCache; |
||
| 104 | /** @var EventDispatcherInterface */ |
||
| 105 | private $legacyDispatcher; |
||
| 106 | /** @var LegacyHooks */ |
||
| 107 | private $legacyHooks; |
||
| 108 | /** @var IMailer */ |
||
| 109 | private $mailer; |
||
| 110 | /** @var IURLGenerator */ |
||
| 111 | private $urlGenerator; |
||
| 112 | /** @var \OC_Defaults */ |
||
| 113 | private $defaults; |
||
| 114 | /** @var IEventDispatcher */ |
||
| 115 | private $dispatcher; |
||
| 116 | |||
| 117 | |||
| 118 | /** |
||
| 119 | * Manager constructor. |
||
| 120 | * |
||
| 121 | * @param ILogger $logger |
||
| 122 | * @param IConfig $config |
||
| 123 | * @param ISecureRandom $secureRandom |
||
| 124 | * @param IHasher $hasher |
||
| 125 | * @param IMountManager $mountManager |
||
| 126 | * @param IGroupManager $groupManager |
||
| 127 | * @param IL10N $l |
||
| 128 | * @param IFactory $l10nFactory |
||
| 129 | * @param IProviderFactory $factory |
||
| 130 | * @param IUserManager $userManager |
||
| 131 | * @param IRootFolder $rootFolder |
||
| 132 | * @param EventDispatcherInterface $eventDispatcher |
||
| 133 | * @param IMailer $mailer |
||
| 134 | * @param IURLGenerator $urlGenerator |
||
| 135 | * @param \OC_Defaults $defaults |
||
| 136 | */ |
||
| 137 | public function __construct( |
||
| 138 | ILogger $logger, |
||
| 139 | IConfig $config, |
||
| 140 | ISecureRandom $secureRandom, |
||
| 141 | IHasher $hasher, |
||
| 142 | IMountManager $mountManager, |
||
| 143 | IGroupManager $groupManager, |
||
| 144 | IL10N $l, |
||
| 145 | IFactory $l10nFactory, |
||
| 146 | IProviderFactory $factory, |
||
| 147 | IUserManager $userManager, |
||
| 148 | IRootFolder $rootFolder, |
||
| 149 | EventDispatcherInterface $legacyDispatcher, |
||
| 150 | IMailer $mailer, |
||
| 151 | IURLGenerator $urlGenerator, |
||
| 152 | \OC_Defaults $defaults, |
||
| 153 | IEventDispatcher $dispatcher |
||
| 154 | ) { |
||
| 155 | $this->logger = $logger; |
||
| 156 | $this->config = $config; |
||
| 157 | $this->secureRandom = $secureRandom; |
||
| 158 | $this->hasher = $hasher; |
||
| 159 | $this->mountManager = $mountManager; |
||
| 160 | $this->groupManager = $groupManager; |
||
| 161 | $this->l = $l; |
||
| 162 | $this->l10nFactory = $l10nFactory; |
||
| 163 | $this->factory = $factory; |
||
| 164 | $this->userManager = $userManager; |
||
| 165 | $this->rootFolder = $rootFolder; |
||
| 166 | $this->legacyDispatcher = $legacyDispatcher; |
||
| 167 | $this->sharingDisabledForUsersCache = new CappedMemoryCache(); |
||
| 168 | $this->legacyHooks = new LegacyHooks($this->legacyDispatcher); |
||
| 169 | $this->mailer = $mailer; |
||
| 170 | $this->urlGenerator = $urlGenerator; |
||
| 171 | $this->defaults = $defaults; |
||
| 172 | $this->dispatcher = $dispatcher; |
||
| 173 | } |
||
| 174 | |||
| 175 | /** |
||
| 176 | * Convert from a full share id to a tuple (providerId, shareId) |
||
| 177 | * |
||
| 178 | * @param string $id |
||
| 179 | * @return string[] |
||
| 180 | */ |
||
| 181 | private function splitFullId($id) { |
||
| 182 | return explode(':', $id, 2); |
||
| 183 | } |
||
| 184 | |||
| 185 | /** |
||
| 186 | * Verify if a password meets all requirements |
||
| 187 | * |
||
| 188 | * @param string $password |
||
| 189 | * @throws \Exception |
||
| 190 | */ |
||
| 191 | protected function verifyPassword($password) { |
||
| 206 | } |
||
| 207 | } |
||
| 208 | |||
| 209 | /** |
||
| 210 | * Check for generic requirements before creating a share |
||
| 211 | * |
||
| 212 | * @param \OCP\Share\IShare $share |
||
| 213 | * @throws \InvalidArgumentException |
||
| 214 | * @throws GenericShareException |
||
| 215 | * |
||
| 216 | * @suppress PhanUndeclaredClassMethod |
||
| 217 | */ |
||
| 218 | protected function generalCreateChecks(\OCP\Share\IShare $share) { |
||
| 360 | } |
||
| 361 | } |
||
| 362 | } |
||
| 363 | |||
| 364 | /** |
||
| 365 | * Validate if the expiration date fits the system settings |
||
| 366 | * |
||
| 367 | * @param \OCP\Share\IShare $share The share to validate the expiration date of |
||
| 368 | * @return \OCP\Share\IShare The modified share object |
||
| 369 | * @throws GenericShareException |
||
| 370 | * @throws \InvalidArgumentException |
||
| 371 | * @throws \Exception |
||
| 372 | */ |
||
| 373 | protected function validateExpirationDateInternal(\OCP\Share\IShare $share) { |
||
| 374 | $expirationDate = $share->getExpirationDate(); |
||
| 375 | |||
| 376 | if ($expirationDate !== null) { |
||
| 377 | //Make sure the expiration date is a date |
||
| 378 | $expirationDate->setTime(0, 0, 0); |
||
| 379 | |||
| 380 | $date = new \DateTime(); |
||
| 381 | $date->setTime(0, 0, 0); |
||
| 382 | if ($date >= $expirationDate) { |
||
| 383 | $message = $this->l->t('Expiration date is in the past'); |
||
| 384 | throw new GenericShareException($message, $message, 404); |
||
| 385 | } |
||
| 386 | } |
||
| 387 | |||
| 388 | // If expiredate is empty set a default one if there is a default |
||
| 389 | $fullId = null; |
||
| 390 | try { |
||
| 391 | $fullId = $share->getFullId(); |
||
| 392 | } catch (\UnexpectedValueException $e) { |
||
| 393 | // This is a new share |
||
| 394 | } |
||
| 395 | |||
| 396 | if ($fullId === null && $expirationDate === null && $this->shareApiInternalDefaultExpireDate()) { |
||
| 397 | $expirationDate = new \DateTime(); |
||
| 398 | $expirationDate->setTime(0,0,0); |
||
| 399 | $expirationDate->add(new \DateInterval('P'.$this->shareApiInternalDefaultExpireDays().'D')); |
||
| 400 | } |
||
| 401 | |||
| 402 | // If we enforce the expiration date check that is does not exceed |
||
| 403 | if ($this->shareApiInternalDefaultExpireDateEnforced()) { |
||
| 404 | if ($expirationDate === null) { |
||
| 405 | throw new \InvalidArgumentException('Expiration date is enforced'); |
||
| 406 | } |
||
| 407 | |||
| 408 | $date = new \DateTime(); |
||
| 409 | $date->setTime(0, 0, 0); |
||
| 410 | $date->add(new \DateInterval('P' . $this->shareApiInternalDefaultExpireDays() . 'D')); |
||
| 411 | if ($date < $expirationDate) { |
||
| 412 | $message = $this->l->t('Can’t set expiration date more than %s days in the future', [$this->shareApiInternalDefaultExpireDays()]); |
||
| 413 | throw new GenericShareException($message, $message, 404); |
||
| 414 | } |
||
| 415 | } |
||
| 416 | |||
| 417 | $accepted = true; |
||
| 418 | $message = ''; |
||
| 419 | \OCP\Util::emitHook('\OC\Share', 'verifyExpirationDate', [ |
||
| 420 | 'expirationDate' => &$expirationDate, |
||
| 421 | 'accepted' => &$accepted, |
||
| 422 | 'message' => &$message, |
||
| 423 | 'passwordSet' => $share->getPassword() !== null, |
||
| 424 | ]); |
||
| 425 | |||
| 426 | if (!$accepted) { |
||
| 427 | throw new \Exception($message); |
||
| 428 | } |
||
| 429 | |||
| 430 | $share->setExpirationDate($expirationDate); |
||
| 431 | |||
| 432 | return $share; |
||
| 433 | } |
||
| 434 | |||
| 435 | /** |
||
| 436 | * Validate if the expiration date fits the system settings |
||
| 437 | * |
||
| 438 | * @param \OCP\Share\IShare $share The share to validate the expiration date of |
||
| 439 | * @return \OCP\Share\IShare The modified share object |
||
| 440 | * @throws GenericShareException |
||
| 441 | * @throws \InvalidArgumentException |
||
| 442 | * @throws \Exception |
||
| 443 | */ |
||
| 444 | protected function validateExpirationDate(\OCP\Share\IShare $share) { |
||
| 445 | |||
| 446 | $expirationDate = $share->getExpirationDate(); |
||
| 447 | |||
| 448 | if ($expirationDate !== null) { |
||
| 449 | //Make sure the expiration date is a date |
||
| 450 | $expirationDate->setTime(0, 0, 0); |
||
| 451 | |||
| 452 | $date = new \DateTime(); |
||
| 453 | $date->setTime(0, 0, 0); |
||
| 454 | if ($date >= $expirationDate) { |
||
| 455 | $message = $this->l->t('Expiration date is in the past'); |
||
| 456 | throw new GenericShareException($message, $message, 404); |
||
| 457 | } |
||
| 458 | } |
||
| 459 | |||
| 460 | // If expiredate is empty set a default one if there is a default |
||
| 461 | $fullId = null; |
||
| 462 | try { |
||
| 463 | $fullId = $share->getFullId(); |
||
| 464 | } catch (\UnexpectedValueException $e) { |
||
| 465 | // This is a new share |
||
| 466 | } |
||
| 467 | |||
| 468 | if ($fullId === null && $expirationDate === null && $this->shareApiLinkDefaultExpireDate()) { |
||
| 469 | $expirationDate = new \DateTime(); |
||
| 470 | $expirationDate->setTime(0,0,0); |
||
| 471 | $expirationDate->add(new \DateInterval('P'.$this->shareApiLinkDefaultExpireDays().'D')); |
||
| 472 | } |
||
| 473 | |||
| 474 | // If we enforce the expiration date check that is does not exceed |
||
| 475 | if ($this->shareApiLinkDefaultExpireDateEnforced()) { |
||
| 476 | if ($expirationDate === null) { |
||
| 477 | throw new \InvalidArgumentException('Expiration date is enforced'); |
||
| 478 | } |
||
| 479 | |||
| 480 | $date = new \DateTime(); |
||
| 481 | $date->setTime(0, 0, 0); |
||
| 482 | $date->add(new \DateInterval('P' . $this->shareApiLinkDefaultExpireDays() . 'D')); |
||
| 483 | if ($date < $expirationDate) { |
||
| 484 | $message = $this->l->t('Can’t set expiration date more than %s days in the future', [$this->shareApiLinkDefaultExpireDays()]); |
||
| 485 | throw new GenericShareException($message, $message, 404); |
||
| 486 | } |
||
| 487 | } |
||
| 488 | |||
| 489 | $accepted = true; |
||
| 490 | $message = ''; |
||
| 491 | \OCP\Util::emitHook('\OC\Share', 'verifyExpirationDate', [ |
||
| 492 | 'expirationDate' => &$expirationDate, |
||
| 493 | 'accepted' => &$accepted, |
||
| 494 | 'message' => &$message, |
||
| 495 | 'passwordSet' => $share->getPassword() !== null, |
||
| 496 | ]); |
||
| 497 | |||
| 498 | if (!$accepted) { |
||
| 499 | throw new \Exception($message); |
||
| 500 | } |
||
| 501 | |||
| 502 | $share->setExpirationDate($expirationDate); |
||
| 503 | |||
| 504 | return $share; |
||
| 505 | } |
||
| 506 | |||
| 507 | /** |
||
| 508 | * Check for pre share requirements for user shares |
||
| 509 | * |
||
| 510 | * @param \OCP\Share\IShare $share |
||
| 511 | * @throws \Exception |
||
| 512 | */ |
||
| 513 | protected function userCreateChecks(\OCP\Share\IShare $share) { |
||
| 558 | } |
||
| 559 | } |
||
| 560 | } |
||
| 561 | } |
||
| 562 | } |
||
| 563 | |||
| 564 | /** |
||
| 565 | * Check for pre share requirements for group shares |
||
| 566 | * |
||
| 567 | * @param \OCP\Share\IShare $share |
||
| 568 | * @throws \Exception |
||
| 569 | */ |
||
| 570 | protected function groupCreateChecks(\OCP\Share\IShare $share) { |
||
| 571 | // Verify group shares are allowed |
||
| 572 | if (!$this->allowGroupSharing()) { |
||
| 573 | throw new \Exception('Group sharing is now allowed'); |
||
| 574 | } |
||
| 575 | |||
| 576 | // Verify if the user can share with this group |
||
| 577 | if ($this->shareWithGroupMembersOnly()) { |
||
| 578 | $sharedBy = $this->userManager->get($share->getSharedBy()); |
||
| 579 | $sharedWith = $this->groupManager->get($share->getSharedWith()); |
||
| 580 | if (is_null($sharedWith) || !$sharedWith->inGroup($sharedBy)) { |
||
| 581 | throw new \Exception('Sharing is only allowed within your own groups'); |
||
| 582 | } |
||
| 583 | } |
||
| 584 | |||
| 585 | /* |
||
| 586 | * TODO: Could be costly, fix |
||
| 587 | * |
||
| 588 | * Also this is not what we want in the future.. then we want to squash identical shares. |
||
| 589 | */ |
||
| 590 | $provider = $this->factory->getProviderForType(\OCP\Share::SHARE_TYPE_GROUP); |
||
| 591 | $existingShares = $provider->getSharesByPath($share->getNode()); |
||
| 592 | foreach($existingShares as $existingShare) { |
||
| 593 | try { |
||
| 594 | if ($existingShare->getFullId() === $share->getFullId()) { |
||
| 595 | continue; |
||
| 596 | } |
||
| 597 | } catch (\UnexpectedValueException $e) { |
||
| 598 | //It is a new share so just continue |
||
| 599 | } |
||
| 600 | |||
| 601 | if ($existingShare->getSharedWith() === $share->getSharedWith() && $existingShare->getShareType() === $share->getShareType()) { |
||
| 602 | throw new \Exception('Path is already shared with this group'); |
||
| 603 | } |
||
| 604 | } |
||
| 605 | } |
||
| 606 | |||
| 607 | /** |
||
| 608 | * Check for pre share requirements for link shares |
||
| 609 | * |
||
| 610 | * @param \OCP\Share\IShare $share |
||
| 611 | * @throws \Exception |
||
| 612 | */ |
||
| 613 | protected function linkCreateChecks(\OCP\Share\IShare $share) { |
||
| 614 | // Are link shares allowed? |
||
| 615 | if (!$this->shareApiAllowLinks()) { |
||
| 616 | throw new \Exception('Link sharing is not allowed'); |
||
| 617 | } |
||
| 618 | |||
| 619 | // Link shares by definition can't have share permissions |
||
| 620 | if ($share->getPermissions() & \OCP\Constants::PERMISSION_SHARE) { |
||
| 621 | throw new \InvalidArgumentException('Link shares can’t have reshare permissions'); |
||
| 622 | } |
||
| 623 | |||
| 624 | // Check if public upload is allowed |
||
| 625 | if (!$this->shareApiLinkAllowPublicUpload() && |
||
| 626 | ($share->getPermissions() & (\OCP\Constants::PERMISSION_CREATE | \OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_DELETE))) { |
||
| 627 | throw new \InvalidArgumentException('Public upload is not allowed'); |
||
| 628 | } |
||
| 629 | } |
||
| 630 | |||
| 631 | /** |
||
| 632 | * To make sure we don't get invisible link shares we set the parent |
||
| 633 | * of a link if it is a reshare. This is a quick word around |
||
| 634 | * until we can properly display multiple link shares in the UI |
||
| 635 | * |
||
| 636 | * See: https://github.com/owncloud/core/issues/22295 |
||
| 637 | * |
||
| 638 | * FIXME: Remove once multiple link shares can be properly displayed |
||
| 639 | * |
||
| 640 | * @param \OCP\Share\IShare $share |
||
| 641 | */ |
||
| 642 | protected function setLinkParent(\OCP\Share\IShare $share) { |
||
| 643 | |||
| 644 | // No sense in checking if the method is not there. |
||
| 645 | if (method_exists($share, 'setParent')) { |
||
| 646 | $storage = $share->getNode()->getStorage(); |
||
| 647 | if ($storage->instanceOfStorage('\OCA\Files_Sharing\ISharedStorage')) { |
||
| 648 | /** @var \OCA\Files_Sharing\SharedStorage $storage */ |
||
| 649 | $share->setParent($storage->getShareId()); |
||
| 650 | } |
||
| 651 | } |
||
| 652 | } |
||
| 653 | |||
| 654 | /** |
||
| 655 | * @param File|Folder $path |
||
| 656 | */ |
||
| 657 | protected function pathCreateChecks($path) { |
||
| 664 | } |
||
| 665 | } |
||
| 666 | } |
||
| 667 | } |
||
| 668 | |||
| 669 | /** |
||
| 670 | * Check if the user that is sharing can actually share |
||
| 671 | * |
||
| 672 | * @param \OCP\Share\IShare $share |
||
| 673 | * @throws \Exception |
||
| 674 | */ |
||
| 675 | protected function canShare(\OCP\Share\IShare $share) { |
||
| 682 | } |
||
| 683 | } |
||
| 684 | |||
| 685 | /** |
||
| 686 | * Share a path |
||
| 687 | * |
||
| 688 | * @param \OCP\Share\IShare $share |
||
| 689 | * @return Share The share object |
||
| 690 | * @throws \Exception |
||
| 691 | * |
||
| 692 | * TODO: handle link share permissions or check them |
||
| 693 | */ |
||
| 694 | public function createShare(\OCP\Share\IShare $share) { |
||
| 695 | $this->canShare($share); |
||
| 696 | |||
| 697 | $this->generalCreateChecks($share); |
||
| 698 | |||
| 699 | // Verify if there are any issues with the path |
||
| 700 | $this->pathCreateChecks($share->getNode()); |
||
| 701 | |||
| 702 | /* |
||
| 703 | * On creation of a share the owner is always the owner of the path |
||
| 704 | * Except for mounted federated shares. |
||
| 705 | */ |
||
| 706 | $storage = $share->getNode()->getStorage(); |
||
| 707 | if ($storage->instanceOfStorage('OCA\Files_Sharing\External\Storage')) { |
||
| 708 | $parent = $share->getNode()->getParent(); |
||
| 709 | while($parent->getStorage()->instanceOfStorage('OCA\Files_Sharing\External\Storage')) { |
||
| 710 | $parent = $parent->getParent(); |
||
| 711 | } |
||
| 712 | $share->setShareOwner($parent->getOwner()->getUID()); |
||
| 713 | } else { |
||
| 714 | $share->setShareOwner($share->getNode()->getOwner()->getUID()); |
||
| 715 | } |
||
| 716 | |||
| 717 | //Verify share type |
||
| 718 | if ($share->getShareType() === \OCP\Share::SHARE_TYPE_USER) { |
||
| 719 | $this->userCreateChecks($share); |
||
| 720 | |||
| 721 | //Verify the expiration date |
||
| 722 | $share = $this->validateExpirationDateInternal($share); |
||
| 723 | |||
| 724 | } else if ($share->getShareType() === \OCP\Share::SHARE_TYPE_GROUP) { |
||
| 725 | $this->groupCreateChecks($share); |
||
| 726 | |||
| 727 | //Verify the expiration date |
||
| 728 | $share = $this->validateExpirationDateInternal($share); |
||
| 729 | |||
| 730 | } else if ($share->getShareType() === \OCP\Share::SHARE_TYPE_LINK) { |
||
| 731 | $this->linkCreateChecks($share); |
||
| 732 | $this->setLinkParent($share); |
||
| 733 | |||
| 734 | /* |
||
| 735 | * For now ignore a set token. |
||
| 736 | */ |
||
| 737 | $share->setToken( |
||
| 738 | $this->secureRandom->generate( |
||
| 739 | \OC\Share\Constants::TOKEN_LENGTH, |
||
| 740 | \OCP\Security\ISecureRandom::CHAR_HUMAN_READABLE |
||
| 741 | ) |
||
| 742 | ); |
||
| 743 | |||
| 744 | //Verify the expiration date |
||
| 745 | $share = $this->validateExpirationDate($share); |
||
| 746 | |||
| 747 | //Verify the password |
||
| 748 | $this->verifyPassword($share->getPassword()); |
||
| 749 | |||
| 750 | // If a password is set. Hash it! |
||
| 751 | if ($share->getPassword() !== null) { |
||
| 752 | $share->setPassword($this->hasher->hash($share->getPassword())); |
||
| 753 | } |
||
| 754 | } else if ($share->getShareType() === \OCP\Share::SHARE_TYPE_EMAIL) { |
||
| 755 | $share->setToken( |
||
| 756 | $this->secureRandom->generate( |
||
| 757 | \OC\Share\Constants::TOKEN_LENGTH, |
||
| 758 | \OCP\Security\ISecureRandom::CHAR_HUMAN_READABLE |
||
| 759 | ) |
||
| 760 | ); |
||
| 761 | } |
||
| 762 | |||
| 763 | // Cannot share with the owner |
||
| 764 | if ($share->getShareType() === \OCP\Share::SHARE_TYPE_USER && |
||
| 765 | $share->getSharedWith() === $share->getShareOwner()) { |
||
| 766 | throw new \InvalidArgumentException('Can’t share with the share owner'); |
||
| 767 | } |
||
| 768 | |||
| 769 | // Generate the target |
||
| 770 | $target = $this->config->getSystemValue('share_folder', '/') .'/'. $share->getNode()->getName(); |
||
| 771 | $target = \OC\Files\Filesystem::normalizePath($target); |
||
| 772 | $share->setTarget($target); |
||
| 773 | |||
| 774 | // Pre share event |
||
| 775 | $event = new GenericEvent($share); |
||
| 776 | $this->legacyDispatcher->dispatch('OCP\Share::preShare', $event); |
||
| 777 | if ($event->isPropagationStopped() && $event->hasArgument('error')) { |
||
| 778 | throw new \Exception($event->getArgument('error')); |
||
| 779 | } |
||
| 780 | |||
| 781 | $oldShare = $share; |
||
| 782 | $provider = $this->factory->getProviderForType($share->getShareType()); |
||
| 783 | $share = $provider->create($share); |
||
| 784 | //reuse the node we already have |
||
| 785 | $share->setNode($oldShare->getNode()); |
||
| 786 | |||
| 787 | // Reset the target if it is null for the new share |
||
| 788 | if ($share->getTarget() === '') { |
||
| 789 | $share->setTarget($target); |
||
| 790 | } |
||
| 791 | |||
| 792 | // Post share event |
||
| 793 | $event = new GenericEvent($share); |
||
| 794 | $this->legacyDispatcher->dispatch('OCP\Share::postShare', $event); |
||
| 795 | |||
| 796 | $this->dispatcher->dispatchTyped(new Share\Events\ShareCreatedEvent($share)); |
||
| 797 | |||
| 798 | if ($share->getShareType() === \OCP\Share::SHARE_TYPE_USER) { |
||
| 799 | $mailSend = $share->getMailSend(); |
||
| 800 | if($mailSend === true) { |
||
| 801 | $user = $this->userManager->get($share->getSharedWith()); |
||
| 802 | if ($user !== null) { |
||
| 803 | $emailAddress = $user->getEMailAddress(); |
||
| 804 | if ($emailAddress !== null && $emailAddress !== '') { |
||
| 805 | $userLang = $this->config->getUserValue($share->getSharedWith(), 'core', 'lang', null); |
||
| 806 | $l = $this->l10nFactory->get('lib', $userLang); |
||
| 807 | $this->sendMailNotification( |
||
| 808 | $l, |
||
| 809 | $share->getNode()->getName(), |
||
| 810 | $this->urlGenerator->linkToRouteAbsolute('files_sharing.Accept.accept', ['shareId' => $share->getFullId()]), |
||
| 811 | $share->getSharedBy(), |
||
| 812 | $emailAddress, |
||
| 813 | $share->getExpirationDate() |
||
| 814 | ); |
||
| 815 | $this->logger->debug('Sent share notification to ' . $emailAddress . ' for share with ID ' . $share->getId(), ['app' => 'share']); |
||
| 816 | } else { |
||
| 817 | $this->logger->debug('Share notification not sent to ' . $share->getSharedWith() . ' because email address is not set.', ['app' => 'share']); |
||
| 818 | } |
||
| 819 | } else { |
||
| 820 | $this->logger->debug('Share notification not sent to ' . $share->getSharedWith() . ' because user could not be found.', ['app' => 'share']); |
||
| 821 | } |
||
| 822 | } else { |
||
| 823 | $this->logger->debug('Share notification not sent because mailsend is false.', ['app' => 'share']); |
||
| 824 | } |
||
| 825 | } |
||
| 826 | |||
| 827 | return $share; |
||
| 828 | } |
||
| 829 | |||
| 830 | /** |
||
| 831 | * Send mail notifications |
||
| 832 | * |
||
| 833 | * This method will catch and log mail transmission errors |
||
| 834 | * |
||
| 835 | * @param IL10N $l Language of the recipient |
||
| 836 | * @param string $filename file/folder name |
||
| 837 | * @param string $link link to the file/folder |
||
| 838 | * @param string $initiator user ID of share sender |
||
| 839 | * @param string $shareWith email address of share receiver |
||
| 840 | * @param \DateTime|null $expiration |
||
| 841 | */ |
||
| 842 | protected function sendMailNotification(IL10N $l, |
||
| 843 | $filename, |
||
| 844 | $link, |
||
| 845 | $initiator, |
||
| 846 | $shareWith, |
||
| 847 | \DateTime $expiration = null) { |
||
| 848 | $initiatorUser = $this->userManager->get($initiator); |
||
| 849 | $initiatorDisplayName = ($initiatorUser instanceof IUser) ? $initiatorUser->getDisplayName() : $initiator; |
||
| 850 | |||
| 851 | $message = $this->mailer->createMessage(); |
||
| 852 | |||
| 853 | $emailTemplate = $this->mailer->createEMailTemplate('files_sharing.RecipientNotification', [ |
||
| 854 | 'filename' => $filename, |
||
| 855 | 'link' => $link, |
||
| 856 | 'initiator' => $initiatorDisplayName, |
||
| 857 | 'expiration' => $expiration, |
||
| 858 | 'shareWith' => $shareWith, |
||
| 859 | ]); |
||
| 860 | |||
| 861 | $emailTemplate->setSubject($l->t('%1$s shared »%2$s« with you', array($initiatorDisplayName, $filename))); |
||
| 862 | $emailTemplate->addHeader(); |
||
| 863 | $emailTemplate->addHeading($l->t('%1$s shared »%2$s« with you', [$initiatorDisplayName, $filename]), false); |
||
| 864 | $text = $l->t('%1$s shared »%2$s« with you.', [$initiatorDisplayName, $filename]); |
||
| 865 | |||
| 866 | $emailTemplate->addBodyText( |
||
| 867 | htmlspecialchars($text . ' ' . $l->t('Click the button below to open it.')), |
||
| 868 | $text |
||
| 869 | ); |
||
| 870 | $emailTemplate->addBodyButton( |
||
| 871 | $l->t('Open »%s«', [$filename]), |
||
| 872 | $link |
||
| 873 | ); |
||
| 874 | |||
| 875 | $message->setTo([$shareWith]); |
||
| 876 | |||
| 877 | // The "From" contains the sharers name |
||
| 878 | $instanceName = $this->defaults->getName(); |
||
| 879 | $senderName = $l->t( |
||
| 880 | '%1$s via %2$s', |
||
| 881 | [ |
||
| 882 | $initiatorDisplayName, |
||
| 883 | $instanceName |
||
| 884 | ] |
||
| 885 | ); |
||
| 886 | $message->setFrom([\OCP\Util::getDefaultEmailAddress($instanceName) => $senderName]); |
||
| 887 | |||
| 888 | // The "Reply-To" is set to the sharer if an mail address is configured |
||
| 889 | // also the default footer contains a "Do not reply" which needs to be adjusted. |
||
| 890 | $initiatorEmail = $initiatorUser->getEMailAddress(); |
||
| 891 | if($initiatorEmail !== null) { |
||
| 892 | $message->setReplyTo([$initiatorEmail => $initiatorDisplayName]); |
||
| 893 | $emailTemplate->addFooter($instanceName . ($this->defaults->getSlogan() !== '' ? ' - ' . $this->defaults->getSlogan() : '')); |
||
| 894 | } else { |
||
| 895 | $emailTemplate->addFooter(); |
||
| 896 | } |
||
| 897 | |||
| 898 | $message->useTemplate($emailTemplate); |
||
| 899 | try { |
||
| 900 | $failedRecipients = $this->mailer->send($message); |
||
| 901 | if(!empty($failedRecipients)) { |
||
| 902 | $this->logger->error('Share notification mail could not be sent to: ' . implode(', ', $failedRecipients)); |
||
| 903 | return; |
||
| 904 | } |
||
| 905 | } catch (\Exception $e) { |
||
| 906 | $this->logger->logException($e, ['message' => 'Share notification mail could not be sent']); |
||
| 907 | } |
||
| 908 | } |
||
| 909 | |||
| 910 | /** |
||
| 911 | * Update a share |
||
| 912 | * |
||
| 913 | * @param \OCP\Share\IShare $share |
||
| 914 | * @return \OCP\Share\IShare The share object |
||
| 915 | * @throws \InvalidArgumentException |
||
| 916 | */ |
||
| 917 | public function updateShare(\OCP\Share\IShare $share) { |
||
| 918 | $expirationDateUpdated = false; |
||
| 919 | |||
| 920 | $this->canShare($share); |
||
| 921 | |||
| 922 | try { |
||
| 923 | $originalShare = $this->getShareById($share->getFullId()); |
||
| 924 | } catch (\UnexpectedValueException $e) { |
||
| 925 | throw new \InvalidArgumentException('Share does not have a full id'); |
||
| 926 | } |
||
| 927 | |||
| 928 | // We can't change the share type! |
||
| 929 | if ($share->getShareType() !== $originalShare->getShareType()) { |
||
| 930 | throw new \InvalidArgumentException('Can’t change share type'); |
||
| 931 | } |
||
| 932 | |||
| 933 | // We can only change the recipient on user shares |
||
| 934 | if ($share->getSharedWith() !== $originalShare->getSharedWith() && |
||
| 935 | $share->getShareType() !== \OCP\Share::SHARE_TYPE_USER) { |
||
| 936 | throw new \InvalidArgumentException('Can only update recipient on user shares'); |
||
| 937 | } |
||
| 938 | |||
| 939 | // Cannot share with the owner |
||
| 940 | if ($share->getShareType() === \OCP\Share::SHARE_TYPE_USER && |
||
| 941 | $share->getSharedWith() === $share->getShareOwner()) { |
||
| 942 | throw new \InvalidArgumentException('Can’t share with the share owner'); |
||
| 943 | } |
||
| 944 | |||
| 945 | $this->generalCreateChecks($share); |
||
| 946 | |||
| 947 | if ($share->getShareType() === \OCP\Share::SHARE_TYPE_USER) { |
||
| 948 | $this->userCreateChecks($share); |
||
| 949 | |||
| 950 | if ($share->getExpirationDate() != $originalShare->getExpirationDate()) { |
||
| 951 | //Verify the expiration date |
||
| 952 | $this->validateExpirationDate($share); |
||
| 953 | $expirationDateUpdated = true; |
||
| 954 | } |
||
| 955 | } else if ($share->getShareType() === \OCP\Share::SHARE_TYPE_GROUP) { |
||
| 956 | $this->groupCreateChecks($share); |
||
| 957 | |||
| 958 | if ($share->getExpirationDate() != $originalShare->getExpirationDate()) { |
||
| 959 | //Verify the expiration date |
||
| 960 | $this->validateExpirationDate($share); |
||
| 961 | $expirationDateUpdated = true; |
||
| 962 | } |
||
| 963 | } else if ($share->getShareType() === \OCP\Share::SHARE_TYPE_LINK) { |
||
| 964 | $this->linkCreateChecks($share); |
||
| 965 | |||
| 966 | $this->updateSharePasswordIfNeeded($share, $originalShare); |
||
| 967 | |||
| 968 | if ($share->getExpirationDate() != $originalShare->getExpirationDate()) { |
||
| 969 | //Verify the expiration date |
||
| 970 | $this->validateExpirationDate($share); |
||
| 971 | $expirationDateUpdated = true; |
||
| 972 | } |
||
| 973 | } else if ($share->getShareType() === \OCP\Share::SHARE_TYPE_EMAIL) { |
||
| 974 | // The new password is not set again if it is the same as the old |
||
| 975 | // one, unless when switching from sending by Talk to sending by |
||
| 976 | // mail. |
||
| 977 | $plainTextPassword = $share->getPassword(); |
||
| 978 | if (!empty($plainTextPassword) && !$this->updateSharePasswordIfNeeded($share, $originalShare) && |
||
| 979 | !($originalShare->getSendPasswordByTalk() && !$share->getSendPasswordByTalk())) { |
||
| 980 | $plainTextPassword = null; |
||
| 981 | } |
||
| 982 | if (empty($plainTextPassword) && !$originalShare->getSendPasswordByTalk() && $share->getSendPasswordByTalk()) { |
||
| 983 | // If the same password was already sent by mail the recipient |
||
| 984 | // would already have access to the share without having to call |
||
| 985 | // the sharer to verify her identity |
||
| 986 | throw new \InvalidArgumentException('Can’t enable sending the password by Talk without setting a new password'); |
||
| 987 | } |
||
| 988 | } |
||
| 989 | |||
| 990 | $this->pathCreateChecks($share->getNode()); |
||
| 991 | |||
| 992 | // Now update the share! |
||
| 993 | $provider = $this->factory->getProviderForType($share->getShareType()); |
||
| 994 | if ($share->getShareType() === \OCP\Share::SHARE_TYPE_EMAIL) { |
||
| 995 | $share = $provider->update($share, $plainTextPassword); |
||
| 996 | } else { |
||
| 997 | $share = $provider->update($share); |
||
| 998 | } |
||
| 999 | |||
| 1000 | if ($expirationDateUpdated === true) { |
||
| 1001 | \OC_Hook::emit(Share::class, 'post_set_expiration_date', [ |
||
| 1002 | 'itemType' => $share->getNode() instanceof \OCP\Files\File ? 'file' : 'folder', |
||
| 1003 | 'itemSource' => $share->getNode()->getId(), |
||
| 1004 | 'date' => $share->getExpirationDate(), |
||
| 1005 | 'uidOwner' => $share->getSharedBy(), |
||
| 1006 | ]); |
||
| 1007 | } |
||
| 1008 | |||
| 1009 | if ($share->getPassword() !== $originalShare->getPassword()) { |
||
| 1010 | \OC_Hook::emit(Share::class, 'post_update_password', [ |
||
| 1011 | 'itemType' => $share->getNode() instanceof \OCP\Files\File ? 'file' : 'folder', |
||
| 1012 | 'itemSource' => $share->getNode()->getId(), |
||
| 1013 | 'uidOwner' => $share->getSharedBy(), |
||
| 1014 | 'token' => $share->getToken(), |
||
| 1015 | 'disabled' => is_null($share->getPassword()), |
||
| 1016 | ]); |
||
| 1017 | } |
||
| 1018 | |||
| 1019 | if ($share->getPermissions() !== $originalShare->getPermissions()) { |
||
| 1020 | if ($this->userManager->userExists($share->getShareOwner())) { |
||
| 1021 | $userFolder = $this->rootFolder->getUserFolder($share->getShareOwner()); |
||
| 1022 | } else { |
||
| 1023 | $userFolder = $this->rootFolder->getUserFolder($share->getSharedBy()); |
||
| 1024 | } |
||
| 1025 | \OC_Hook::emit(Share::class, 'post_update_permissions', array( |
||
| 1026 | 'itemType' => $share->getNode() instanceof \OCP\Files\File ? 'file' : 'folder', |
||
| 1027 | 'itemSource' => $share->getNode()->getId(), |
||
| 1028 | 'shareType' => $share->getShareType(), |
||
| 1029 | 'shareWith' => $share->getSharedWith(), |
||
| 1030 | 'uidOwner' => $share->getSharedBy(), |
||
| 1031 | 'permissions' => $share->getPermissions(), |
||
| 1032 | 'path' => $userFolder->getRelativePath($share->getNode()->getPath()), |
||
| 1033 | )); |
||
| 1034 | } |
||
| 1035 | |||
| 1036 | return $share; |
||
| 1037 | } |
||
| 1038 | |||
| 1039 | /** |
||
| 1040 | * Accept a share. |
||
| 1041 | * |
||
| 1042 | * @param IShare $share |
||
| 1043 | * @param string $recipientId |
||
| 1044 | * @return IShare The share object |
||
| 1045 | * @throws \InvalidArgumentException |
||
| 1046 | * @since 9.0.0 |
||
| 1047 | */ |
||
| 1048 | public function acceptShare(IShare $share, string $recipientId): IShare { |
||
| 1049 | [$providerId, ] = $this->splitFullId($share->getFullId()); |
||
| 1050 | $provider = $this->factory->getProvider($providerId); |
||
| 1051 | |||
| 1052 | if (!method_exists($provider, 'acceptShare')) { |
||
| 1053 | // TODO FIX ME |
||
| 1054 | throw new \InvalidArgumentException('Share provider does not support accepting'); |
||
| 1055 | } |
||
| 1056 | $provider->acceptShare($share, $recipientId); |
||
| 1057 | $event = new GenericEvent($share); |
||
| 1058 | $this->legacyDispatcher->dispatch('OCP\Share::postAcceptShare', $event); |
||
| 1059 | |||
| 1060 | return $share; |
||
| 1061 | } |
||
| 1062 | |||
| 1063 | /** |
||
| 1064 | * Updates the password of the given share if it is not the same as the |
||
| 1065 | * password of the original share. |
||
| 1066 | * |
||
| 1067 | * @param \OCP\Share\IShare $share the share to update its password. |
||
| 1068 | * @param \OCP\Share\IShare $originalShare the original share to compare its |
||
| 1069 | * password with. |
||
| 1070 | * @return boolean whether the password was updated or not. |
||
| 1071 | */ |
||
| 1072 | private function updateSharePasswordIfNeeded(\OCP\Share\IShare $share, \OCP\Share\IShare $originalShare) { |
||
| 1073 | // Password updated. |
||
| 1074 | if ($share->getPassword() !== $originalShare->getPassword()) { |
||
| 1075 | //Verify the password |
||
| 1076 | $this->verifyPassword($share->getPassword()); |
||
| 1077 | |||
| 1078 | // If a password is set. Hash it! |
||
| 1079 | if ($share->getPassword() !== null) { |
||
| 1080 | $share->setPassword($this->hasher->hash($share->getPassword())); |
||
| 1081 | |||
| 1082 | return true; |
||
| 1083 | } |
||
| 1084 | } |
||
| 1085 | |||
| 1086 | return false; |
||
| 1087 | } |
||
| 1088 | |||
| 1089 | /** |
||
| 1090 | * Delete all the children of this share |
||
| 1091 | * FIXME: remove once https://github.com/owncloud/core/pull/21660 is in |
||
| 1092 | * |
||
| 1093 | * @param \OCP\Share\IShare $share |
||
| 1094 | * @return \OCP\Share\IShare[] List of deleted shares |
||
| 1095 | */ |
||
| 1096 | protected function deleteChildren(\OCP\Share\IShare $share) { |
||
| 1110 | } |
||
| 1111 | |||
| 1112 | /** |
||
| 1113 | * Delete a share |
||
| 1114 | * |
||
| 1115 | * @param \OCP\Share\IShare $share |
||
| 1116 | * @throws ShareNotFound |
||
| 1117 | * @throws \InvalidArgumentException |
||
| 1118 | */ |
||
| 1119 | public function deleteShare(\OCP\Share\IShare $share) { |
||
| 1120 | |||
| 1121 | try { |
||
| 1122 | $share->getFullId(); |
||
| 1123 | } catch (\UnexpectedValueException $e) { |
||
| 1124 | throw new \InvalidArgumentException('Share does not have a full id'); |
||
| 1125 | } |
||
| 1126 | |||
| 1127 | $event = new GenericEvent($share); |
||
| 1128 | $this->legacyDispatcher->dispatch('OCP\Share::preUnshare', $event); |
||
| 1129 | |||
| 1130 | // Get all children and delete them as well |
||
| 1131 | $deletedShares = $this->deleteChildren($share); |
||
| 1132 | |||
| 1133 | // Do the actual delete |
||
| 1134 | $provider = $this->factory->getProviderForType($share->getShareType()); |
||
| 1135 | $provider->delete($share); |
||
| 1136 | |||
| 1137 | // All the deleted shares caused by this delete |
||
| 1138 | $deletedShares[] = $share; |
||
| 1139 | |||
| 1140 | // Emit post hook |
||
| 1141 | $event->setArgument('deletedShares', $deletedShares); |
||
| 1142 | $this->legacyDispatcher->dispatch('OCP\Share::postUnshare', $event); |
||
| 1143 | } |
||
| 1144 | |||
| 1145 | |||
| 1146 | /** |
||
| 1147 | * Unshare a file as the recipient. |
||
| 1148 | * This can be different from a regular delete for example when one of |
||
| 1149 | * the users in a groups deletes that share. But the provider should |
||
| 1150 | * handle this. |
||
| 1151 | * |
||
| 1152 | * @param \OCP\Share\IShare $share |
||
| 1153 | * @param string $recipientId |
||
| 1154 | */ |
||
| 1155 | public function deleteFromSelf(\OCP\Share\IShare $share, $recipientId) { |
||
| 1156 | list($providerId, ) = $this->splitFullId($share->getFullId()); |
||
| 1157 | $provider = $this->factory->getProvider($providerId); |
||
| 1158 | |||
| 1159 | $provider->deleteFromSelf($share, $recipientId); |
||
| 1160 | $event = new GenericEvent($share); |
||
| 1161 | $this->legacyDispatcher->dispatch('OCP\Share::postUnshareFromSelf', $event); |
||
| 1162 | } |
||
| 1163 | |||
| 1164 | public function restoreShare(IShare $share, string $recipientId): IShare { |
||
| 1165 | list($providerId, ) = $this->splitFullId($share->getFullId()); |
||
| 1166 | $provider = $this->factory->getProvider($providerId); |
||
| 1167 | |||
| 1168 | return $provider->restore($share, $recipientId); |
||
| 1169 | } |
||
| 1170 | |||
| 1171 | /** |
||
| 1172 | * @inheritdoc |
||
| 1173 | */ |
||
| 1174 | public function moveShare(\OCP\Share\IShare $share, $recipientId) { |
||
| 1175 | if ($share->getShareType() === \OCP\Share::SHARE_TYPE_LINK) { |
||
| 1176 | throw new \InvalidArgumentException('Can’t change target of link share'); |
||
| 1177 | } |
||
| 1178 | |||
| 1179 | if ($share->getShareType() === \OCP\Share::SHARE_TYPE_USER && $share->getSharedWith() !== $recipientId) { |
||
| 1180 | throw new \InvalidArgumentException('Invalid recipient'); |
||
| 1181 | } |
||
| 1182 | |||
| 1183 | if ($share->getShareType() === \OCP\Share::SHARE_TYPE_GROUP) { |
||
| 1184 | $sharedWith = $this->groupManager->get($share->getSharedWith()); |
||
| 1185 | if (is_null($sharedWith)) { |
||
| 1186 | throw new \InvalidArgumentException('Group "' . $share->getSharedWith() . '" does not exist'); |
||
| 1187 | } |
||
| 1188 | $recipient = $this->userManager->get($recipientId); |
||
| 1189 | if (!$sharedWith->inGroup($recipient)) { |
||
| 1190 | throw new \InvalidArgumentException('Invalid recipient'); |
||
| 1191 | } |
||
| 1192 | } |
||
| 1193 | |||
| 1194 | list($providerId, ) = $this->splitFullId($share->getFullId()); |
||
| 1195 | $provider = $this->factory->getProvider($providerId); |
||
| 1196 | |||
| 1197 | $provider->move($share, $recipientId); |
||
| 1198 | } |
||
| 1199 | |||
| 1200 | public function getSharesInFolder($userId, Folder $node, $reshares = false) { |
||
| 1201 | $providers = $this->factory->getAllProviders(); |
||
| 1202 | |||
| 1203 | return array_reduce($providers, function($shares, IShareProvider $provider) use ($userId, $node, $reshares) { |
||
| 1204 | $newShares = $provider->getSharesInFolder($userId, $node, $reshares); |
||
| 1205 | foreach ($newShares as $fid => $data) { |
||
| 1206 | if (!isset($shares[$fid])) { |
||
| 1207 | $shares[$fid] = []; |
||
| 1208 | } |
||
| 1209 | |||
| 1210 | $shares[$fid] = array_merge($shares[$fid], $data); |
||
| 1211 | } |
||
| 1212 | return $shares; |
||
| 1213 | }, []); |
||
| 1214 | } |
||
| 1215 | |||
| 1216 | /** |
||
| 1217 | * @inheritdoc |
||
| 1218 | */ |
||
| 1219 | public function getSharesBy($userId, $shareType, $path = null, $reshares = false, $limit = 50, $offset = 0) { |
||
| 1220 | if ($path !== null && |
||
| 1221 | !($path instanceof \OCP\Files\File) && |
||
| 1222 | !($path instanceof \OCP\Files\Folder)) { |
||
| 1223 | throw new \InvalidArgumentException('invalid path'); |
||
| 1224 | } |
||
| 1225 | |||
| 1226 | try { |
||
| 1227 | $provider = $this->factory->getProviderForType($shareType); |
||
| 1228 | } catch (ProviderException $e) { |
||
| 1229 | return []; |
||
| 1230 | } |
||
| 1231 | |||
| 1232 | $shares = $provider->getSharesBy($userId, $shareType, $path, $reshares, $limit, $offset); |
||
| 1233 | |||
| 1234 | /* |
||
| 1235 | * Work around so we don't return expired shares but still follow |
||
| 1236 | * proper pagination. |
||
| 1237 | */ |
||
| 1238 | |||
| 1239 | $shares2 = []; |
||
| 1240 | |||
| 1241 | while(true) { |
||
| 1242 | $added = 0; |
||
| 1243 | foreach ($shares as $share) { |
||
| 1244 | |||
| 1245 | try { |
||
| 1246 | $this->checkExpireDate($share); |
||
| 1247 | } catch (ShareNotFound $e) { |
||
| 1248 | //Ignore since this basically means the share is deleted |
||
| 1249 | continue; |
||
| 1250 | } |
||
| 1251 | |||
| 1252 | $added++; |
||
| 1253 | $shares2[] = $share; |
||
| 1254 | |||
| 1255 | if (count($shares2) === $limit) { |
||
| 1256 | break; |
||
| 1257 | } |
||
| 1258 | } |
||
| 1259 | |||
| 1260 | // If we did not fetch more shares than the limit then there are no more shares |
||
| 1261 | if (count($shares) < $limit) { |
||
| 1262 | break; |
||
| 1263 | } |
||
| 1264 | |||
| 1265 | if (count($shares2) === $limit) { |
||
| 1266 | break; |
||
| 1267 | } |
||
| 1268 | |||
| 1269 | // If there was no limit on the select we are done |
||
| 1270 | if ($limit === -1) { |
||
| 1271 | break; |
||
| 1272 | } |
||
| 1273 | |||
| 1274 | $offset += $added; |
||
| 1275 | |||
| 1276 | // Fetch again $limit shares |
||
| 1277 | $shares = $provider->getSharesBy($userId, $shareType, $path, $reshares, $limit, $offset); |
||
| 1278 | |||
| 1279 | // No more shares means we are done |
||
| 1280 | if (empty($shares)) { |
||
| 1281 | break; |
||
| 1282 | } |
||
| 1283 | } |
||
| 1284 | |||
| 1285 | $shares = $shares2; |
||
| 1286 | |||
| 1287 | return $shares; |
||
| 1288 | } |
||
| 1289 | |||
| 1290 | /** |
||
| 1291 | * @inheritdoc |
||
| 1292 | */ |
||
| 1293 | public function getSharedWith($userId, $shareType, $node = null, $limit = 50, $offset = 0) { |
||
| 1294 | try { |
||
| 1295 | $provider = $this->factory->getProviderForType($shareType); |
||
| 1296 | } catch (ProviderException $e) { |
||
| 1297 | return []; |
||
| 1298 | } |
||
| 1299 | |||
| 1300 | $shares = $provider->getSharedWith($userId, $shareType, $node, $limit, $offset); |
||
| 1301 | |||
| 1302 | // remove all shares which are already expired |
||
| 1303 | foreach ($shares as $key => $share) { |
||
| 1304 | try { |
||
| 1305 | $this->checkExpireDate($share); |
||
| 1306 | } catch (ShareNotFound $e) { |
||
| 1307 | unset($shares[$key]); |
||
| 1308 | } |
||
| 1309 | } |
||
| 1310 | |||
| 1311 | return $shares; |
||
| 1312 | } |
||
| 1313 | |||
| 1314 | /** |
||
| 1315 | * @inheritdoc |
||
| 1316 | */ |
||
| 1317 | public function getDeletedSharedWith($userId, $shareType, $node = null, $limit = 50, $offset = 0) { |
||
| 1318 | $shares = $this->getSharedWith($userId, $shareType, $node, $limit, $offset); |
||
| 1319 | |||
| 1320 | // Only get deleted shares |
||
| 1321 | $shares = array_filter($shares, function(IShare $share) { |
||
| 1322 | return $share->getPermissions() === 0; |
||
| 1323 | }); |
||
| 1324 | |||
| 1325 | // Only get shares where the owner still exists |
||
| 1326 | $shares = array_filter($shares, function (IShare $share) { |
||
| 1327 | return $this->userManager->userExists($share->getShareOwner()); |
||
| 1328 | }); |
||
| 1329 | |||
| 1330 | return $shares; |
||
| 1331 | } |
||
| 1332 | |||
| 1333 | /** |
||
| 1334 | * @inheritdoc |
||
| 1335 | */ |
||
| 1336 | public function getShareById($id, $recipient = null) { |
||
| 1337 | if ($id === null) { |
||
| 1338 | throw new ShareNotFound(); |
||
| 1339 | } |
||
| 1340 | |||
| 1341 | list($providerId, $id) = $this->splitFullId($id); |
||
| 1342 | |||
| 1343 | try { |
||
| 1344 | $provider = $this->factory->getProvider($providerId); |
||
| 1345 | } catch (ProviderException $e) { |
||
| 1346 | throw new ShareNotFound(); |
||
| 1347 | } |
||
| 1348 | |||
| 1349 | $share = $provider->getShareById($id, $recipient); |
||
| 1350 | |||
| 1351 | $this->checkExpireDate($share); |
||
| 1352 | |||
| 1353 | return $share; |
||
| 1354 | } |
||
| 1355 | |||
| 1356 | /** |
||
| 1357 | * Get all the shares for a given path |
||
| 1358 | * |
||
| 1359 | * @param \OCP\Files\Node $path |
||
| 1360 | * @param int $page |
||
| 1361 | * @param int $perPage |
||
| 1362 | * |
||
| 1363 | * @return Share[] |
||
| 1364 | */ |
||
| 1365 | public function getSharesByPath(\OCP\Files\Node $path, $page=0, $perPage=50) { |
||
| 1367 | } |
||
| 1368 | |||
| 1369 | /** |
||
| 1370 | * Get the share by token possible with password |
||
| 1371 | * |
||
| 1372 | * @param string $token |
||
| 1373 | * @return Share |
||
| 1374 | * |
||
| 1375 | * @throws ShareNotFound |
||
| 1376 | */ |
||
| 1377 | public function getShareByToken($token) { |
||
| 1378 | // tokens can't be valid local user names |
||
| 1379 | if ($this->userManager->userExists($token)) { |
||
| 1380 | throw new ShareNotFound(); |
||
| 1381 | } |
||
| 1382 | $share = null; |
||
| 1383 | try { |
||
| 1384 | if($this->shareApiAllowLinks()) { |
||
| 1385 | $provider = $this->factory->getProviderForType(\OCP\Share::SHARE_TYPE_LINK); |
||
| 1386 | $share = $provider->getShareByToken($token); |
||
| 1387 | } |
||
| 1388 | } catch (ProviderException $e) { |
||
| 1389 | } catch (ShareNotFound $e) { |
||
| 1390 | } |
||
| 1391 | |||
| 1392 | |||
| 1393 | // If it is not a link share try to fetch a federated share by token |
||
| 1394 | if ($share === null) { |
||
| 1395 | try { |
||
| 1396 | $provider = $this->factory->getProviderForType(\OCP\Share::SHARE_TYPE_REMOTE); |
||
| 1397 | $share = $provider->getShareByToken($token); |
||
| 1398 | } catch (ProviderException $e) { |
||
| 1399 | } catch (ShareNotFound $e) { |
||
| 1400 | } |
||
| 1401 | } |
||
| 1402 | |||
| 1403 | // If it is not a link share try to fetch a mail share by token |
||
| 1404 | if ($share === null && $this->shareProviderExists(\OCP\Share::SHARE_TYPE_EMAIL)) { |
||
| 1405 | try { |
||
| 1406 | $provider = $this->factory->getProviderForType(\OCP\Share::SHARE_TYPE_EMAIL); |
||
| 1407 | $share = $provider->getShareByToken($token); |
||
| 1408 | } catch (ProviderException $e) { |
||
| 1409 | } catch (ShareNotFound $e) { |
||
| 1410 | } |
||
| 1411 | } |
||
| 1412 | |||
| 1413 | if ($share === null && $this->shareProviderExists(\OCP\Share::SHARE_TYPE_CIRCLE)) { |
||
| 1414 | try { |
||
| 1415 | $provider = $this->factory->getProviderForType(\OCP\Share::SHARE_TYPE_CIRCLE); |
||
| 1416 | $share = $provider->getShareByToken($token); |
||
| 1417 | } catch (ProviderException $e) { |
||
| 1418 | } catch (ShareNotFound $e) { |
||
| 1419 | } |
||
| 1420 | } |
||
| 1421 | |||
| 1422 | if ($share === null && $this->shareProviderExists(\OCP\Share::SHARE_TYPE_ROOM)) { |
||
| 1423 | try { |
||
| 1424 | $provider = $this->factory->getProviderForType(\OCP\Share::SHARE_TYPE_ROOM); |
||
| 1425 | $share = $provider->getShareByToken($token); |
||
| 1426 | } catch (ProviderException $e) { |
||
| 1427 | } catch (ShareNotFound $e) { |
||
| 1428 | } |
||
| 1429 | } |
||
| 1430 | |||
| 1431 | if ($share === null) { |
||
| 1432 | throw new ShareNotFound($this->l->t('The requested share does not exist anymore')); |
||
| 1433 | } |
||
| 1434 | |||
| 1435 | $this->checkExpireDate($share); |
||
| 1436 | |||
| 1437 | /* |
||
| 1438 | * Reduce the permissions for link shares if public upload is not enabled |
||
| 1439 | */ |
||
| 1440 | if ($share->getShareType() === \OCP\Share::SHARE_TYPE_LINK && |
||
| 1441 | !$this->shareApiLinkAllowPublicUpload()) { |
||
| 1442 | $share->setPermissions($share->getPermissions() & ~(\OCP\Constants::PERMISSION_CREATE | \OCP\Constants::PERMISSION_UPDATE)); |
||
| 1443 | } |
||
| 1444 | |||
| 1445 | return $share; |
||
| 1446 | } |
||
| 1447 | |||
| 1448 | protected function checkExpireDate($share) { |
||
| 1449 | if ($share->isExpired()) { |
||
| 1450 | $this->deleteShare($share); |
||
| 1451 | throw new ShareNotFound($this->l->t('The requested share does not exist anymore')); |
||
| 1452 | } |
||
| 1453 | |||
| 1454 | } |
||
| 1455 | |||
| 1456 | /** |
||
| 1457 | * Verify the password of a public share |
||
| 1458 | * |
||
| 1459 | * @param \OCP\Share\IShare $share |
||
| 1460 | * @param string $password |
||
| 1461 | * @return bool |
||
| 1462 | */ |
||
| 1463 | public function checkPassword(\OCP\Share\IShare $share, $password) { |
||
| 1464 | $passwordProtected = $share->getShareType() !== IShare::TYPE_LINK |
||
| 1465 | || $share->getShareType() !== IShare::TYPE_EMAIL |
||
| 1466 | || $share->getShareType() !== IShare::TYPE_CIRCLE; |
||
| 1467 | if (!$passwordProtected) { |
||
| 1468 | //TODO maybe exception? |
||
| 1469 | return false; |
||
| 1470 | } |
||
| 1471 | |||
| 1472 | if ($password === null || $share->getPassword() === null) { |
||
| 1473 | return false; |
||
| 1474 | } |
||
| 1475 | |||
| 1476 | $newHash = ''; |
||
| 1477 | if (!$this->hasher->verify($password, $share->getPassword(), $newHash)) { |
||
| 1478 | return false; |
||
| 1479 | } |
||
| 1480 | |||
| 1481 | if (!empty($newHash)) { |
||
| 1482 | $share->setPassword($newHash); |
||
| 1483 | $provider = $this->factory->getProviderForType($share->getShareType()); |
||
| 1484 | $provider->update($share); |
||
| 1485 | } |
||
| 1486 | |||
| 1487 | return true; |
||
| 1488 | } |
||
| 1489 | |||
| 1490 | /** |
||
| 1491 | * @inheritdoc |
||
| 1492 | */ |
||
| 1493 | public function userDeleted($uid) { |
||
| 1494 | $types = [\OCP\Share::SHARE_TYPE_USER, \OCP\Share::SHARE_TYPE_GROUP, \OCP\Share::SHARE_TYPE_LINK, \OCP\Share::SHARE_TYPE_REMOTE, \OCP\Share::SHARE_TYPE_EMAIL]; |
||
| 1495 | |||
| 1496 | foreach ($types as $type) { |
||
| 1497 | try { |
||
| 1498 | $provider = $this->factory->getProviderForType($type); |
||
| 1499 | } catch (ProviderException $e) { |
||
| 1500 | continue; |
||
| 1501 | } |
||
| 1502 | $provider->userDeleted($uid, $type); |
||
| 1503 | } |
||
| 1504 | } |
||
| 1505 | |||
| 1506 | /** |
||
| 1507 | * @inheritdoc |
||
| 1508 | */ |
||
| 1509 | public function groupDeleted($gid) { |
||
| 1510 | $provider = $this->factory->getProviderForType(\OCP\Share::SHARE_TYPE_GROUP); |
||
| 1511 | $provider->groupDeleted($gid); |
||
| 1512 | } |
||
| 1513 | |||
| 1514 | /** |
||
| 1515 | * @inheritdoc |
||
| 1516 | */ |
||
| 1517 | public function userDeletedFromGroup($uid, $gid) { |
||
| 1518 | $provider = $this->factory->getProviderForType(\OCP\Share::SHARE_TYPE_GROUP); |
||
| 1519 | $provider->userDeletedFromGroup($uid, $gid); |
||
| 1520 | } |
||
| 1521 | |||
| 1522 | /** |
||
| 1523 | * Get access list to a path. This means |
||
| 1524 | * all the users that can access a given path. |
||
| 1525 | * |
||
| 1526 | * Consider: |
||
| 1527 | * -root |
||
| 1528 | * |-folder1 (23) |
||
| 1529 | * |-folder2 (32) |
||
| 1530 | * |-fileA (42) |
||
| 1531 | * |
||
| 1532 | * fileA is shared with user1 and user1@server1 |
||
| 1533 | * folder2 is shared with group2 (user4 is a member of group2) |
||
| 1534 | * folder1 is shared with user2 (renamed to "folder (1)") and user2@server2 |
||
| 1535 | * |
||
| 1536 | * Then the access list to '/folder1/folder2/fileA' with $currentAccess is: |
||
| 1537 | * [ |
||
| 1538 | * users => [ |
||
| 1539 | * 'user1' => ['node_id' => 42, 'node_path' => '/fileA'], |
||
| 1540 | * 'user4' => ['node_id' => 32, 'node_path' => '/folder2'], |
||
| 1541 | * 'user2' => ['node_id' => 23, 'node_path' => '/folder (1)'], |
||
| 1542 | * ], |
||
| 1543 | * remote => [ |
||
| 1544 | * 'user1@server1' => ['node_id' => 42, 'token' => 'SeCr3t'], |
||
| 1545 | * 'user2@server2' => ['node_id' => 23, 'token' => 'FooBaR'], |
||
| 1546 | * ], |
||
| 1547 | * public => bool |
||
| 1548 | * mail => bool |
||
| 1549 | * ] |
||
| 1550 | * |
||
| 1551 | * The access list to '/folder1/folder2/fileA' **without** $currentAccess is: |
||
| 1552 | * [ |
||
| 1553 | * users => ['user1', 'user2', 'user4'], |
||
| 1554 | * remote => bool, |
||
| 1555 | * public => bool |
||
| 1556 | * mail => bool |
||
| 1557 | * ] |
||
| 1558 | * |
||
| 1559 | * This is required for encryption/activity |
||
| 1560 | * |
||
| 1561 | * @param \OCP\Files\Node $path |
||
| 1562 | * @param bool $recursive Should we check all parent folders as well |
||
| 1563 | * @param bool $currentAccess Ensure the recipient has access to the file (e.g. did not unshare it) |
||
| 1564 | * @return array |
||
| 1565 | */ |
||
| 1566 | public function getAccessList(\OCP\Files\Node $path, $recursive = true, $currentAccess = false) { |
||
| 1567 | $owner = $path->getOwner(); |
||
| 1568 | |||
| 1569 | if ($owner === null) { |
||
| 1570 | return []; |
||
| 1571 | } |
||
| 1572 | |||
| 1573 | $owner = $owner->getUID(); |
||
| 1574 | |||
| 1575 | if ($currentAccess) { |
||
| 1576 | $al = ['users' => [], 'remote' => [], 'public' => false]; |
||
| 1577 | } else { |
||
| 1578 | $al = ['users' => [], 'remote' => false, 'public' => false]; |
||
| 1579 | } |
||
| 1580 | if (!$this->userManager->userExists($owner)) { |
||
| 1581 | return $al; |
||
| 1582 | } |
||
| 1583 | |||
| 1584 | //Get node for the owner and correct the owner in case of external storages |
||
| 1585 | $userFolder = $this->rootFolder->getUserFolder($owner); |
||
| 1586 | if ($path->getId() !== $userFolder->getId() && !$userFolder->isSubNode($path)) { |
||
| 1587 | $nodes = $userFolder->getById($path->getId()); |
||
| 1588 | $path = array_shift($nodes); |
||
| 1589 | if ($path->getOwner() === null) { |
||
| 1590 | return []; |
||
| 1591 | } |
||
| 1592 | $owner = $path->getOwner()->getUID(); |
||
| 1593 | } |
||
| 1594 | |||
| 1595 | $providers = $this->factory->getAllProviders(); |
||
| 1596 | |||
| 1597 | /** @var Node[] $nodes */ |
||
| 1598 | $nodes = []; |
||
| 1599 | |||
| 1600 | |||
| 1601 | if ($currentAccess) { |
||
| 1602 | $ownerPath = $path->getPath(); |
||
| 1603 | $ownerPath = explode('/', $ownerPath, 4); |
||
| 1604 | if (count($ownerPath) < 4) { |
||
| 1605 | $ownerPath = ''; |
||
| 1606 | } else { |
||
| 1607 | $ownerPath = $ownerPath[3]; |
||
| 1608 | } |
||
| 1609 | $al['users'][$owner] = [ |
||
| 1610 | 'node_id' => $path->getId(), |
||
| 1611 | 'node_path' => '/' . $ownerPath, |
||
| 1612 | ]; |
||
| 1613 | } else { |
||
| 1614 | $al['users'][] = $owner; |
||
| 1615 | } |
||
| 1616 | |||
| 1617 | // Collect all the shares |
||
| 1618 | while ($path->getPath() !== $userFolder->getPath()) { |
||
| 1619 | $nodes[] = $path; |
||
| 1620 | if (!$recursive) { |
||
| 1621 | break; |
||
| 1622 | } |
||
| 1623 | $path = $path->getParent(); |
||
| 1624 | } |
||
| 1625 | |||
| 1626 | foreach ($providers as $provider) { |
||
| 1627 | $tmp = $provider->getAccessList($nodes, $currentAccess); |
||
| 1628 | |||
| 1629 | foreach ($tmp as $k => $v) { |
||
| 1630 | if (isset($al[$k])) { |
||
| 1631 | if (is_array($al[$k])) { |
||
| 1632 | if ($currentAccess) { |
||
| 1633 | $al[$k] += $v; |
||
| 1634 | } else { |
||
| 1635 | $al[$k] = array_merge($al[$k], $v); |
||
| 1636 | $al[$k] = array_unique($al[$k]); |
||
| 1637 | $al[$k] = array_values($al[$k]); |
||
| 1638 | } |
||
| 1639 | } else { |
||
| 1640 | $al[$k] = $al[$k] || $v; |
||
| 1641 | } |
||
| 1642 | } else { |
||
| 1643 | $al[$k] = $v; |
||
| 1644 | } |
||
| 1645 | } |
||
| 1646 | } |
||
| 1647 | |||
| 1648 | return $al; |
||
| 1649 | } |
||
| 1650 | |||
| 1651 | /** |
||
| 1652 | * Create a new share |
||
| 1653 | * @return \OCP\Share\IShare |
||
| 1654 | */ |
||
| 1655 | public function newShare() { |
||
| 1656 | return new \OC\Share20\Share($this->rootFolder, $this->userManager); |
||
| 1657 | } |
||
| 1658 | |||
| 1659 | /** |
||
| 1660 | * Is the share API enabled |
||
| 1661 | * |
||
| 1662 | * @return bool |
||
| 1663 | */ |
||
| 1664 | public function shareApiEnabled() { |
||
| 1666 | } |
||
| 1667 | |||
| 1668 | /** |
||
| 1669 | * Is public link sharing enabled |
||
| 1670 | * |
||
| 1671 | * @return bool |
||
| 1672 | */ |
||
| 1673 | public function shareApiAllowLinks() { |
||
| 1675 | } |
||
| 1676 | |||
| 1677 | /** |
||
| 1678 | * Is password on public link requires |
||
| 1679 | * |
||
| 1680 | * @return bool |
||
| 1681 | */ |
||
| 1682 | public function shareApiLinkEnforcePassword() { |
||
| 1684 | } |
||
| 1685 | |||
| 1686 | /** |
||
| 1687 | * Is default link expire date enabled |
||
| 1688 | * |
||
| 1689 | * @return bool |
||
| 1690 | */ |
||
| 1691 | public function shareApiLinkDefaultExpireDate() { |
||
| 1692 | return $this->config->getAppValue('core', 'shareapi_default_expire_date', 'no') === 'yes'; |
||
| 1693 | } |
||
| 1694 | |||
| 1695 | /** |
||
| 1696 | * Is default link expire date enforced |
||
| 1697 | *` |
||
| 1698 | * @return bool |
||
| 1699 | */ |
||
| 1700 | public function shareApiLinkDefaultExpireDateEnforced() { |
||
| 1701 | return $this->shareApiLinkDefaultExpireDate() && |
||
| 1702 | $this->config->getAppValue('core', 'shareapi_enforce_expire_date', 'no') === 'yes'; |
||
| 1703 | } |
||
| 1704 | |||
| 1705 | |||
| 1706 | /** |
||
| 1707 | * Number of default link expire days |
||
| 1708 | * @return int |
||
| 1709 | */ |
||
| 1710 | public function shareApiLinkDefaultExpireDays() { |
||
| 1711 | return (int)$this->config->getAppValue('core', 'shareapi_expire_after_n_days', '7'); |
||
| 1712 | } |
||
| 1713 | |||
| 1714 | /** |
||
| 1715 | * Is default internal expire date enabled |
||
| 1716 | * |
||
| 1717 | * @return bool |
||
| 1718 | */ |
||
| 1719 | public function shareApiInternalDefaultExpireDate(): bool { |
||
| 1720 | return $this->config->getAppValue('core', 'shareapi_default_internal_expire_date', 'no') === 'yes'; |
||
| 1721 | } |
||
| 1722 | |||
| 1723 | /** |
||
| 1724 | * Is default expire date enforced |
||
| 1725 | *` |
||
| 1726 | * @return bool |
||
| 1727 | */ |
||
| 1728 | public function shareApiInternalDefaultExpireDateEnforced(): bool { |
||
| 1729 | return $this->shareApiInternalDefaultExpireDate() && |
||
| 1730 | $this->config->getAppValue('core', 'shareapi_enforce_internal_expire_date', 'no') === 'yes'; |
||
| 1731 | } |
||
| 1732 | |||
| 1733 | |||
| 1734 | /** |
||
| 1735 | * Number of default expire days |
||
| 1736 | * @return int |
||
| 1737 | */ |
||
| 1738 | public function shareApiInternalDefaultExpireDays(): int { |
||
| 1739 | return (int)$this->config->getAppValue('core', 'shareapi_internal_expire_after_n_days', '7'); |
||
| 1740 | } |
||
| 1741 | |||
| 1742 | /** |
||
| 1743 | * Allow public upload on link shares |
||
| 1744 | * |
||
| 1745 | * @return bool |
||
| 1746 | */ |
||
| 1747 | public function shareApiLinkAllowPublicUpload() { |
||
| 1749 | } |
||
| 1750 | |||
| 1751 | /** |
||
| 1752 | * check if user can only share with group members |
||
| 1753 | * @return bool |
||
| 1754 | */ |
||
| 1755 | public function shareWithGroupMembersOnly() { |
||
| 1756 | return $this->config->getAppValue('core', 'shareapi_only_share_with_group_members', 'no') === 'yes'; |
||
| 1757 | } |
||
| 1758 | |||
| 1759 | /** |
||
| 1760 | * Check if users can share with groups |
||
| 1761 | * @return bool |
||
| 1762 | */ |
||
| 1763 | public function allowGroupSharing() { |
||
| 1765 | } |
||
| 1766 | |||
| 1767 | public function allowEnumeration(): bool { |
||
| 1768 | return $this->config->getAppValue('core', 'shareapi_allow_share_dialog_user_enumeration', 'yes') === 'yes'; |
||
| 1769 | } |
||
| 1770 | |||
| 1771 | public function limitEnumerationToGroups(): bool { |
||
| 1772 | return $this->allowEnumeration() && |
||
| 1773 | $this->config->getAppValue('core', 'shareapi_restrict_user_enumeration_to_group', 'no') === 'yes'; |
||
| 1774 | } |
||
| 1775 | |||
| 1776 | /** |
||
| 1777 | * Copied from \OC_Util::isSharingDisabledForUser |
||
| 1778 | * |
||
| 1779 | * TODO: Deprecate fuction from OC_Util |
||
| 1780 | * |
||
| 1781 | * @param string $userId |
||
| 1782 | * @return bool |
||
| 1783 | */ |
||
| 1784 | public function sharingDisabledForUser($userId) { |
||
| 1785 | if ($userId === null) { |
||
| 1786 | return false; |
||
| 1787 | } |
||
| 1788 | |||
| 1789 | if (isset($this->sharingDisabledForUsersCache[$userId])) { |
||
| 1790 | return $this->sharingDisabledForUsersCache[$userId]; |
||
| 1791 | } |
||
| 1792 | |||
| 1793 | if ($this->config->getAppValue('core', 'shareapi_exclude_groups', 'no') === 'yes') { |
||
| 1794 | $groupsList = $this->config->getAppValue('core', 'shareapi_exclude_groups_list', ''); |
||
| 1795 | $excludedGroups = json_decode($groupsList); |
||
| 1796 | if (is_null($excludedGroups)) { |
||
| 1797 | $excludedGroups = explode(',', $groupsList); |
||
| 1798 | $newValue = json_encode($excludedGroups); |
||
| 1799 | $this->config->setAppValue('core', 'shareapi_exclude_groups_list', $newValue); |
||
| 1800 | } |
||
| 1801 | $user = $this->userManager->get($userId); |
||
| 1802 | $usersGroups = $this->groupManager->getUserGroupIds($user); |
||
| 1803 | if (!empty($usersGroups)) { |
||
| 1804 | $remainingGroups = array_diff($usersGroups, $excludedGroups); |
||
| 1805 | // if the user is only in groups which are disabled for sharing then |
||
| 1806 | // sharing is also disabled for the user |
||
| 1807 | if (empty($remainingGroups)) { |
||
| 1808 | $this->sharingDisabledForUsersCache[$userId] = true; |
||
| 1809 | return true; |
||
| 1810 | } |
||
| 1811 | } |
||
| 1812 | } |
||
| 1813 | |||
| 1814 | $this->sharingDisabledForUsersCache[$userId] = false; |
||
| 1815 | return false; |
||
| 1816 | } |
||
| 1817 | |||
| 1818 | /** |
||
| 1819 | * @inheritdoc |
||
| 1820 | */ |
||
| 1821 | public function outgoingServer2ServerSharesAllowed() { |
||
| 1823 | } |
||
| 1824 | |||
| 1825 | /** |
||
| 1826 | * @inheritdoc |
||
| 1827 | */ |
||
| 1828 | public function outgoingServer2ServerGroupSharesAllowed() { |
||
| 1829 | return $this->config->getAppValue('files_sharing', 'outgoing_server2server_group_share_enabled', 'no') === 'yes'; |
||
| 1830 | } |
||
| 1831 | |||
| 1832 | /** |
||
| 1833 | * @inheritdoc |
||
| 1834 | */ |
||
| 1835 | public function shareProviderExists($shareType) { |
||
| 1843 | } |
||
| 1844 | |||
| 1845 | public function getAllShares(): iterable { |
||
| 1850 | } |
||
| 1851 | } |
||
| 1852 | } |
||
| 1853 |
Let?s assume that you have a directory layout like this:
. |-- OtherDir | |-- Bar.php | `-- Foo.php `-- SomeDir `-- Foo.phpand let?s assume the following content of
Bar.php:If both files
OtherDir/Foo.phpandSomeDir/Foo.phpare loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.phpHowever, as
OtherDir/Foo.phpdoes not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: