aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2022-05-12 14:40:20 +0200
committerVincent Petry (Rebase PR Action) <PVince81@users.noreply.github.com>2022-06-10 15:40:22 +0000
commitce23dc3ae6a2bf390dac4f4080acb7b58c62db71 (patch)
treec76d8ef89ddc82758e6c6afc6b8662ae38bcdc8f
parent2f2de6276b307ef60a09bcc4d2472af9e7c5a227 (diff)
downloadnextcloud-server-ce23dc3ae6a2bf390dac4f4080acb7b58c62db71.tar.gz
nextcloud-server-ce23dc3ae6a2bf390dac4f4080acb7b58c62db71.zip
remove storage wrappers when deleting the user storage
Signed-off-by: Robin Appelman <robin@icewind.nl>
-rw-r--r--lib/private/Authentication/Listeners/UserDeletedFilesCleanupListener.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/private/Authentication/Listeners/UserDeletedFilesCleanupListener.php b/lib/private/Authentication/Listeners/UserDeletedFilesCleanupListener.php
index fa7459e10ff..2fb05159d09 100644
--- a/lib/private/Authentication/Listeners/UserDeletedFilesCleanupListener.php
+++ b/lib/private/Authentication/Listeners/UserDeletedFilesCleanupListener.php
@@ -26,6 +26,7 @@ declare(strict_types=1);
namespace OC\Authentication\Listeners;
use OC\Files\Cache\Cache;
+use OC\Files\Storage\Wrapper\Wrapper;
use OCP\EventDispatcher\Event;
use OCP\EventDispatcher\IEventListener;
use OCP\Files\Config\IMountProviderCollection;
@@ -56,6 +57,13 @@ class UserDeletedFilesCleanupListener implements IEventListener {
if (!$storage) {
throw new \Exception("User has no home storage");
}
+
+ // remove all wrappers, so we do the delete directly on the home storage bypassing any wrapper
+ while ($storage->instanceOfStorage(Wrapper::class)) {
+ /** @var Wrapper $storage */
+ $storage = $storage->getWrapperStorage();
+ }
+
$this->homeStorageCache[$event->getUser()->getUID()] = $storage;
}
if ($event instanceof UserDeletedEvent) {