aboutsummaryrefslogtreecommitdiffstats
path: root/commands/comment.go
blob: 27908793f205b84a5ecb5fb80339c4ad5974ef5d (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
package commands

import (
	"errors"
	"flag"
	"fmt"
	"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) == 0 {
		return errors.New("No bug id provided")
	}
	if len(args) > 1 {
		return errors.New("Only accepting one bug id is supported")
	}

	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
	}

	bug, err := bug.FindBug(repo, prefix)
	if err != nil {
		return err
	}

	addCommentOp := operations.NewAddCommentOp(author, *commentMessage)

	bug.Append(addCommentOp)

	err = bug.Commit(repo)

	return err
}

var commentCmd = &Command{
	Usage: func(arg0 string) {
		fmt.Printf("Usage: %s comment <id> [<option>...]\n\nOptions:\n", arg0)
		commentFlagSet.PrintDefaults()
	},
	RunMethod: runComment,
}