2018-09-21 15:02:05 +03:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/MichaelMure/git-bug/cache"
|
2018-10-25 00:36:39 +03:00
|
|
|
"github.com/MichaelMure/git-bug/util/interrupt"
|
2018-09-21 15:02:05 +03:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func runLsLabel(cmd *cobra.Command, args []string) error {
|
|
|
|
backend, err := cache.NewRepoCache(repo)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer backend.Close()
|
2018-10-25 00:36:39 +03:00
|
|
|
interrupt.RegisterCleaner(backend.Close)
|
2018-09-21 15:02:05 +03:00
|
|
|
|
|
|
|
labels := backend.ValidLabels()
|
|
|
|
|
|
|
|
for _, l := range labels {
|
|
|
|
fmt.Println(l)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var lsLabelCmd = &cobra.Command{
|
|
|
|
Use: "ls-label",
|
2019-02-24 16:46:08 +03:00
|
|
|
Short: "List valid labels.",
|
2018-09-21 15:02:05 +03:00
|
|
|
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.`,
|
2018-10-17 21:38:10 +03:00
|
|
|
PreRunE: loadRepo,
|
|
|
|
RunE: runLsLabel,
|
2018-09-21 15:02:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
RootCmd.AddCommand(lsLabelCmd)
|
|
|
|
}
|