Configuration refactoring with schema support.
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2023-07-04 09:43:27 +00:00
parent 006a5410b5
commit 51f8436e9d
5 changed files with 358 additions and 17 deletions

View File

@ -40,15 +40,15 @@ class CommandBackup extends Command
return Command::FAILURE;
}
$rclone = new Rclone();
$rclone = new Rclone($app->getConfig('rclone.path'));
$rclone->setLogger($app->getLogger()->withName('rclone'));
$notification = new Notification();
$notification->loadMany($app->getConfig()['notification']);
$notification->loadMany($app->getConfig('notification'));
$render = new Twig($app->getConfig()['templates']);
$render = new Twig($app->getConfig('templates'));
foreach ($sio->progressIterate($app->getConfig()['backup']) as $conf) {
foreach ($sio->progressIterate($app->getConfig('backup')) as $conf) {
$title = $conf['title'];
try {
$template = array();
@ -58,7 +58,7 @@ class CommandBackup extends Command
$template['rclone_version'] = $rclone->getVersion();
$template['destination_size_before'] = $rclone->getSize((string)$conf['destination']);
$rclone->copy((string)$conf['source'], (string)$conf['destination'], $app->getConfig()['rclone']['options']);
$rclone->copy((string)$conf['source'], (string)$conf['destination'], $app->getConfig('rclone.options'));
$template['destination_size_after'] = $rclone->getSize((string)$conf['destination']);
$template['end'] = new DateTime();