More tests and refactoring
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2023-06-15 14:10:17 +00:00
parent 72058335ca
commit f41571cfd2
9 changed files with 92 additions and 38 deletions

View File

@ -8,11 +8,10 @@ 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 Twig\Environment;
use Twig\Loader\ArrayLoader;
use DateTime;
use App\Template\Twig;
use App\Notification\Notification;
use App\Rclone\Rclone;
use DateTime;
#[AsCommand(
name: 'backup',
@ -47,9 +46,7 @@ class CommandBackup extends Command
$notification = new Notification();
$notification->loadMany($app->getConfig()['notification']);
$loader = new ArrayLoader($app->getConfig()['templates']);
$twig = new Environment($loader);
$twig->addExtension(new Twig\AppExtension());
$render = new Twig($app->getConfig()['templates']);
foreach ($sio->progressIterate($app->getConfig()['backup']) as $conf) {
$title = $conf['title'];
@ -66,7 +63,7 @@ class CommandBackup extends Command
$template['destination_size_after'] = $rclone->getSize($conf['destination']);
$template['end'] = new DateTime();
$message = $twig->render('notify', $template);
$message = $render->render('notify', $template);
} catch (\Exception $e) {
$message = $e->getMessage();
}