norgbackup/norg/config/args.nim

37 lines
1.5 KiB
Nim
Raw Normal View History

import argparse
import ../model/config_type
var norg_args*: NorgArgs = newNorgArgs()
proc parseArgs*() =
var p = newParser:
2024-08-18 17:13:10 +02:00
help("Norg\r\nA portable borg backup wrapper utility")
option("-c", "--config", help="Config file to use.")
2024-08-18 16:43:11 +02:00
option("-d", "--destination", help="Destination when extracting backup", required = false)
option("-r", "--repository", help="Define an explicit repository to work on by either label or path.", required = false)
option("-a", "--archive", help="The archive or snapshot to operate on", required = false)
flag("-s","--stats",help="Provides statistics at the end of a backup (Borg only)")
arg("command", help="The command to run, defaults to 'create' which will perform a backup.", default=some("create"))
arg("further_args", nargs = -1, help="Any further arguments to send onto borg or restic.")
flag("-v","--version",help="Shows the current norg version")
try:
var opts = p.parse(commandLineParams())
norg_args.config_file = opts.config
2024-08-18 16:43:11 +02:00
norg_args.extract_destination = opts.destination
norg_args.command = opts.command.toCommand()
norg_args.repository = opts.repository
norg_args.archive = opts.archive
norg_args.stats = opts.stats
norg_args.further_args = opts.further_args
if opts.version:
echo "Norg Version: ", VERSION
quit(0)
except ShortCircuit as err:
if err.flag == "argparse_help":
echo err.help
quit(1)
except UsageError:
echo p.help
stderr.writeLine getCurrentExceptionMsg()
quit(1)