mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
43 lines
1.5 KiB
Go
43 lines
1.5 KiB
Go
|
package view
|
||
|
|
||
|
import (
|
||
|
caos_errs "github.com/caos/zitadel/internal/errors"
|
||
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
||
|
"github.com/caos/zitadel/internal/iam/repository/view/model"
|
||
|
global_model "github.com/caos/zitadel/internal/model"
|
||
|
"github.com/caos/zitadel/internal/view/repository"
|
||
|
"github.com/jinzhu/gorm"
|
||
|
)
|
||
|
|
||
|
func IDPByID(db *gorm.DB, table, idpID string) (*model.IDPConfigView, error) {
|
||
|
idp := new(model.IDPConfigView)
|
||
|
userIDQuery := &model.IDPConfigSearchQuery{Key: iam_model.IDPConfigSearchKeyIdpConfigID, Value: idpID, Method: global_model.SearchMethodEquals}
|
||
|
query := repository.PrepareGetByQuery(table, userIDQuery)
|
||
|
err := query(db, idp)
|
||
|
if caos_errs.IsNotFound(err) {
|
||
|
return nil, caos_errs.ThrowNotFound(nil, "VIEW-Ahq2s", "Errors.IAM.IdpNotExisting")
|
||
|
}
|
||
|
return idp, err
|
||
|
}
|
||
|
|
||
|
func SearchIDPs(db *gorm.DB, table string, req *iam_model.IDPConfigSearchRequest) ([]*model.IDPConfigView, uint64, error) {
|
||
|
idps := make([]*model.IDPConfigView, 0)
|
||
|
query := repository.PrepareSearchQuery(table, model.IDPConfigSearchRequest{Limit: req.Limit, Offset: req.Offset, Queries: req.Queries})
|
||
|
count, err := query(db, &idps)
|
||
|
if err != nil {
|
||
|
return nil, 0, err
|
||
|
}
|
||
|
return idps, count, nil
|
||
|
}
|
||
|
|
||
|
func PutIDP(db *gorm.DB, table string, idp *model.IDPConfigView) error {
|
||
|
save := repository.PrepareSave(table)
|
||
|
return save(db, idp)
|
||
|
}
|
||
|
|
||
|
func DeleteIDP(db *gorm.DB, table, idpID string) error {
|
||
|
delete := repository.PrepareDeleteByKey(table, model.IDPConfigSearchKey(iam_model.IDPConfigSearchKeyIdpConfigID), idpID)
|
||
|
|
||
|
return delete(db)
|
||
|
}
|