1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
package commands
import (
"errors"
"fmt"
"github.com/MichaelMure/git-bug/bug"
"github.com/MichaelMure/git-bug/bug/operations"
"github.com/MichaelMure/git-bug/commands/input"
"github.com/spf13/cobra"
)
var (
newMessageFile string
newMessage string
)
func runNewBug(cmd *cobra.Command, args []string) error {
var err error
if len(args) == 0 {
return errors.New("No title provided")
}
if len(args) > 1 {
return errors.New("Only accepting one title is supported")
}
title := args[0]
if newMessageFile != "" && newMessage == "" {
newMessage, err = input.FromFile(newMessageFile)
if err != nil {
return err
}
}
if newMessageFile == "" && newMessage == "" {
newMessage, err = input.LaunchEditor(repo, messageFilename)
if err != nil {
return err
}
}
author, err := bug.GetUser(repo)
if err != nil {
return err
}
newBug := bug.NewBug()
createOp := operations.NewCreateOp(author, title, newMessage)
newBug.Append(createOp)
err = newBug.Commit(repo)
fmt.Printf("%s created\n", newBug.HumanId())
return err
}
var newCmd = &cobra.Command{
Use: "new <title> [<option>...]",
Short: "Create a new bug",
RunE: runNewBug,
}
func init() {
RootCmd.AddCommand(newCmd)
newCmd.Flags().StringVarP(&newMessageFile, "file", "F", "",
"Take the message from the given file. Use - to read the message from the standard input",
)
newCmd.Flags().StringVarP(&newMessage, "message", "m", "",
"Provide a message to describe the issue",
)
}
|