mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
9e32740eb8
* start org * refactor(eventstore): filter in sql for querier * feat(eventstore): Aggregate precondition preconditions are checked right before insert. Insert is still transaction save * feat(eventstore): check preconditions in repository * test(eventstore): test precondition in models * test(eventstore): precondition-tests * start org * refactor(eventstore): filter in sql for querier * feat(eventstore): Aggregate precondition preconditions are checked right before insert. Insert is still transaction save * feat(admin): start implement org * feat(eventstore): check preconditions in repository * fix(eventstore): data as NULL if empty refactor(eventstore): naming in sequence methods * feat(admin): org command side * feat(management): start org-repo * feat(org): member * fix: replace ObjectRoot.ID with ObjectRoot.AggregateID * aggregateID * add remove,change member * refactor(org): namings * refactor(eventstore): querier as type * fix(precondition): rename validation from precondition to validation * test(eventstore): isErr func instead of wantErr bool * fix(tests): Data * fix(eventstore): correct check for existing events in push, simplify insert statement * fix(eventstore): aggregate id public * test(org): eventsourcing * test(org): eventstore * test(org): deactivate, reactivate, orgbyid * test(org): getMemberByIDs * tests * running tests * add user repo to admin * thorw not found if no org found * eventstore tests done * lauft * validate if user is already member of org * modules * delete unused file * add member validation test * return error if unable to validat member * generate org id once, set resourceowner of org * Update internal/admin/repository/eventsourcing/eventstore/org.go * Update internal/admin/repository/eventsourcing/eventstore/org.go * Update internal/org/repository/eventsourcing/member_model.go * Update internal/org/repository/eventsourcing/org.go * Update internal/org/repository/eventsourcing/org.go * Update internal/org/repository/eventsourcing/org_member.go * Update internal/org/repository/eventsourcing/org_member.go * Update internal/org/repository/eventsourcing/org_model.go * Update internal/org/repository/eventsourcing/org.go * Update internal/org/repository/eventsourcing/org_model.go * Update internal/org/repository/eventsourcing/org_model.go * typo * correct user events * usercreate for setuporg instead of userregister * set data * mod * mod * tests * cleanup code * code styling * return member on add and change * change username in startup * girignore * orgID as parameter in re-/deactive org * startup config * migration for admin_api-user * probes fro admin * move unique org Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
94 lines
2.3 KiB
Go
94 lines
2.3 KiB
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/caos/zitadel/internal/errors"
|
|
)
|
|
|
|
type AggregateType string
|
|
|
|
func (at AggregateType) String() string {
|
|
return string(at)
|
|
}
|
|
|
|
type Aggregates []*Aggregate
|
|
|
|
type Aggregate struct {
|
|
ID string
|
|
typ AggregateType
|
|
PreviousSequence uint64
|
|
version Version
|
|
|
|
editorService string
|
|
editorUser string
|
|
resourceOwner string
|
|
Events []*Event
|
|
Precondition *precondition
|
|
}
|
|
|
|
type precondition struct {
|
|
Query *SearchQuery
|
|
Validation func(...*Event) error
|
|
}
|
|
|
|
func (a *Aggregate) AppendEvent(typ EventType, payload interface{}) (*Aggregate, error) {
|
|
if string(typ) == "" {
|
|
return a, errors.ThrowInvalidArgument(nil, "MODEL-TGoCb", "no event type")
|
|
}
|
|
data, err := eventData(payload)
|
|
if err != nil {
|
|
return a, err
|
|
}
|
|
|
|
e := &Event{
|
|
CreationDate: time.Now(),
|
|
Data: data,
|
|
Type: typ,
|
|
AggregateID: a.ID,
|
|
AggregateType: a.typ,
|
|
AggregateVersion: a.version,
|
|
EditorService: a.editorService,
|
|
EditorUser: a.editorUser,
|
|
ResourceOwner: a.resourceOwner,
|
|
}
|
|
|
|
a.Events = append(a.Events, e)
|
|
return a, nil
|
|
}
|
|
|
|
func (a *Aggregate) SetPrecondition(query *SearchQuery, validateFunc func(...*Event) error) *Aggregate {
|
|
a.Precondition = &precondition{Query: query, Validation: validateFunc}
|
|
return a
|
|
}
|
|
|
|
func (a *Aggregate) Validate() error {
|
|
if a == nil {
|
|
return errors.ThrowPreconditionFailed(nil, "MODEL-yi5AC", "aggregate is nil")
|
|
}
|
|
if a.ID == "" {
|
|
return errors.ThrowPreconditionFailed(nil, "MODEL-FSjKV", "id not set")
|
|
}
|
|
if string(a.typ) == "" {
|
|
return errors.ThrowPreconditionFailed(nil, "MODEL-aj4t2", "type not set")
|
|
}
|
|
if err := a.version.Validate(); err != nil {
|
|
return errors.ThrowPreconditionFailed(err, "MODEL-PupjX", "invalid version")
|
|
}
|
|
|
|
if a.editorService == "" {
|
|
return errors.ThrowPreconditionFailed(nil, "MODEL-clYbY", "editor service not set")
|
|
}
|
|
if a.editorUser == "" {
|
|
return errors.ThrowPreconditionFailed(nil, "MODEL-Xcssi", "editor user not set")
|
|
}
|
|
if a.resourceOwner == "" {
|
|
return errors.ThrowPreconditionFailed(nil, "MODEL-eBYUW", "resource owner not set")
|
|
}
|
|
if a.Precondition != nil && (a.Precondition.Query == nil || a.Precondition.Query.Validate() != nil || a.Precondition.Validation == nil) {
|
|
return errors.ThrowPreconditionFailed(nil, "MODEL-EEUvA", "invalid precondition")
|
|
}
|
|
|
|
return nil
|
|
}
|