git-bug/commands/title_edit.go

71 lines
1.3 KiB
Go
Raw Normal View History

2018-09-16 02:17:06 +03:00
package commands
import (
"fmt"
"github.com/MichaelMure/git-bug/cache"
"github.com/MichaelMure/git-bug/commands/select"
2018-09-16 02:17:06 +03:00
"github.com/MichaelMure/git-bug/input"
"github.com/MichaelMure/git-bug/util/interrupt"
2018-09-16 02:17:06 +03:00
"github.com/spf13/cobra"
)
var (
titleEditTitle string
)
func runTitleEdit(cmd *cobra.Command, args []string) error {
backend, err := cache.NewRepoCache(repo)
if err != nil {
return err
}
defer backend.Close()
interrupt.RegisterCleaner(backend.Close)
2018-09-16 02:17:06 +03:00
b, args, err := _select.ResolveBug(backend, args)
2018-09-16 02:17:06 +03:00
if err != nil {
return err
}
snap := b.Snapshot()
if titleEditTitle == "" {
titleEditTitle, err = input.BugTitleEditorInput(repo, snap.Title)
if err == input.ErrEmptyTitle {
fmt.Println("Empty title, aborting.")
return nil
}
if err != nil {
return err
}
}
if titleEditTitle == snap.Title {
fmt.Println("No change, aborting.")
}
2019-02-24 14:58:04 +03:00
_, err = b.SetTitle(titleEditTitle)
2018-09-16 02:17:06 +03:00
if err != nil {
return err
}
return b.Commit()
}
var titleEditCmd = &cobra.Command{
Use: "edit [<id>]",
Short: "Edit a title of a bug.",
PreRunE: loadRepo,
RunE: runTitleEdit,
2018-09-16 02:17:06 +03:00
}
func init() {
titleCmd.AddCommand(titleEditCmd)
titleEditCmd.Flags().SortFlags = false
titleEditCmd.Flags().StringVarP(&titleEditTitle, "title", "t", "",
"Provide a title to describe the issue",
)
}