aboutsummaryrefslogblamecommitdiffstats
path: root/commands/title_edit.go
blob: 2d824383ce402896a0e5c3acfa7f7b4ea18eaba9 (plain) (tree)
1
2
3
4
5
6
7


                


                                              
                                                        








                                                            





                                                
                                                         
















                                                                                 



                                                   








                                        
                             
                              











                                                                          
package commands

import (
	"fmt"

	"github.com/MichaelMure/git-bug/cache"
	"github.com/MichaelMure/git-bug/commands/select"
	"github.com/MichaelMure/git-bug/input"
	"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()

	b, args, err := _select.ResolveBug(backend, args)
	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.")
	}

	err = b.SetTitle(titleEditTitle)
	if err != nil {
		return err
	}

	return b.Commit()
}

var titleEditCmd = &cobra.Command{
	Use:   "edit [<id>]",
	Short: "Edit a title",
	RunE:  runTitleEdit,
}

func init() {
	titleCmd.AddCommand(titleEditCmd)

	titleEditCmd.Flags().SortFlags = false

	titleEditCmd.Flags().StringVarP(&titleEditTitle, "title", "t", "",
		"Provide a title to describe the issue",
	)
}