aboutsummaryrefslogblamecommitdiffstats
path: root/commands/label_ls.go
blob: 242eb00c6b479106d3565e5579a6da28fa528e88 (plain) (tree)
































                                                                                                                                                                                                        
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
}