mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
56b916a2b0
* begin init checks for projections * first projection checks * debug notification providers with query fixes * more projections and first index * more projections * more projections * finish projections * fix tests (remove db name) * create tables in setup * fix logging / error handling * add tenant to views * rename tenant to instance_id * add instance_id to all projections * add instance_id to all queries * correct instance_id on projections * add instance_id to failed_events * use separate context for instance * implement features projection * implement features projection * remove unique constraint from setup when migration failed * add error to failed setup event * add instance_id to primary keys * fix IAM projection * remove old migrations folder * fix keysFromYAML test
68 lines
1.8 KiB
Go
68 lines
1.8 KiB
Go
package model
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/domain"
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
"github.com/caos/zitadel/internal/view/repository"
|
|
)
|
|
|
|
type IDPConfigSearchRequest iam_model.IDPConfigSearchRequest
|
|
type IDPConfigSearchQuery iam_model.IDPConfigSearchQuery
|
|
type IDPConfigSearchKey iam_model.IDPConfigSearchKey
|
|
|
|
func (req IDPConfigSearchRequest) GetLimit() uint64 {
|
|
return req.Limit
|
|
}
|
|
|
|
func (req IDPConfigSearchRequest) GetOffset() uint64 {
|
|
return req.Offset
|
|
}
|
|
|
|
func (req IDPConfigSearchRequest) GetSortingColumn() repository.ColumnKey {
|
|
if req.SortingColumn == iam_model.IDPConfigSearchKeyUnspecified {
|
|
return nil
|
|
}
|
|
return IDPConfigSearchKey(req.SortingColumn)
|
|
}
|
|
|
|
func (req IDPConfigSearchRequest) GetAsc() bool {
|
|
return req.Asc
|
|
}
|
|
|
|
func (req IDPConfigSearchRequest) GetQueries() []repository.SearchQuery {
|
|
result := make([]repository.SearchQuery, len(req.Queries))
|
|
for i, q := range req.Queries {
|
|
result[i] = IDPConfigSearchQuery{Key: q.Key, Value: q.Value, Method: q.Method}
|
|
}
|
|
return result
|
|
}
|
|
|
|
func (req IDPConfigSearchQuery) GetKey() repository.ColumnKey {
|
|
return IDPConfigSearchKey(req.Key)
|
|
}
|
|
|
|
func (req IDPConfigSearchQuery) GetMethod() domain.SearchMethod {
|
|
return req.Method
|
|
}
|
|
|
|
func (req IDPConfigSearchQuery) GetValue() interface{} {
|
|
return req.Value
|
|
}
|
|
|
|
func (key IDPConfigSearchKey) ToColumnName() string {
|
|
switch iam_model.IDPConfigSearchKey(key) {
|
|
case iam_model.IDPConfigSearchKeyAggregateID:
|
|
return IDPConfigKeyAggregateID
|
|
case iam_model.IDPConfigSearchKeyIdpConfigID:
|
|
return IDPConfigKeyIdpConfigID
|
|
case iam_model.IDPConfigSearchKeyName:
|
|
return IDPConfigKeyName
|
|
case iam_model.IDPConfigSearchKeyIdpProviderType:
|
|
return IDPConfigKeyProviderType
|
|
case iam_model.IDPConfigSearchKeyInstanceID:
|
|
return IDPConfigKeyInstanceID
|
|
default:
|
|
return ""
|
|
}
|
|
}
|