-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathformatter.go
303 lines (275 loc) · 7.09 KB
/
formatter.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
package proxy
import (
"github.com/devopsfaith/flatmap/tree"
"melody/config"
"strings"
)
const flatmapKey = "flatmap_filter"
type EntityFormatter interface {
Format(Response) Response
}
type propertyFilter func(*Response)
type EntityFormatterFunc func(Response) Response
func (e EntityFormatterFunc) Format(entity Response) Response { return e(entity) }
type entityFormatter struct {
Target string
Prefix string
PropertyFilter propertyFilter
Mapping map[string]string
}
type flatmapFormatter struct {
Target string
Prefix string
Ops []flatmapOp
}
type flatmapOp struct {
Type string
Args [][]string
}
func (e entityFormatter) Format(resp Response) Response {
if e.Target != "" {
extractTarget(e.Target, &resp)
}
if len(resp.Data) > 0 {
e.PropertyFilter(&resp)
}
if len(resp.Data) > 0 {
for formerKey, newKey := range e.Mapping {
if v, ok := resp.Data[formerKey]; ok {
resp.Data[newKey] = v
delete(resp.Data, formerKey)
}
}
}
if e.Prefix != "" {
resp.Data = map[string]interface{}{e.Prefix: resp.Data}
}
return resp
}
func NewEntityFormatter(remote *config.Backend) EntityFormatter {
/**
1. 返回结果为key : 数组
{
"a": []
}
*/
// 创建flatMapFormatter对象
if flatMapFormatter := newFlatmapFormatter(remote); flatMapFormatter != nil {
return flatMapFormatter
}
/**
2. 返回结果为key : 对象
{
"a" : {...}
}
*/
var propertyFilter propertyFilter
if len(remote.Whitelist) > 0 {
propertyFilter = newWhitelistingFilter(remote.Whitelist)
} else {
propertyFilter = newBlacklistingFilter(remote.Blacklist)
}
mappings := make(map[string]string, len(remote.Mapping))
for k, v := range remote.Mapping {
mappings[k] = v
}
return entityFormatter{
Target: remote.Target,
Prefix: remote.Group,
PropertyFilter: propertyFilter,
Mapping: mappings,
}
}
func newFlatmapFormatter(remote *config.Backend) EntityFormatter {
if v, ok := remote.ExtraConfig[Namespace]; ok {
if e, ok := v.(map[string]interface{}); ok {
// e 是 config
if a, ok := e[flatmapKey].([]interface{}); ok {
if len(a) == 0 {
return nil
}
options := []flatmapOp{}
for _, o := range a {
m, ok := o.(map[string]interface{})
if !ok {
continue
}
op := flatmapOp{}
if t, ok := m["type"].(string); ok {
op.Type = t
} else {
continue
}
if args, ok := m["args"].([]interface{}); ok {
op.Args = make([][]string, len(args))
for k, arg := range args {
if t, ok := arg.(string); ok {
op.Args[k] = strings.Split(t, ".")
}
}
}
options = append(options, op)
}
if len(options) == 0 {
return nil
}
return &flatmapFormatter{
Target: remote.Target,
Prefix: remote.Group,
Ops: options,
}
}
}
}
return nil
}
// newWhitelistingFilter 初始化白名单
func newWhitelistingFilter(whitelist []string) propertyFilter {
wlDict := make(map[string]interface{})
// e.g. 白名单中有 a.b.c 和 a.b.c.d
// 第一轮 wlDict[a][b][c] = true
// 第二轮 wlDict[a][b][c].(map[string]interface{}) !ok 直接 break
// 然后将 wlDict[a][b][c] 改成 map, wlDict[a][b][c][d] = true
// 结果就是: 只有 a.b.c.d 生效
for _, k := range whitelist {
wlFields := strings.Split(k, ".")
d := buildDictPath(wlDict, wlFields[:len(wlFields)-1])
d[wlFields[len(wlFields)-1]] = true
}
return func(response *Response) {
// 如果最顶层需要删除的话, 遍历所有的 key 进行删除
// (感觉这里的操作多余了...)
if whitelistPrune(wlDict, response.Data) {
for k := range response.Data {
delete(response.Data, k)
}
}
}
}
// newWhitelistingFilter 生成白名单字典
func buildDictPath(accumulator map[string]interface{}, fields []string) map[string]interface{} {
ok := true
var c map[string]interface{}
var fIdx int
fEnd := len(fields)
p := accumulator
for fIdx = 0; fIdx < fEnd; fIdx++ {
if c, ok = p[fields[fIdx]].(map[string]interface{}); !ok {
break
}
p = c
}
for ; fIdx < fEnd; fIdx++ {
c = make(map[string]interface{})
p[fields[fIdx]] = c
p = c
}
return p
}
// whitelistPrune 递归删除不在白名单中的数据
func whitelistPrune(wlDict map[string]interface{}, inDict map[string]interface{}) bool {
canDelete := true // 只有这一层所有的 value 全部要删的时候才是 true
var deleteSibling bool
for k, v := range inDict {
deleteSibling = true
if subWl, ok := wlDict[k]; ok {
// 此 key 在白名单中, 判断 白名单[key] 的类型
if subWlDict, okk := subWl.(map[string]interface{}); okk {
// 白名单[key] 是 map[string]interface{} 的时候往下一层走
// 如果 response[key] 也是 map[string]interface{} 的时候进行递归
// 递归到最后的情况: (核心)
// response 中的所有 value 都不是 map[string]interface{}
// 此时便可对这一层级进行逐一 delete, 这也是上一次递归的一个小分支
if subInDict, isDict := v.(map[string]interface{}); isDict && !whitelistPrune(subWlDict, subInDict) {
deleteSibling = false
}
} else {
// 当 value 不是 map[string]interface{} 时, 一定是 true (即保留)
deleteSibling = false
}
}
// 不在白名单中, 直接删除
if deleteSibling {
delete(inDict, k)
} else {
canDelete = false
}
}
return canDelete
}
// newBlacklistingFilter 初始化黑名单
func newBlacklistingFilter(blacklist []string) propertyFilter {
bl := make(map[string][]string, len(blacklist))
for _, key := range blacklist {
// e.g. a.b.c a.b.c.d
// bl[a] = ["b", "b"]
keys := strings.Split(key, ".")
if len(keys) > 1 {
if sub, ok := bl[keys[0]]; ok {
bl[keys[0]] = append(sub, keys[1])
} else {
bl[keys[0]] = []string{keys[1]}
}
} else {
bl[keys[0]] = []string{}
}
}
return func(entity *Response) {
for k, sub := range bl {
if len(sub) == 0 {
delete(entity.Data, k)
} else {
if tmp := blacklistFilterSub(entity.Data[k], sub); len(tmp) > 0 {
entity.Data[k] = tmp
}
}
}
}
}
func blacklistFilterSub(v interface{}, blacklist []string) map[string]interface{} {
tmp, ok := v.(map[string]interface{})
if !ok {
return map[string]interface{}{}
}
for _, key := range blacklist {
delete(tmp, key)
}
return tmp
}
func (f flatmapFormatter) Format(response Response) Response {
if f.Target != "" {
extractTarget(f.Target, &response)
}
f.processOps(&response)
if f.Prefix != "" {
response.Data = map[string]interface{}{f.Prefix: response.Data}
}
return response
}
func extractTarget(target string, entity *Response) {
if v, ok := entity.Data[target]; ok {
if t, ok := v.(map[string]interface{}); ok {
entity.Data = t
} else {
entity.Data = map[string]interface{}{}
}
} else {
entity.Data = map[string]interface{}{}
}
}
func (f flatmapFormatter) processOps(entity *Response) {
tree, err := tree.New(entity.Data)
if err != nil {
return
}
for _, v := range f.Ops {
switch v.Type {
case "move":
tree.Move(v.Args[0], v.Args[1])
case "del":
tree.Del(v.Args[0])
default:
}
}
entity.Data, _ = tree.Get([]string{}).(map[string]interface{})
}