This repository has been archived by the owner on Aug 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
utils.go
170 lines (139 loc) · 3.23 KB
/
utils.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
package utils
import (
"encoding/json"
"fmt"
"github.com/Sirupsen/logrus"
"gopkg.in/yaml.v2"
)
// ConvertByJSON converts a struct (src) to another one (target) using json marshalling/unmarshalling.
// If the structure are not compatible, this will throw an error as the unmarshalling will fail.
func ConvertByJSON(src, target interface{}) error {
newBytes, err := json.Marshal(src)
if err != nil {
return err
}
err = json.Unmarshal(newBytes, target)
if err != nil {
logrus.Errorf("Failed to unmarshall: %v\n%s", err, string(newBytes))
}
return err
}
// Convert converts a struct (src) to another one (target) using yaml marshalling/unmarshalling.
// If the structure are not compatible, this will throw an error as the unmarshalling will fail.
func Convert(src, target interface{}) error {
newBytes, err := yaml.Marshal(src)
if err != nil {
return err
}
err = yaml.Unmarshal(newBytes, target)
if err != nil {
logrus.Errorf("Failed to unmarshall: %v\n%s", err, string(newBytes))
}
return err
}
func CopySlice(s []string) []string {
if s == nil {
return nil
}
r := make([]string, len(s))
copy(r, s)
return r
}
func CopyMap(m map[string]string) map[string]string {
if m == nil {
return nil
}
r := map[string]string{}
for k, v := range m {
r[k] = v
}
return r
}
func NestedMapsToMapInterface(data map[string]interface{}) map[string]interface{} {
newMapInterface := map[string]interface{}{}
for k, v := range data {
newMapInterface[k] = convertObj(v)
}
return newMapInterface
}
func convertObj(v interface{}) interface{} {
switch k := v.(type) {
case map[interface{}]interface{}:
return mapWalk(k)
case map[string]interface{}:
return NestedMapsToMapInterface(k)
case []interface{}:
return listWalk(k)
default:
return v
}
}
func listWalk(val []interface{}) []interface{} {
for i, v := range val {
val[i] = convertObj(v)
}
return val
}
func mapWalk(val map[interface{}]interface{}) map[string]interface{} {
newMap := map[string]interface{}{}
for k, v := range val {
newMap[fmt.Sprintf("%v", k)] = convertObj(v)
}
return newMap
}
func Contains(list []string, item string) bool {
for _, v := range list {
if v == item {
return true
}
}
return false
}
func ToMapInterface(data map[string]string) map[string]interface{} {
ret := map[string]interface{}{}
for k, v := range data {
ret[k] = v
}
return ret
}
func ToMapString(data map[string]interface{}) map[string]string {
ret := map[string]string{}
for k, v := range data {
if str, ok := v.(string); ok {
ret[k] = str
} else {
ret[k] = fmt.Sprint(v)
}
}
return ret
}
func ToMapByte(data map[string]string) map[string][]byte {
ret := map[string][]byte{}
for k, v := range data {
ret[k] = []byte(v)
}
return ret
}
func MapUnion(left, right map[string]string) map[string]string {
ret := map[string]string{}
for k, v := range left {
ret[k] = v
}
for k, v := range right {
ret[k] = v
}
return ret
}
func MapUnionI(left, right map[string]interface{}) map[string]interface{} {
ret := map[string]interface{}{}
for k, v := range left {
ret[k] = v
}
for k, v := range right {
ret[k] = v
}
return ret
}
func IsSelected(selected []string, name string) bool {
return len(selected) == 0 || Contains(selected, name)
}