aboutsummaryrefslogblamecommitdiffstats
path: root/commands/comment_add.go
blob: 8736f9c27fa92ffcb6428691ed23bc00263f69fa (plain) (tree)
1
2
3
4
5
6
7
8





                                              
                                                        
                                              








                                                             





                                                







                                                                              
                                                                                 








                                                               
                                                         












                                             
                            
                                   















                                                                                                          
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 (
	commentAddMessageFile string
	commentAddMessage     string
)

func runCommentAdd(cmd *cobra.Command, args []string) error {
	backend, err := cache.NewRepoCache(repo)
	if err != nil {
		return err
	}
	defer backend.Close()

	if commentAddMessageFile != "" && commentAddMessage == "" {
		commentAddMessage, err = input.FromFile(commentAddMessageFile)
		if err != nil {
			return err
		}
	}

	if commentAddMessage == "" {
		commentAddMessage, err = input.BugCommentEditorInput(backend, "")
		if err == input.ErrEmptyMessage {
			fmt.Println("Empty message, aborting.")
			return nil
		}
		if err != nil {
			return err
		}
	}

	b, args, err := _select.ResolveBug(backend, args)
	if err != nil {
		return err
	}

	err = b.AddComment(commentAddMessage)
	if err != nil {
		return err
	}

	return b.Commit()
}

var commentAddCmd = &cobra.Command{
	Use:   "add [<id>]",
	Short: "Add a new comment",
	RunE:  runCommentAdd,
}

func init() {
	commentCmd.AddCommand(commentAddCmd)

	commentCmd.Flags().SortFlags = false

	commentCmd.Flags().StringVarP(&commentAddMessageFile, "file", "F", "",
		"Take the message from the given file. Use - to read the message from the standard input",
	)

	commentCmd.Flags().StringVarP(&commentAddMessage, "message", "m", "",
		"Provide the new message from the command line",
	)
}