autorestic/internal/location.go

223 lines
4.5 KiB
Go
Raw Normal View History

2021-04-09 01:55:10 +02:00
package internal
import (
"fmt"
2021-04-11 14:03:38 +02:00
"io/ioutil"
"os"
"path/filepath"
2021-04-11 15:02:27 +02:00
"time"
"github.com/cupcakearmy/autorestic/internal/lock"
"github.com/robfig/cron"
2021-04-09 01:55:10 +02:00
)
type HookArray = []string
type Hooks struct {
Before HookArray `mapstructure:"before"`
After HookArray `mapstructure:"after"`
}
type Options map[string]map[string][]string
type Location struct {
Name string `mapstructure:"name"`
2021-04-09 01:55:10 +02:00
From string `mapstructure:"from"`
To []string `mapstructure:"to"`
Hooks Hooks `mapstructure:"hooks"`
Cron string `mapstructure:"cron"`
Options Options `mapstructure:"options"`
}
func GetLocation(name string) (Location, bool) {
c := GetConfig()
for _, b := range c.Locations {
if b.Name == name {
return b, true
}
}
return Location{}, false
}
2021-04-12 00:02:35 +02:00
func (l Location) validate(c *Config) error {
if l.Name == "" {
return fmt.Errorf(`Location is missing name`)
}
if l.From == "" {
return fmt.Errorf(`Location "%s" is missing "from" key`, l.Name)
}
if len(l.To) == 0 {
return fmt.Errorf(`Location "%s" has no "to" targets`, l.Name)
}
2021-04-09 01:55:10 +02:00
// Check if backends are all valid
for _, to := range l.To {
_, ok := GetBackend(to)
2021-04-09 01:55:10 +02:00
if !ok {
return fmt.Errorf("invalid backend `%s`", to)
}
}
return nil
}
func (l Location) getOptions(key string) []string {
var options []string
saved := l.Options[key]
for k, values := range saved {
for _, value := range values {
options = append(options, fmt.Sprintf("--%s", k), value)
}
}
return options
}
func ExecuteHooks(commands []string, options ExecuteOptions) error {
for _, command := range commands {
out, err := ExecuteCommand(options, "-c", command)
fmt.Println(out)
return err
}
return nil
}
2021-04-11 18:17:21 +02:00
func (l Location) forEachBackend(fn func(ExecuteOptions) error) error {
from, err := GetPathRelativeToConfig(l.From)
if err != nil {
return err
}
2021-04-09 01:55:10 +02:00
for _, to := range l.To {
backend, _ := GetBackend(to)
2021-04-11 18:17:21 +02:00
env, err := backend.getEnv()
if err != nil {
return nil
}
2021-04-09 01:55:10 +02:00
options := ExecuteOptions{
Command: "bash",
2021-04-11 18:17:21 +02:00
Envs: env,
2021-04-09 01:55:10 +02:00
Dir: from,
}
2021-04-11 18:17:21 +02:00
if err := fn(options); err != nil {
return err
}
}
return nil
}
2021-04-09 01:55:10 +02:00
2021-04-11 18:17:21 +02:00
func (l Location) Backup() error {
return l.forEachBackend(func(options ExecuteOptions) error {
2021-04-09 01:55:10 +02:00
if err := ExecuteHooks(l.Hooks.Before, options); err != nil {
return nil
}
2021-04-11 18:17:21 +02:00
flags := l.getOptions("backup")
cmd := []string{"backup"}
cmd = append(cmd, flags...)
cmd = append(cmd, ".")
out, err := ExecuteResticCommand(options, cmd...)
fmt.Println(out)
if err != nil {
return err
2021-04-09 01:55:10 +02:00
}
2021-04-11 18:17:21 +02:00
2021-04-09 01:55:10 +02:00
if err := ExecuteHooks(l.Hooks.After, options); err != nil {
return nil
}
2021-04-11 18:17:21 +02:00
return nil
})
2021-04-09 01:55:10 +02:00
}
2021-04-11 13:04:11 +02:00
2021-04-11 14:22:46 +02:00
func (l Location) Forget(prune bool, dry bool) error {
2021-04-11 18:17:21 +02:00
return l.forEachBackend(func(options ExecuteOptions) error {
2021-04-11 13:04:11 +02:00
flags := l.getOptions("forget")
2021-04-11 18:17:21 +02:00
cmd := []string{"forget", "--path", options.Dir}
2021-04-11 13:04:11 +02:00
if prune {
cmd = append(cmd, "--prune")
}
2021-04-11 14:22:46 +02:00
if dry {
cmd = append(cmd, "--dry-run")
}
2021-04-11 13:04:11 +02:00
cmd = append(cmd, flags...)
out, err := ExecuteResticCommand(options, cmd...)
fmt.Println(out)
if err != nil {
return err
}
2021-04-11 18:17:21 +02:00
return nil
})
2021-04-11 13:04:11 +02:00
}
2021-04-11 14:03:38 +02:00
func (l Location) hasBackend(backend string) bool {
for _, b := range l.To {
if b == backend {
return true
}
}
return false
}
func (l Location) Restore(to, from string, force bool) error {
if from == "" {
from = l.To[0]
} else if !l.hasBackend(from) {
return fmt.Errorf("invalid backend: \"%s\"", from)
}
to, err := filepath.Abs(to)
if err != nil {
return err
}
fmt.Printf("Restoring location to %s using %s.\n", to, from)
// Check if target is empty
if !force {
notEmptyError := fmt.Errorf("target %s is not empty", to)
_, err = os.Stat(to)
if err == nil {
files, err := ioutil.ReadDir(to)
if err != nil {
return err
}
if len(files) > 0 {
return notEmptyError
}
} else {
if !os.IsNotExist(err) {
return err
}
}
}
backend, _ := GetBackend(from)
2021-04-11 18:17:21 +02:00
resolved, err := GetPathRelativeToConfig(l.From)
if err != nil {
return nil
}
err = backend.Exec([]string{"restore", "--target", to, "--path", resolved, "latest"})
2021-04-11 14:03:38 +02:00
if err != nil {
return err
}
return nil
}
2021-04-11 15:02:27 +02:00
func (l Location) RunCron() error {
if l.Cron == "" {
return nil
}
schedule, err := cron.ParseStandard(l.Cron)
if err != nil {
return err
}
last := lock.GetCron("test")
fmt.Println(last)
next := schedule.Next(time.Unix(last, 0))
fmt.Println(next)
now := time.Now()
if now.After(next) {
fmt.Println("Running")
lock.SetCron("test", now.Unix())
} else {
fmt.Println("Not due yet")
}
return nil
}