mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
69 lines
1.6 KiB
Go
69 lines
1.6 KiB
Go
|
package eventsourcing
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/caos/zitadel/internal/admin/repository/eventsourcing/eventstore"
|
||
|
sd "github.com/caos/zitadel/internal/config/systemdefaults"
|
||
|
es_int "github.com/caos/zitadel/internal/eventstore"
|
||
|
es_org "github.com/caos/zitadel/internal/org/repository/eventsourcing"
|
||
|
es_usr "github.com/caos/zitadel/internal/user/repository/eventsourcing"
|
||
|
)
|
||
|
|
||
|
type Config struct {
|
||
|
Eventstore es_int.Config
|
||
|
//View view.ViewConfig
|
||
|
//Spooler spooler.SpoolerConfig
|
||
|
}
|
||
|
|
||
|
type EsRepository struct {
|
||
|
//spooler *es_spooler.Spooler
|
||
|
eventstore.OrgRepo
|
||
|
}
|
||
|
|
||
|
func Start(conf Config, systemDefaults sd.SystemDefaults) (*EsRepository, error) {
|
||
|
es, err := es_int.Start(conf.Eventstore)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
//view, sql, err := mgmt_view.StartView(conf.View)
|
||
|
//if err != nil {
|
||
|
// return nil, err
|
||
|
//}
|
||
|
|
||
|
//conf.Spooler.View = view
|
||
|
//conf.Spooler.EsClient = es.Client
|
||
|
//conf.Spooler.SQL = sql
|
||
|
//spool := spooler.StartSpooler(conf.Spooler)
|
||
|
|
||
|
org := es_org.StartOrg(es_org.OrgConfig{Eventstore: es})
|
||
|
|
||
|
user, err := es_usr.StartUser(es_usr.UserConfig{
|
||
|
Eventstore: es,
|
||
|
Cache: conf.Eventstore.Cache,
|
||
|
}, systemDefaults)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return &EsRepository{
|
||
|
OrgRepo: eventstore.OrgRepo{
|
||
|
Eventstore: es,
|
||
|
OrgEventstore: org,
|
||
|
UserEventstore: user,
|
||
|
},
|
||
|
}, 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)
|
||
|
}
|