nextcloud/lib/private/Repair/Owncloud/CleanPreviews.php
Côme Chilliet 1ab09ec753
chore: Apply new coding standard to all files
The diff can be checked using: git diff --ignore-all-space --ignore-blank-lines
To see only the changes not related to blank lines.

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2026-06-01 13:46:39 +02:00

40 lines
1,015 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OC\Repair\Owncloud;
use OCP\BackgroundJob\IJobList;
use OCP\IAppConfig;
use OCP\IUser;
use OCP\IUserManager;
use OCP\Migration\IOutput;
use OCP\Migration\IRepairStep;
use Override;
class CleanPreviews implements IRepairStep {
public function __construct(
private readonly IJobList $jobList,
private readonly IUserManager $userManager,
private readonly IAppConfig $appConfig,
) {
}
#[Override]
public function getName(): string {
return 'Add preview cleanup background jobs';
}
#[Override]
public function run(IOutput $output): void {
if (!$this->appConfig->getValueBool('core', 'previewsCleanedUp')) {
$this->userManager->callForSeenUsers(function (IUser $user): void {
$this->jobList->add(CleanPreviewsBackgroundJob::class, ['uid' => $user->getUID()]);
});
$this->appConfig->setValueBool('core', 'previewsCleanedUp', true);
}
}
}