aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Files/Config
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2022-03-14 15:08:24 +0100
committerRobin Appelman <robin@icewind.nl>2022-03-24 17:03:13 +0100
commitd342c764f2f45ec6bcd026482fc4c8f2242cb132 (patch)
treed2b5b74df22cd27c4e4421c249d9213890431ec1 /lib/private/Files/Config
parent6b085b6fd162aa288da17a27a553da34e1391412 (diff)
downloadnextcloud-server-d342c764f2f45ec6bcd026482fc4c8f2242cb132.tar.gz
nextcloud-server-d342c764f2f45ec6bcd026482fc4c8f2242cb132.zip
don't double setup provider when calling `setupForUser` after `setupForPath`
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files/Config')
-rw-r--r--lib/private/Files/Config/MountProviderCollection.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/private/Files/Config/MountProviderCollection.php b/lib/private/Files/Config/MountProviderCollection.php
index efbb54edba5..a3c20bdbfbb 100644
--- a/lib/private/Files/Config/MountProviderCollection.php
+++ b/lib/private/Files/Config/MountProviderCollection.php
@@ -104,14 +104,19 @@ class MountProviderCollection implements IMountProviderCollection, Emitter {
return $this->getMountsForFromProviders($user, $providers);
}
- public function addMountForUser(IUser $user, IMountManager $mountManager) {
+ public function addMountForUser(IUser $user, IMountManager $mountManager, callable $providerFilter = null) {
// 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) {
+ if ($providerFilter) {
+ $providers = array_filter($this->providers, $providerFilter);
+ } else {
+ $providers = $this->providers;
+ }
+ $firstProviders = array_filter($providers, function (IMountProvider $provider) {
return (get_class($provider) !== 'OCA\Files_Sharing\MountProvider');
});
- $lastProviders = array_filter($this->providers, function (IMountProvider $provider) {
+ $lastProviders = array_filter($providers, function (IMountProvider $provider) {
return (get_class($provider) === 'OCA\Files_Sharing\MountProvider');
});
foreach ($firstProviders as $provider) {