norgbackup/norg/restic/backup.nim

38 lines
1 KiB
Nim
Raw Normal View History

2024-08-23 11:12:00 +02:00
import ../model/config_type
2024-08-23 11:30:36 +02:00
import ../model/state_type
import ../notifier/notifier
import execute
import prune
2024-08-23 11:12:00 +02:00
2024-08-23 11:30:36 +02:00
import nativesockets
import times
import sequtils
import os
proc createArchive(nc: NorgConfig, repo: Repository, retry: int = 0): int =
let further_args = concat(nc.source_directories, nc.args.further_args)
let res = run genCommand(cmd = "backup", repo = repo.path, further_args = further_args)
2024-08-23 11:30:36 +02:00
if res != 0:
sleep 15 * 1000 # 15 seconds
if retry == nc.retries:
return 1
else:
return createArchive(nc, repo, retry + 1)
return res
2024-08-23 11:12:00 +02:00
2024-08-23 11:30:36 +02:00
proc createBackup*(nc: NorgConfig, repo: Repository): int =
let start_time = now()
notify(nc.notifiers, state=Running)
let res = createArchive(nc, repo)
let end_time = now()
let total = (end_time - start_time).inMilliSeconds()
case res
of 0:
discard pruneRepo(nc, repo)
notify(nc.notifiers, state=Success, runtime=total)
of 1:
notify(nc.notifiers, state=Failure, runtime=total)
else:
notify(nc.notifiers, state=Failure, runtime=total, msg = $res)
return res