mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 10:12:06 +03:00
73 lines
1.6 KiB
Go
73 lines
1.6 KiB
Go
package commands
|
|
|
|
import (
|
|
"errors"
|
|
"flag"
|
|
"github.com/MichaelMure/git-bug/bug"
|
|
"github.com/MichaelMure/git-bug/bug/operations"
|
|
"github.com/MichaelMure/git-bug/commands/input"
|
|
"github.com/MichaelMure/git-bug/repository"
|
|
)
|
|
|
|
var commentFlagSet = flag.NewFlagSet("comment", flag.ExitOnError)
|
|
|
|
var (
|
|
commentMessageFile = commentFlagSet.String("F", "", "Take the message from the given file. Use - to read the message from the standard input")
|
|
commentMessage = commentFlagSet.String("m", "", "Provide the new message from the command line")
|
|
)
|
|
|
|
func runComment(repo repository.Repo, args []string) error {
|
|
commentFlagSet.Parse(args)
|
|
args = commentFlagSet.Args()
|
|
|
|
var err error
|
|
|
|
if len(args) > 1 {
|
|
return errors.New("Only one bug id is supported")
|
|
}
|
|
|
|
if len(args) == 0 {
|
|
return errors.New("You must provide a bug id")
|
|
}
|
|
|
|
prefix := args[0]
|
|
|
|
if *commentMessageFile != "" && *commentMessage == "" {
|
|
*commentMessage, err = input.FromFile(*commentMessageFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if *commentMessageFile == "" && *commentMessage == "" {
|
|
*commentMessage, err = input.LaunchEditor(repo, messageFilename)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
author, err := bug.GetUser(repo)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
b, err := bug.FindBug(repo, prefix)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
addCommentOp := operations.NewAddCommentOp(author, *commentMessage)
|
|
|
|
b.Append(addCommentOp)
|
|
|
|
err = b.Commit(repo)
|
|
|
|
return err
|
|
}
|
|
|
|
var commentCmd = &Command{
|
|
Description: "Add a new comment to a bug",
|
|
Usage: "[<options>...] <id>",
|
|
flagSet: commentFlagSet,
|
|
RunMethod: runComment,
|
|
}
|