Upgrade to PHP8.2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-06-07 09:56:23 +00:00
parent 79dfcd6495
commit afc4a1e3ce
8 changed files with 1058 additions and 794 deletions

View File

@ -1,6 +1,7 @@
<?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;
@ -13,6 +14,15 @@ use Twig\Loader\ArrayLoader;
use DateTime;
use Ntfy\Server;
use Ntfy\Message;
use Ntfy\Client;
#[AsCommand(
name: 'backup',
description: 'Start backup to assigned buckets.',
hidden: false,
)]
class CommandBackup extends Command
{
static $defaultName = "backup";
@ -40,14 +50,17 @@ class CommandBackup extends Command
$rclone = new Rclone\Rclone();
$rclone->setLogger($app->getLogger()->withName('rclone'));
$ntfy = new Ntfy\Ntfy($app->getConfig()['notification']['domain']);
$ntfy->setLogger($app->getLogger()->withName('notification'));
$server = new Server($app->getConfig()['notification']['domain']);
$client = new Client($server);
$loader = new ArrayLoader($app->getConfig()['templates']);
$twig = new Environment($loader);
$twig->addExtension(new Twig\AppExtension());
foreach ($io->progressIterate($app->getConfig()['backup']) as $conf) {
foreach ($io->progressIterate($app->getConfig()['backup']) as $conf) {
$message = new Message();
$message->topic($app->getConfig()['notification']['topic']);
$message->title($conf['title']);
try {
$template = array();
$template['config'] = $conf;
@ -60,12 +73,13 @@ class CommandBackup extends Command
$template['destination_size_after'] = $rclone->getSize($conf['destination']);
$template['end'] = new DateTime();
$message = $twig->render('notify', $template);
$message->body($twig->render('notify', $template));
} catch (\Throwable $e) {
$message = $e->getMessage();
$message->body($e->getMessage());
$message->tags(["warning"]);
}
$ntfy->send($app->getConfig()['notification']['topic'], $conf['title'], $message);
$client->send($message);
}
$io->success("Complete");