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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLouis Chemineau <louis@chmn.me>2022-04-27 14:17:22 +0300
committerLouis (Rebase PR Action) <artonge@users.noreply.github.com>2022-07-26 15:17:46 +0300
commit0fb4ecadae86a90bc05e16bdf5845a80e255c642 (patch)
treea984678b32f3fc4e2051036cea53a974f204f784 /lib
parentb513ac51fb8be581085ff7da51e4055b2d9e97ee (diff)
Recursively fetch subshares
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Share20/Manager.php18
-rw-r--r--lib/public/Share/IManager.php8
2 files changed, 26 insertions, 0 deletions
diff --git a/lib/private/Share20/Manager.php b/lib/private/Share20/Manager.php
index 905a006372f..fd1a27af8cf 100644
--- a/lib/private/Share20/Manager.php
+++ b/lib/private/Share20/Manager.php
@@ -1319,6 +1319,24 @@ class Manager implements IManager {
}, []);
}
+ public function getSharesInFolderRecursive(string $userId, Folder $node, $reshares = false) {
+ $shares = $this->getSharesInFolder($userId, $node, $reshares);
+
+ foreach ($node->getDirectoryListing() as $subnode) {
+ if (!$subnode instanceof Folder) {
+ continue;
+ }
+
+ $subShares = $this->getSharesInFolderRecursive($userId, $subnode, $reshares);
+
+ foreach ($subShares as $fileId => $subSharesForFile) {
+ $shares[$fileId] = array_merge($shares[$fileId] ?? [], $subSharesForFile);
+ }
+ }
+
+ return $shares;
+ }
+
/**
* @inheritdoc
*/
diff --git a/lib/public/Share/IManager.php b/lib/public/Share/IManager.php
index f207ca87a2c..b1c980733fb 100644
--- a/lib/public/Share/IManager.php
+++ b/lib/public/Share/IManager.php
@@ -141,6 +141,14 @@ interface IManager {
public function getSharesInFolder($userId, Folder $node, $reshares = false);
/**
+ * Recursively get all shares shared by (initiated) by the provided user in a folder.
+ *
+ * @return IShare[][] [$fileId => IShare[], ...]
+ * @since 11.0.0
+ */
+ public function getSharesInFolderRecursive(string $userId, Folder $node, bool $reshares = false);
+
+ /**
* Get shares shared by (initiated) by the provided user.
*
* @param string $userId