From cc086ebae99dfeb936d9397f4e3eedf5d37a97b1 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Mon, 17 Sep 2018 14:32:33 +0200 Subject: commands: make "label" display the current labels --- commands/label.go | 52 ++++++++++------------------------------------------ 1 file changed, 10 insertions(+), 42 deletions(-) (limited to 'commands/label.go') diff --git a/commands/label.go b/commands/label.go index 37013f3f..c693f82c 100644 --- a/commands/label.go +++ b/commands/label.go @@ -5,19 +5,16 @@ import ( "fmt" "github.com/MichaelMure/git-bug/cache" - "github.com/MichaelMure/git-bug/operations" "github.com/spf13/cobra" ) -var labelRemove bool - func runLabel(cmd *cobra.Command, args []string) error { - if len(args) == 0 { - return errors.New("You must provide a bug id") + if len(args) > 1 { + return errors.New("Only one bug id is supported") } - if len(args) == 1 { - return errors.New("You must provide a label") + if len(args) == 0 { + return errors.New("You must provide a bug id") } backend, err := cache.NewRepoCache(repo) @@ -28,48 +25,23 @@ func runLabel(cmd *cobra.Command, args []string) error { prefix := args[0] - var add, remove []string - - if labelRemove { - remove = args[1:] - } else { - add = args[1:] - } - b, err := backend.ResolveBugPrefix(prefix) if err != nil { return err } - changes, err := b.ChangeLabels(add, remove) - - for _, change := range changes { - switch change.Status { - case operations.LabelChangeAdded: - fmt.Printf("label %s added\n", change.Label) - case operations.LabelChangeRemoved: - fmt.Printf("label %s removed\n", change.Label) - case operations.LabelChangeDuplicateInOp: - fmt.Printf("label %s is a duplicate\n", change.Label) - case operations.LabelChangeAlreadySet: - fmt.Printf("label %s was already set\n", change.Label) - case operations.LabelChangeDoesntExist: - fmt.Printf("label %s doesn't exist on this bug\n", change.Label) - default: - panic(fmt.Sprintf("unknown label change status %v", change.Status)) - } - } + snap := b.Snapshot() - if err != nil { - return err + for _, l := range snap.Labels { + fmt.Println(l) } - return b.Commit() + return nil } var labelCmd = &cobra.Command{ - Use: "label [