mirror of
https://github.com/nextcloud/server.git
synced 2026-02-24 02:11:51 -05:00
- repairs job - database - redis And remove Helpertest which was unused outside of some tests. Signed-off-by: Carl Schwan <carl.schwan@nextcloud.com>
39 lines
1,014 B
PHP
39 lines
1,014 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);
|
|
}
|
|
}
|
|
}
|