fix: event marshalling
This commit is contained in:
parent
ad57c89945
commit
353b15ce61
|
@ -1,8 +1,10 @@
|
||||||
package domain
|
package domain
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"crypto/sha256"
|
"crypto/sha256"
|
||||||
|
"encoding"
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
"strings"
|
"strings"
|
||||||
|
@ -53,12 +55,12 @@ func (a *SaltyUser) OnUserRegister(name string, pubkey *keys.EdX25519PublicKey)
|
||||||
type UserRegistered struct {
|
type UserRegistered struct {
|
||||||
Name string
|
Name string
|
||||||
Pubkey *keys.EdX25519PublicKey
|
Pubkey *keys.EdX25519PublicKey
|
||||||
Endpoint ulid.ULID
|
|
||||||
|
|
||||||
eventMeta event.Meta
|
eventMeta event.Meta
|
||||||
}
|
}
|
||||||
|
|
||||||
var _ event.Event = (*UserRegistered)(nil)
|
var _ event.Event = (*UserRegistered)(nil)
|
||||||
|
var _ encoding.TextMarshaler = (*UserRegistered)(nil)
|
||||||
|
|
||||||
func (e *UserRegistered) EventMeta() event.Meta {
|
func (e *UserRegistered) EventMeta() event.Meta {
|
||||||
if e == nil {
|
if e == nil {
|
||||||
|
@ -72,3 +74,23 @@ func (e *UserRegistered) SetEventMeta(m event.Meta) {
|
||||||
e.eventMeta = m
|
e.eventMeta = m
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
func (e *UserRegistered) MarshalText() (text []byte, err error) {
|
||||||
|
var b bytes.Buffer
|
||||||
|
b.WriteString(e.Name)
|
||||||
|
b.WriteRune('\t')
|
||||||
|
b.WriteString(e.Pubkey.String())
|
||||||
|
|
||||||
|
return b.Bytes(), nil
|
||||||
|
}
|
||||||
|
func (e *UserRegistered) UnmarshalText(b []byte) error {
|
||||||
|
name, pub, ok := bytes.Cut(b, []byte{'\t'})
|
||||||
|
if !ok {
|
||||||
|
return fmt.Errorf("parse error")
|
||||||
|
}
|
||||||
|
|
||||||
|
var err error
|
||||||
|
e.Name = string(name)
|
||||||
|
e.Pubkey, err = keys.NewEdX25519PublicKeyFromID(keys.ID(pub))
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@ package es_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
|
@ -110,6 +111,12 @@ func (e *ValueSet) SetEventMeta(eventMeta event.Meta) {
|
||||||
}
|
}
|
||||||
e.eventMeta = eventMeta
|
e.eventMeta = eventMeta
|
||||||
}
|
}
|
||||||
|
func (e *ValueSet) MarshalText() ([]byte, error) {
|
||||||
|
return json.Marshal(e)
|
||||||
|
}
|
||||||
|
func (e *ValueSet) UnmarshalText(b []byte) error {
|
||||||
|
return json.Unmarshal(b, e)
|
||||||
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
_ event.Event = (*ValueSet)(nil)
|
_ event.Event = (*ValueSet)(nil)
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package event_test
|
package event_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/json"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/sour-is/ev/pkg/es/event"
|
"github.com/sour-is/ev/pkg/es/event"
|
||||||
|
@ -50,6 +51,13 @@ func (e *ValueApplied) SetEventMeta(m event.Meta) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (e *ValueApplied) MarshalText() ([]byte, error) {
|
||||||
|
return json.Marshal(e)
|
||||||
|
}
|
||||||
|
func (e *ValueApplied) UnmarshalText(b []byte) error {
|
||||||
|
return json.Unmarshal(b, e)
|
||||||
|
}
|
||||||
|
|
||||||
func TestAggregate(t *testing.T) {
|
func TestAggregate(t *testing.T) {
|
||||||
agg := &Agg{}
|
agg := &Agg{}
|
||||||
event.Append(agg, &ValueApplied{Value: "one"})
|
event.Append(agg, &ValueApplied{Value: "one"})
|
||||||
|
|
|
@ -3,6 +3,8 @@ package event
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"crypto/rand"
|
"crypto/rand"
|
||||||
|
"encoding"
|
||||||
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"strings"
|
"strings"
|
||||||
|
@ -28,6 +30,9 @@ func getULID() ulid.ULID {
|
||||||
type Event interface {
|
type Event interface {
|
||||||
EventMeta() Meta
|
EventMeta() Meta
|
||||||
SetEventMeta(Meta)
|
SetEventMeta(Meta)
|
||||||
|
|
||||||
|
encoding.TextMarshaler
|
||||||
|
encoding.TextUnmarshaler
|
||||||
}
|
}
|
||||||
|
|
||||||
// Events is a list of events
|
// Events is a list of events
|
||||||
|
@ -136,12 +141,18 @@ func (m Meta) Created() time.Time {
|
||||||
}
|
}
|
||||||
func (m Meta) GetEventID() string { return m.EventID.String() }
|
func (m Meta) GetEventID() string { return m.EventID.String() }
|
||||||
|
|
||||||
|
|
||||||
type nilEvent struct{}
|
type nilEvent struct{}
|
||||||
|
|
||||||
func (nilEvent) EventMeta() Meta {
|
func (*nilEvent) EventMeta() Meta {
|
||||||
return Meta{}
|
return Meta{}
|
||||||
}
|
}
|
||||||
func (nilEvent) SetEventMeta(eventMeta Meta) {}
|
func (*nilEvent) SetEventMeta(eventMeta Meta) {}
|
||||||
|
|
||||||
var NilEvent nilEvent
|
var NilEvent = &nilEvent{}
|
||||||
|
|
||||||
|
func (e *nilEvent) MarshalText() ([]byte, error) {
|
||||||
|
return json.Marshal(e)
|
||||||
|
}
|
||||||
|
func (e *nilEvent) UnmarshalText(b []byte) error {
|
||||||
|
return json.Unmarshal(b, e)
|
||||||
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@ package event_test
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
|
"encoding/json"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/matryer/is"
|
"github.com/matryer/is"
|
||||||
|
@ -28,6 +29,12 @@ func (e *DummyEvent) SetEventMeta(eventMeta event.Meta) {
|
||||||
}
|
}
|
||||||
e.eventMeta = eventMeta
|
e.eventMeta = eventMeta
|
||||||
}
|
}
|
||||||
|
func (e *DummyEvent) MarshalText() ([]byte, error) {
|
||||||
|
return json.Marshal(e)
|
||||||
|
}
|
||||||
|
func (e *DummyEvent) UnmarshalText(b []byte) error {
|
||||||
|
return json.Unmarshal(b, e)
|
||||||
|
}
|
||||||
|
|
||||||
func TestEventEncode(t *testing.T) {
|
func TestEventEncode(t *testing.T) {
|
||||||
is := is.New(t)
|
is := is.New(t)
|
||||||
|
|
|
@ -30,8 +30,6 @@ type UnknownEvent struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
var _ Event = (*UnknownEvent)(nil)
|
var _ Event = (*UnknownEvent)(nil)
|
||||||
var _ json.Marshaler = (*UnknownEvent)(nil)
|
|
||||||
var _ json.Unmarshaler = (*UnknownEvent)(nil)
|
|
||||||
|
|
||||||
func NewUnknownEventFromValues(eventType string, meta Meta, values url.Values) *UnknownEvent {
|
func NewUnknownEventFromValues(eventType string, meta Meta, values url.Values) *UnknownEvent {
|
||||||
jsonValues := make(map[string]json.RawMessage, len(values))
|
jsonValues := make(map[string]json.RawMessage, len(values))
|
||||||
|
@ -61,10 +59,10 @@ func (u UnknownEvent) EventType() string { return u.eventType }
|
||||||
func (u *UnknownEvent) SetEventMeta(em Meta) {
|
func (u *UnknownEvent) SetEventMeta(em Meta) {
|
||||||
u.eventMeta = em
|
u.eventMeta = em
|
||||||
}
|
}
|
||||||
func (u *UnknownEvent) UnmarshalJSON(b []byte) error {
|
func (u *UnknownEvent) UnmarshalText(b []byte) error {
|
||||||
return json.Unmarshal(b, &u.values)
|
return json.Unmarshal(b, &u.values)
|
||||||
}
|
}
|
||||||
func (u *UnknownEvent) MarshalJSON() ([]byte, error) {
|
func (u *UnknownEvent) MarshalText() ([]byte, error) {
|
||||||
return json.Marshal(u.values)
|
return json.Marshal(u.values)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -136,15 +134,9 @@ func MarshalText(e Event) (txt []byte, err error) {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
b.WriteRune('\t')
|
b.WriteRune('\t')
|
||||||
if enc, ok := e.(encoding.TextMarshaler); ok {
|
if txt, err = e.MarshalText(); err != nil {
|
||||||
if txt, err = enc.MarshalText(); err != nil {
|
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
if txt, err = json.Marshal(e); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_, err = b.Write(txt)
|
_, err = b.Write(txt)
|
||||||
|
|
||||||
return b.Bytes(), err
|
return b.Bytes(), err
|
||||||
|
@ -167,15 +159,10 @@ func UnmarshalText(ctx context.Context, txt []byte, pos uint64) (e Event, err er
|
||||||
eventType := string(sp[2])
|
eventType := string(sp[2])
|
||||||
e = GetContainer(ctx, eventType)
|
e = GetContainer(ctx, eventType)
|
||||||
|
|
||||||
if enc, ok := e.(encoding.TextUnmarshaler); ok {
|
if err = e.UnmarshalText(sp[3]); err != nil {
|
||||||
if err = enc.UnmarshalText(sp[3]); err != nil {
|
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
if err = json.Unmarshal(sp[3], e); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
e.SetEventMeta(m)
|
e.SetEventMeta(m)
|
||||||
|
|
||||||
return e, nil
|
return e, nil
|
||||||
|
|
|
@ -293,6 +293,13 @@ func (e *PostEvent) SetEventMeta(eventMeta event.Meta) {
|
||||||
}
|
}
|
||||||
e.eventMeta = eventMeta
|
e.eventMeta = eventMeta
|
||||||
}
|
}
|
||||||
|
func (e *PostEvent) MarshalText() ([]byte, error) {
|
||||||
|
return json.Marshal(e)
|
||||||
|
}
|
||||||
|
func (e *PostEvent) UnmarshalText(b []byte) error {
|
||||||
|
return json.Unmarshal(b, e)
|
||||||
|
}
|
||||||
|
|
||||||
func (e *PostEvent) String() string {
|
func (e *PostEvent) String() string {
|
||||||
var b bytes.Buffer
|
var b bytes.Buffer
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user