aboutsummaryrefslogtreecommitdiffstats
path: root/commands/new.go
blob: a13e36bf5c95b4ee9cc5fb8b23421592bb2a7952 (plain) (blame)
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
77
78
package commands

import (
	"fmt"
	"github.com/MichaelMure/git-bug/bug"
	"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
	}

	err = newBug.Commit(repo)

	if err != nil {
		return err
	}

	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() {
	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",
	)
}