mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
d1c03fd15c
* fix: add user metadata to the features * fix: remove user metadata * fix: add test * fix: add test
110 lines
2.6 KiB
Go
110 lines
2.6 KiB
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/caos/zitadel/internal/domain"
|
|
)
|
|
|
|
type FeaturesView struct {
|
|
AggregateID string
|
|
CreationDate time.Time
|
|
ChangeDate time.Time
|
|
Sequence uint64
|
|
Default bool
|
|
|
|
TierName string
|
|
TierDescription string
|
|
State domain.FeaturesState
|
|
StateDescription string
|
|
AuditLogRetention time.Duration
|
|
LoginPolicyFactors bool
|
|
LoginPolicyIDP bool
|
|
LoginPolicyPasswordless bool
|
|
LoginPolicyRegistration bool
|
|
LoginPolicyUsernameLogin bool
|
|
LoginPolicyPasswordReset bool
|
|
PasswordComplexityPolicy bool
|
|
LabelPolicyPrivateLabel bool
|
|
LabelPolicyWatermark bool
|
|
CustomDomain bool
|
|
CustomText bool
|
|
PrivacyPolicy bool
|
|
MetadataUser bool
|
|
}
|
|
|
|
func (f *FeaturesView) FeatureList() []string {
|
|
list := make([]string, 0)
|
|
if f.LoginPolicyFactors {
|
|
list = append(list, domain.FeatureLoginPolicyFactors)
|
|
}
|
|
if f.LoginPolicyIDP {
|
|
list = append(list, domain.FeatureLoginPolicyIDP)
|
|
}
|
|
if f.LoginPolicyPasswordless {
|
|
list = append(list, domain.FeatureLoginPolicyPasswordless)
|
|
}
|
|
if f.LoginPolicyRegistration {
|
|
list = append(list, domain.FeatureLoginPolicyRegistration)
|
|
}
|
|
if f.LoginPolicyUsernameLogin {
|
|
list = append(list, domain.FeatureLoginPolicyUsernameLogin)
|
|
}
|
|
if f.LoginPolicyPasswordReset {
|
|
list = append(list, domain.FeatureLoginPolicyPasswordReset)
|
|
}
|
|
if f.PasswordComplexityPolicy {
|
|
list = append(list, domain.FeaturePasswordComplexityPolicy)
|
|
}
|
|
if f.LabelPolicyPrivateLabel {
|
|
list = append(list, domain.FeatureLabelPolicyPrivateLabel)
|
|
}
|
|
if f.LabelPolicyWatermark {
|
|
list = append(list, domain.FeatureLabelPolicyWatermark)
|
|
}
|
|
if f.CustomDomain {
|
|
list = append(list, domain.FeatureCustomDomain)
|
|
}
|
|
if f.CustomText {
|
|
list = append(list, domain.FeatureCustomText)
|
|
}
|
|
if f.PrivacyPolicy {
|
|
list = append(list, domain.FeaturePrivacyPolicy)
|
|
}
|
|
if f.MetadataUser {
|
|
list = append(list, domain.FeatureMetadataUser)
|
|
}
|
|
return list
|
|
}
|
|
|
|
type FeaturesSearchRequest struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
SortingColumn FeaturesSearchKey
|
|
Asc bool
|
|
Queries []*FeaturesSearchQuery
|
|
}
|
|
|
|
type FeaturesSearchKey int32
|
|
|
|
const (
|
|
FeaturesSearchKeyUnspecified FeaturesSearchKey = iota
|
|
FeaturesSearchKeyAggregateID
|
|
FeaturesSearchKeyDefault
|
|
)
|
|
|
|
type FeaturesSearchQuery struct {
|
|
Key FeaturesSearchKey
|
|
Method domain.SearchMethod
|
|
Value interface{}
|
|
}
|
|
|
|
type FeaturesSearchResult struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
TotalResult uint64
|
|
Result []*FeaturesView
|
|
Sequence uint64
|
|
Timestamp time.Time
|
|
}
|