mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
54 lines
1.6 KiB
Go
54 lines
1.6 KiB
Go
|
package view
|
||
|
|
||
|
import (
|
||
|
"github.com/caos/zitadel/internal/errors"
|
||
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
||
|
"github.com/caos/zitadel/internal/iam/repository/view"
|
||
|
"github.com/caos/zitadel/internal/iam/repository/view/model"
|
||
|
global_view "github.com/caos/zitadel/internal/view/repository"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
idpConfigTable = "adminapi.idp_configs"
|
||
|
)
|
||
|
|
||
|
func (v *View) IDPConfigByID(idpID string) (*model.IDPConfigView, error) {
|
||
|
return view.IDPByID(v.Db, idpConfigTable, idpID)
|
||
|
}
|
||
|
|
||
|
func (v *View) SearchIDPConfigs(request *iam_model.IDPConfigSearchRequest) ([]*model.IDPConfigView, uint64, error) {
|
||
|
return view.SearchIDPs(v.Db, idpConfigTable, request)
|
||
|
}
|
||
|
|
||
|
func (v *View) PutIDPConfig(idp *model.IDPConfigView, sequence uint64) error {
|
||
|
err := view.PutIDP(v.Db, idpConfigTable, idp)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
return v.ProcessedIDPConfigSequence(sequence)
|
||
|
}
|
||
|
|
||
|
func (v *View) DeleteIDPConfig(idpID string, eventSequence uint64) error {
|
||
|
err := view.DeleteIDP(v.Db, idpConfigTable, idpID)
|
||
|
if err != nil && !errors.IsNotFound(err) {
|
||
|
return err
|
||
|
}
|
||
|
return v.ProcessedIDPConfigSequence(eventSequence)
|
||
|
}
|
||
|
|
||
|
func (v *View) GetLatestIDPConfigSequence() (*global_view.CurrentSequence, error) {
|
||
|
return v.latestSequence(idpConfigTable)
|
||
|
}
|
||
|
|
||
|
func (v *View) ProcessedIDPConfigSequence(eventSequence uint64) error {
|
||
|
return v.saveCurrentSequence(idpConfigTable, eventSequence)
|
||
|
}
|
||
|
|
||
|
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)
|
||
|
}
|