mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 17:37:32 +00:00
chore: move the go code into a subfolder
This commit is contained in:
75
apps/api/internal/feature/feature.go
Normal file
75
apps/api/internal/feature/feature.go
Normal file
@@ -0,0 +1,75 @@
|
||||
package feature
|
||||
|
||||
import (
|
||||
"net/url"
|
||||
"slices"
|
||||
)
|
||||
|
||||
//go:generate enumer -type Key -transform snake -trimprefix Key
|
||||
type Key int
|
||||
|
||||
const (
|
||||
// Reserved: 2, 3, 6, 8
|
||||
|
||||
KeyUnspecified Key = 0
|
||||
KeyLoginDefaultOrg Key = 1
|
||||
KeyUserSchema Key = 4
|
||||
KeyTokenExchange Key = 5
|
||||
KeyImprovedPerformance Key = 7
|
||||
KeyDebugOIDCParentError Key = 9
|
||||
KeyOIDCSingleV1SessionTermination Key = 10
|
||||
KeyDisableUserTokenEvent Key = 11
|
||||
KeyEnableBackChannelLogout Key = 12
|
||||
KeyLoginV2 Key = 13
|
||||
KeyPermissionCheckV2 Key = 14
|
||||
KeyConsoleUseV2UserApi Key = 15
|
||||
)
|
||||
|
||||
//go:generate enumer -type Level -transform snake -trimprefix Level
|
||||
type Level int
|
||||
|
||||
const (
|
||||
LevelUnspecified Level = iota
|
||||
LevelSystem
|
||||
LevelInstance
|
||||
LevelOrg
|
||||
LevelProject
|
||||
LevelApp
|
||||
LevelUser
|
||||
)
|
||||
|
||||
type Features struct {
|
||||
LoginDefaultOrg bool `json:"login_default_org,omitempty"`
|
||||
UserSchema bool `json:"user_schema,omitempty"`
|
||||
TokenExchange bool `json:"token_exchange,omitempty"`
|
||||
ImprovedPerformance []ImprovedPerformanceType `json:"improved_performance,omitempty"`
|
||||
DebugOIDCParentError bool `json:"debug_oidc_parent_error,omitempty"`
|
||||
OIDCSingleV1SessionTermination bool `json:"oidc_single_v1_session_termination,omitempty"`
|
||||
DisableUserTokenEvent bool `json:"disable_user_token_event,omitempty"`
|
||||
EnableBackChannelLogout bool `json:"enable_back_channel_logout,omitempty"`
|
||||
LoginV2 LoginV2 `json:"login_v2,omitempty"`
|
||||
PermissionCheckV2 bool `json:"permission_check_v2,omitempty"`
|
||||
ConsoleUseV2UserApi bool `json:"console_use_v2_user_api,omitempty"`
|
||||
}
|
||||
|
||||
/* Note: do not generate the stringer or enumer for this type, is it breaks existing events */
|
||||
|
||||
type ImprovedPerformanceType int32
|
||||
|
||||
const (
|
||||
ImprovedPerformanceTypeUnspecified ImprovedPerformanceType = iota
|
||||
ImprovedPerformanceTypeOrgByID
|
||||
ImprovedPerformanceTypeProjectGrant
|
||||
ImprovedPerformanceTypeProject
|
||||
ImprovedPerformanceTypeUserGrant
|
||||
ImprovedPerformanceTypeOrgDomainVerified
|
||||
)
|
||||
|
||||
func (f Features) ShouldUseImprovedPerformance(typ ImprovedPerformanceType) bool {
|
||||
return slices.Contains(f.ImprovedPerformance, typ)
|
||||
}
|
||||
|
||||
type LoginV2 struct {
|
||||
Required bool `json:"required,omitempty"`
|
||||
BaseURI *url.URL `json:"base_uri,omitempty"`
|
||||
}
|
41
apps/api/internal/feature/feature_test.go
Normal file
41
apps/api/internal/feature/feature_test.go
Normal file
@@ -0,0 +1,41 @@
|
||||
package feature
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
func TestKey(t *testing.T) {
|
||||
tests := []string{
|
||||
"unspecified",
|
||||
"login_default_org",
|
||||
}
|
||||
for _, want := range tests {
|
||||
t.Run(want, func(t *testing.T) {
|
||||
feature, err := KeyString(want)
|
||||
require.NoError(t, err)
|
||||
assert.Equal(t, want, feature.String())
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func TestLevel(t *testing.T) {
|
||||
tests := []string{
|
||||
"unspecified",
|
||||
"system",
|
||||
"instance",
|
||||
"org",
|
||||
"project",
|
||||
"app",
|
||||
"user",
|
||||
}
|
||||
for _, want := range tests {
|
||||
t.Run(want, func(t *testing.T) {
|
||||
level, err := LevelString(want)
|
||||
require.NoError(t, err)
|
||||
assert.Equal(t, want, level.String())
|
||||
})
|
||||
}
|
||||
}
|
140
apps/api/internal/feature/key_enumer.go
Normal file
140
apps/api/internal/feature/key_enumer.go
Normal file
@@ -0,0 +1,140 @@
|
||||
// Code generated by "enumer -type Key -transform snake -trimprefix Key"; DO NOT EDIT.
|
||||
|
||||
package feature
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strings"
|
||||
)
|
||||
|
||||
const (
|
||||
_KeyName_0 = "unspecifiedlogin_default_org"
|
||||
_KeyLowerName_0 = "unspecifiedlogin_default_org"
|
||||
_KeyName_1 = "user_schematoken_exchange"
|
||||
_KeyLowerName_1 = "user_schematoken_exchange"
|
||||
_KeyName_2 = "improved_performance"
|
||||
_KeyLowerName_2 = "improved_performance"
|
||||
_KeyName_3 = "debug_oidc_parent_erroroidc_single_v1_session_terminationdisable_user_token_eventenable_back_channel_logoutlogin_v2permission_check_v2console_use_v2_user_api"
|
||||
_KeyLowerName_3 = "debug_oidc_parent_erroroidc_single_v1_session_terminationdisable_user_token_eventenable_back_channel_logoutlogin_v2permission_check_v2console_use_v2_user_api"
|
||||
)
|
||||
|
||||
var (
|
||||
_KeyIndex_0 = [...]uint8{0, 11, 28}
|
||||
_KeyIndex_1 = [...]uint8{0, 11, 25}
|
||||
_KeyIndex_2 = [...]uint8{0, 20}
|
||||
_KeyIndex_3 = [...]uint8{0, 23, 57, 81, 107, 115, 134, 157}
|
||||
)
|
||||
|
||||
func (i Key) String() string {
|
||||
switch {
|
||||
case 0 <= i && i <= 1:
|
||||
return _KeyName_0[_KeyIndex_0[i]:_KeyIndex_0[i+1]]
|
||||
case 4 <= i && i <= 5:
|
||||
i -= 4
|
||||
return _KeyName_1[_KeyIndex_1[i]:_KeyIndex_1[i+1]]
|
||||
case i == 7:
|
||||
return _KeyName_2
|
||||
case 9 <= i && i <= 15:
|
||||
i -= 9
|
||||
return _KeyName_3[_KeyIndex_3[i]:_KeyIndex_3[i+1]]
|
||||
default:
|
||||
return fmt.Sprintf("Key(%d)", i)
|
||||
}
|
||||
}
|
||||
|
||||
// An "invalid array index" compiler error signifies that the constant values have changed.
|
||||
// Re-run the stringer command to generate them again.
|
||||
func _KeyNoOp() {
|
||||
var x [1]struct{}
|
||||
_ = x[KeyUnspecified-(0)]
|
||||
_ = x[KeyLoginDefaultOrg-(1)]
|
||||
_ = x[KeyUserSchema-(4)]
|
||||
_ = x[KeyTokenExchange-(5)]
|
||||
_ = x[KeyImprovedPerformance-(7)]
|
||||
_ = x[KeyDebugOIDCParentError-(9)]
|
||||
_ = x[KeyOIDCSingleV1SessionTermination-(10)]
|
||||
_ = x[KeyDisableUserTokenEvent-(11)]
|
||||
_ = x[KeyEnableBackChannelLogout-(12)]
|
||||
_ = x[KeyLoginV2-(13)]
|
||||
_ = x[KeyPermissionCheckV2-(14)]
|
||||
_ = x[KeyConsoleUseV2UserApi-(15)]
|
||||
}
|
||||
|
||||
var _KeyValues = []Key{KeyUnspecified, KeyLoginDefaultOrg, KeyUserSchema, KeyTokenExchange, KeyImprovedPerformance, KeyDebugOIDCParentError, KeyOIDCSingleV1SessionTermination, KeyDisableUserTokenEvent, KeyEnableBackChannelLogout, KeyLoginV2, KeyPermissionCheckV2, KeyConsoleUseV2UserApi}
|
||||
|
||||
var _KeyNameToValueMap = map[string]Key{
|
||||
_KeyName_0[0:11]: KeyUnspecified,
|
||||
_KeyLowerName_0[0:11]: KeyUnspecified,
|
||||
_KeyName_0[11:28]: KeyLoginDefaultOrg,
|
||||
_KeyLowerName_0[11:28]: KeyLoginDefaultOrg,
|
||||
_KeyName_1[0:11]: KeyUserSchema,
|
||||
_KeyLowerName_1[0:11]: KeyUserSchema,
|
||||
_KeyName_1[11:25]: KeyTokenExchange,
|
||||
_KeyLowerName_1[11:25]: KeyTokenExchange,
|
||||
_KeyName_2[0:20]: KeyImprovedPerformance,
|
||||
_KeyLowerName_2[0:20]: KeyImprovedPerformance,
|
||||
_KeyName_3[0:23]: KeyDebugOIDCParentError,
|
||||
_KeyLowerName_3[0:23]: KeyDebugOIDCParentError,
|
||||
_KeyName_3[23:57]: KeyOIDCSingleV1SessionTermination,
|
||||
_KeyLowerName_3[23:57]: KeyOIDCSingleV1SessionTermination,
|
||||
_KeyName_3[57:81]: KeyDisableUserTokenEvent,
|
||||
_KeyLowerName_3[57:81]: KeyDisableUserTokenEvent,
|
||||
_KeyName_3[81:107]: KeyEnableBackChannelLogout,
|
||||
_KeyLowerName_3[81:107]: KeyEnableBackChannelLogout,
|
||||
_KeyName_3[107:115]: KeyLoginV2,
|
||||
_KeyLowerName_3[107:115]: KeyLoginV2,
|
||||
_KeyName_3[115:134]: KeyPermissionCheckV2,
|
||||
_KeyLowerName_3[115:134]: KeyPermissionCheckV2,
|
||||
_KeyName_3[134:157]: KeyConsoleUseV2UserApi,
|
||||
_KeyLowerName_3[134:157]: KeyConsoleUseV2UserApi,
|
||||
}
|
||||
|
||||
var _KeyNames = []string{
|
||||
_KeyName_0[0:11],
|
||||
_KeyName_0[11:28],
|
||||
_KeyName_1[0:11],
|
||||
_KeyName_1[11:25],
|
||||
_KeyName_2[0:20],
|
||||
_KeyName_3[0:23],
|
||||
_KeyName_3[23:57],
|
||||
_KeyName_3[57:81],
|
||||
_KeyName_3[81:107],
|
||||
_KeyName_3[107:115],
|
||||
_KeyName_3[115:134],
|
||||
_KeyName_3[134:157],
|
||||
}
|
||||
|
||||
// KeyString retrieves an enum value from the enum constants string name.
|
||||
// Throws an error if the param is not part of the enum.
|
||||
func KeyString(s string) (Key, error) {
|
||||
if val, ok := _KeyNameToValueMap[s]; ok {
|
||||
return val, nil
|
||||
}
|
||||
|
||||
if val, ok := _KeyNameToValueMap[strings.ToLower(s)]; ok {
|
||||
return val, nil
|
||||
}
|
||||
return 0, fmt.Errorf("%s does not belong to Key values", s)
|
||||
}
|
||||
|
||||
// KeyValues returns all values of the enum
|
||||
func KeyValues() []Key {
|
||||
return _KeyValues
|
||||
}
|
||||
|
||||
// KeyStrings returns a slice of all String values of the enum
|
||||
func KeyStrings() []string {
|
||||
strs := make([]string, len(_KeyNames))
|
||||
copy(strs, _KeyNames)
|
||||
return strs
|
||||
}
|
||||
|
||||
// IsAKey returns "true" if the value is listed in the enum definition. "false" otherwise
|
||||
func (i Key) IsAKey() bool {
|
||||
for _, v := range _KeyValues {
|
||||
if i == v {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
98
apps/api/internal/feature/level_enumer.go
Normal file
98
apps/api/internal/feature/level_enumer.go
Normal file
@@ -0,0 +1,98 @@
|
||||
// Code generated by "enumer -type Level -transform snake -trimprefix Level"; DO NOT EDIT.
|
||||
|
||||
package feature
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strings"
|
||||
)
|
||||
|
||||
const _LevelName = "unspecifiedsysteminstanceorgprojectappuser"
|
||||
|
||||
var _LevelIndex = [...]uint8{0, 11, 17, 25, 28, 35, 38, 42}
|
||||
|
||||
const _LevelLowerName = "unspecifiedsysteminstanceorgprojectappuser"
|
||||
|
||||
func (i Level) String() string {
|
||||
if i < 0 || i >= Level(len(_LevelIndex)-1) {
|
||||
return fmt.Sprintf("Level(%d)", i)
|
||||
}
|
||||
return _LevelName[_LevelIndex[i]:_LevelIndex[i+1]]
|
||||
}
|
||||
|
||||
// An "invalid array index" compiler error signifies that the constant values have changed.
|
||||
// Re-run the stringer command to generate them again.
|
||||
func _LevelNoOp() {
|
||||
var x [1]struct{}
|
||||
_ = x[LevelUnspecified-(0)]
|
||||
_ = x[LevelSystem-(1)]
|
||||
_ = x[LevelInstance-(2)]
|
||||
_ = x[LevelOrg-(3)]
|
||||
_ = x[LevelProject-(4)]
|
||||
_ = x[LevelApp-(5)]
|
||||
_ = x[LevelUser-(6)]
|
||||
}
|
||||
|
||||
var _LevelValues = []Level{LevelUnspecified, LevelSystem, LevelInstance, LevelOrg, LevelProject, LevelApp, LevelUser}
|
||||
|
||||
var _LevelNameToValueMap = map[string]Level{
|
||||
_LevelName[0:11]: LevelUnspecified,
|
||||
_LevelLowerName[0:11]: LevelUnspecified,
|
||||
_LevelName[11:17]: LevelSystem,
|
||||
_LevelLowerName[11:17]: LevelSystem,
|
||||
_LevelName[17:25]: LevelInstance,
|
||||
_LevelLowerName[17:25]: LevelInstance,
|
||||
_LevelName[25:28]: LevelOrg,
|
||||
_LevelLowerName[25:28]: LevelOrg,
|
||||
_LevelName[28:35]: LevelProject,
|
||||
_LevelLowerName[28:35]: LevelProject,
|
||||
_LevelName[35:38]: LevelApp,
|
||||
_LevelLowerName[35:38]: LevelApp,
|
||||
_LevelName[38:42]: LevelUser,
|
||||
_LevelLowerName[38:42]: LevelUser,
|
||||
}
|
||||
|
||||
var _LevelNames = []string{
|
||||
_LevelName[0:11],
|
||||
_LevelName[11:17],
|
||||
_LevelName[17:25],
|
||||
_LevelName[25:28],
|
||||
_LevelName[28:35],
|
||||
_LevelName[35:38],
|
||||
_LevelName[38:42],
|
||||
}
|
||||
|
||||
// LevelString retrieves an enum value from the enum constants string name.
|
||||
// Throws an error if the param is not part of the enum.
|
||||
func LevelString(s string) (Level, error) {
|
||||
if val, ok := _LevelNameToValueMap[s]; ok {
|
||||
return val, nil
|
||||
}
|
||||
|
||||
if val, ok := _LevelNameToValueMap[strings.ToLower(s)]; ok {
|
||||
return val, nil
|
||||
}
|
||||
return 0, fmt.Errorf("%s does not belong to Level values", s)
|
||||
}
|
||||
|
||||
// LevelValues returns all values of the enum
|
||||
func LevelValues() []Level {
|
||||
return _LevelValues
|
||||
}
|
||||
|
||||
// LevelStrings returns a slice of all String values of the enum
|
||||
func LevelStrings() []string {
|
||||
strs := make([]string, len(_LevelNames))
|
||||
copy(strs, _LevelNames)
|
||||
return strs
|
||||
}
|
||||
|
||||
// IsALevel returns "true" if the value is listed in the enum definition. "false" otherwise
|
||||
func (i Level) IsALevel() bool {
|
||||
for _, v := range _LevelValues {
|
||||
if i == v {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
Reference in New Issue
Block a user