2020-08-26 07:56:23 +00:00
|
|
|
package view
|
|
|
|
|
|
|
|
import (
|
2021-03-01 07:48:50 +00:00
|
|
|
"github.com/caos/zitadel/internal/domain"
|
2020-08-26 07:56:23 +00:00
|
|
|
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"
|
|
|
|
"github.com/caos/zitadel/internal/view/repository"
|
|
|
|
"github.com/jinzhu/gorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
func GetIDPProviderByAggregateIDAndConfigID(db *gorm.DB, table, aggregateID, idpConfigID string) (*model.IDPProviderView, error) {
|
|
|
|
policy := new(model.IDPProviderView)
|
2021-03-01 07:48:50 +00:00
|
|
|
aggIDQuery := &model.IDPProviderSearchQuery{Key: iam_model.IDPProviderSearchKeyAggregateID, Value: aggregateID, Method: domain.SearchMethodEquals}
|
|
|
|
idpConfigIDQuery := &model.IDPProviderSearchQuery{Key: iam_model.IDPProviderSearchKeyIdpConfigID, Value: idpConfigID, Method: domain.SearchMethodEquals}
|
2020-08-26 07:56:23 +00:00
|
|
|
query := repository.PrepareGetByQuery(table, aggIDQuery, idpConfigIDQuery)
|
|
|
|
err := query(db, policy)
|
|
|
|
if caos_errs.IsNotFound(err) {
|
2021-03-19 10:12:56 +00:00
|
|
|
return nil, caos_errs.ThrowNotFound(nil, "VIEW-Skvi8", "Errors.IAM.LoginPolicy.IDP.NotExisting")
|
2020-08-26 07:56:23 +00:00
|
|
|
}
|
|
|
|
return policy, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func IDPProvidersByIdpConfigID(db *gorm.DB, table string, idpConfigID string) ([]*model.IDPProviderView, error) {
|
2020-09-18 11:26:28 +00:00
|
|
|
providers := make([]*model.IDPProviderView, 0)
|
2020-08-26 07:56:23 +00:00
|
|
|
queries := []*iam_model.IDPProviderSearchQuery{
|
|
|
|
{
|
|
|
|
Key: iam_model.IDPProviderSearchKeyIdpConfigID,
|
|
|
|
Value: idpConfigID,
|
2021-03-01 07:48:50 +00:00
|
|
|
Method: domain.SearchMethodEquals,
|
2020-08-26 07:56:23 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
query := repository.PrepareSearchQuery(table, model.IDPProviderSearchRequest{Queries: queries})
|
2020-09-18 11:26:28 +00:00
|
|
|
_, err := query(db, &providers)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return providers, nil
|
|
|
|
}
|
|
|
|
|
2020-09-23 14:52:19 +00:00
|
|
|
func IDPProvidersByAggregateIDAndState(db *gorm.DB, table string, aggregateID string, idpConfigState iam_model.IDPConfigState) ([]*model.IDPProviderView, error) {
|
2020-09-18 11:26:28 +00:00
|
|
|
providers := make([]*model.IDPProviderView, 0)
|
|
|
|
queries := []*iam_model.IDPProviderSearchQuery{
|
|
|
|
{
|
|
|
|
Key: iam_model.IDPProviderSearchKeyAggregateID,
|
|
|
|
Value: aggregateID,
|
2021-03-01 07:48:50 +00:00
|
|
|
Method: domain.SearchMethodEquals,
|
2020-09-18 11:26:28 +00:00
|
|
|
},
|
2020-09-23 14:52:19 +00:00
|
|
|
{
|
|
|
|
Key: iam_model.IDPProviderSearchKeyState,
|
|
|
|
Value: int(idpConfigState),
|
2021-03-01 07:48:50 +00:00
|
|
|
Method: domain.SearchMethodEquals,
|
2020-09-23 14:52:19 +00:00
|
|
|
},
|
2020-09-18 11:26:28 +00:00
|
|
|
}
|
|
|
|
query := repository.PrepareSearchQuery(table, model.IDPProviderSearchRequest{Queries: queries})
|
|
|
|
_, err := query(db, &providers)
|
2020-08-26 07:56:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-09-18 11:26:28 +00:00
|
|
|
return providers, nil
|
2020-08-26 07:56:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func SearchIDPProviders(db *gorm.DB, table string, req *iam_model.IDPProviderSearchRequest) ([]*model.IDPProviderView, uint64, error) {
|
|
|
|
providers := make([]*model.IDPProviderView, 0)
|
|
|
|
query := repository.PrepareSearchQuery(table, model.IDPProviderSearchRequest{Limit: req.Limit, Offset: req.Offset, Queries: req.Queries})
|
|
|
|
count, err := query(db, &providers)
|
|
|
|
if err != nil {
|
|
|
|
return nil, 0, err
|
|
|
|
}
|
|
|
|
return providers, count, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func PutIDPProvider(db *gorm.DB, table string, provider *model.IDPProviderView) error {
|
|
|
|
save := repository.PrepareSave(table)
|
|
|
|
return save(db, provider)
|
|
|
|
}
|
|
|
|
|
|
|
|
func PutIDPProviders(db *gorm.DB, table string, providers ...*model.IDPProviderView) error {
|
|
|
|
save := repository.PrepareBulkSave(table)
|
|
|
|
p := make([]interface{}, len(providers))
|
|
|
|
for i, provider := range providers {
|
|
|
|
p[i] = provider
|
|
|
|
}
|
|
|
|
return save(db, p...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeleteIDPProvider(db *gorm.DB, table, aggregateID, idpConfigID string) error {
|
|
|
|
delete := repository.PrepareDeleteByKeys(table,
|
|
|
|
repository.Key{Key: model.IDPProviderSearchKey(iam_model.IDPProviderSearchKeyAggregateID), Value: aggregateID},
|
|
|
|
repository.Key{Key: model.IDPProviderSearchKey(iam_model.IDPProviderSearchKeyIdpConfigID), Value: idpConfigID},
|
|
|
|
)
|
|
|
|
return delete(db)
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeleteIDPProvidersByAggregateID(db *gorm.DB, table, aggregateID string) error {
|
|
|
|
delete := repository.PrepareDeleteByKeys(table,
|
|
|
|
repository.Key{Key: model.IDPProviderSearchKey(iam_model.IDPProviderSearchKeyAggregateID), Value: aggregateID},
|
|
|
|
)
|
|
|
|
return delete(db)
|
|
|
|
}
|