diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-11 22:04:16 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-11 22:14:46 +0200 |
commit | 3605887345792d2f981f971c6c4a2cb7f86a343e (patch) | |
tree | afd525b6e3a638e4c619a5a986fcb2811c297444 /bug/operations/add_comment.go | |
parent | 7b05983c19af4da70f2a9a5062913f4e4f5d5faa (diff) | |
download | git-bug-3605887345792d2f981f971c6c4a2cb7f86a343e.tar.gz |
reorganize package for a more idomatic go
Diffstat (limited to 'bug/operations/add_comment.go')
-rw-r--r-- | bug/operations/add_comment.go | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/bug/operations/add_comment.go b/bug/operations/add_comment.go deleted file mode 100644 index b4126a8e..00000000 --- a/bug/operations/add_comment.go +++ /dev/null @@ -1,52 +0,0 @@ -package operations - -import ( - "github.com/MichaelMure/git-bug/bug" - "github.com/MichaelMure/git-bug/util" -) - -// AddCommentOperation will add a new comment in the bug - -var _ bug.Operation = AddCommentOperation{} - -type AddCommentOperation struct { - bug.OpBase - Message string - // TODO: change for a map[string]util.hash to store the filename ? - files []util.Hash -} - -func (op AddCommentOperation) Apply(snapshot bug.Snapshot) bug.Snapshot { - comment := bug.Comment{ - Message: op.Message, - Author: op.Author, - Files: op.files, - UnixTime: op.UnixTime, - } - - snapshot.Comments = append(snapshot.Comments, comment) - - return snapshot -} - -func (op AddCommentOperation) Files() []util.Hash { - return op.files -} - -func NewAddCommentOp(author bug.Person, message string, files []util.Hash) AddCommentOperation { - return AddCommentOperation{ - OpBase: bug.NewOpBase(bug.AddCommentOp, author), - Message: message, - files: files, - } -} - -// Convenience function to apply the operation -func Comment(b bug.Interface, author bug.Person, message string) { - CommentWithFiles(b, author, message, nil) -} - -func CommentWithFiles(b bug.Interface, author bug.Person, message string, files []util.Hash) { - addCommentOp := NewAddCommentOp(author, message, files) - b.Append(addCommentOp) -} |