mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
dd5e4acd24
* start sub * start implement subsciptions * start subscription * implementation for member done * admin done * fix: tests * extend handlers * prepary notification * no errors in adminapi * changed current sequence in all packages * ignore mocks * works * subscriptions as singleton * tests * refactor: rename function scope var
63 lines
2.0 KiB
Go
63 lines
2.0 KiB
Go
package view
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/errors"
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
"github.com/caos/zitadel/internal/iam/repository/view"
|
|
iam_es_model "github.com/caos/zitadel/internal/iam/repository/view/model"
|
|
global_view "github.com/caos/zitadel/internal/view/repository"
|
|
)
|
|
|
|
const (
|
|
idpConfigTable = "auth.idp_configs"
|
|
)
|
|
|
|
func (v *View) IDPConfigByID(idpID string) (*iam_es_model.IDPConfigView, error) {
|
|
return view.IDPByID(v.Db, idpConfigTable, idpID)
|
|
}
|
|
|
|
func (v *View) GetIDPConfigsByAggregateID(aggregateID string) ([]*iam_es_model.IDPConfigView, error) {
|
|
return view.GetIDPConfigsByAggregateID(v.Db, idpConfigTable, aggregateID)
|
|
}
|
|
|
|
func (v *View) SearchIDPConfigs(request *iam_model.IDPConfigSearchRequest) ([]*iam_es_model.IDPConfigView, uint64, error) {
|
|
return view.SearchIDPs(v.Db, idpConfigTable, request)
|
|
}
|
|
|
|
func (v *View) PutIDPConfig(idp *iam_es_model.IDPConfigView, event *models.Event) error {
|
|
err := view.PutIDP(v.Db, idpConfigTable, idp)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return v.ProcessedIDPConfigSequence(event)
|
|
}
|
|
|
|
func (v *View) DeleteIDPConfig(idpID string, event *models.Event) error {
|
|
err := view.DeleteIDP(v.Db, idpConfigTable, idpID)
|
|
if err != nil && !errors.IsNotFound(err) {
|
|
return err
|
|
}
|
|
return v.ProcessedIDPConfigSequence(event)
|
|
}
|
|
|
|
func (v *View) GetLatestIDPConfigSequence(aggregateType string) (*global_view.CurrentSequence, error) {
|
|
return v.latestSequence(idpConfigTable, aggregateType)
|
|
}
|
|
|
|
func (v *View) ProcessedIDPConfigSequence(event *models.Event) error {
|
|
return v.saveCurrentSequence(idpConfigTable, event)
|
|
}
|
|
|
|
func (v *View) UpdateIDPConfigSpoolerRunTimestamp() error {
|
|
return v.updateSpoolerRunSequence(idpConfigTable)
|
|
}
|
|
|
|
func (v *View) GetLatestIDPConfigFailedEvent(sequence uint64) (*global_view.FailedEvent, error) {
|
|
return v.latestFailedEvent(idpConfigTable, sequence)
|
|
}
|
|
|
|
func (v *View) ProcessedIDPConfigFailedEvent(failedEvent *global_view.FailedEvent) error {
|
|
return v.saveFailedEvent(failedEvent)
|
|
}
|