aboutsummaryrefslogtreecommitdiffstats
path: root/commands/label_ls.go
blob: 242eb00c6b479106d3565e5579a6da28fa528e88 (plain) (blame)
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
package commands

import (
	"github.com/spf13/cobra"
)

func newLabelLsCommand() *cobra.Command {
	env := newEnv()

	cmd := &cobra.Command{
		Use:   "ls",
		Short: "List valid labels.",
		Long: `List valid labels.

Note: in the future, a proper label policy could be implemented where valid labels are defined in a configuration file. Until that, the default behavior is to return the list of labels already used.`,
		PreRunE: loadBackend(env),
		RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error {
			return runLabelLs(env)
		}),
	}

	return cmd
}

func runLabelLs(env *Env) error {
	labels := env.backend.ValidLabels()

	for _, l := range labels {
		env.out.Println(l)
	}

	return nil
}