-
Notifications
You must be signed in to change notification settings - Fork 73
/
recipe.go
437 lines (351 loc) · 10.3 KB
/
recipe.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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
package types
import (
"fmt"
"strconv"
"strings"
"gopkg.in/yaml.v2"
)
const (
InfraAgentRecipeName = "infrastructure-agent-installer"
LoggingRecipeName = "logs-integration"
GoldenRecipeName = "alerts-golden-signal"
)
var (
RecipeVariables = map[string]string{}
)
// RecipeVars is used to pass dynamic data to recipes and go-task.
type RecipeVars map[string]string
// The API response returns OpenInstallationRecipe.Install as a string.
// When specifying a recipe path, OpenInstallationRecipe.Install is a map[interface{}]interface{}.
// For this reason we need a custom unmarshal method for YAML.
func (r *OpenInstallationRecipe) UnmarshalYAML(unmarshal func(interface{}) error) error {
var recipe map[string]interface{}
err := unmarshal(&recipe)
if err != nil {
return err
}
if v, ok := recipe["dependencies"]; ok {
r.Dependencies = interfaceSliceToStringSlice(v.([]interface{}))
}
r.Description = toStringByFieldName("description", recipe)
r.DisplayName = toStringByFieldName("displayName", recipe)
r.File = toStringByFieldName("file", recipe)
r.ID = toStringByFieldName("id", recipe)
r.InputVars = expandInputVars(recipe)
installAsString, err := expandInstalllMapToString(recipe)
if err != nil {
return err
}
r.Install = installAsString
r.InstallTargets = expandInstallTargets(recipe)
if v, ok := recipe["keywords"]; ok {
r.Keywords = interfaceSliceToStringSlice(v.([]interface{}))
}
r.LogMatch = expandLogMatch(recipe)
r.Name = toStringByFieldName("name", recipe)
r.PostInstall = expandPostInstall(recipe)
r.PreInstall = expandPreInstall(recipe)
if v, ok := recipe["processMatch"]; ok {
r.ProcessMatch = interfaceSliceToStringSlice(v.([]interface{}))
}
r.Repository = toStringByFieldName("repository", recipe)
if v, ok := recipe["stability"]; ok {
r.Stability = OpenInstallationStability(v.(string))
}
r.SuccessLinkConfig = expandSuccessLinkConfig(recipe)
// DEPRECATED: Use `validationUrl` parameter instead
if v, ok := recipe["validationNrql"]; ok {
r.ValidationNRQL = NRQL(v.(string))
}
if v, ok := recipe["validationUrl"]; ok {
r.ValidationURL = v.(string)
}
return err
}
func (r *OpenInstallationRecipe) ToShortDisplayString() string {
output := r.Name
targets := ""
for _, target := range r.InstallTargets {
s := getInstallTargetAsString(target)
if targets != "" {
targets = fmt.Sprintf("%s-%s", targets, s)
} else {
targets = s
}
}
if targets != "" {
output = fmt.Sprintf("%s (%s)", output, targets)
}
return output
}
func getInstallTargetAsString(target OpenInstallationRecipeInstallTarget) string {
output := string(target.Os)
if target.Platform != "" {
output = fmt.Sprintf("%s/%s", output, target.Platform)
}
if target.PlatformVersion != "" {
output = fmt.Sprintf("%s/%s", output, target.PlatformVersion)
}
if target.KernelArch != "" {
output = fmt.Sprintf("%s/%s", output, target.KernelArch)
}
return strings.ToLower(output)
}
func expandSuccessLinkConfig(recipe map[string]interface{}) OpenInstallationSuccessLinkConfig {
v, ok := recipe["successLinkConfig"]
if !ok {
return OpenInstallationSuccessLinkConfig{}
}
dataIn := v.(map[interface{}]interface{})
reData := map[string]interface{}{}
for k, v := range dataIn {
reData[k.(string)] = v
}
dataOut := OpenInstallationSuccessLinkConfig{
Filter: toStringByFieldName("filter", reData),
}
if v, ok := reData["type"]; ok {
dataOut.Type = OpenInstallationSuccessLinkType(v.(string))
}
return dataOut
}
func expandInstallTargets(recipe map[string]interface{}) []OpenInstallationRecipeInstallTarget {
v, ok := recipe["installTargets"]
if !ok {
return []OpenInstallationRecipeInstallTarget{}
}
dataIn := v.([]interface{})
dataOut := make([]OpenInstallationRecipeInstallTarget, len(dataIn))
dataz := make([]map[string]interface{}, len(dataIn))
for i, vv := range dataIn {
vvv := vv.(map[interface{}]interface{})
varr := map[string]interface{}{}
for k, v := range vvv {
varr[k.(string)] = v
dataz[i] = varr
}
}
for i, v := range dataz {
vOut := OpenInstallationRecipeInstallTarget{
KernelArch: toStringByFieldName("kernelArch", v),
KernelVersion: toStringByFieldName("kernelVersion", v),
PlatformVersion: toStringByFieldName("platformVersion", v),
}
if v, ok := v["os"]; ok {
vOut.Os = OpenInstallationOperatingSystem(v.(string))
}
if v, ok := v["platform"]; ok {
vOut.Platform = OpenInstallationPlatform(v.(string))
}
if v, ok := v["platformFamily"]; ok {
vOut.PlatformFamily = OpenInstallationPlatformFamily(v.(string))
}
if v, ok := v["type"]; ok {
vOut.Type = OpenInstallationTargetType(v.(string))
}
dataOut[i] = vOut
}
return dataOut
}
func expandPreInstall(recipe map[string]interface{}) OpenInstallationPreInstallConfiguration {
v, ok := recipe["preInstall"]
if !ok {
return OpenInstallationPreInstallConfiguration{}
}
vv := v.(map[interface{}]interface{})
infoOut := map[string]interface{}{}
for k, v := range vv {
infoOut[k.(string)] = v
}
return OpenInstallationPreInstallConfiguration{
Info: toStringByFieldName("info", infoOut),
Prompt: toStringByFieldName("prompt", infoOut),
RequireAtDiscovery: toStringByFieldName("requireAtDiscovery", infoOut),
}
}
func expandPostInstall(recipe map[string]interface{}) OpenInstallationPostInstallConfiguration {
v, ok := recipe["postInstall"]
if !ok {
return OpenInstallationPostInstallConfiguration{}
}
vv := v.(map[interface{}]interface{})
infoOut := map[string]interface{}{}
for k, v := range vv {
infoOut[k.(string)] = v
}
return OpenInstallationPostInstallConfiguration{
Info: toStringByFieldName("info", infoOut),
}
}
func expandInputVars(recipe map[string]interface{}) []OpenInstallationRecipeInputVariable {
v, ok := recipe["inputVars"]
if !ok {
return []OpenInstallationRecipeInputVariable{}
}
vars := v.([]interface{})
varsOut := make([]OpenInstallationRecipeInputVariable, len(vars))
varz := make([]map[string]interface{}, len(vars))
for i, vv := range vars {
vvv := vv.(map[interface{}]interface{})
varr := map[string]interface{}{}
for k, v := range vvv {
varr[k.(string)] = v
varz[i] = varr
}
}
for i, v := range varz {
vOut := OpenInstallationRecipeInputVariable{
Default: toStringByFieldName("default", v),
Name: toStringByFieldName("name", v),
Prompt: toStringByFieldName("prompt", v),
Secret: toBoolByFieldName("secret", v),
}
varsOut[i] = vOut
}
return varsOut
}
func expandLogMatch(recipe map[string]interface{}) []OpenInstallationLogMatch {
v, ok := recipe["logMatch"]
if !ok {
return []OpenInstallationLogMatch{}
}
dataIn := v.([]interface{})
dataOut := make([]OpenInstallationLogMatch, len(dataIn))
dataz := make([]map[string]interface{}, len(dataIn))
for i, vv := range dataIn {
vvv := vv.(map[interface{}]interface{})
varr := map[string]interface{}{}
for k, v := range vvv {
varr[k.(string)] = v
dataz[i] = varr
}
}
for i, v := range dataz {
vOut := OpenInstallationLogMatch{
Attributes: expandLogAttributes(v),
File: toStringByFieldName("file", v),
Name: toStringByFieldName("name", v),
Pattern: toStringByFieldName("pattern", v),
Systemd: toStringByFieldName("systemd", v),
}
dataOut[i] = vOut
}
return dataOut
}
func expandLogAttributes(data map[string]interface{}) OpenInstallationAttributes {
attributesOut := OpenInstallationAttributes{}
v, ok := data["attributes"]
if !ok {
return attributesOut
}
attrs := v.(map[interface{}]interface{})
attrsOut := map[string]string{}
for k, v := range attrs {
attrsOut[k.(string)] = v.(string)
}
if v, ok := attrsOut["logtype"]; ok {
attributesOut.Logtype = v
}
return attributesOut
}
func toBoolByFieldName(fieldName string, data map[string]interface{}) bool {
if v, ok := data[fieldName]; ok {
return v.(bool)
}
return false
}
func toStringByFieldName(fieldName string, data map[string]interface{}) string {
out := ""
if in, ok := data[fieldName]; ok {
switch v := in.(type) {
case int:
return strconv.Itoa(v)
case string:
return v
case bool:
return strconv.FormatBool(v)
}
return out
}
return out
}
func expandInstalllMapToString(recipeIn map[string]interface{}) (string, error) {
installIn, ok := recipeIn["install"]
if !ok {
return "", nil
}
installOut := map[string]interface{}{}
installMap := installIn.(map[interface{}]interface{})
for k, v := range installMap {
installOut[k.(string)] = v
}
installAsString, err := yaml.Marshal(installOut)
if err != nil {
return "", fmt.Errorf("error unmarshaling recipe.install to string: %s", err)
}
return string(installAsString), nil
}
func interfaceSliceToStringSlice(slice []interface{}) []string {
out := make([]string, len(slice))
for i, v := range slice {
out[i] = v.(string)
}
return out
}
func (r *OpenInstallationRecipe) PostInstallMessage() string {
if r.PostInstall.Info != "" {
return r.PostInstall.Info
}
return ""
}
func (r *OpenInstallationRecipe) PreInstallMessage() string {
if r.PreInstall.Info != "" {
return r.PreInstall.Info
}
return ""
}
// SetRecipeVar is responsible for including a new variable on the RecipeVariables
// struct, which is used by go-task executor.
func (r *OpenInstallationRecipe) SetRecipeVar(key string, value string) {
RecipeVariables[key] = value
}
func (r *OpenInstallationRecipe) IsApm() bool {
return r.HasKeyword("apm")
}
func (r *OpenInstallationRecipe) HasHostTargetType() bool {
return r.HasTargetType(OpenInstallationTargetTypeTypes.HOST)
}
func (r *OpenInstallationRecipe) HasApplicationTargetType() bool {
return r.HasTargetType(OpenInstallationTargetTypeTypes.APPLICATION)
}
func (r *OpenInstallationRecipe) HasKeyword(keyword string) bool {
if len(r.Keywords) == 0 {
return false
}
for _, single := range r.Keywords {
if strings.EqualFold(single, keyword) {
return true
}
}
return false
}
func (r *OpenInstallationRecipe) HasTargetType(t OpenInstallationTargetType) bool {
if len(r.InstallTargets) == 0 {
return false
}
for _, target := range r.InstallTargets {
if target.Type == t {
return true
}
}
return false
}
func (r *OpenInstallationRecipe) GetOrderKey() string {
if r.Name == InfraAgentRecipeName {
return fmt.Sprintf("%d-%s", 10, InfraAgentRecipeName)
}
if r.Name == LoggingRecipeName {
return fmt.Sprintf("%d-%s", 20, LoggingRecipeName)
}
return fmt.Sprintf("%d-%s", 50, r.Name)
}