2020-10-20 19:10:23 +02:00
|
|
|
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 GetLabelPolicyByAggregateID(db *gorm.DB, table, aggregateID string) (*model.LabelPolicyView, error) {
|
|
|
|
policy := new(model.LabelPolicyView)
|
2021-01-18 14:17:22 +01:00
|
|
|
aggregateIDQuery := &model.LabelPolicySearchQuery{Key: iam_model.LabelPolicySearchKeyAggregateID, Value: aggregateID, Method: global_model.SearchMethodEquals}
|
|
|
|
query := repository.PrepareGetByQuery(table, aggregateIDQuery)
|
2020-10-20 19:10:23 +02:00
|
|
|
err := query(db, policy)
|
|
|
|
if caos_errs.IsNotFound(err) {
|
|
|
|
return nil, caos_errs.ThrowNotFound(nil, "VIEW-68G11", "Errors.IAM.LabelPolicy.NotExisting")
|
|
|
|
}
|
|
|
|
return policy, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func PutLabelPolicy(db *gorm.DB, table string, policy *model.LabelPolicyView) error {
|
|
|
|
save := repository.PrepareSave(table)
|
|
|
|
return save(db, policy)
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeleteLabelPolicy(db *gorm.DB, table, aggregateID string) error {
|
|
|
|
delete := repository.PrepareDeleteByKey(table, model.LabelPolicySearchKey(iam_model.LabelPolicySearchKeyAggregateID), aggregateID)
|
|
|
|
|
|
|
|
return delete(db)
|
|
|
|
}
|