aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Files
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2017-02-15 15:00:21 +0100
committerRobin Appelman <robin@icewind.nl>2017-03-22 17:15:42 +0100
commit714f198a5ddf66a813c82d77f400f27d7deebe51 (patch)
tree40693444e848e3f90a321cb7bacbd890986964f0 /lib/private/Files
parent11c4875190aced582f23b2041664972a3769008f (diff)
downloadnextcloud-server-714f198a5ddf66a813c82d77f400f27d7deebe51.tar.gz
nextcloud-server-714f198a5ddf66a813c82d77f400f27d7deebe51.zip
mount shared mounts last
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files')
-rw-r--r--lib/private/Files/Config/MountProviderCollection.php33
-rw-r--r--lib/private/Files/Filesystem.php3
2 files changed, 34 insertions, 2 deletions
diff --git a/lib/private/Files/Config/MountProviderCollection.php b/lib/private/Files/Config/MountProviderCollection.php
index a09f246e6b3..f3252f0fd65 100644
--- a/lib/private/Files/Config/MountProviderCollection.php
+++ b/lib/private/Files/Config/MountProviderCollection.php
@@ -29,6 +29,7 @@ use OCP\Files\Config\IHomeMountProvider;
use OCP\Files\Config\IMountProviderCollection;
use OCP\Files\Config\IMountProvider;
use OCP\Files\Config\IUserMountCache;
+use OCP\Files\Mount\IMountManager;
use OCP\Files\Mount\IMountPoint;
use OCP\Files\Storage\IStorageFactory;
use OCP\IUser;
@@ -84,6 +85,37 @@ class MountProviderCollection implements IMountProviderCollection, Emitter {
}, array());
}
+ public function addMountForUser(IUser $user, IMountManager $mountManager) {
+ // shared mount provider gets to go last since it needs to know existing files
+ // to check for name collisions
+ $firstMounts = [];
+ $firstProviders = array_filter($this->providers, function (IMountProvider $provider) {
+ return (get_class($provider) !== 'OCA\Files_Sharing\MountProvider');
+ });
+ $lastProviders = array_filter($this->providers, function (IMountProvider $provider) {
+ return (get_class($provider) === 'OCA\Files_Sharing\MountProvider');
+ });
+ foreach ($firstProviders as $provider) {
+ $mounts = $provider->getMountsForUser($user, $this->loader);
+ if (is_array($mounts)) {
+ $firstMounts = array_merge($firstMounts, $mounts);
+ }
+ }
+ array_walk($firstMounts, [$mountManager, 'addMount']);
+
+ $lateMounts = [];
+ foreach ($lastProviders as $provider) {
+ $mounts = $provider->getMountsForUser($user, $this->loader);
+ if (is_array($mounts)) {
+ $lateMounts = array_merge($lateMounts, $mounts);
+ }
+ }
+
+ array_walk($lateMounts, [$mountManager, 'addMount']);
+
+ return array_merge($lateMounts, $firstMounts);
+ }
+
/**
* Get the configured home mount for this user
*
@@ -110,6 +142,7 @@ class MountProviderCollection implements IMountProviderCollection, Emitter {
*/
public function registerProvider(IMountProvider $provider) {
$this->providers[] = $provider;
+
$this->emit('\OC\Files\Config', 'registerMountProvider', [$provider]);
}
diff --git a/lib/private/Files/Filesystem.php b/lib/private/Files/Filesystem.php
index 51e494c372e..22b14e44074 100644
--- a/lib/private/Files/Filesystem.php
+++ b/lib/private/Files/Filesystem.php
@@ -443,8 +443,7 @@ class Filesystem {
// Chance to mount for other storages
if ($userObject) {
- $mounts = $mountConfigManager->getMountsForUser($userObject);
- array_walk($mounts, array(self::$mounts, 'addMount'));
+ $mounts = $mountConfigManager->addMountForUser($userObject, self::getMountManager());
$mounts[] = $homeMount;
$mountConfigManager->registerMounts($userObject, $mounts);
}