autorestic/cmd/restore.go

64 lines
1.9 KiB
Go
Raw Normal View History

2021-04-11 14:03:38 +02:00
package cmd
import (
"fmt"
"github.com/cupcakearmy/autorestic/internal"
"github.com/cupcakearmy/autorestic/internal/lock"
2021-04-11 14:03:38 +02:00
"github.com/spf13/cobra"
)
var restoreCmd = &cobra.Command{
2021-10-31 22:31:47 +01:00
Use: "restore [snapshot id]",
2021-04-11 14:03:38 +02:00
Short: "Restore backup for location",
2021-10-31 22:31:47 +01:00
Args: cobra.MaximumNArgs(1),
2021-04-11 14:03:38 +02:00
Run: func(cmd *cobra.Command, args []string) {
2021-11-23 12:32:35 +01:00
internal.GetConfig()
err := lock.Lock()
CheckErr(err)
defer lock.Unlock()
2021-04-11 14:03:38 +02:00
location, _ := cmd.Flags().GetString("location")
l, ok := internal.GetLocation(location)
2021-04-11 14:03:38 +02:00
if !ok {
CheckErr(fmt.Errorf("invalid location \"%s\"", location))
2021-04-11 14:03:38 +02:00
}
target, _ := cmd.Flags().GetString("to")
from, _ := cmd.Flags().GetString("from")
force, _ := cmd.Flags().GetBool("force")
2021-10-31 22:31:47 +01:00
snapshot := ""
if len(args) > 0 {
snapshot = args[0]
}
// Get optional flags
optional := []string{}
for _, flag := range []string{"include", "exclude", "iinclude", "iexclude"} {
values, err := cmd.Flags().GetStringSlice(flag)
if err == nil {
for _, value := range values {
optional = append(optional, "--"+flag, value)
}
}
}
err = l.Restore(target, from, force, snapshot, optional)
CheckErr(err)
2021-04-11 14:03:38 +02:00
},
}
func init() {
rootCmd.AddCommand(restoreCmd)
restoreCmd.Flags().BoolP("force", "f", false, "Force, target folder will be overwritten")
restoreCmd.Flags().String("from", "", "Which backend to use")
restoreCmd.Flags().String("to", "", "Where to restore the data")
restoreCmd.Flags().StringP("location", "l", "", "Location to be restored")
restoreCmd.MarkFlagRequired("location")
// Passed on flags
restoreCmd.Flags().StringSliceP("include", "i", []string{}, "Include a pattern")
restoreCmd.Flags().StringSliceP("exclude", "e", []string{}, "Exclude a pattern")
restoreCmd.Flags().StringSlice("iinclude", []string{}, "Include a pattern, case insensitive")
restoreCmd.Flags().StringSlice("iexclude", []string{}, "Exclude a pattern, case insensitive")
2021-04-11 14:03:38 +02:00
}