1
0
mirror of https://github.com/restic/restic.git synced 2024-06-30 08:20:55 +02:00
restic/cmd/khepri/main.go

75 lines
1.4 KiB
Go
Raw Normal View History

2014-04-28 00:00:15 +02:00
package main
import (
"fmt"
"os"
"sort"
"strings"
2014-07-28 20:20:32 +02:00
"github.com/fd0/khepri"
2014-04-28 00:00:15 +02:00
"github.com/jessevdk/go-flags"
)
var Opts struct {
Repo string `short:"r" long:"repo" description:"Repository directory to backup to/restor from"`
}
2014-08-03 15:16:56 +02:00
func errx(code int, format string, data ...interface{}) {
2014-04-28 00:00:15 +02:00
if len(format) > 0 && format[len(format)-1] != '\n' {
format += "\n"
}
fmt.Fprintf(os.Stderr, format, data...)
os.Exit(code)
}
2014-08-04 20:47:04 +02:00
type commandFunc func(*khepri.Repository, []string) error
2014-04-28 00:00:15 +02:00
var commands map[string]commandFunc
func init() {
commands = make(map[string]commandFunc)
commands["backup"] = commandBackup
commands["restore"] = commandRestore
2014-08-01 22:20:28 +02:00
commands["list"] = commandList
2014-04-28 00:00:15 +02:00
}
func main() {
Opts.Repo = os.Getenv("KHEPRI_REPOSITORY")
if Opts.Repo == "" {
Opts.Repo = "khepri-backup"
}
args, err := flags.Parse(&Opts)
if e, ok := err.(*flags.Error); ok && e.Type == flags.ErrHelp {
os.Exit(0)
}
if len(args) == 0 {
cmds := []string{}
for k := range commands {
cmds = append(cmds, k)
}
sort.Strings(cmds)
fmt.Printf("nothing to do, available commands: [%v]\n", strings.Join(cmds, "|"))
os.Exit(0)
}
cmd := args[0]
f, ok := commands[cmd]
if !ok {
2014-08-03 15:16:56 +02:00
errx(1, "unknown command: %q\n", cmd)
2014-04-28 00:00:15 +02:00
}
2014-08-04 20:47:04 +02:00
repo, err := khepri.NewRepository(Opts.Repo)
2014-04-28 00:00:15 +02:00
if err != nil {
2014-08-03 15:16:56 +02:00
errx(1, "unable to create/open repo: %v", err)
2014-04-28 00:00:15 +02:00
}
err = f(repo, args[1:])
if err != nil {
2014-08-03 15:16:56 +02:00
errx(1, "error executing command %q: %v", cmd, err)
2014-04-28 00:00:15 +02:00
}
}