zitadel/internal/eventstore/v2/read_model.go

50 lines
1.3 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"
2020-11-11 16:51:44 +00:00
func NewReadModel() *ReadModel {
2020-10-23 14:16:46 +00:00
return &ReadModel{
2020-11-06 16:25:07 +00:00
Events: []EventReader{},
2020-10-23 14:16:46 +00:00
}
}
2020-10-14 10:43:31 +00:00
//ReadModel is the minimum representation of a View 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 {
2020-11-11 16:51:44 +00:00
AggregateID string `json:"-"`
ProcessedSequence uint64 `json:"-"`
CreationDate time.Time `json:"-"`
ChangeDate time.Time `json:"-"`
Events []EventReader `json:"-"`
2020-10-14 10:43:31 +00:00
}
2020-10-23 14:16:46 +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
2020-11-06 16:25:07 +00:00
func (rm *ReadModel) AppendEvents(events ...EventReader) *ReadModel {
2020-10-23 14:16:46 +00:00
rm.Events = append(rm.Events, events...)
return rm
}
2020-11-11 16:51:44 +00:00
//Reduce is the basic implementaion of reducer
// 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].AggregateID()
}
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
2020-11-06 16:25:07 +00:00
rm.Events = []EventReader{}
2020-10-23 14:16:46 +00:00
return nil
}