git-bug/commands/new.go

80 lines
1.5 KiB
Go
Raw Normal View History

package commands
import (
2018-07-17 02:52:56 +03:00
"fmt"
2018-08-13 19:32:11 +03:00
"github.com/MichaelMure/git-bug/bug"
2018-07-13 17:13:40 +03:00
"github.com/MichaelMure/git-bug/bug/operations"
"github.com/MichaelMure/git-bug/input"
"github.com/spf13/cobra"
)
var (
newTitle string
newMessage string
newMessageFile string
)
func runNewBug(cmd *cobra.Command, args []string) error {
var err error
if newMessageFile != "" && newMessage == "" {
newMessage, err = input.FromFile(newMessageFile)
if err != nil {
return err
}
}
if newMessage == "" || newTitle == "" {
newTitle, newMessage, err = input.BugCreateEditorInput(repo, newTitle, newMessage)
if err == input.ErrEmptyTitle {
fmt.Println("Empty title, aborting.")
return nil
}
if err != nil {
return err
}
}
author, err := bug.GetUser(repo)
if err != nil {
return err
}
newBug, err := operations.Create(author, newTitle, newMessage)
if err != nil {
return err
}
2018-07-12 16:14:37 +03:00
err = newBug.Commit(repo)
if err != nil {
return err
}
2018-07-17 02:52:56 +03:00
fmt.Printf("%s created\n", newBug.HumanId())
return nil
}
var newCmd = &cobra.Command{
Use: "new [<option>...]",
Short: "Create a new bug",
RunE: runNewBug,
}
func init() {
2018-07-20 16:46:14 +03:00
RootCmd.AddCommand(newCmd)
newCmd.Flags().StringVarP(&newTitle, "title", "t", "",
"Provide a title to describe the issue",
)
newCmd.Flags().StringVarP(&newMessage, "message", "m", "",
"Provide a message to describe the issue",
)
newCmd.Flags().StringVarP(&newMessageFile, "file", "F", "",
"Take the message from the given file. Use - to read the message from the standard input",
)
}