Files
kopia/cli/command_content_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

50 lines
1.3 KiB
Go

package cli
import (
"bytes"
"context"
"github.com/pkg/errors"
"github.com/kopia/kopia/repo"
"github.com/kopia/kopia/repo/content"
)
type commandContentShow struct {
ids []string
indentJSON bool
decompress bool
out textOutput
}
func (c *commandContentShow) setup(svc appServices, parent commandParent) {
cmd := parent.Command("show", "Show contents by ID.").Alias("cat")
cmd.Arg("id", "IDs of contents to show").Required().StringsVar(&c.ids)
cmd.Flag("json", "Pretty-print JSON content").Short('j').BoolVar(&c.indentJSON)
cmd.Flag("unzip", "Transparently decompress the content").Short('z').BoolVar(&c.decompress)
cmd.Action(svc.directRepositoryReadAction(c.run))
c.out.setup(svc)
}
func (c *commandContentShow) run(ctx context.Context, rep repo.DirectRepository) error {
for _, contentID := range toContentIDs(c.ids) {
if err := c.contentShow(ctx, rep, contentID); err != nil {
return err
}
}
return nil
}
func (c *commandContentShow) contentShow(ctx context.Context, r repo.DirectRepository, contentID content.ID) error {
data, err := r.ContentReader().GetContent(ctx, contentID)
if err != nil {
return errors.Wrapf(err, "error getting content %v", contentID)
}
return showContentWithFlags(c.out.stdout(), bytes.NewReader(data), c.decompress, c.indentJSON)
}