mirror of
https://github.com/nextcloud/server.git
synced 2025-02-06 01:20:16 +00:00
381077028a
Signed-off-by: provokateurin <kate@provokateurin.de>
67 lines
1.7 KiB
PHP
67 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\DAV\Migration;
|
|
|
|
use OCA\DAV\BackgroundJob\UploadCleanup;
|
|
use OCP\BackgroundJob\IJobList;
|
|
use OCP\Files\Folder;
|
|
use OCP\Files\IRootFolder;
|
|
use OCP\Files\NotFoundException;
|
|
use OCP\IConfig;
|
|
use OCP\IUser;
|
|
use OCP\IUserManager;
|
|
use OCP\Migration\IOutput;
|
|
use OCP\Migration\IRepairStep;
|
|
|
|
class ChunkCleanup implements IRepairStep {
|
|
|
|
public function __construct(
|
|
private IConfig $config,
|
|
private IUserManager $userManager,
|
|
private IRootFolder $rootFolder,
|
|
private IJobList $jobList,
|
|
) {
|
|
}
|
|
|
|
public function getName(): string {
|
|
return 'Chunk cleanup scheduler';
|
|
}
|
|
|
|
public function run(IOutput $output) {
|
|
// If we already ran this onec there is no need to run it again
|
|
if ($this->config->getAppValue('dav', 'chunks_migrated', '0') === '1') {
|
|
$output->info('Cleanup not required');
|
|
}
|
|
|
|
$output->startProgress();
|
|
// Loop over all seen users
|
|
$this->userManager->callForSeenUsers(function (IUser $user) use ($output): void {
|
|
try {
|
|
$userFolder = $this->rootFolder->getUserFolder($user->getUID());
|
|
$userRoot = $userFolder->getParent();
|
|
/** @var Folder $uploadFolder */
|
|
$uploadFolder = $userRoot->get('uploads');
|
|
} catch (NotFoundException $e) {
|
|
// No folder so skipping
|
|
return;
|
|
}
|
|
|
|
// Insert a cleanup job for each folder we find
|
|
$uploads = $uploadFolder->getDirectoryListing();
|
|
foreach ($uploads as $upload) {
|
|
$this->jobList->add(UploadCleanup::class, ['uid' => $user->getUID(), 'folder' => $upload->getName()]);
|
|
}
|
|
$output->advance();
|
|
});
|
|
$output->finishProgress();
|
|
|
|
|
|
$this->config->setAppValue('dav', 'chunks_migrated', '1');
|
|
}
|
|
}
|