123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-only
- */
- namespace OCA\DAV\Connector\Sabre;
- use OC\Share20\Exception\BackendError;
- use OCA\DAV\Connector\Sabre\Node as DavNode;
- use OCP\Files\Folder;
- use OCP\Files\Node;
- use OCP\Files\NotFoundException;
- use OCP\IUserSession;
- use OCP\Share\IManager;
- use OCP\Share\IShare;
- use Sabre\DAV\PropFind;
- use Sabre\DAV\Server;
- use Sabre\DAV\Tree;
- /**
- * Sabre Plugin to provide share-related properties
- */
- class SharesPlugin extends \Sabre\DAV\ServerPlugin {
- public const NS_OWNCLOUD = 'http://owncloud.org/ns';
- public const NS_NEXTCLOUD = 'http://nextcloud.org/ns';
- public const SHARETYPES_PROPERTYNAME = '{http://owncloud.org/ns}share-types';
- public const SHAREES_PROPERTYNAME = '{http://nextcloud.org/ns}sharees';
- /**
- * Reference to main server object
- *
- * @var \Sabre\DAV\Server
- */
- private $server;
- private string $userId;
- /** @var IShare[][] */
- private array $cachedShares = [];
- /** @var string[] */
- private array $cachedFolders = [];
- public function __construct(
- private Tree $tree,
- private IUserSession $userSession,
- private Folder $userFolder,
- private IManager $shareManager,
- ) {
- $this->userId = $userSession->getUser()->getUID();
- }
- /**
- * This initializes the plugin.
- *
- * This function is called by \Sabre\DAV\Server, after
- * addPlugin is called.
- *
- * This method should set up the required event subscriptions.
- *
- * @return void
- */
- public function initialize(Server $server) {
- $server->xml->namespaceMap[self::NS_OWNCLOUD] = 'oc';
- $server->xml->elementMap[self::SHARETYPES_PROPERTYNAME] = ShareTypeList::class;
- $server->protectedProperties[] = self::SHARETYPES_PROPERTYNAME;
- $server->protectedProperties[] = self::SHAREES_PROPERTYNAME;
- $this->server = $server;
- $this->server->on('propFind', [$this, 'handleGetProperties']);
- }
- /**
- * @param Node $node
- * @return IShare[]
- */
- private function getShare(Node $node): array {
- $result = [];
- $requestedShareTypes = [
- IShare::TYPE_USER,
- IShare::TYPE_GROUP,
- IShare::TYPE_LINK,
- IShare::TYPE_REMOTE,
- IShare::TYPE_EMAIL,
- IShare::TYPE_ROOM,
- IShare::TYPE_CIRCLE,
- IShare::TYPE_DECK,
- IShare::TYPE_SCIENCEMESH,
- ];
- foreach ($requestedShareTypes as $requestedShareType) {
- $result = array_merge($result, $this->shareManager->getSharesBy(
- $this->userId,
- $requestedShareType,
- $node,
- false,
- -1
- ));
- // Also check for shares where the user is the recipient
- try {
- $result = array_merge($result, $this->shareManager->getSharedWith(
- $this->userId,
- $requestedShareType,
- $node,
- -1
- ));
- } catch (BackendError $e) {
- // ignore
- }
- }
- return $result;
- }
- /**
- * @param Folder $node
- * @return IShare[][]
- */
- private function getSharesFolder(Folder $node): array {
- return $this->shareManager->getSharesInFolder(
- $this->userId,
- $node,
- true
- );
- }
- /**
- * @param DavNode $sabreNode
- * @return IShare[]
- */
- private function getShares(DavNode $sabreNode): array {
- if (isset($this->cachedShares[$sabreNode->getId()])) {
- return $this->cachedShares[$sabreNode->getId()];
- }
- [$parentPath,] = \Sabre\Uri\split($sabreNode->getPath());
- if ($parentPath === '') {
- $parentPath = '/';
- }
- // if we already cached the folder containing this file
- // then we already know there are no shares here.
- if (array_search($parentPath, $this->cachedFolders) === false) {
- try {
- $node = $sabreNode->getNode();
- } catch (NotFoundException $e) {
- return [];
- }
- $shares = $this->getShare($node);
- $this->cachedShares[$sabreNode->getId()] = $shares;
- return $shares;
- }
- return [];
- }
- /**
- * Adds shares to propfind response
- *
- * @param PropFind $propFind propfind object
- * @param \Sabre\DAV\INode $sabreNode sabre node
- */
- public function handleGetProperties(
- PropFind $propFind,
- \Sabre\DAV\INode $sabreNode,
- ) {
- if (!($sabreNode instanceof DavNode)) {
- return;
- }
- // If the node is a directory and we are requesting share types or sharees
- // then we get all the shares in the folder and cache them.
- // This is more performant than iterating each files afterwards.
- if ($sabreNode instanceof Directory
- && $propFind->getDepth() !== 0
- && (
- !is_null($propFind->getStatus(self::SHARETYPES_PROPERTYNAME)) ||
- !is_null($propFind->getStatus(self::SHAREES_PROPERTYNAME))
- )
- ) {
- $folderNode = $sabreNode->getNode();
- $this->cachedFolders[] = $sabreNode->getPath();
- $childShares = $this->getSharesFolder($folderNode);
- foreach ($childShares as $id => $shares) {
- $this->cachedShares[$id] = $shares;
- }
- }
- $propFind->handle(self::SHARETYPES_PROPERTYNAME, function () use ($sabreNode): ShareTypeList {
- $shares = $this->getShares($sabreNode);
- $shareTypes = array_unique(array_map(function (IShare $share) {
- return $share->getShareType();
- }, $shares));
- return new ShareTypeList($shareTypes);
- });
- $propFind->handle(self::SHAREES_PROPERTYNAME, function () use ($sabreNode): ShareeList {
- $shares = $this->getShares($sabreNode);
- return new ShareeList($shares);
- });
- }
- }
|