setInterval(60 * 30); } /** * @param $argument * @throws \Exception */ protected function run($argument) { $backgroundJob = $this->config->getAppValue('files_trashbin', 'background_job_expire_trash', 'yes'); if ($backgroundJob === 'no') { return; } $maxAge = $this->expiration->getMaxAgeAsTimestamp(); if (!$maxAge) { return; } $this->userManager->callForSeenUsers(function (IUser $user): void { $uid = $user->getUID(); if (!$this->setupFS($uid)) { return; } $dirContent = Helper::getTrashFiles('/', $uid, 'mtime'); Trashbin::deleteExpiredFiles($dirContent, $uid); }); \OC_Util::tearDownFS(); } /** * Act on behalf on trash item owner */ protected function setupFS(string $user): bool { \OC_Util::tearDownFS(); \OC_Util::setupFS($user); // Check if this user has a trashbin directory $view = new View('/' . $user); if (!$view->is_dir('/files_trashbin/files')) { return false; } return true; } }