File: list.go

package info (click to toggle)
golang-github-peterbourgon-ff 3.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 408 kB
  • sloc: sh: 9; makefile: 4
file content (75 lines) | stat: -rw-r--r-- 1,777 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package listcmd

import (
	"context"
	"flag"
	"fmt"
	"io"
	"text/tabwriter"
	"time"

	"github.com/peterbourgon/ff/v3/ffcli"
	"github.com/peterbourgon/ff/v3/ffcli/examples/objectctl/pkg/rootcmd"
)

// Config for the list subcommand, including a reference
// to the global config, for access to global flags.
type Config struct {
	rootConfig      *rootcmd.Config
	out             io.Writer
	withAccessTimes bool
}

// New creates a new ffcli.Command for the list subcommand.
func New(rootConfig *rootcmd.Config, out io.Writer) *ffcli.Command {
	cfg := Config{
		rootConfig: rootConfig,
		out:        out,
	}

	fs := flag.NewFlagSet("objectctl list", flag.ExitOnError)
	fs.BoolVar(&cfg.withAccessTimes, "a", false, "include last access time of each object")
	rootConfig.RegisterFlags(fs)

	return &ffcli.Command{
		Name:       "list",
		ShortUsage: "objectctl list [flags] [<prefix>]",
		ShortHelp:  "List available objects",
		FlagSet:    fs,
		Exec:       cfg.Exec,
	}
}

// Exec function for this command.
func (c *Config) Exec(ctx context.Context, _ []string) error {
	objects, err := c.rootConfig.Client.List(ctx)
	if err != nil {
		return fmt.Errorf("error executing list: %w", err)
	}

	if len(objects) <= 0 {
		fmt.Fprintf(c.out, "no objects\n")
		return nil
	}

	if c.rootConfig.Verbose {
		fmt.Fprintf(c.out, "object count: %d\n", len(objects))
	}

	tw := tabwriter.NewWriter(c.out, 0, 2, 2, ' ', 0)
	if c.withAccessTimes {
		fmt.Fprintf(tw, "KEY\tVALUE\tATIME\n")
	} else {
		fmt.Fprintf(tw, "KEY\tVALUE\n")
	}
	for _, object := range objects {
		if c.withAccessTimes {
			fmt.Fprintf(tw, "%s\t%s\t%s\n", object.Key, object.Value, object.Access.Format(time.RFC3339))
		} else {
			fmt.Fprintf(tw, "%s\t%s\n", object.Key, object.Value)
		}
	}
	tw.Flush()

	return nil
}