mirror of
https://github.com/nextcloud/server.git
synced 2026-02-24 10:26:07 -05:00
46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
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\IConfig;
|
|
use OCP\IUser;
|
|
use OCP\IUserManager;
|
|
use OCP\Migration\IOutput;
|
|
use OCP\Migration\IRepairStep;
|
|
|
|
class CleanPreviews implements IRepairStep {
|
|
/**
|
|
* MoveAvatars constructor.
|
|
*
|
|
* @param IJobList $jobList
|
|
* @param IUserManager $userManager
|
|
* @param IConfig $config
|
|
*/
|
|
public function __construct(
|
|
private IJobList $jobList,
|
|
private IUserManager $userManager,
|
|
private IConfig $config,
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getName() {
|
|
return 'Add preview cleanup background jobs';
|
|
}
|
|
|
|
public function run(IOutput $output) {
|
|
if (!$this->config->getAppValue('core', 'previewsCleanedUp', false)) {
|
|
$this->userManager->callForSeenUsers(function (IUser $user): void {
|
|
$this->jobList->add(CleanPreviewsBackgroundJob::class, ['uid' => $user->getUID()]);
|
|
});
|
|
$this->config->setAppValue('core', 'previewsCleanedUp', '1');
|
|
}
|
|
}
|
|
}
|