autorestic/cmd/restore.go

40 lines
1.1 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{
Use: "restore",
Short: "Restore backup for location",
Run: func(cmd *cobra.Command, args []string) {
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")
err = l.Restore(target, from, force)
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")
}