mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 02:01:43 +03:00
64 lines
988 B
Go
64 lines
988 B
Go
package commands
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
|
|
"github.com/MichaelMure/git-bug/cache"
|
|
"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("You must provide a label")
|
|
}
|
|
|
|
backend, err := cache.NewRepoCache(repo)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer backend.Close()
|
|
|
|
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
|
|
}
|
|
|
|
err = b.ChangeLabels(os.Stdout, add, remove)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return b.Commit()
|
|
}
|
|
|
|
var labelCmd = &cobra.Command{
|
|
Use: "label <id> [<label>...]",
|
|
Short: "Manipulate bug's label",
|
|
RunE: runLabel,
|
|
}
|
|
|
|
func init() {
|
|
RootCmd.AddCommand(labelCmd)
|
|
|
|
labelCmd.Flags().BoolVarP(&labelRemove, "remove", "r", false,
|
|
"Remove a label",
|
|
)
|
|
}
|