mirror of
https://github.com/octoleo/restic.git
synced 2024-11-15 17:47:21 +00:00
175 lines
3.1 KiB
Go
175 lines
3.1 KiB
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
|
|
"github.com/restic/restic"
|
|
"github.com/restic/restic/backend"
|
|
"github.com/restic/restic/debug"
|
|
"github.com/restic/restic/pack"
|
|
"github.com/restic/restic/server"
|
|
)
|
|
|
|
type CmdCat struct{}
|
|
|
|
func init() {
|
|
_, err := parser.AddCommand("cat",
|
|
"dump something",
|
|
"The cat command dumps data structures or data from a repository",
|
|
&CmdCat{})
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func (cmd CmdCat) Usage() string {
|
|
return "[pack|blob|tree|snapshot|key|masterkey|lock] ID"
|
|
}
|
|
|
|
func (cmd CmdCat) Execute(args []string) error {
|
|
if len(args) < 1 || (args[0] != "masterkey" && len(args) != 2) {
|
|
return fmt.Errorf("type or ID not specified, Usage: %s", cmd.Usage())
|
|
}
|
|
|
|
s, err := OpenRepo()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
tpe := args[0]
|
|
|
|
var id backend.ID
|
|
if tpe != "masterkey" {
|
|
id, err = backend.ParseID(args[1])
|
|
if err != nil {
|
|
id = nil
|
|
|
|
if tpe != "snapshot" {
|
|
return err
|
|
}
|
|
|
|
// find snapshot id with prefix
|
|
name, err := s.FindSnapshot(args[1])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
id, err = backend.ParseID(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
// handle all types that don't need an index
|
|
switch tpe {
|
|
case "index":
|
|
buf, err := s.Load(backend.Index, id)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = os.Stdout.Write(append(buf, '\n'))
|
|
return err
|
|
|
|
case "snapshot":
|
|
sn := &restic.Snapshot{}
|
|
err = s.LoadJSONUnpacked(backend.Snapshot, id, sn)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
buf, err := json.MarshalIndent(&sn, "", " ")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Println(string(buf))
|
|
|
|
return nil
|
|
case "key":
|
|
rd, err := s.Backend().Get(backend.Key, id.String())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
dec := json.NewDecoder(rd)
|
|
|
|
var key server.Key
|
|
err = dec.Decode(&key)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
buf, err := json.MarshalIndent(&key, "", " ")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Println(string(buf))
|
|
return nil
|
|
case "masterkey":
|
|
buf, err := json.MarshalIndent(s.Key().Master(), "", " ")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Println(string(buf))
|
|
return nil
|
|
case "lock":
|
|
return errors.New("not yet implemented")
|
|
}
|
|
|
|
// load index, handle all the other types
|
|
err = s.LoadIndex()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
switch tpe {
|
|
case "pack":
|
|
rd, err := s.Backend().Get(backend.Data, id.String())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = io.Copy(os.Stdout, rd)
|
|
return err
|
|
|
|
case "blob":
|
|
data, err := s.LoadBlob(pack.Data, id)
|
|
if err == nil {
|
|
_, err = os.Stdout.Write(data)
|
|
return err
|
|
}
|
|
|
|
_, err = os.Stdout.Write(data)
|
|
return err
|
|
|
|
case "tree":
|
|
debug.Log("cat", "cat tree %v", id.Str())
|
|
tree := restic.NewTree()
|
|
err = s.LoadJSONPack(pack.Tree, id, tree)
|
|
if err != nil {
|
|
debug.Log("cat", "unable to load tree %v: %v", id.Str(), err)
|
|
return err
|
|
}
|
|
|
|
buf, err := json.MarshalIndent(&tree, "", " ")
|
|
if err != nil {
|
|
debug.Log("cat", "error json.MarshalIndent(): %v", err)
|
|
return err
|
|
}
|
|
|
|
_, err = os.Stdout.Write(append(buf, '\n'))
|
|
return nil
|
|
|
|
default:
|
|
return errors.New("invalid type")
|
|
}
|
|
}
|