Skip to content

Commit

Permalink
fix shared mount roots not being returned from getSharesInFolder
Browse files Browse the repository at this point in the history
Signed-off-by: Robin Appelman <robin@icewind.nl>
  • Loading branch information
icewind1991 committed Mar 17, 2022
1 parent bf48c0b commit b140451
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion lib/private/Share20/DefaultShareProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -670,8 +670,21 @@ public function getSharesInFolder($userId, Folder $node, $reshares) {
);
}

// todo? maybe get these from the oc_mounts table
$childMountNodes = array_filter($node->getDirectoryListing(), function(Node $node) {
return $node->getInternalPath() === '';
});
$childMountRootIds = array_map(function(Node $node) {
return $node->getId();
}, $childMountNodes);

$qb->innerJoin('s', 'filecache', 'f', $qb->expr()->eq('s.file_source', 'f.fileid'));
$qb->andWhere($qb->expr()->eq('f.parent', $qb->createNamedParameter($node->getId())));
$qb->andWhere(
$qb->expr()->orX(
$qb->expr()->eq('f.parent', $qb->createNamedParameter($node->getId())),
$qb->expr()->in('f.fileid', $qb->createNamedParameter($childMountRootIds, IQueryBuilder::PARAM_INT_ARRAY))
)
);

$qb->orderBy('id');

Expand Down

0 comments on commit b140451

Please sign in to comment.