mirror of
https://github.com/kopia/kopia.git
synced 2026-01-25 23:08:01 -05:00
* cli: added standard --json flags to several commands Fixes #272 * Update flag description Co-authored-by: Julio López <julio+gh@kasten.io>
46 lines
1.0 KiB
Go
46 lines
1.0 KiB
Go
package cli
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/kopia/kopia/repo"
|
|
"github.com/kopia/kopia/repo/blob"
|
|
)
|
|
|
|
var (
|
|
blobListCommand = blobCommands.Command("list", "List BLOBs").Alias("ls")
|
|
blobListPrefix = blobListCommand.Flag("prefix", "Blob ID prefix").String()
|
|
blobListMinSize = blobListCommand.Flag("min-size", "Minimum size").Int64()
|
|
blobListMaxSize = blobListCommand.Flag("max-size", "Maximum size").Int64()
|
|
)
|
|
|
|
func runBlobList(ctx context.Context, rep repo.DirectRepository) error {
|
|
var jl jsonList
|
|
|
|
jl.begin()
|
|
defer jl.end()
|
|
|
|
return rep.BlobReader().ListBlobs(ctx, blob.ID(*blobListPrefix), func(b blob.Metadata) error {
|
|
if *blobListMaxSize != 0 && b.Length > *blobListMaxSize {
|
|
return nil
|
|
}
|
|
|
|
if *blobListMinSize != 0 && b.Length < *blobListMinSize {
|
|
return nil
|
|
}
|
|
|
|
if jsonOutput {
|
|
jl.emit(b)
|
|
} else {
|
|
fmt.Printf("%-70v %10v %v\n", b.BlobID, b.Length, formatTimestamp(b.Timestamp))
|
|
}
|
|
return nil
|
|
})
|
|
}
|
|
|
|
func init() {
|
|
registerJSONOutputFlags(blobListCommand)
|
|
blobListCommand.Action(directRepositoryReadAction(runBlobList))
|
|
}
|