refactor
This commit is contained in:
+22
-4
@@ -41,8 +41,23 @@ func ResolveSecrets(template string) string {
|
|||||||
|
|
||||||
func LoadSecret(v any) {
|
func LoadSecret(v any) {
|
||||||
for _, data := range secrets {
|
for _, data := range secrets {
|
||||||
if err := yaml.Unmarshal(data, v); err != nil {
|
var tempData map[string]interface{}
|
||||||
|
|
||||||
|
if err := yaml.Unmarshal(data, &tempData); err != nil {
|
||||||
Logger.Warn().Err(err).Send()
|
Logger.Warn().Err(err).Send()
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if secretData, exists := tempData["secret"]; exists {
|
||||||
|
secretBytes, err := yaml.Encode(secretData, 2)
|
||||||
|
if err != nil {
|
||||||
|
Logger.Warn().Err(err).Send()
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := yaml.Unmarshal(secretBytes, v); err != nil {
|
||||||
|
Logger.Warn().Err(err).Send()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -55,7 +70,7 @@ func PatchSecret(path []string, value any) error {
|
|||||||
// empty config is OK
|
// empty config is OK
|
||||||
b, _ := os.ReadFile(SecretPath)
|
b, _ := os.ReadFile(SecretPath)
|
||||||
|
|
||||||
b, err := yaml.Patch(b, path, value)
|
b, err := yaml.Patch(b, append([]string{"secret"}, path...), value)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@@ -82,6 +97,10 @@ func initSecret(secret string) {
|
|||||||
}
|
}
|
||||||
Info["secret_path"] = SecretPath
|
Info["secret_path"] = SecretPath
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if data, err := os.ReadFile(SecretPath); err == nil {
|
||||||
|
secrets = append(secrets, data)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func getNestedValue(m map[string]interface{}, path []string) interface{} {
|
func getNestedValue(m map[string]interface{}, path []string) interface{} {
|
||||||
@@ -99,12 +118,11 @@ func getNestedValue(m map[string]interface{}, path []string) interface{} {
|
|||||||
return value
|
return value
|
||||||
}
|
}
|
||||||
|
|
||||||
// Für verschachtelte Maps
|
// Check nested maps
|
||||||
switch nextMap := value.(type) {
|
switch nextMap := value.(type) {
|
||||||
case map[string]interface{}:
|
case map[string]interface{}:
|
||||||
return getNestedValue(nextMap, path[1:])
|
return getNestedValue(nextMap, path[1:])
|
||||||
case map[interface{}]interface{}:
|
case map[interface{}]interface{}:
|
||||||
// Konvertiere map[interface{}]interface{} zu map[string]interface{}
|
|
||||||
stringMap := make(map[string]interface{})
|
stringMap := make(map[string]interface{})
|
||||||
for k, v := range nextMap {
|
for k, v := range nextMap {
|
||||||
if keyStr, ok := k.(string); ok {
|
if keyStr, ok := k.(string); ok {
|
||||||
|
|||||||
Reference in New Issue
Block a user