2020-08-26 09:56:23 +02:00
|
|
|
package view
|
|
|
|
|
|
|
|
import (
|
2022-04-19 08:26:12 +02:00
|
|
|
"github.com/jinzhu/gorm"
|
|
|
|
|
2022-04-27 01:01:45 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
|
|
caos_errs "github.com/zitadel/zitadel/internal/errors"
|
|
|
|
iam_model "github.com/zitadel/zitadel/internal/iam/model"
|
|
|
|
"github.com/zitadel/zitadel/internal/iam/repository/view/model"
|
|
|
|
"github.com/zitadel/zitadel/internal/view/repository"
|
2020-08-26 09:56:23 +02:00
|
|
|
)
|
|
|
|
|
2022-04-19 08:26:12 +02:00
|
|
|
func GetIDPProviderByAggregateIDAndConfigID(db *gorm.DB, table, aggregateID, idpConfigID, instanceID string) (*model.IDPProviderView, error) {
|
2020-08-26 09:56:23 +02:00
|
|
|
policy := new(model.IDPProviderView)
|
2021-03-01 08:48:50 +01: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}
|
2022-04-19 08:26:12 +02:00
|
|
|
instanceIDQuery := &model.IDPProviderSearchQuery{Key: iam_model.IDPProviderSearchKeyInstanceID, Value: instanceID, Method: domain.SearchMethodEquals}
|
2022-11-30 17:01:17 +01:00
|
|
|
ownerRemovedQuery := &model.IDPProviderSearchQuery{Key: iam_model.IDPProviderSearchKeyOwnerRemoved, Value: false, Method: domain.SearchMethodEquals}
|
|
|
|
query := repository.PrepareGetByQuery(table, aggIDQuery, idpConfigIDQuery, instanceIDQuery, ownerRemovedQuery)
|
2020-08-26 09:56:23 +02:00
|
|
|
err := query(db, policy)
|
|
|
|
if caos_errs.IsNotFound(err) {
|
2021-03-19 11:12:56 +01:00
|
|
|
return nil, caos_errs.ThrowNotFound(nil, "VIEW-Skvi8", "Errors.IAM.LoginPolicy.IDP.NotExisting")
|
2020-08-26 09:56:23 +02:00
|
|
|
}
|
|
|
|
return policy, err
|
|
|
|
}
|
|
|
|
|
2022-04-19 08:26:12 +02:00
|
|
|
func IDPProvidersByIdpConfigID(db *gorm.DB, table, idpConfigID, instanceID string) ([]*model.IDPProviderView, error) {
|
2020-09-18 13:26:28 +02:00
|
|
|
providers := make([]*model.IDPProviderView, 0)
|
2020-08-26 09:56:23 +02:00
|
|
|
queries := []*iam_model.IDPProviderSearchQuery{
|
|
|
|
{
|
|
|
|
Key: iam_model.IDPProviderSearchKeyIdpConfigID,
|
|
|
|
Value: idpConfigID,
|
2021-03-01 08:48:50 +01:00
|
|
|
Method: domain.SearchMethodEquals,
|
2020-08-26 09:56:23 +02:00
|
|
|
},
|
2022-04-19 08:26:12 +02:00
|
|
|
{
|
|
|
|
Key: iam_model.IDPProviderSearchKeyInstanceID,
|
|
|
|
Value: instanceID,
|
|
|
|
Method: domain.SearchMethodEquals,
|
|
|
|
},
|
2022-11-30 17:01:17 +01:00
|
|
|
{
|
|
|
|
Key: iam_model.IDPProviderSearchKeyOwnerRemoved,
|
|
|
|
Value: false,
|
|
|
|
Method: domain.SearchMethodEquals,
|
|
|
|
},
|
2020-08-26 09:56:23 +02:00
|
|
|
}
|
|
|
|
query := repository.PrepareSearchQuery(table, model.IDPProviderSearchRequest{Queries: queries})
|
2020-09-18 13:26:28 +02:00
|
|
|
_, err := query(db, &providers)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return providers, nil
|
|
|
|
}
|
|
|
|
|
2022-04-19 08:26:12 +02:00
|
|
|
func IDPProvidersByAggregateIDAndState(db *gorm.DB, table string, aggregateID, instanceID string, idpConfigState iam_model.IDPConfigState) ([]*model.IDPProviderView, error) {
|
2020-09-18 13:26:28 +02:00
|
|
|
providers := make([]*model.IDPProviderView, 0)
|
|
|
|
queries := []*iam_model.IDPProviderSearchQuery{
|
|
|
|
{
|
|
|
|
Key: iam_model.IDPProviderSearchKeyAggregateID,
|
|
|
|
Value: aggregateID,
|
2021-03-01 08:48:50 +01:00
|
|
|
Method: domain.SearchMethodEquals,
|
2020-09-18 13:26:28 +02:00
|
|
|
},
|
2020-09-23 16:52:19 +02:00
|
|
|
{
|
|
|
|
Key: iam_model.IDPProviderSearchKeyState,
|
|
|
|
Value: int(idpConfigState),
|
2021-03-01 08:48:50 +01:00
|
|
|
Method: domain.SearchMethodEquals,
|
2020-09-23 16:52:19 +02:00
|
|
|
},
|
2022-04-19 08:26:12 +02:00
|
|
|
{
|
|
|
|
Key: iam_model.IDPProviderSearchKeyInstanceID,
|
|
|
|
Value: instanceID,
|
|
|
|
Method: domain.SearchMethodEquals,
|
|
|
|
},
|
2022-11-30 17:01:17 +01:00
|
|
|
{
|
|
|
|
Key: iam_model.IDPProviderSearchKeyOwnerRemoved,
|
|
|
|
Value: false,
|
|
|
|
Method: domain.SearchMethodEquals,
|
|
|
|
},
|
2020-09-18 13:26:28 +02:00
|
|
|
}
|
|
|
|
query := repository.PrepareSearchQuery(table, model.IDPProviderSearchRequest{Queries: queries})
|
|
|
|
_, err := query(db, &providers)
|
2020-08-26 09:56:23 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-09-18 13:26:28 +02:00
|
|
|
return providers, nil
|
2020-08-26 09:56:23 +02: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...)
|
|
|
|
}
|
|
|
|
|
2022-04-19 08:26:12 +02:00
|
|
|
func DeleteIDPProvider(db *gorm.DB, table, aggregateID, idpConfigID, instanceID string) error {
|
2020-08-26 09:56:23 +02:00
|
|
|
delete := repository.PrepareDeleteByKeys(table,
|
|
|
|
repository.Key{Key: model.IDPProviderSearchKey(iam_model.IDPProviderSearchKeyAggregateID), Value: aggregateID},
|
|
|
|
repository.Key{Key: model.IDPProviderSearchKey(iam_model.IDPProviderSearchKeyIdpConfigID), Value: idpConfigID},
|
2022-04-19 08:26:12 +02:00
|
|
|
repository.Key{Key: model.IDPProviderSearchKey(iam_model.IDPProviderSearchKeyInstanceID), Value: instanceID},
|
2020-08-26 09:56:23 +02:00
|
|
|
)
|
|
|
|
return delete(db)
|
|
|
|
}
|
|
|
|
|
2022-04-19 08:26:12 +02:00
|
|
|
func DeleteIDPProvidersByAggregateID(db *gorm.DB, table, aggregateID, instanceID string) error {
|
2020-08-26 09:56:23 +02:00
|
|
|
delete := repository.PrepareDeleteByKeys(table,
|
|
|
|
repository.Key{Key: model.IDPProviderSearchKey(iam_model.IDPProviderSearchKeyAggregateID), Value: aggregateID},
|
2022-04-19 08:26:12 +02:00
|
|
|
repository.Key{Key: model.IDPProviderSearchKey(iam_model.IDPProviderSearchKeyInstanceID), Value: instanceID},
|
2020-08-26 09:56:23 +02:00
|
|
|
)
|
|
|
|
return delete(db)
|
|
|
|
}
|
2022-10-26 15:06:48 +02:00
|
|
|
|
|
|
|
func DeleteInstanceIDPProviders(db *gorm.DB, table, instanceID string) error {
|
2022-11-30 17:01:17 +01:00
|
|
|
delete := repository.PrepareDeleteByKey(table,
|
|
|
|
model.IDPProviderSearchKey(iam_model.IDPProviderSearchKeyInstanceID),
|
|
|
|
instanceID,
|
|
|
|
)
|
2022-10-26 15:06:48 +02:00
|
|
|
return delete(db)
|
|
|
|
}
|
2022-11-30 17:01:17 +01:00
|
|
|
|
|
|
|
func UpdateOrgOwnerRemovedIDPProviders(db *gorm.DB, table, instanceID, aggID string) error {
|
|
|
|
update := repository.PrepareUpdateByKeys(table,
|
|
|
|
model.IDPProviderSearchKey(iam_model.IDPProviderSearchKeyOwnerRemoved),
|
|
|
|
true,
|
|
|
|
repository.Key{Key: model.IDPProviderSearchKey(iam_model.IDPProviderSearchKeyInstanceID), Value: instanceID},
|
|
|
|
repository.Key{Key: model.IDPProviderSearchKey(iam_model.IDPProviderSearchKeyAggregateID), Value: aggID},
|
|
|
|
)
|
|
|
|
return update(db)
|
|
|
|
}
|