Files
kopia/cli/command_blob_show.go
Jarek Kowalski fcd507a56d Refactored most of the CLI tests to run in-process as opposed to using sub-processes (#1059)
* cli: fixed remaining testability indirections for output and logging

* cli: added cli.RunSubcommand() which is used in testing to execute a subcommand in the same process

* tests: refactored most e2e tests to invoke kopia subcommands in-process

* Makefile: enable code coverage for cli/ and internal/

* testing: pass 'testing' tag to unit tests which uses much faster (insecure) password hashing scheme

* Makefile: push coverage from PRs again

* tests: disable buffer management to reduce memory usage on ARM

* cli: fixed misaligned atomic field on ARMHF

also temporarily fixed statup-time benign race condition when setting
default on the timeZone variable, which is the last global variable.
2021-05-11 22:26:28 -07:00

92 lines
1.9 KiB
Go

package cli
import (
"bytes"
"context"
"encoding/json"
"io"
"github.com/pkg/errors"
"github.com/kopia/kopia/internal/iocopy"
"github.com/kopia/kopia/repo"
"github.com/kopia/kopia/repo/blob"
)
type commandBlobShow struct {
blobShowDecrypt bool
blobShowIDs []string
out textOutput
}
func (c *commandBlobShow) setup(svc appServices, parent commandParent) {
cmd := parent.Command("show", "Show contents of BLOBs").Alias("cat")
cmd.Flag("decrypt", "Decrypt blob if possible").BoolVar(&c.blobShowDecrypt)
cmd.Arg("blobID", "Blob IDs").Required().StringsVar(&c.blobShowIDs)
cmd.Action(svc.directRepositoryReadAction(c.run))
c.out.setup(svc)
}
func (c *commandBlobShow) run(ctx context.Context, rep repo.DirectRepository) error {
for _, blobID := range c.blobShowIDs {
if err := c.maybeDecryptBlob(ctx, c.out.stdout(), rep, blob.ID(blobID)); err != nil {
return errors.Wrap(err, "error presenting blob")
}
}
return nil
}
func (c *commandBlobShow) maybeDecryptBlob(ctx context.Context, w io.Writer, rep repo.DirectRepository, blobID blob.ID) error {
var (
d []byte
err error
)
if c.blobShowDecrypt && canDecryptBlob(blobID) {
d, err = rep.IndexBlobReader().DecryptBlob(ctx, blobID)
if isJSONBlob(blobID) && err == nil {
var b bytes.Buffer
if err = json.Indent(&b, d, "", " "); err != nil {
return errors.Wrap(err, "invalid JSON")
}
d = b.Bytes()
}
} else {
d, err = rep.BlobReader().GetBlob(ctx, blobID, 0, -1)
}
if err != nil {
return errors.Wrapf(err, "error getting %v", blobID)
}
if _, err := iocopy.Copy(w, bytes.NewReader(d)); err != nil {
return errors.Wrap(err, "error copying data")
}
return nil
}
func canDecryptBlob(b blob.ID) bool {
switch b[0] {
case 'n', 'm', 'l':
return true
default:
return false
}
}
func isJSONBlob(b blob.ID) bool {
switch b[0] {
case 'm', 'l':
return true
default:
return false
}
}