backupscript/src/CommandShow.php
Jens True 4ffac17b62
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Static analysis cleanup.
2023-06-13 08:15:29 +00:00

48 lines
1.2 KiB
PHP

<?php
namespace App;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
#[AsCommand(
name: 'show',
description: 'Show all backup entries.',
)]
class CommandShow extends Command
{
protected function configure(): void
{
$this->addArgument(
'config',
InputArgument::REQUIRED,
'Configuration file'
);
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$sio = new SymfonyStyle($input, $output);
$sio->title('List backup entities');
try {
$app = new App($input->getArgument('config'));
} catch (\Throwable $e) {
$sio->error('Configuration error: ' . $e->getMessage());
return Command::FAILURE;
}
$sio->table(
['Description', 'Source', 'Destination'],
$app->getConfig()['backup']
);
$sio->success("Done");
return Command::SUCCESS;
}
}