2022-02-23 00:39:01 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2022-03-24 21:59:40 +00:00
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
2022-02-23 00:39:01 +00:00
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2022-03-24 21:59:40 +00:00
|
|
|
var ErrRestic = errors.New("restic error")
|
|
|
|
var ErrRepoNotFound = errors.New("repository not found or uninitialized")
|
|
|
|
|
|
|
|
func lineIn(needle string, haystack []string) bool {
|
|
|
|
for _, line := range haystack {
|
|
|
|
if line == needle {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-02-24 06:53:18 +00:00
|
|
|
func maybeAddArgString(args []string, name, value string) []string {
|
|
|
|
if value != "" {
|
|
|
|
return append(args, name, value)
|
2022-02-23 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return args
|
|
|
|
}
|
|
|
|
|
2022-02-24 06:53:18 +00:00
|
|
|
func maybeAddArgInt(args []string, name string, value int) []string {
|
|
|
|
if value > 0 {
|
|
|
|
return append(args, name, fmt.Sprint(value))
|
2022-02-23 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 06:53:18 +00:00
|
|
|
return args
|
|
|
|
}
|
2022-02-23 00:39:01 +00:00
|
|
|
|
2022-02-24 06:53:18 +00:00
|
|
|
func maybeAddArgBool(args []string, name string, value bool) []string {
|
|
|
|
if value {
|
|
|
|
return append(args, name)
|
2022-02-23 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 06:53:18 +00:00
|
|
|
return args
|
2022-02-23 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 06:53:18 +00:00
|
|
|
func maybeAddArgsList(args []string, name string, value []string) []string {
|
|
|
|
for _, v := range value {
|
|
|
|
args = append(args, name, v)
|
2022-02-23 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 06:53:18 +00:00
|
|
|
return args
|
|
|
|
}
|
2022-02-23 00:39:01 +00:00
|
|
|
|
2022-02-24 06:53:18 +00:00
|
|
|
type CommandOptions interface {
|
|
|
|
ToArgs() []string
|
|
|
|
}
|
2022-02-23 00:39:01 +00:00
|
|
|
|
2022-03-24 21:59:40 +00:00
|
|
|
type GenericOpts []string
|
|
|
|
|
|
|
|
func (o GenericOpts) ToArgs() []string {
|
|
|
|
return o
|
|
|
|
}
|
|
|
|
|
2022-02-24 06:53:18 +00:00
|
|
|
type NoOpts struct{}
|
2022-02-23 00:39:01 +00:00
|
|
|
|
2022-02-24 06:53:18 +00:00
|
|
|
func (NoOpts) ToArgs() []string {
|
|
|
|
return []string{}
|
2022-02-23 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type BackupOpts struct {
|
|
|
|
Exclude []string `hcl:"Exclude,optional"`
|
|
|
|
Include []string `hcl:"Include,optional"`
|
|
|
|
Tags []string `hcl:"Tags,optional"`
|
|
|
|
Host string `hcl:"Host,optional"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bo BackupOpts) ToArgs() (args []string) {
|
2022-02-24 06:53:18 +00:00
|
|
|
args = maybeAddArgsList(args, "--exclude", bo.Exclude)
|
|
|
|
args = maybeAddArgsList(args, "--include", bo.Include)
|
|
|
|
args = maybeAddArgsList(args, "--tag", bo.Tags)
|
|
|
|
args = maybeAddArgString(args, "--host", bo.Host)
|
2022-02-23 00:39:01 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
type RestoreOpts struct {
|
|
|
|
Exclude []string `hcl:"Exclude,optional"`
|
|
|
|
Include []string `hcl:"Include,optional"`
|
2022-02-23 22:13:00 +00:00
|
|
|
Host []string `hcl:"Host,optional"`
|
2022-02-23 00:39:01 +00:00
|
|
|
Tags []string `hcl:"Tags,optional"`
|
2022-02-23 22:13:00 +00:00
|
|
|
Path string `hcl:"Path,optional"`
|
2022-02-23 00:39:01 +00:00
|
|
|
Target string `hcl:"Target,optional"`
|
|
|
|
Verify bool `hcl:"Verify,optional"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ro RestoreOpts) ToArgs() (args []string) {
|
2022-02-24 06:53:18 +00:00
|
|
|
args = maybeAddArgsList(args, "--exclude", ro.Exclude)
|
|
|
|
args = maybeAddArgsList(args, "--include", ro.Include)
|
|
|
|
args = maybeAddArgsList(args, "--host", ro.Host)
|
|
|
|
args = maybeAddArgsList(args, "--tag", ro.Tags)
|
|
|
|
args = maybeAddArgString(args, "--path", ro.Path)
|
|
|
|
args = maybeAddArgString(args, "--target", ro.Target)
|
|
|
|
args = maybeAddArgBool(args, "--verify", ro.Verify)
|
2022-02-23 00:39:01 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-02-23 22:13:00 +00:00
|
|
|
type TagList []string
|
2022-02-23 00:39:01 +00:00
|
|
|
|
2022-02-23 22:13:00 +00:00
|
|
|
func (t TagList) String() string {
|
|
|
|
return strings.Join(t, ",")
|
2022-02-23 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ForgetOpts struct {
|
|
|
|
KeepLast int `hcl:"KeepLast,optional"`
|
|
|
|
KeepHourly int `hcl:"KeepHourly,optional"`
|
|
|
|
KeepDaily int `hcl:"KeepDaily,optional"`
|
|
|
|
KeepWeekly int `hcl:"KeepWeekly,optional"`
|
|
|
|
KeepMonthly int `hcl:"KeepMonthly,optional"`
|
|
|
|
KeepYearly int `hcl:"KeepYearly,optional"`
|
|
|
|
|
|
|
|
KeepWithin time.Duration `hcl:"KeepWithin,optional"`
|
|
|
|
KeepWithinHourly time.Duration `hcl:"KeepWithinHourly,optional"`
|
|
|
|
KeepWithinDaily time.Duration `hcl:"KeepWithinDaily,optional"`
|
|
|
|
KeepWithinWeekly time.Duration `hcl:"KeepWithinWeekly,optional"`
|
|
|
|
KeepWithinMonthly time.Duration `hcl:"KeepWithinMonthly,optional"`
|
|
|
|
KeepWithinYearly time.Duration `hcl:"KeepWithinYearly,optional"`
|
|
|
|
|
2022-02-23 22:13:00 +00:00
|
|
|
Tags []TagList `hcl:"Tags,optional"`
|
|
|
|
KeepTags []TagList `hcl:"KeepTags,optional"`
|
2022-02-23 00:39:01 +00:00
|
|
|
|
|
|
|
Prune bool `hcl:"Prune,optional"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fo ForgetOpts) ToArgs() (args []string) {
|
2022-02-24 06:53:18 +00:00
|
|
|
args = maybeAddArgInt(args, "--keep-last", fo.KeepLast)
|
|
|
|
args = maybeAddArgInt(args, "--keep-hourly", fo.KeepHourly)
|
|
|
|
args = maybeAddArgInt(args, "--keep-daily", fo.KeepDaily)
|
|
|
|
args = maybeAddArgInt(args, "--keep-weekly", fo.KeepWeekly)
|
|
|
|
args = maybeAddArgInt(args, "--keep-monthly", fo.KeepMonthly)
|
|
|
|
args = maybeAddArgInt(args, "--keep-yearly", fo.KeepYearly)
|
2022-02-23 00:39:01 +00:00
|
|
|
|
2022-02-23 22:13:00 +00:00
|
|
|
// Add keep-within-*
|
|
|
|
|
2022-02-23 00:39:01 +00:00
|
|
|
if fo.KeepWithin > 0 {
|
2022-02-23 22:13:00 +00:00
|
|
|
args = append(args, "--keep-within", fo.KeepWithin.String())
|
2022-02-23 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if fo.KeepWithinHourly > 0 {
|
|
|
|
args = append(args, "--keep-within-hourly", fo.KeepWithinHourly.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
if fo.KeepWithinDaily > 0 {
|
|
|
|
args = append(args, "--keep-within-daily", fo.KeepWithinDaily.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
if fo.KeepWithinWeekly > 0 {
|
|
|
|
args = append(args, "--keep-within-weekly", fo.KeepWithinWeekly.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
if fo.KeepWithinMonthly > 0 {
|
|
|
|
args = append(args, "--keep-within-monthly", fo.KeepWithinMonthly.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
if fo.KeepWithinYearly > 0 {
|
|
|
|
args = append(args, "--keep-within-yearly", fo.KeepWithinYearly.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add tags
|
2022-02-23 22:13:00 +00:00
|
|
|
for _, tagList := range fo.Tags {
|
|
|
|
args = append(args, "--tag", tagList.String())
|
2022-02-23 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
2022-02-23 22:13:00 +00:00
|
|
|
for _, tagList := range fo.KeepTags {
|
|
|
|
args = append(args, "--keep-tag", tagList.String())
|
2022-02-23 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add prune options
|
2022-02-24 06:53:18 +00:00
|
|
|
args = maybeAddArgBool(args, "--prune", fo.Prune)
|
|
|
|
|
|
|
|
return args
|
|
|
|
}
|
|
|
|
|
|
|
|
type ResticGlobalOpts struct {
|
2022-11-03 22:34:17 +00:00
|
|
|
CaCertFile string `hcl:"CaCertFile,optional"`
|
|
|
|
CacheDir string `hcl:"CacheDir,optional"`
|
|
|
|
PasswordFile string `hcl:"PasswordFile,optional"`
|
|
|
|
TLSClientCertFile string `hcl:"TlsClientCertFile,optional"`
|
|
|
|
LimitDownload int `hcl:"LimitDownload,optional"`
|
|
|
|
LimitUpload int `hcl:"LimitUpload,optional"`
|
|
|
|
Options map[string]string `hcl:"Options,optional"`
|
|
|
|
VerboseLevel int `hcl:"VerboseLevel,optional"`
|
|
|
|
CleanupCache bool `hcl:"CleanupCache,optional"`
|
|
|
|
NoCache bool `hcl:"NoCache,optional"`
|
|
|
|
NoLock bool `hcl:"NoLock,optional"`
|
2022-02-24 06:53:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (glo ResticGlobalOpts) ToArgs() (args []string) {
|
|
|
|
args = maybeAddArgString(args, "--cacert", glo.CaCertFile)
|
|
|
|
args = maybeAddArgString(args, "--cache-dir", glo.CacheDir)
|
|
|
|
args = maybeAddArgString(args, "--password-file", glo.PasswordFile)
|
|
|
|
args = maybeAddArgString(args, "--tls-client-cert", glo.TLSClientCertFile)
|
|
|
|
args = maybeAddArgInt(args, "--limit-download", glo.LimitDownload)
|
|
|
|
args = maybeAddArgInt(args, "--limit-upload", glo.LimitUpload)
|
|
|
|
args = maybeAddArgInt(args, "--verbose", glo.VerboseLevel)
|
|
|
|
args = maybeAddArgBool(args, "--cleanup-cache", glo.CleanupCache)
|
|
|
|
args = maybeAddArgBool(args, "--no-cache", glo.NoCache)
|
|
|
|
args = maybeAddArgBool(args, "--no-lock", glo.NoLock)
|
2022-02-23 00:39:01 +00:00
|
|
|
|
2022-11-03 22:34:17 +00:00
|
|
|
for key, value := range glo.Options {
|
2022-11-03 23:43:17 +00:00
|
|
|
args = append(args, "--option", fmt.Sprintf("%s='%s'", key, value))
|
2022-11-03 22:34:17 +00:00
|
|
|
}
|
|
|
|
|
2022-02-23 00:39:01 +00:00
|
|
|
return args
|
|
|
|
}
|
|
|
|
|
2022-02-24 06:53:18 +00:00
|
|
|
type Restic struct {
|
|
|
|
Logger *log.Logger
|
|
|
|
Repo string
|
|
|
|
Env map[string]string
|
|
|
|
Passphrase string
|
|
|
|
GlobalOpts *ResticGlobalOpts
|
|
|
|
Cwd string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rcmd Restic) BuildEnv() []string {
|
|
|
|
if rcmd.Env == nil {
|
|
|
|
rcmd.Env = map[string]string{}
|
|
|
|
}
|
|
|
|
|
|
|
|
if rcmd.Passphrase != "" {
|
|
|
|
rcmd.Env["RESTIC_PASSWORD"] = rcmd.Passphrase
|
|
|
|
}
|
|
|
|
|
|
|
|
envList := os.Environ()
|
|
|
|
|
|
|
|
for name, value := range rcmd.Env {
|
|
|
|
envList = append(envList, fmt.Sprintf("%s=%s", name, value))
|
|
|
|
}
|
|
|
|
|
|
|
|
return envList
|
|
|
|
}
|
|
|
|
|
2022-04-13 05:28:28 +00:00
|
|
|
type ResticError struct {
|
|
|
|
OriginalError error
|
|
|
|
Command string
|
|
|
|
Output []string
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewResticError(command string, output []string, originalError error) *ResticError {
|
|
|
|
return &ResticError{
|
|
|
|
OriginalError: originalError,
|
|
|
|
Command: command,
|
|
|
|
Output: output,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *ResticError) Error() string {
|
|
|
|
return fmt.Sprintf(
|
|
|
|
"error running restic %s: %s\nOutput:\n%s",
|
|
|
|
e.Command,
|
|
|
|
e.OriginalError,
|
|
|
|
strings.Join(e.Output, "\n"),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *ResticError) Unwrap() error {
|
|
|
|
return e.OriginalError
|
|
|
|
}
|
|
|
|
|
2023-04-25 20:59:32 +00:00
|
|
|
func (rcmd Restic) RunRestic(
|
|
|
|
command string,
|
|
|
|
options CommandOptions,
|
|
|
|
commandArgs ...string,
|
|
|
|
) (*CapturedCommandLogWriter, error) {
|
2022-02-24 06:53:18 +00:00
|
|
|
args := []string{}
|
|
|
|
if rcmd.GlobalOpts != nil {
|
|
|
|
args = rcmd.GlobalOpts.ToArgs()
|
|
|
|
}
|
|
|
|
|
|
|
|
args = append(args, "--repo", rcmd.Repo, command)
|
|
|
|
args = append(args, options.ToArgs()...)
|
|
|
|
args = append(args, commandArgs...)
|
|
|
|
|
|
|
|
cmd := exec.Command("restic", args...)
|
|
|
|
|
2023-04-25 20:59:32 +00:00
|
|
|
output := NewCapturedCommandLogWriter(rcmd.Logger)
|
|
|
|
cmd.Stdout = output.Stdout
|
|
|
|
cmd.Stderr = output.Stderr
|
2022-02-24 06:53:18 +00:00
|
|
|
cmd.Env = rcmd.BuildEnv()
|
|
|
|
cmd.Dir = rcmd.Cwd
|
|
|
|
|
|
|
|
if err := cmd.Run(); err != nil {
|
2022-03-24 21:59:40 +00:00
|
|
|
responseErr := ErrRestic
|
2023-04-25 20:59:32 +00:00
|
|
|
if lineIn("Is there a repository at the following location?", output.Stderr.Lines) {
|
2022-03-24 21:59:40 +00:00
|
|
|
responseErr = ErrRepoNotFound
|
|
|
|
}
|
|
|
|
|
2023-04-25 20:59:32 +00:00
|
|
|
return output, NewResticError(command, output.AllLines(), responseErr)
|
2022-02-24 06:53:18 +00:00
|
|
|
}
|
|
|
|
|
2023-04-25 20:59:32 +00:00
|
|
|
return output, nil
|
2022-02-24 06:53:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (rcmd Restic) Backup(files []string, opts BackupOpts) error {
|
2022-03-24 21:59:40 +00:00
|
|
|
_, err := rcmd.RunRestic("backup", opts, files...)
|
|
|
|
|
|
|
|
return err
|
2022-02-24 06:53:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (rcmd Restic) Restore(snapshot string, opts RestoreOpts) error {
|
2022-03-24 21:59:40 +00:00
|
|
|
_, err := rcmd.RunRestic("restore", opts, snapshot)
|
|
|
|
|
|
|
|
return err
|
2022-02-24 06:53:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (rcmd Restic) Forget(forgetOpts ForgetOpts) error {
|
2022-03-24 21:59:40 +00:00
|
|
|
_, err := rcmd.RunRestic("forget", forgetOpts)
|
|
|
|
|
|
|
|
return err
|
2022-02-23 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 06:53:18 +00:00
|
|
|
func (rcmd Restic) Check() error {
|
2022-03-24 21:59:40 +00:00
|
|
|
_, err := rcmd.RunRestic("check", NoOpts{})
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
type Snapshot struct {
|
2022-04-13 20:44:48 +00:00
|
|
|
UID int `json:"uid"`
|
|
|
|
GID int `json:"gid"`
|
|
|
|
Time time.Time `json:"time"`
|
|
|
|
Tree string `json:"tree"`
|
|
|
|
Hostname string `json:"hostname"`
|
|
|
|
Username string `json:"username"`
|
|
|
|
ID string `json:"id"`
|
2022-11-04 22:18:50 +00:00
|
|
|
ShortID string `json:"short_id"` //nolint:tagliatelle
|
2022-04-13 20:44:48 +00:00
|
|
|
Paths []string `json:"paths"`
|
|
|
|
Tags []string `json:"tags,omitempty"`
|
2022-03-24 21:59:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (rcmd Restic) ReadSnapshots() ([]Snapshot, error) {
|
2023-04-25 20:59:32 +00:00
|
|
|
output, err := rcmd.RunRestic("snapshots", GenericOpts{"--json"})
|
2022-03-24 21:59:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2023-04-25 20:59:32 +00:00
|
|
|
if len(output.Stdout.Lines) == 0 {
|
|
|
|
return nil, fmt.Errorf("no snapshot output to parse: %w", ErrRestic)
|
|
|
|
}
|
2022-03-24 21:59:40 +00:00
|
|
|
|
2023-05-09 22:10:44 +00:00
|
|
|
singleLineOutput := strings.Join(output.Stdout.Lines, "")
|
|
|
|
|
2023-04-25 20:59:32 +00:00
|
|
|
snapshots := new([]Snapshot)
|
2023-05-09 22:10:44 +00:00
|
|
|
if err = json.Unmarshal([]byte(singleLineOutput), snapshots); err != nil {
|
|
|
|
return nil, fmt.Errorf("failed parsing snapshot results from %s: %w", singleLineOutput, err)
|
2022-03-24 21:59:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return *snapshots, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rcmd Restic) Snapshots() error {
|
|
|
|
_, err := rcmd.RunRestic("snapshots", NoOpts{})
|
|
|
|
|
|
|
|
return err
|
2022-02-23 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 06:53:18 +00:00
|
|
|
func (rcmd Restic) EnsureInit() error {
|
2022-03-24 21:59:40 +00:00
|
|
|
if err := rcmd.Snapshots(); errors.Is(err, ErrRepoNotFound) {
|
|
|
|
_, err := rcmd.RunRestic("init", NoOpts{})
|
|
|
|
|
|
|
|
return err
|
2022-02-23 00:39:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|