restic/cmd/restic/cmd_restore.go

60 lines
1.1 KiB
Go
Raw Normal View History

2014-04-28 00:00:15 +02:00
package main
import (
"errors"
2014-09-23 22:39:12 +02:00
"fmt"
"os"
2014-04-28 00:00:15 +02:00
2014-12-05 21:45:49 +01:00
"github.com/restic/restic"
"github.com/restic/restic/backend"
2014-04-28 00:00:15 +02:00
)
2014-11-30 22:39:58 +01:00
func init() {
commands["restore"] = commandRestore
}
2014-12-05 21:45:49 +01:00
func commandRestore(be backend.Server, key *restic.Key, args []string) error {
2014-04-28 00:00:15 +02:00
if len(args) != 2 {
return errors.New("usage: restore ID dir")
}
id, err := backend.FindSnapshot(be, args[0])
2014-04-28 00:00:15 +02:00
if err != nil {
2014-08-03 15:16:56 +02:00
errx(1, "invalid id %q: %v", args[0], err)
2014-04-28 00:00:15 +02:00
}
target := args[1]
2014-09-23 22:39:12 +02:00
// create restorer
2014-12-05 21:45:49 +01:00
res, err := restic.NewRestorer(be, key, id)
2014-08-04 22:46:14 +02:00
if err != nil {
2014-09-23 22:39:12 +02:00
fmt.Fprintf(os.Stderr, "creating restorer failed: %v\n", err)
os.Exit(2)
2014-08-04 22:46:14 +02:00
}
2014-12-05 21:45:49 +01:00
res.Error = func(dir string, node *restic.Node, err error) error {
2014-09-23 22:39:12 +02:00
fmt.Fprintf(os.Stderr, "error for %s: %+v\n", dir, err)
// if node.Type == "dir" {
// if e, ok := err.(*os.PathError); ok {
// if errn, ok := e.Err.(syscall.Errno); ok {
// if errn == syscall.EEXIST {
// fmt.Printf("ignoring already existing directory %s\n", dir)
// return nil
// }
// }
// }
// }
return err
2014-04-28 00:00:15 +02:00
}
2014-09-23 22:39:12 +02:00
fmt.Printf("restoring %s to %s\n", res.Snapshot(), target)
err = res.RestoreTo(target)
if err != nil {
return err
}
2014-04-28 00:00:15 +02:00
return nil
}