zitadel/internal/eventstore/read_model.go

51 lines
1.4 KiB
Go
Raw Normal View History

2020-10-14 10:43:31 +00:00
package eventstore
2020-10-23 14:16:46 +00:00
import "time"
// ReadModel is the minimum representation of a read model.
2020-11-11 16:51:44 +00:00
// It implements a basic reducer
2020-10-14 10:43:31 +00:00
// it might be saved in a database or in memory
type ReadModel struct {
AggregateID string `json:"-"`
ProcessedSequence uint64 `json:"-"`
CreationDate time.Time `json:"-"`
ChangeDate time.Time `json:"-"`
Events []Event `json:"-"`
ResourceOwner string `json:"-"`
InstanceID string `json:"-"`
2020-10-14 10:43:31 +00:00
}
// AppendEvents adds all the events to the read model.
2020-10-14 10:43:31 +00:00
// The function doesn't compute the new state of the read model
func (rm *ReadModel) AppendEvents(events ...Event) {
2020-10-23 14:16:46 +00:00
rm.Events = append(rm.Events, events...)
}
// Reduce is the basic implementation of reducer
2020-11-11 16:51:44 +00:00
// If this function is extended the extending function should be the last step
2020-10-23 14:16:46 +00:00
func (rm *ReadModel) Reduce() error {
if len(rm.Events) == 0 {
return nil
}
2020-11-11 16:51:44 +00:00
if rm.AggregateID == "" {
rm.AggregateID = rm.Events[0].Aggregate().ID
2020-11-11 16:51:44 +00:00
}
if rm.ResourceOwner == "" {
rm.ResourceOwner = rm.Events[0].Aggregate().ResourceOwner
}
if rm.InstanceID == "" {
rm.InstanceID = rm.Events[0].Aggregate().InstanceID
}
2020-11-11 16:51:44 +00:00
2020-10-23 14:16:46 +00:00
if rm.CreationDate.IsZero() {
2020-11-06 16:25:07 +00:00
rm.CreationDate = rm.Events[0].CreationDate()
2020-10-23 14:16:46 +00:00
}
2020-11-06 16:25:07 +00:00
rm.ChangeDate = rm.Events[len(rm.Events)-1].CreationDate()
rm.ProcessedSequence = rm.Events[len(rm.Events)-1].Sequence()
2020-10-23 14:16:46 +00:00
// all events processed and not needed anymore
rm.Events = nil
rm.Events = []Event{}
2020-10-23 14:16:46 +00:00
return nil
}