summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2019-05-28 18:15:52 +0200
committerRobin Appelman <robin@icewind.nl>2019-05-28 20:03:45 +0200
commit98dd526010c4ccc66ac69cf90bc300984fb8f2de (patch)
tree3f41213aa1cd3a9c76173a906a3a5e1f2f6112d5 /lib
parent96e892770d0b37fab66f8b92c10866fadccf98c5 (diff)
downloadnextcloud-server-98dd526010c4ccc66ac69cf90bc300984fb8f2de.tar.gz
nextcloud-server-98dd526010c4ccc66ac69cf90bc300984fb8f2de.zip
search files by id in shared storages last
this prevents unneeded recursion when the file is not in the share Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Files/View.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/private/Files/View.php b/lib/private/Files/View.php
index fa531707648..fef6153fb9a 100644
--- a/lib/private/Files/View.php
+++ b/lib/private/Files/View.php
@@ -49,6 +49,7 @@ use Icewind\Streams\CallbackWrapper;
use OC\Files\Mount\MoveableMount;
use OC\Files\Storage\Storage;
use OC\User\User;
+use OCA\Files_Sharing\SharedMount;
use OCP\Constants;
use OCP\Files\Cache\ICacheEntry;
use OCP\Files\EmptyFileNameException;
@@ -1718,6 +1719,13 @@ class View {
// reverse the array so we start with the storage this view is in
// which is the most likely to contain the file we're looking for
$mounts = array_reverse($mounts);
+
+ // put non shared mounts in front of the shared mount
+ // this prevent unneeded recursion into shares
+ usort($mounts, function(IMountPoint $a, IMountPoint $b) {
+ return $a instanceof SharedMount && (!$b instanceof SharedMount) ? 1 : -1;
+ });
+
foreach ($mounts as $mount) {
/**
* @var \OC\Files\Mount\MountPoint $mount