You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
autorestic/internal/location.go

331 lines
6.9 KiB

4 years ago
package internal
import (
"fmt"
4 years ago
"io/ioutil"
"os"
"path/filepath"
"strings"
4 years ago
"time"
4 years ago
"github.com/cupcakearmy/autorestic/internal/colors"
4 years ago
"github.com/cupcakearmy/autorestic/internal/lock"
"github.com/robfig/cron"
4 years ago
)
type LocationType string
const (
TypeLocal LocationType = "local"
TypeVolume LocationType = "volume"
VolumePrefix string = "volume:"
)
4 years ago
type HookArray = []string
type Hooks struct {
Before HookArray `yaml:"before,omitempty"`
After HookArray `yaml:"after,omitempty"`
Success HookArray `yaml:"success,omitempty"`
Failure HookArray `yaml:"failure,omitempty"`
4 years ago
}
type Options map[string]map[string][]string
type Location struct {
name string `yaml:",omitempty"`
From string `yaml:"from,omitempty"`
To []string `yaml:"to,omitempty"`
Hooks Hooks `yaml:"hooks,omitempty"`
Cron string `yaml:"cron,omitempty"`
Options Options `yaml:"options,omitempty"`
4 years ago
}
func GetLocation(name string) (Location, bool) {
l, ok := GetConfig().Locations[name]
l.name = name
return l, ok
}
func (l Location) validate() error {
if l.From == "" {
return fmt.Errorf(`Location "%s" is missing "from" key`, l.name)
}
if l.getType() == TypeLocal {
if from, err := GetPathRelativeToConfig(l.From); err != nil {
4 years ago
return err
} else {
if stat, err := os.Stat(from); err != nil {
return err
} else {
if !stat.IsDir() {
return fmt.Errorf("\"%s\" is not valid directory for location \"%s\"", from, l.name)
}
4 years ago
}
}
}
if len(l.To) == 0 {
return fmt.Errorf(`Location "%s" has no "to" targets`, l.name)
}
4 years ago
// Check if backends are all valid
for _, to := range l.To {
_, ok := GetBackend(to)
4 years ago
if !ok {
return fmt.Errorf("invalid backend `%s`", to)
}
}
return nil
}
func ExecuteHooks(commands []string, options ExecuteOptions) error {
4 years ago
if len(commands) == 0 {
return nil
}
colors.Secondary.Println("\nRunning hooks")
4 years ago
for _, command := range commands {
colors.Body.Println("> " + command)
4 years ago
out, err := ExecuteCommand(options, "-c", command)
if err != nil {
4 years ago
colors.Error.Println(out)
4 years ago
return err
}
4 years ago
if VERBOSE {
colors.Faint.Println(out)
}
4 years ago
}
colors.Body.Println("")
4 years ago
return nil
}
4 years ago
func (l Location) getType() LocationType {
if strings.HasPrefix(l.From, VolumePrefix) {
return TypeVolume
}
return TypeLocal
}
func (l Location) getVolumeName() string {
return strings.TrimPrefix(l.From, VolumePrefix)
}
func (l Location) getPath() (string, error) {
t := l.getType()
switch t {
case TypeLocal:
if path, err := GetPathRelativeToConfig(l.From); err != nil {
return "", err
} else {
return path, nil
}
case TypeVolume:
return "/volume/" + l.name + "/" + l.getVolumeName(), nil
}
return "", fmt.Errorf("could not get path for location \"%s\"", l.name)
}
func (l Location) Backup(cron bool) []error {
var errors []error
colors.PrimaryPrint(" Backing up location \"%s\" ", l.name)
t := l.getType()
4 years ago
options := ExecuteOptions{
Command: "bash",
}
if t == TypeLocal {
dir, _ := GetPathRelativeToConfig(l.From)
options.Dir = dir
}
// Hooks
4 years ago
if err := ExecuteHooks(l.Hooks.Before, options); err != nil {
errors = append(errors, err)
goto after
4 years ago
}
// Backup
4 years ago
for _, to := range l.To {
backend, _ := GetBackend(to)
colors.Secondary.Printf("Backend: %s\n", backend.name)
4 years ago
env, err := backend.getEnv()
if err != nil {
errors = append(errors, err)
continue
4 years ago
}
lFlags := getOptions(l.Options, "backup")
bFlags := getOptions(backend.Options, "backup")
4 years ago
cmd := []string{"backup"}
cmd = append(cmd, lFlags...)
cmd = append(cmd, bFlags...)
4 years ago
if cron {
cmd = append(cmd, "--tag", "cron")
}
4 years ago
cmd = append(cmd, ".")
backupOptions := ExecuteOptions{
Dir: options.Dir,
Envs: env,
}
var out string
switch t {
case TypeLocal:
out, err = ExecuteResticCommand(backupOptions, cmd...)
case TypeVolume:
out, err = backend.ExecDocker(l, cmd)
}
4 years ago
if err != nil {
colors.Error.Println(out)
errors = append(errors, err)
continue
4 years ago
}
if VERBOSE {
colors.Faint.Println(out)
}
4 years ago
}
// After hooks
4 years ago
if err := ExecuteHooks(l.Hooks.After, options); err != nil {
errors = append(errors, err)
4 years ago
}
after:
var commands []string
if len(errors) > 0 {
commands = l.Hooks.Failure
} else {
commands = l.Hooks.Success
}
if err := ExecuteHooks(commands, options); err != nil {
errors = append(errors, err)
}
colors.Success.Println("Done")
return errors
4 years ago
}
4 years ago
func (l Location) Forget(prune bool, dry bool) error {
colors.PrimaryPrint("Forgetting for location \"%s\"", l.name)
path, err := l.getPath()
if err != nil {
return err
}
for _, to := range l.To {
backend, _ := GetBackend(to)
colors.Secondary.Printf("For backend \"%s\"\n", backend.name)
env, err := backend.getEnv()
if err != nil {
return nil
}
options := ExecuteOptions{
Envs: env,
}
lFlags := getOptions(l.Options, "forget")
bFlags := getOptions(backend.Options, "forget")
cmd := []string{"forget", "--path", path}
4 years ago
if prune {
cmd = append(cmd, "--prune")
}
if dry {
cmd = append(cmd, "--dry-run")
}
cmd = append(cmd, lFlags...)
cmd = append(cmd, bFlags...)
4 years ago
out, err := ExecuteResticCommand(options, cmd...)
if VERBOSE {
colors.Faint.Println(out)
}
4 years ago
if err != nil {
return err
}
}
colors.Success.Println("Done")
return nil
4 years ago
}
4 years ago
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
}
colors.PrimaryPrint("Restoring location \"%s\"", l.name)
4 years ago
backend, _ := GetBackend(from)
path, err := l.getPath()
4 years ago
if err != nil {
return nil
}
colors.Secondary.Println("Restoring lastest snapshot")
colors.Body.Printf("%s → %s.\n", from, path)
switch l.getType() {
case TypeLocal:
// 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
}
}
}
err = backend.Exec([]string{"restore", "--target", to, "--path", path, "latest"})
case TypeVolume:
_, err = backend.ExecDocker(l, []string{"restore", "--target", ".", "--path", path, "latest"})
}
4 years ago
if err != nil {
return err
}
colors.Success.Println("Done")
4 years ago
return nil
}
4 years ago
func (l Location) RunCron() error {
if l.Cron == "" {
return nil
}
schedule, err := cron.ParseStandard(l.Cron)
if err != nil {
return err
}
last := time.Unix(lock.GetCron(l.name), 0)
4 years ago
next := schedule.Next(last)
4 years ago
now := time.Now()
if now.After(next) {
lock.SetCron(l.name, now.Unix())
4 years ago
l.Backup(true)
4 years ago
} else {
4 years ago
if !CRON_LEAN {
colors.Body.Printf("Skipping \"%s\", not due yet.\n", l.name)
}
4 years ago
}
return nil
}