mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
52 lines
1.5 KiB
Go
52 lines
1.5 KiB
Go
package eventstore
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zitadel/zitadel/internal/admin/repository/eventsourcing/view"
|
|
view_model "github.com/zitadel/zitadel/internal/view/model"
|
|
"github.com/zitadel/zitadel/internal/view/repository"
|
|
)
|
|
|
|
var dbList = []string{"auth", "authz", "adminapi", "notification"}
|
|
|
|
type AdministratorRepo struct {
|
|
View *view.View
|
|
}
|
|
|
|
func (repo *AdministratorRepo) GetFailedEvents(ctx context.Context) ([]*view_model.FailedEvent, error) {
|
|
allFailedEvents := make([]*view_model.FailedEvent, 0)
|
|
for _, db := range dbList {
|
|
failedEvents, err := repo.View.AllFailedEvents(db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for _, failedEvent := range failedEvents {
|
|
allFailedEvents = append(allFailedEvents, repository.FailedEventToModel(failedEvent))
|
|
}
|
|
}
|
|
return allFailedEvents, nil
|
|
}
|
|
|
|
func (repo *AdministratorRepo) RemoveFailedEvent(ctx context.Context, failedEvent *view_model.FailedEvent) error {
|
|
return repo.View.RemoveFailedEvent(failedEvent.Database, repository.FailedEventFromModel(failedEvent))
|
|
}
|
|
|
|
func (repo *AdministratorRepo) GetViews() ([]*view_model.View, error) {
|
|
views := make([]*view_model.View, 0)
|
|
for _, db := range dbList {
|
|
sequences, err := repo.View.AllCurrentSequences(db)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for _, sequence := range sequences {
|
|
views = append(views, repository.CurrentSequenceToModel(sequence))
|
|
}
|
|
}
|
|
return views, nil
|
|
}
|
|
|
|
func (repo *AdministratorRepo) ClearView(ctx context.Context, database, view string) error {
|
|
return repo.View.ClearView(database, view)
|
|
}
|