-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstringmap.go
103 lines (99 loc) · 2.65 KB
/
stringmap.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// KIProtect Go-Helpers - Golang Utility Functions
// Copyright (C) 2019-2024 KIProtect GmbH (HRB 208395B) - Germany
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the 3-Clause BSD License.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// license for more details.
//
// You should have received a copy of the 3-Clause BSD License
// along with this program. If not, see <https://opensource.org/licenses/BSD-3-Clause>.
package maps
func EnsureStringKeys(value interface{}) (interface{}, bool) {
valueStrMap, ok := value.(map[string]interface{})
if ok {
newValueStrMap := make(map[string]interface{})
for key, value := range valueStrMap {
newValue, ok := EnsureStringKeys(value)
if !ok {
return nil, false
}
newValueStrMap[key] = newValue
}
return newValueStrMap, true
}
valueIfMap, ok := value.(map[interface{}]interface{})
// if this is a generic map we try to convert it to a string map and
// reeturn the result
if ok {
valueStrMap = make(map[string]interface{})
for key, value := range valueIfMap {
strKey, ok := key.(string)
if !ok {
return nil, false
}
newValue, ok := EnsureStringKeys(value)
if !ok {
return nil, false
}
valueStrMap[strKey] = newValue
}
return valueStrMap, true
}
valueList, ok := value.([]interface{})
if ok {
// this is a list, we convert each of its elements
newValueList := make([]interface{}, len(valueList))
for i, value := range valueList {
if newValue, ok := EnsureStringKeys(value); !ok {
return nil, false
} else {
newValueList[i] = newValue
}
}
return newValueList, true
}
// we do not modify this value
return value, true
}
func ToStringMap(value interface{}) (map[string]interface{}, bool) {
valueStrMap, ok := value.(map[string]interface{})
if ok {
return valueStrMap, true
}
valueIfMap, ok := value.(map[interface{}]interface{})
if !ok {
return nil, false
}
valueStrMap = make(map[string]interface{})
for key, value := range valueIfMap {
strKey, ok := key.(string)
if !ok {
return nil, false
}
valueStrMap[strKey] = value
}
return valueStrMap, true
}
func ToStringMapList(value interface{}) ([]map[string]interface{}, bool) {
lv, ok := value.([]interface{})
if !ok {
ll, ok := value.([]map[string]interface{})
if !ok {
return nil, false
}
return ll, true
}
ll := make([]map[string]interface{}, len(lv))
for i, e := range lv {
m, ok := ToStringMap(e)
if !ok {
return nil, false
}
ll[i] = m
}
return ll, true
}