mirror of
https://github.com/nextcloud/mail.git
synced 2026-01-13 20:23:59 +00:00
47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
namespace OCA\Mail\Command;
|
|
|
|
use OCA\Mail\Service\CleanupService;
|
|
use OCA\Mail\Support\ConsoleLoggerDecorator;
|
|
use Psr\Log\LoggerInterface;
|
|
use Symfony\Component\Console\Command\Command;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
final class CleanUp extends Command {
|
|
private CleanupService $cleanupService;
|
|
private LoggerInterface $logger;
|
|
|
|
public function __construct(CleanupService $cleanupService,
|
|
LoggerInterface $logger) {
|
|
parent::__construct();
|
|
|
|
$this->cleanupService = $cleanupService;
|
|
$this->logger = $logger;
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
protected function configure() {
|
|
$this->setName('mail:clean-up');
|
|
$this->setDescription('clean up all orphaned data');
|
|
}
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output): int {
|
|
$logger = new ConsoleLoggerDecorator($this->logger, $output);
|
|
|
|
$this->cleanupService->cleanUp($logger);
|
|
|
|
return 0;
|
|
}
|
|
}
|