2018-09-28 21:39:39 +03:00
|
|
|
package bug
|
|
|
|
|
|
|
|
import (
|
2019-01-19 21:23:31 +03:00
|
|
|
"encoding/json"
|
|
|
|
|
2018-11-21 20:56:12 +03:00
|
|
|
"github.com/MichaelMure/git-bug/identity"
|
2018-09-29 00:51:47 +03:00
|
|
|
"github.com/MichaelMure/git-bug/util/git"
|
2019-02-25 01:05:03 +03:00
|
|
|
"github.com/MichaelMure/git-bug/util/timestamp"
|
2018-09-28 21:39:39 +03:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
2018-09-29 21:41:19 +03:00
|
|
|
var _ Operation = &SetStatusOperation{}
|
2018-09-28 21:39:39 +03:00
|
|
|
|
2018-09-29 21:41:19 +03:00
|
|
|
// SetStatusOperation will change the status of a bug
|
2018-09-28 21:39:39 +03:00
|
|
|
type SetStatusOperation struct {
|
2018-10-01 12:37:17 +03:00
|
|
|
OpBase
|
2019-01-19 21:23:31 +03:00
|
|
|
Status Status
|
2018-09-28 21:39:39 +03:00
|
|
|
}
|
|
|
|
|
2018-09-29 21:41:19 +03:00
|
|
|
func (op *SetStatusOperation) base() *OpBase {
|
2018-10-01 12:37:17 +03:00
|
|
|
return &op.OpBase
|
2018-09-28 21:39:39 +03:00
|
|
|
}
|
2018-09-29 00:51:47 +03:00
|
|
|
|
2018-09-29 21:41:19 +03:00
|
|
|
func (op *SetStatusOperation) Hash() (git.Hash, error) {
|
2018-09-29 00:51:47 +03:00
|
|
|
return hashOperation(op)
|
|
|
|
}
|
2018-09-28 21:39:39 +03:00
|
|
|
|
2018-09-29 21:41:19 +03:00
|
|
|
func (op *SetStatusOperation) Apply(snapshot *Snapshot) {
|
2018-09-28 21:39:39 +03:00
|
|
|
snapshot.Status = op.Status
|
2018-09-30 18:15:54 +03:00
|
|
|
|
|
|
|
hash, err := op.Hash()
|
|
|
|
if err != nil {
|
|
|
|
// Should never error unless a programming error happened
|
|
|
|
// (covered in OpBase.Validate())
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
item := &SetStatusTimelineItem{
|
|
|
|
hash: hash,
|
|
|
|
Author: op.Author,
|
2019-02-25 01:05:03 +03:00
|
|
|
UnixTime: timestamp.Timestamp(op.UnixTime),
|
2018-09-30 18:15:54 +03:00
|
|
|
Status: op.Status,
|
|
|
|
}
|
|
|
|
|
|
|
|
snapshot.Timeline = append(snapshot.Timeline, item)
|
2018-09-28 21:39:39 +03:00
|
|
|
}
|
|
|
|
|
2018-09-29 21:41:19 +03:00
|
|
|
func (op *SetStatusOperation) Validate() error {
|
2018-09-28 21:39:39 +03:00
|
|
|
if err := opBaseValidate(op, SetStatusOp); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := op.Status.Validate(); err != nil {
|
|
|
|
return errors.Wrap(err, "status")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-01-19 21:23:31 +03:00
|
|
|
// Workaround to avoid the inner OpBase.MarshalJSON overriding the outer op
|
|
|
|
// MarshalJSON
|
|
|
|
func (op *SetStatusOperation) MarshalJSON() ([]byte, error) {
|
|
|
|
base, err := json.Marshal(op.OpBase)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// revert back to a flat map to be able to add our own fields
|
|
|
|
var data map[string]interface{}
|
|
|
|
if err := json.Unmarshal(base, &data); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
data["status"] = op.Status
|
|
|
|
|
|
|
|
return json.Marshal(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Workaround to avoid the inner OpBase.MarshalJSON overriding the outer op
|
|
|
|
// MarshalJSON
|
|
|
|
func (op *SetStatusOperation) UnmarshalJSON(data []byte) error {
|
|
|
|
// Unmarshal OpBase and the op separately
|
|
|
|
|
|
|
|
base := OpBase{}
|
|
|
|
err := json.Unmarshal(data, &base)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
aux := struct {
|
|
|
|
Status Status `json:"status"`
|
|
|
|
}{}
|
|
|
|
|
|
|
|
err = json.Unmarshal(data, &aux)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
op.OpBase = base
|
|
|
|
op.Status = aux.Status
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-12-23 19:11:37 +03:00
|
|
|
// Sign post method for gqlgen
|
|
|
|
func (op *SetStatusOperation) IsAuthored() {}
|
|
|
|
|
2018-11-21 20:56:12 +03:00
|
|
|
func NewSetStatusOp(author identity.Interface, unixTime int64, status Status) *SetStatusOperation {
|
2018-09-29 21:41:19 +03:00
|
|
|
return &SetStatusOperation{
|
2018-09-28 21:39:39 +03:00
|
|
|
OpBase: newOpBase(SetStatusOp, author, unixTime),
|
|
|
|
Status: status,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-30 18:15:54 +03:00
|
|
|
type SetStatusTimelineItem struct {
|
|
|
|
hash git.Hash
|
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
|
|
|
Status Status
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s SetStatusTimelineItem) Hash() git.Hash {
|
|
|
|
return s.hash
|
|
|
|
}
|
|
|
|
|
2018-09-28 21:39:39 +03:00
|
|
|
// Convenience function to apply the operation
|
2018-11-21 20:56:12 +03:00
|
|
|
func Open(b Interface, author identity.Interface, unixTime int64) (*SetStatusOperation, error) {
|
2018-09-28 21:39:39 +03:00
|
|
|
op := NewSetStatusOp(author, unixTime, OpenStatus)
|
|
|
|
if err := op.Validate(); err != nil {
|
2018-10-02 00:31:16 +03:00
|
|
|
return nil, err
|
2018-09-28 21:39:39 +03:00
|
|
|
}
|
|
|
|
b.Append(op)
|
2018-10-02 00:31:16 +03:00
|
|
|
return op, nil
|
2018-09-28 21:39:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convenience function to apply the operation
|
2018-11-21 20:56:12 +03:00
|
|
|
func Close(b Interface, author identity.Interface, unixTime int64) (*SetStatusOperation, error) {
|
2018-09-28 21:39:39 +03:00
|
|
|
op := NewSetStatusOp(author, unixTime, ClosedStatus)
|
|
|
|
if err := op.Validate(); err != nil {
|
2018-10-02 00:31:16 +03:00
|
|
|
return nil, err
|
2018-09-28 21:39:39 +03:00
|
|
|
}
|
|
|
|
b.Append(op)
|
2018-10-02 00:31:16 +03:00
|
|
|
return op, nil
|
2018-09-28 21:39:39 +03:00
|
|
|
}
|