git-bug/commands/label.go

50 lines
948 B
Go
Raw Normal View History

2018-07-18 17:41:09 +03:00
package commands
import (
2020-06-28 19:26:29 +03:00
"github.com/spf13/cobra"
2018-08-13 19:32:11 +03:00
"github.com/MichaelMure/git-bug/cache"
"github.com/MichaelMure/git-bug/commands/select"
"github.com/MichaelMure/git-bug/util/interrupt"
2018-07-18 17:41:09 +03:00
)
2020-06-28 19:26:29 +03:00
func newLabelCommand() *cobra.Command {
env := newEnv()
cmd := &cobra.Command{
Use: "label [<id>]",
Short: "Display, add or remove labels to/from a bug.",
PreRunE: loadRepo(env),
RunE: func(cmd *cobra.Command, args []string) error {
return runLabel(env, args)
},
}
cmd.AddCommand(newLabelAddCommand())
cmd.AddCommand(newLabelRmCommand())
return cmd
}
func runLabel(env *Env, args []string) error {
backend, err := cache.NewRepoCache(env.repo)
if err != nil {
return err
}
defer backend.Close()
interrupt.RegisterCleaner(backend.Close)
b, args, err := _select.ResolveBug(backend, args)
2018-07-18 17:41:09 +03:00
if err != nil {
return err
}
snap := b.Snapshot()
for _, l := range snap.Labels {
2020-06-28 19:26:29 +03:00
env.out.Println(l)
2018-07-18 17:41:09 +03:00
}
return nil
2018-07-18 17:41:09 +03:00
}