autorestic/internal/backend.go

72 lines
1.5 KiB
Go
Raw Normal View History

2021-04-09 01:55:10 +02:00
package internal
import (
"fmt"
)
type Backend struct {
Name string `mapstructure:"name"`
2021-04-09 01:55:10 +02:00
Type string `mapstructure:"type"`
Path string `mapstructure:"path"`
Key string `mapstructure:"key"`
Env map[string]string `mapstructure:"env"`
}
func GetBackend(name string) (Backend, bool) {
c := GetConfig()
for _, b := range c.Backends {
if b.Name == name {
return b, true
}
}
return Backend{}, false
}
2021-04-09 01:55:10 +02:00
func (b Backend) generateRepo() (string, error) {
switch b.Type {
case "local":
2021-04-11 18:17:21 +02:00
return GetPathRelativeToConfig(b.Path)
2021-04-09 01:55:10 +02:00
case "b2", "azure", "gs", "s3", "sftp", "rest":
return fmt.Sprintf("%s:%s", b.Type, b.Path), nil
default:
return "", fmt.Errorf("backend type \"%s\" is invalid", b.Type)
}
}
2021-04-11 18:17:21 +02:00
func (b Backend) getEnv() (map[string]string, error) {
2021-04-09 01:55:10 +02:00
env := make(map[string]string)
env["RESTIC_PASSWORD"] = b.Key
repo, err := b.generateRepo()
env["RESTIC_REPOSITORY"] = repo
2021-04-11 18:17:21 +02:00
return env, err
2021-04-09 01:55:10 +02:00
}
func (b Backend) validate() error {
2021-04-11 18:17:21 +02:00
env, err := b.getEnv()
if err != nil {
return err
}
options := ExecuteOptions{Envs: env}
2021-04-09 01:55:10 +02:00
// Check if already initialized
2021-04-11 18:17:21 +02:00
_, err = ExecuteResticCommand(options, "snapshots")
2021-04-09 01:55:10 +02:00
if err == nil {
return nil
} else {
// If not initialize
out, err := ExecuteResticCommand(options, "init")
fmt.Println(out)
return err
}
}
func (b Backend) Exec(args []string) error {
2021-04-11 18:17:21 +02:00
env, err := b.getEnv()
if err != nil {
return err
}
options := ExecuteOptions{Envs: env}
2021-04-09 01:55:10 +02:00
out, err := ExecuteResticCommand(options, args...)
fmt.Println(out)
return err
}