230 lines
6.7 KiB
PHP
230 lines
6.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Deck\Service\Importer;
|
|
|
|
use OCA\Deck\Exceptions\ConflictException;
|
|
use OCA\Deck\NotFoundException;
|
|
use Symfony\Component\Console\Command\Command;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use Symfony\Component\Console\Question\ChoiceQuestion;
|
|
use Symfony\Component\Console\Question\Question;
|
|
|
|
class BoardImportCommandService extends BoardImportService {
|
|
/**
|
|
* @var Command
|
|
* @psalm-suppress PropertyNotSetInConstructor
|
|
*/
|
|
private $command;
|
|
/**
|
|
* @var InputInterface
|
|
* @psalm-suppress PropertyNotSetInConstructor
|
|
*/
|
|
private $input;
|
|
/**
|
|
* @var OutputInterface
|
|
* @psalm-suppress PropertyNotSetInConstructor
|
|
*/
|
|
private $output;
|
|
|
|
public function setCommand(Command $command): self {
|
|
$this->command = $command;
|
|
return $this;
|
|
}
|
|
|
|
public function getCommand(): Command {
|
|
return $this->command;
|
|
}
|
|
|
|
public function setInput(InputInterface $input): self {
|
|
$this->input = $input;
|
|
return $this;
|
|
}
|
|
|
|
public function getInput(): InputInterface {
|
|
return $this->input;
|
|
}
|
|
|
|
public function setOutput(OutputInterface $output): self {
|
|
$this->output = $output;
|
|
return $this;
|
|
}
|
|
|
|
public function getOutput(): OutputInterface {
|
|
return $this->output;
|
|
}
|
|
|
|
protected function validateConfig(): void {
|
|
try {
|
|
$config = $this->getInput()->getOption('config');
|
|
if (!$config) {
|
|
return;
|
|
}
|
|
|
|
if (is_string($config)) {
|
|
if (!is_file($config)) {
|
|
throw new NotFoundException('Config file not found.');
|
|
}
|
|
$config = json_decode(file_get_contents($config));
|
|
if (!$config instanceof \stdClass) {
|
|
throw new NotFoundException('Failed to parse JSON.');
|
|
}
|
|
$this->setConfigInstance($config);
|
|
}
|
|
parent::validateConfig();
|
|
return;
|
|
} catch (NotFoundException $e) {
|
|
$this->getOutput()->writeln('<error>' . $e->getMessage() . '</error>');
|
|
$helper = $this->getCommand()->getHelper('question');
|
|
$question = new Question(
|
|
"<info>You can get more info on https://deck.readthedocs.io/en/latest/User_documentation_en/#6-import-boards</info>\n" .
|
|
'Please provide a valid config json file: ',
|
|
'config.json'
|
|
);
|
|
$question->setValidator(function (string $answer) {
|
|
if (!is_file($answer)) {
|
|
throw new \RuntimeException(
|
|
'config file not found'
|
|
);
|
|
}
|
|
return $answer;
|
|
});
|
|
$configFile = $helper->ask($this->getInput(), $this->getOutput(), $question);
|
|
$this->getInput()->setOption('config', $configFile);
|
|
} catch (ConflictException $e) {
|
|
$this->getOutput()->writeln('<error>Invalid config file</error>');
|
|
$this->getOutput()->writeln(array_map(function (array $v): string {
|
|
return $v['message'];
|
|
}, $e->getData()));
|
|
$this->getOutput()->writeln('Valid schema:');
|
|
$this->getOutput()->writeln(print_r(file_get_contents($this->getJsonSchemaPath()), true));
|
|
$this->getInput()->setOption('config', '');
|
|
}
|
|
$this->validateConfig();
|
|
}
|
|
|
|
public function validateSystem(): void {
|
|
try {
|
|
parent::validateSystem();
|
|
return;
|
|
} catch (\Throwable $th) {
|
|
}
|
|
$helper = $this->getCommand()->getHelper('question');
|
|
$allowedSystems = $this->getAllowedImportSystems();
|
|
$names = array_column($allowedSystems, 'name');
|
|
$question = new ChoiceQuestion(
|
|
'Please select a source system',
|
|
$names,
|
|
0
|
|
);
|
|
$question->setErrorMessage('System %s is invalid.');
|
|
$selectedName = $helper->ask($this->getInput(), $this->getOutput(), $question);
|
|
$className = $allowedSystems[array_flip($names)[$selectedName]]['internalName'];
|
|
$this->setSystem($className);
|
|
return;
|
|
}
|
|
|
|
protected function validateData(): void {
|
|
if (!$this->getImportSystem()->needValidateData()) {
|
|
return;
|
|
}
|
|
$data = $this->getInput()->getArgument('file');
|
|
if (is_string($data)) {
|
|
if (!file_exists($data)) {
|
|
throw new \OCP\Files\NotFoundException('Could not find file ' . $data);
|
|
}
|
|
$data = json_decode(file_get_contents($data));
|
|
if ($data instanceof \stdClass) {
|
|
$this->setData($data);
|
|
return;
|
|
}
|
|
}
|
|
|
|
$data = $this->getInput()->getOption('data');
|
|
if (is_string($data)) {
|
|
$data = json_decode(file_get_contents($data));
|
|
if ($data instanceof \stdClass) {
|
|
$this->setData($data);
|
|
return;
|
|
}
|
|
}
|
|
$helper = $this->getCommand()->getHelper('question');
|
|
$question = new Question(
|
|
'Please provide a valid data json file: ',
|
|
'data.json'
|
|
);
|
|
$question->setValidator(function (string $answer) {
|
|
if (!is_file($answer)) {
|
|
throw new \RuntimeException(
|
|
'Data file not found'
|
|
);
|
|
}
|
|
return $answer;
|
|
});
|
|
$data = $helper->ask($this->getInput(), $this->getOutput(), $question);
|
|
$this->getInput()->setOption('data', $data);
|
|
$this->validateData();
|
|
}
|
|
|
|
public function bootstrap(): void {
|
|
$this->setSystem($this->getInput()->getOption('system'));
|
|
parent::bootstrap();
|
|
|
|
$this->registerErrorCollector(function ($error, $exception) {
|
|
$message = $error;
|
|
if ($exception instanceof \Throwable) {
|
|
$message .= ': ' . $exception->getMessage();
|
|
}
|
|
$this->getOutput()->writeln('<error>' . $message . '</error>');
|
|
if ($exception instanceof \Throwable && $this->getOutput()->isVeryVerbose()) {
|
|
$this->getOutput()->writeln($exception->getTraceAsString());
|
|
}
|
|
});
|
|
|
|
$this->registerOutputCollector(function ($info) {
|
|
if ($this->getOutput()->isVerbose()) {
|
|
$this->getOutput()->writeln('<info>' . $info . '</info>', );
|
|
}
|
|
});
|
|
}
|
|
|
|
public function import(): void {
|
|
$this->getOutput()->writeln('Starting import...');
|
|
$this->bootstrap();
|
|
$this->validateSystem();
|
|
$this->validateConfig();
|
|
$boards = $this->getImportSystem()->getBoards();
|
|
|
|
foreach ($boards as $board) {
|
|
try {
|
|
$this->reset();
|
|
$this->setData($board);
|
|
$this->getOutput()->writeln('Importing board "' . $board->title . '".');
|
|
$this->importBoard();
|
|
$this->getOutput()->writeln('Assign users to board...');
|
|
$this->importAcl();
|
|
$this->getOutput()->writeln('Importing labels...');
|
|
$this->importLabels();
|
|
$this->getOutput()->writeln('Importing stacks...');
|
|
$this->importStacks();
|
|
$this->getOutput()->writeln('Importing cards...');
|
|
$this->importCards();
|
|
$this->getOutput()->writeln('Assign cards to labels...');
|
|
$this->assignCardsToLabels();
|
|
$this->getOutput()->writeln('Importing comments...');
|
|
$this->importComments();
|
|
$this->getOutput()->writeln('Importing participants...');
|
|
$this->importCardAssignments();
|
|
$this->getOutput()->writeln('<info>Finished board import of "' . $this->getBoard()->getTitle() . '"</info>');
|
|
} catch (\Exception $e) {
|
|
$this->output->writeln('<error>Import failed for board ' . $board->title . ': ' . $e->getMessage() . '</error>');
|
|
}
|
|
}
|
|
}
|
|
}
|