mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-15 20:38:00 +00:00
f51f0ede5c
* fix: add assets to eventstore and event * fix: project member, grant member, app changed tests * fix: asset migrations * feat: add asset tests * feat: add asset tests * Update internal/eventstore/repository/repository.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * feat: add asset tests Co-authored-by: Livio Amstutz <livio.a@gmail.com>
44 lines
1.3 KiB
Go
44 lines
1.3 KiB
Go
package eventstore
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type EventPusher interface {
|
|
//Aggregate is the metadata of an aggregate
|
|
Aggregate() Aggregate
|
|
// EditorService is the service who wants to push the event
|
|
EditorService() string
|
|
//EditorUser is the user who wants to push the event
|
|
EditorUser() string
|
|
//KeyType must return an event type which should be unique in the aggregate
|
|
Type() EventType
|
|
//Data returns the payload of the event. It represent the changed fields by the event
|
|
// valid types are:
|
|
// * nil (no payload),
|
|
// * json byte array
|
|
// * struct which can be marshalled to json
|
|
// * pointer to struct which can be marshalled to json
|
|
Data() interface{}
|
|
//Assets contain assets in form of []byte, these will be stored to a separate table
|
|
Assets() []*Asset
|
|
//UniqueConstraints should be added for unique attributes of an event, if nil constraints will not be checked
|
|
UniqueConstraints() []*EventUniqueConstraint
|
|
}
|
|
|
|
type EventReader interface {
|
|
// EditorService is the service who pushed the event
|
|
EditorService() string
|
|
//EditorUser is the user who pushed the event
|
|
EditorUser() string
|
|
//KeyType is the type of the event
|
|
Type() EventType
|
|
|
|
Aggregate() Aggregate
|
|
|
|
Sequence() uint64
|
|
CreationDate() time.Time
|
|
//DataAsBytes returns the payload of the event. It represent the changed fields by the event
|
|
DataAsBytes() []byte
|
|
}
|