mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 14:47:33 +00:00
chore: move the go code into a subfolder
This commit is contained in:
85
apps/api/internal/domain/policy_label.go
Normal file
85
apps/api/internal/domain/policy_label.go
Normal file
@@ -0,0 +1,85 @@
|
||||
package domain
|
||||
|
||||
import (
|
||||
"regexp"
|
||||
|
||||
"github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
||||
"github.com/zitadel/zitadel/internal/zerrors"
|
||||
)
|
||||
|
||||
var colorRegex = regexp.MustCompile("^$|^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$")
|
||||
|
||||
type LabelPolicy struct {
|
||||
models.ObjectRoot
|
||||
|
||||
State LabelPolicyState
|
||||
Default bool
|
||||
|
||||
PrimaryColor string
|
||||
BackgroundColor string
|
||||
WarnColor string
|
||||
FontColor string
|
||||
LogoURL string
|
||||
IconURL string
|
||||
|
||||
PrimaryColorDark string
|
||||
BackgroundColorDark string
|
||||
WarnColorDark string
|
||||
FontColorDark string
|
||||
LogoDarkURL string
|
||||
IconDarkURL string
|
||||
|
||||
Font string
|
||||
|
||||
HideLoginNameSuffix bool
|
||||
ErrorMsgPopup bool
|
||||
DisableWatermark bool
|
||||
ThemeMode LabelPolicyThemeMode
|
||||
}
|
||||
|
||||
type LabelPolicyState int32
|
||||
|
||||
const (
|
||||
LabelPolicyStateUnspecified LabelPolicyState = iota
|
||||
LabelPolicyStateActive
|
||||
LabelPolicyStateRemoved
|
||||
LabelPolicyStatePreview
|
||||
|
||||
labelPolicyStateCount
|
||||
)
|
||||
|
||||
type LabelPolicyThemeMode int32
|
||||
|
||||
const (
|
||||
LabelPolicyThemeAuto LabelPolicyThemeMode = iota
|
||||
LabelPolicyThemeLight
|
||||
LabelPolicyThemeDark
|
||||
)
|
||||
|
||||
func (f LabelPolicy) IsValid() error {
|
||||
if !colorRegex.MatchString(f.PrimaryColor) {
|
||||
return zerrors.ThrowInvalidArgument(nil, "POLICY-391dG", "Errors.Policy.Label.Invalid.PrimaryColor")
|
||||
}
|
||||
if !colorRegex.MatchString(f.BackgroundColor) {
|
||||
return zerrors.ThrowInvalidArgument(nil, "POLICY-502F1", "Errors.Policy.Label.Invalid.BackgroundColor")
|
||||
}
|
||||
if !colorRegex.MatchString(f.WarnColor) {
|
||||
return zerrors.ThrowInvalidArgument(nil, "POLICY-nvw33", "Errors.Policy.Label.Invalid.WarnColor")
|
||||
}
|
||||
if !colorRegex.MatchString(f.FontColor) {
|
||||
return zerrors.ThrowInvalidArgument(nil, "POLICY-93mSf", "Errors.Policy.Label.Invalid.FontColor")
|
||||
}
|
||||
if !colorRegex.MatchString(f.PrimaryColorDark) {
|
||||
return zerrors.ThrowInvalidArgument(nil, "POLICY-391dG", "Errors.Policy.Label.Invalid.PrimaryColorDark")
|
||||
}
|
||||
if !colorRegex.MatchString(f.BackgroundColorDark) {
|
||||
return zerrors.ThrowInvalidArgument(nil, "POLICY-llsp2", "Errors.Policy.Label.Invalid.BackgroundColorDark")
|
||||
}
|
||||
if !colorRegex.MatchString(f.WarnColorDark) {
|
||||
return zerrors.ThrowInvalidArgument(nil, "POLICY-2b6sf", "Errors.Policy.Label.Invalid.WarnColorDark")
|
||||
}
|
||||
if !colorRegex.MatchString(f.FontColorDark) {
|
||||
return zerrors.ThrowInvalidArgument(nil, "POLICY-3M0fs", "Errors.Policy.Label.Invalid.FontColorDark")
|
||||
}
|
||||
return nil
|
||||
}
|
Reference in New Issue
Block a user