Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/Files
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2018-10-05 21:41:47 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2018-11-29 20:35:21 +0300
commit19e166191ba58a6d0919f81ef491eecc867458f8 (patch)
treee1594a95cf042260dc76cba24d940e8606874a01 /lib/Files
parentbe97a530e1f59ba371006c62c71d04b7cedd0b47 (diff)
Add end point to get the token of a room associated with a file
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'lib/Files')
-rw-r--r--lib/Files/Util.php140
1 files changed, 140 insertions, 0 deletions
diff --git a/lib/Files/Util.php b/lib/Files/Util.php
new file mode 100644
index 000000000..5e2f2b90e
--- /dev/null
+++ b/lib/Files/Util.php
@@ -0,0 +1,140 @@
+<?php
+declare(strict_types=1);
+
+/**
+ *
+ * @copyright Copyright (c) 2018, Daniel Calviño Sánchez (danxuliu@gmail.com)
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace OCA\Spreed\Files;
+
+use OCP\Files\IRootFolder;
+use OCP\Files\Node;
+use OCP\Share\IManager as IShareManager;
+use OCP\Share\IShare;
+
+class Util {
+
+ /** @var IRootFolder */
+ private $rootFolder;
+ /** @var IShareManager */
+ private $shareManager;
+
+ /**
+ * @param IRootFolder $rootFolder
+ * @param IShareManager $shareManager
+ */
+ public function __construct(
+ IRootFolder $rootFolder,
+ IShareManager $shareManager
+ ) {
+ $this->rootFolder = $rootFolder;
+ $this->shareManager = $shareManager;
+ }
+
+ /**
+ * Returns any share of the file that the user has direct access to.
+ *
+ * A user has direct access to a share and, thus, to a file, if she received
+ * the file through a user, group, circle or room share (but not through a
+ * public link, for example), or if she is the owner of such a share.
+ *
+ * @param string $fileId
+ * @param string $userId
+ * @return IShare|null
+ */
+ public function getAnyDirectShareOfFileAccessibleByUser(string $fileId, string $userId) {
+ $userFolder = $this->rootFolder->getUserFolder($userId);
+ $fileById = $userFolder->getById($fileId);
+ if (empty($fileById)) {
+ return null;
+ }
+
+ foreach ($fileById as $node) {
+ $share = $this->getAnyDirectShareOfNodeAccessibleByUser($node, $userId);
+ if ($share) {
+ return $share;
+ }
+ }
+
+ return null;
+ }
+
+ /**
+ * Returns any share of the node that the user has direct access to.
+ *
+ * @param Node $node
+ * @param string $userId
+ * @return IShare|null
+ */
+ private function getAnyDirectShareOfNodeAccessibleByUser(Node $node, string $userId) {
+ $reshares = false;
+ $limit = 1;
+
+ $shares = $this->shareManager->getSharesBy($userId, \OCP\Share::SHARE_TYPE_USER, $node, $reshares, $limit);
+ if (\count($shares) > 0) {
+ return $shares[0];
+ }
+
+ $shares = $this->shareManager->getSharesBy($userId, \OCP\Share::SHARE_TYPE_GROUP, $node, $reshares, $limit);
+ if (\count($shares) > 0) {
+ return $shares[0];
+ }
+
+ $shares = $this->shareManager->getSharesBy($userId, \OCP\Share::SHARE_TYPE_CIRCLE, $node, $reshares, $limit);
+ if (\count($shares) > 0) {
+ return $shares[0];
+ }
+
+ $shares = $this->shareManager->getSharesBy($userId, \OCP\Share::SHARE_TYPE_ROOM, $node, $reshares, $limit);
+ if (\count($shares) > 0) {
+ return $shares[0];
+ }
+
+ // If the node is not shared then there is no need for further checks.
+ // Note that "isShared()" returns false for owned shares, so the check
+ // can not be moved above.
+ if (!$node->isShared()) {
+ return null;
+ }
+
+ $shares = $this->shareManager->getSharedWith($userId, \OCP\Share::SHARE_TYPE_USER, $node, $limit);
+ if (\count($shares) > 0) {
+ return $shares[0];
+ }
+
+ $shares = $this->shareManager->getSharedWith($userId, \OCP\Share::SHARE_TYPE_GROUP, $node, $limit);
+ if (\count($shares) > 0) {
+ return $shares[0];
+ }
+
+ $shares = $this->shareManager->getSharedWith($userId, \OCP\Share::SHARE_TYPE_CIRCLE, $node, $limit);
+ if (\count($shares) > 0) {
+ return $shares[0];
+ }
+
+ $shares = $this->shareManager->getSharedWith($userId, \OCP\Share::SHARE_TYPE_ROOM, $node, $limit);
+ if (\count($shares) > 0) {
+ return $shares[0];
+ }
+
+ return null;
+ }
+
+}