More type deconfusion
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-07-05 14:36:56 +00:00
parent f7b4a8f9cd
commit c1fb42c4ff
4 changed files with 21 additions and 15 deletions

View File

@ -40,7 +40,7 @@ class CommandBackup extends Command
return Command::FAILURE;
}
$rclone = new Rclone($app->getConfig('rclone.path'));
$rclone = new Rclone((string)$app->getConfig('rclone.path'));
$rclone->setLogger($app->getLogger()->withName('rclone'));
$notification = new Notification();
@ -48,19 +48,22 @@ class CommandBackup extends Command
$render = new Twig($app->getConfig('templates'));
/** @var array{title: string, source: string, destination: string} $conf */
foreach ($sio->progressIterate($app->getConfig('backup')) as $conf) {
$title = $conf['title'];
try {
$template = array();
$template['config'] = $conf;
$template['start'] = new DateTime();
$template['source_size'] = $rclone->getSize((string)$conf['source']);
$template['source_size'] = $rclone->getSize($conf['source']);
$template['rclone_version'] = $rclone->getVersion();
$template['destination_size_before'] = $rclone->getSize((string)$conf['destination']);
$template['destination_size_before'] = $rclone->getSize($conf['destination']);
$rclone->copy((string)$conf['source'], (string)$conf['destination'], $app->getConfig('rclone.options'));
/** @var array<array-key, string> */
$rcloneOptions = $app->getConfig('rclone.options');
$rclone->copy($conf['source'], $conf['destination'], $rcloneOptions);
$template['destination_size_after'] = $rclone->getSize((string)$conf['destination']);
$template['destination_size_after'] = $rclone->getSize($conf['destination']);
$template['end'] = new DateTime();
$message = $render->render('notify', $template);
@ -68,7 +71,7 @@ class CommandBackup extends Command
$message = $e->getMessage();
}
$notification->send((string)$title, $message);
$notification->send($title, $message);
}
$sio->success("Complete");