2018-09-28 21:39:39 +03:00
|
|
|
package bug
|
2018-07-12 22:31:41 +03:00
|
|
|
|
2018-07-18 01:16:06 +03:00
|
|
|
import (
|
2019-01-19 21:23:31 +03:00
|
|
|
"encoding/json"
|
2018-09-15 14:15:00 +03:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2019-08-11 15:08:03 +03:00
|
|
|
"github.com/MichaelMure/git-bug/entity"
|
2018-11-21 20:56:12 +03:00
|
|
|
"github.com/MichaelMure/git-bug/identity"
|
2019-02-25 01:05:03 +03:00
|
|
|
"github.com/MichaelMure/git-bug/util/timestamp"
|
2018-11-21 20:56:12 +03:00
|
|
|
|
2018-09-15 14:15:00 +03:00
|
|
|
"github.com/MichaelMure/git-bug/util/text"
|
2018-07-18 01:16:06 +03:00
|
|
|
)
|
|
|
|
|
2018-09-29 21:41:19 +03:00
|
|
|
var _ Operation = &SetTitleOperation{}
|
2018-07-12 22:31:41 +03:00
|
|
|
|
2018-09-29 21:41:19 +03:00
|
|
|
// SetTitleOperation will change the title of a bug
|
2018-07-12 22:31:41 +03:00
|
|
|
type SetTitleOperation struct {
|
2018-10-01 12:37:17 +03:00
|
|
|
OpBase
|
2019-08-11 15:08:03 +03:00
|
|
|
Title string `json:"title"`
|
|
|
|
Was string `json:"was"`
|
2018-07-12 22:31:41 +03:00
|
|
|
}
|
|
|
|
|
2020-02-03 23:03:48 +03:00
|
|
|
// Sign-post method for gqlgen
|
|
|
|
func (op *SetTitleOperation) IsOperation() {}
|
|
|
|
|
2018-09-29 21:41:19 +03:00
|
|
|
func (op *SetTitleOperation) base() *OpBase {
|
2018-10-01 12:37:17 +03:00
|
|
|
return &op.OpBase
|
2018-09-28 21:39:39 +03:00
|
|
|
}
|
|
|
|
|
2019-08-11 15:08:03 +03:00
|
|
|
func (op *SetTitleOperation) Id() entity.Id {
|
2019-08-07 16:31:38 +03:00
|
|
|
return idOperation(op)
|
2018-09-29 00:51:47 +03:00
|
|
|
}
|
|
|
|
|
2018-09-29 21:41:19 +03:00
|
|
|
func (op *SetTitleOperation) Apply(snapshot *Snapshot) {
|
2018-07-25 22:25:26 +03:00
|
|
|
snapshot.Title = op.Title
|
2019-03-31 23:32:35 +03:00
|
|
|
snapshot.addActor(op.Author)
|
2018-09-30 18:15:54 +03:00
|
|
|
|
|
|
|
item := &SetTitleTimelineItem{
|
2019-08-11 15:08:03 +03:00
|
|
|
id: op.Id(),
|
2018-09-30 18:15:54 +03:00
|
|
|
Author: op.Author,
|
2019-02-25 01:05:03 +03:00
|
|
|
UnixTime: timestamp.Timestamp(op.UnixTime),
|
2018-09-30 18:15:54 +03:00
|
|
|
Title: op.Title,
|
|
|
|
Was: op.Was,
|
|
|
|
}
|
|
|
|
|
|
|
|
snapshot.Timeline = append(snapshot.Timeline, item)
|
2018-07-25 22:25:26 +03:00
|
|
|
}
|
|
|
|
|
2018-09-29 21:41:19 +03:00
|
|
|
func (op *SetTitleOperation) Validate() error {
|
2018-09-28 21:39:39 +03:00
|
|
|
if err := opBaseValidate(op, SetTitleOp); err != nil {
|
2018-09-15 14:15:00 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if text.Empty(op.Title) {
|
|
|
|
return fmt.Errorf("title is empty")
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.Contains(op.Title, "\n") {
|
|
|
|
return fmt.Errorf("title should be a single line")
|
|
|
|
}
|
|
|
|
|
|
|
|
if !text.Safe(op.Title) {
|
|
|
|
return fmt.Errorf("title should be fully printable")
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.Contains(op.Was, "\n") {
|
|
|
|
return fmt.Errorf("previous title should be a single line")
|
|
|
|
}
|
|
|
|
|
|
|
|
if !text.Safe(op.Was) {
|
|
|
|
return fmt.Errorf("previous title should be fully printable")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-08-11 15:08:03 +03:00
|
|
|
// UnmarshalJSON is a two step JSON unmarshaling
|
|
|
|
// This workaround is necessary to avoid the inner OpBase.MarshalJSON
|
|
|
|
// overriding the outer op's MarshalJSON
|
2019-01-19 21:23:31 +03:00
|
|
|
func (op *SetTitleOperation) UnmarshalJSON(data []byte) error {
|
|
|
|
// Unmarshal OpBase and the op separately
|
|
|
|
|
|
|
|
base := OpBase{}
|
|
|
|
err := json.Unmarshal(data, &base)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
aux := struct {
|
|
|
|
Title string `json:"title"`
|
|
|
|
Was string `json:"was"`
|
|
|
|
}{}
|
|
|
|
|
|
|
|
err = json.Unmarshal(data, &aux)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
op.OpBase = base
|
|
|
|
op.Title = aux.Title
|
|
|
|
op.Was = aux.Was
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-12-23 19:11:37 +03:00
|
|
|
// Sign post method for gqlgen
|
|
|
|
func (op *SetTitleOperation) IsAuthored() {}
|
|
|
|
|
2018-11-21 20:56:12 +03:00
|
|
|
func NewSetTitleOp(author identity.Interface, unixTime int64, title string, was string) *SetTitleOperation {
|
2018-09-29 21:41:19 +03:00
|
|
|
return &SetTitleOperation{
|
2018-09-28 21:39:39 +03:00
|
|
|
OpBase: newOpBase(SetTitleOp, author, unixTime),
|
2018-07-13 22:21:24 +03:00
|
|
|
Title: title,
|
2018-08-15 23:01:45 +03:00
|
|
|
Was: was,
|
2018-07-12 22:31:41 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-30 18:15:54 +03:00
|
|
|
type SetTitleTimelineItem struct {
|
2019-08-11 15:08:03 +03:00
|
|
|
id entity.Id
|
2018-11-21 20:56:12 +03:00
|
|
|
Author identity.Interface
|
2019-02-25 01:05:03 +03:00
|
|
|
UnixTime timestamp.Timestamp
|
2018-09-30 18:15:54 +03:00
|
|
|
Title string
|
|
|
|
Was string
|
|
|
|
}
|
|
|
|
|
2019-08-11 15:08:03 +03:00
|
|
|
func (s SetTitleTimelineItem) Id() entity.Id {
|
2019-08-07 16:31:38 +03:00
|
|
|
return s.id
|
2018-09-30 18:15:54 +03:00
|
|
|
}
|
|
|
|
|
2019-06-23 19:32:22 +03:00
|
|
|
// Sign post method for gqlgen
|
|
|
|
func (s *SetTitleTimelineItem) IsAuthored() {}
|
|
|
|
|
2018-07-25 22:25:26 +03:00
|
|
|
// Convenience function to apply the operation
|
2018-11-21 20:56:12 +03:00
|
|
|
func SetTitle(b Interface, author identity.Interface, unixTime int64, title string) (*SetTitleOperation, error) {
|
2018-09-28 21:39:39 +03:00
|
|
|
it := NewOperationIterator(b)
|
2018-08-15 23:01:45 +03:00
|
|
|
|
2018-09-28 21:39:39 +03:00
|
|
|
var lastTitleOp Operation
|
2018-08-15 23:01:45 +03:00
|
|
|
for it.Next() {
|
|
|
|
op := it.Value()
|
2018-09-28 21:39:39 +03:00
|
|
|
if op.base().OperationType == SetTitleOp {
|
2018-08-15 23:01:45 +03:00
|
|
|
lastTitleOp = op
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var was string
|
|
|
|
if lastTitleOp != nil {
|
2018-09-29 21:41:19 +03:00
|
|
|
was = lastTitleOp.(*SetTitleOperation).Title
|
2018-08-15 23:01:45 +03:00
|
|
|
} else {
|
2018-09-29 21:41:19 +03:00
|
|
|
was = b.FirstOp().(*CreateOperation).Title
|
2018-08-15 23:01:45 +03:00
|
|
|
}
|
|
|
|
|
2018-09-25 18:56:58 +03:00
|
|
|
setTitleOp := NewSetTitleOp(author, unixTime, title, was)
|
2018-09-15 14:15:00 +03:00
|
|
|
|
|
|
|
if err := setTitleOp.Validate(); err != nil {
|
2018-10-02 00:31:16 +03:00
|
|
|
return nil, err
|
2018-09-15 14:15:00 +03:00
|
|
|
}
|
|
|
|
|
2018-07-25 19:01:32 +03:00
|
|
|
b.Append(setTitleOp)
|
2018-10-02 00:31:16 +03:00
|
|
|
return setTitleOp, nil
|
2018-07-25 19:01:32 +03:00
|
|
|
}
|