summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-03-22 13:12:54 -0600
committerGitHub <noreply@github.com>2017-03-22 13:12:54 -0600
commite25b997d0b484c4cb428f0928360c840d71b7882 (patch)
treeb12f0a68267f536546fd5660f88f2e8d30dd6c28 /lib
parent8b75e9b8a01f4dcd8404d1231f96461a4f405c67 (diff)
parent1e707ef1db10f3d399099ee4ab1ef10f0531eac5 (diff)
downloadnextcloud-server-e25b997d0b484c4cb428f0928360c840d71b7882.tar.gz
nextcloud-server-e25b997d0b484c4cb428f0928360c840d71b7882.zip
Merge pull request #3497 from nextcloud/mount-shared-last
mount shared mounts last
Diffstat (limited to 'lib')
-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);
}