2023-05-26 11:47:40 +00:00
|
|
|
<?php
|
2023-06-08 12:44:59 +00:00
|
|
|
|
2023-05-26 11:47:40 +00:00
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
2023-05-31 09:00:20 +00:00
|
|
|
use Symfony\Component\Console\Style\SymfonyStyle;
|
2023-05-26 11:47:40 +00:00
|
|
|
|
|
|
|
class CommandShow extends Command
|
|
|
|
{
|
2023-06-08 12:44:59 +00:00
|
|
|
public static $defaultName = "show";
|
|
|
|
public static $defaultDescription = "Show all backup entries";
|
2023-05-26 11:47:40 +00:00
|
|
|
|
|
|
|
protected function configure(): void
|
|
|
|
{
|
2023-06-08 12:44:59 +00:00
|
|
|
$this->addArgument(
|
|
|
|
'config',
|
|
|
|
InputArgument::OPTIONAL,
|
|
|
|
'Configuration file',
|
|
|
|
"config.yml"
|
|
|
|
);
|
2023-05-26 11:47:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output): int
|
|
|
|
{
|
2023-06-08 12:44:59 +00:00
|
|
|
$sio = new SymfonyStyle($input, $output);
|
|
|
|
$sio->title('List backup entities');
|
2023-05-31 09:00:20 +00:00
|
|
|
|
2023-05-26 11:47:40 +00:00
|
|
|
try {
|
2023-05-31 14:34:35 +00:00
|
|
|
$app = new App($input->getArgument('config'));
|
2023-06-08 12:44:59 +00:00
|
|
|
} catch (\Throwable $e) {
|
|
|
|
$sio->error('Configuration error: ' . $e->getMessage());
|
2023-05-26 13:04:15 +00:00
|
|
|
return Command::FAILURE;
|
2023-05-26 11:47:40 +00:00
|
|
|
}
|
|
|
|
|
2023-06-08 12:44:59 +00:00
|
|
|
$sio->table(
|
|
|
|
['Description', 'Source', 'Destination'],
|
|
|
|
$app->getConfig()['backup']
|
|
|
|
);
|
2023-05-31 09:00:20 +00:00
|
|
|
|
2023-06-08 12:44:59 +00:00
|
|
|
$sio->success("Done");
|
2023-05-26 11:47:40 +00:00
|
|
|
return Command::SUCCESS;
|
|
|
|
}
|
2023-06-08 12:44:59 +00:00
|
|
|
}
|