Static code analysis.

This commit is contained in:
2023-05-31 09:00:20 +00:00
parent 4c8f71d9d8
commit 19f27e6d0c
10 changed files with 1798 additions and 43 deletions

View File

@ -5,10 +5,15 @@ 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;
use Symfony\Component\Yaml\Yaml;
use Symfony\Component\Yaml\Exception\ParseException;
use Twig\Environment;
use Twig\Loader\ArrayLoader;
use DateTime;
class CommandBackup extends Command
{
static $defaultName = "backup";
@ -21,38 +26,39 @@ class CommandBackup extends Command
protected function execute(InputInterface $input, OutputInterface $output): int
{
$output->writeln('Start backup!');
$io = new SymfonyStyle($input, $output);
$io->title('Start backup process');
$output->writeln('Opening: '.$input->getArgument('config'));
$io->info('Opening: '.$input->getArgument('config'));
try {
$config = Yaml::parseFile($input->getArgument('config'));
} catch (ParseException $e) {
$output->writeln('Unable to parse the YAML string: '. $e->getMessage());
$io->error('Unable to parse the YAML string: '. $e->getMessage());
return Command::FAILURE;
}
$rclone = new Rclone\Rclone();
$output->writeln("Rclone version: ". $rclone->getVersion());
$io->info("Rclone version: ". $rclone->getVersion());
$ntfy = new Ntfy\Ntfy($config['notification']['domain']);
$loader = new \Twig\Loader\ArrayLoader($config['templates']);
$twig = new \Twig\Environment($loader);
$loader = new ArrayLoader($config['templates']);
$twig = new Environment($loader);
$twig->addExtension(new Twig\AppExtension());
foreach ($config['backup'] as $conf) {
foreach($io->progressIterate( $config['backup']) as $conf) {
try {
$template = array();
$template['config'] = $conf;
$template['start'] = new \DateTime();
$template['start'] = new DateTime();
$template['source_size'] = $rclone->getSize($conf['source']);
$template['destination_size_before'] = $rclone->getSize($conf['destination']);
$rclone->copy($conf['source'], $conf['destination'], "6M");
$template['destination_size_after'] = $rclone->getSize($conf['destination']);
$template['end'] = new \DateTime();
$template['end'] = new DateTime();
$message = $twig->render('notify', $template);
echo $message;
} catch (\Throwable $e) {
$message = $e->getMessage();
@ -60,6 +66,7 @@ class CommandBackup extends Command
$ntfy->send($config['notification']['topic'], $conf['title'], $message);
}
$io->success("Complete");
return Command::SUCCESS;
}
}