Files
nextcloud-mail/lib/Command/Thread.php
Christoph Wurst 70fffdc454 refactor(rector): apply PHP74 set
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2025-10-07 10:51:22 +02:00

86 lines
2.4 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\IMAP\Threading\DatabaseMessage;
use OCA\Mail\IMAP\Threading\ThreadBuilder;
use OCA\Mail\Support\ConsoleLoggerDecorator;
use Psr\Log\LoggerInterface;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use function array_map;
use function file_exists;
use function file_get_contents;
use function json_decode;
use function memory_get_peak_usage;
final class Thread extends Command {
public const ARGUMENT_INPUT_FILE = 'thread-file';
private ThreadBuilder $builder;
private LoggerInterface $logger;
public function __construct(ThreadBuilder $builder,
LoggerInterface $logger) {
parent::__construct();
$this->builder = $builder;
$this->logger = $logger;
}
/**
* @return void
*/
protected function configure() {
$this->setName('mail:thread');
$this->setDescription('Build threads from the exported data of an account');
$this->addArgument(self::ARGUMENT_INPUT_FILE, InputArgument::REQUIRED);
}
protected function execute(InputInterface $input, OutputInterface $output): int {
$consoleLogger = new ConsoleLoggerDecorator(
$this->logger,
$output
);
$inputFile = $input->getArgument(self::ARGUMENT_INPUT_FILE);
if (!file_exists($inputFile)) {
$output->writeln("<error>File $inputFile does not exist</error>");
return 1;
}
$json = file_get_contents($inputFile);
if ($json === false) {
$output->writeln('<error>Could not read thread data</error>');
return 2;
}
$consoleLogger->debug(strlen($json) . 'B read');
$parsed = json_decode($json, true, 512, JSON_THROW_ON_ERROR);
$consoleLogger->debug(count($parsed) . ' data sets loaded');
$threadData = array_map(static fn ($serialized) => new DatabaseMessage(
$serialized['databaseId'],
$serialized['subject'],
$serialized['id'],
$serialized['references'],
$serialized['threadRootId'] ?? null
), $parsed);
$threads = $this->builder->build($threadData, $consoleLogger);
$output->writeln(count($threads) . ' threads built from ' . count($threadData) . ' messages');
$mbs = (int)(memory_get_peak_usage() / 1024 / 1024);
$output->writeln('<info>' . $mbs . 'MB of memory used</info>');
return 0;
}
}