mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
21ffe1b0cb
* fix: split command query side * fix: split command query side * fix: members in correct pkg structure * fix: label policy in correct pkg structure * fix: structure * fix: structure of login policy * fix: identityprovider structure * fix: org iam policy structure * fix: password age policy structure * fix: password complexity policy structure * fix: password lockout policy structure * fix: idp structure * fix: user events structure * fix: user write model * fix: profile email changed command * fix: address changed command * fix: user states * fix: user * fix: org structure and add human * begin iam setup command side * setup * step2 * step2 * fix: add user * step2 * isvalid * fix: folder structure v2 business Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
124 lines
3.4 KiB
Go
124 lines
3.4 KiB
Go
package eventsourcing
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/zitadel/internal/v2/command"
|
|
"github.com/caos/zitadel/internal/v2/query"
|
|
|
|
"github.com/caos/zitadel/internal/admin/repository/eventsourcing/eventstore"
|
|
"github.com/caos/zitadel/internal/admin/repository/eventsourcing/handler"
|
|
"github.com/caos/zitadel/internal/admin/repository/eventsourcing/spooler"
|
|
admin_view "github.com/caos/zitadel/internal/admin/repository/eventsourcing/view"
|
|
sd "github.com/caos/zitadel/internal/config/systemdefaults"
|
|
"github.com/caos/zitadel/internal/config/types"
|
|
es_int "github.com/caos/zitadel/internal/eventstore"
|
|
es_spol "github.com/caos/zitadel/internal/eventstore/spooler"
|
|
es_iam "github.com/caos/zitadel/internal/iam/repository/eventsourcing"
|
|
es_org "github.com/caos/zitadel/internal/org/repository/eventsourcing"
|
|
es_usr "github.com/caos/zitadel/internal/user/repository/eventsourcing"
|
|
)
|
|
|
|
type Config struct {
|
|
SearchLimit uint64
|
|
Eventstore es_int.Config
|
|
View types.SQL
|
|
Spooler spooler.SpoolerConfig
|
|
Domain string
|
|
}
|
|
|
|
type EsRepository struct {
|
|
spooler *es_spol.Spooler
|
|
eventstore.OrgRepo
|
|
eventstore.IAMRepository
|
|
eventstore.AdministratorRepo
|
|
eventstore.UserRepo
|
|
}
|
|
|
|
func Start(ctx context.Context, conf Config, systemDefaults sd.SystemDefaults, roles []string) (*EsRepository, error) {
|
|
es, err := es_int.Start(conf.Eventstore)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
esV2 := es.V2()
|
|
|
|
iam, err := es_iam.StartIAM(es_iam.IAMConfig{
|
|
Eventstore: es,
|
|
Cache: conf.Eventstore.Cache,
|
|
}, systemDefaults)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
org := es_org.StartOrg(es_org.OrgConfig{Eventstore: es, IAMDomain: conf.Domain}, systemDefaults)
|
|
|
|
user, err := es_usr.StartUser(es_usr.UserConfig{
|
|
Eventstore: es,
|
|
Cache: conf.Eventstore.Cache,
|
|
}, systemDefaults)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
sqlClient, err := conf.View.Start()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
view, err := admin_view.StartView(sqlClient)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
iamV2Command, err := command.StartCommandSide(&command.Config{Eventstore: esV2, SystemDefaults: systemDefaults})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
iamV2Query, err := query.StartQuerySide(&query.Config{Eventstore: esV2, SystemDefaults: systemDefaults})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
spool := spooler.StartSpooler(conf.Spooler, es, view, sqlClient, handler.EventstoreRepos{UserEvents: user, OrgEvents: org, IamEvents: iam}, systemDefaults)
|
|
|
|
return &EsRepository{
|
|
spooler: spool,
|
|
OrgRepo: eventstore.OrgRepo{
|
|
Eventstore: es,
|
|
OrgEventstore: org,
|
|
UserEventstore: user,
|
|
View: view,
|
|
SearchLimit: conf.SearchLimit,
|
|
SystemDefaults: systemDefaults,
|
|
},
|
|
IAMRepository: eventstore.IAMRepository{
|
|
IAMEventstore: iam,
|
|
OrgEvents: org,
|
|
UserEvents: user,
|
|
View: view,
|
|
SystemDefaults: systemDefaults,
|
|
SearchLimit: conf.SearchLimit,
|
|
Roles: roles,
|
|
IAMV2Command: iamV2Command,
|
|
IAMV2Query: iamV2Query,
|
|
},
|
|
AdministratorRepo: eventstore.AdministratorRepo{
|
|
View: view,
|
|
},
|
|
UserRepo: eventstore.UserRepo{
|
|
UserEvents: user,
|
|
OrgEvents: org,
|
|
View: view,
|
|
SystemDefaults: systemDefaults,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func (repo *EsRepository) Health(ctx context.Context) error {
|
|
err := repo.Eventstore.Health(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = repo.UserEventstore.Health(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return repo.OrgEventstore.Health(ctx)
|
|
}
|