git-bug/operations/add_comment.go

76 lines
1.7 KiB
Go
Raw Normal View History

2018-07-13 23:53:53 +03:00
package operations
2018-07-14 23:18:40 +03:00
import (
"fmt"
2018-07-14 23:18:40 +03:00
"github.com/MichaelMure/git-bug/bug"
"github.com/MichaelMure/git-bug/util/git"
"github.com/MichaelMure/git-bug/util/text"
2018-07-14 23:18:40 +03:00
)
2018-07-13 23:53:53 +03:00
// AddCommentOperation will add a new comment in the bug
2018-07-13 23:53:53 +03:00
var _ bug.Operation = AddCommentOperation{}
type AddCommentOperation struct {
*bug.OpBase
Message string `json:"message"`
// TODO: change for a map[string]util.hash to store the filename ?
Files []git.Hash `json:"files"`
2018-07-13 23:53:53 +03:00
}
func (op AddCommentOperation) Apply(snapshot bug.Snapshot) bug.Snapshot {
comment := bug.Comment{
Message: op.Message,
Author: op.Author,
Files: op.Files,
UnixTime: op.UnixTime,
2018-07-13 23:53:53 +03:00
}
snapshot.Comments = append(snapshot.Comments, comment)
return snapshot
}
func (op AddCommentOperation) GetFiles() []git.Hash {
return op.Files
}
func (op AddCommentOperation) Validate() error {
if err := bug.OpBaseValidate(op, bug.AddCommentOp); err != nil {
return err
}
if text.Empty(op.Message) {
return fmt.Errorf("message is empty")
}
if !text.Safe(op.Message) {
return fmt.Errorf("message is not fully printable")
}
return nil
}
func NewAddCommentOp(author bug.Person, message string, files []git.Hash) AddCommentOperation {
2018-07-25 22:25:26 +03:00
return AddCommentOperation{
OpBase: bug.NewOpBase(bug.AddCommentOp, author),
Message: message,
Files: files,
2018-07-25 22:25:26 +03:00
}
}
// Convenience function to apply the operation
func Comment(b bug.Interface, author bug.Person, message string) error {
return CommentWithFiles(b, author, message, nil)
}
func CommentWithFiles(b bug.Interface, author bug.Person, message string, files []git.Hash) error {
addCommentOp := NewAddCommentOp(author, message, files)
if err := addCommentOp.Validate(); err != nil {
return err
}
b.Append(addCommentOp)
return nil
}