diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-06-10 16:27:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-10 16:27:59 +0200 |
commit | 85cc867143ab2bd55bffe8d097ac1f2e8116fab6 (patch) | |
tree | 5ee389381e45025f6e3dd95974ed4c0797db7d69 /lib | |
parent | e6e18620002d1da5238e43b9026ca529ae2bda8e (diff) | |
parent | 5907bba3fdb77f899c31c08afc9f0b894847374b (diff) | |
download | nextcloud-server-85cc867143ab2bd55bffe8d097ac1f2e8116fab6.tar.gz nextcloud-server-85cc867143ab2bd55bffe8d097ac1f2e8116fab6.zip |
Merge pull request #31771 from nextcloud/fix/hook-encryption-cron
Fix hook encryption with cron job
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Encryption/HookManager.php | 38 |
1 files changed, 25 insertions, 13 deletions
diff --git a/lib/private/Encryption/HookManager.php b/lib/private/Encryption/HookManager.php index a2d6b990a88..5081bcccf94 100644 --- a/lib/private/Encryption/HookManager.php +++ b/lib/private/Encryption/HookManager.php @@ -25,39 +25,51 @@ namespace OC\Encryption; use OC\Files\Filesystem; use OC\Files\View; +use OC\Files\SetupManager; use Psr\Log\LoggerInterface; class HookManager { - /** - * @var Update - */ - private static $updater; + private static ?Update $updater = null; - public static function postShared($params) { + public static function postShared($params): void { self::getUpdate()->postShared($params); } - public static function postUnshared($params) { - self::getUpdate()->postUnshared($params); + public static function postUnshared($params): void { + // In case the unsharing happens in a background job, we don't have + // a session and we load instead the user from the UserManager + $path = Filesystem::getPath($params['fileSource']); + $owner = Filesystem::getOwner($path); + self::getUpdate($owner)->postUnshared($params); } - public static function postRename($params) { + public static function postRename($params): void { self::getUpdate()->postRename($params); } - public static function postRestore($params) { + public static function postRestore($params): void { self::getUpdate()->postRestore($params); } - /** - * @return Update - */ - private static function getUpdate() { + private static function getUpdate(?string $owner = null): Update { if (is_null(self::$updater)) { $user = \OC::$server->getUserSession()->getUser(); + if (!$user && $owner) { + $user = \OC::$server->getUserManager()->get($owner); + } + if (!$user) { + throw new \Exception("Inconsistent data, File unshared, but owner not found. Should not happen"); + } + $uid = ''; if ($user) { $uid = $user->getUID(); } + + $setupManager = \OC::$server->get(SetupManager::class); + if (!$setupManager->isSetupComplete($user)) { + $setupManager->setupForUser($user); + } + self::$updater = new Update( new View(), new Util( |