-
Notifications
You must be signed in to change notification settings - Fork 10
/
about.go
456 lines (400 loc) · 13.8 KB
/
about.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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
package healthchecks
import (
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"os"
"strings"
"sync"
"time"
)
const (
ABOUT_FIELD_NA string = "N/A"
ABOUT_PROTOCOL_HTTP string = "http"
VERSION_NA string = "N/A"
)
type ConfigAbout struct {
Id string `json:"id"`
Summary string `json:"summary"`
Description string `json:"description"`
Maintainers []string `json:"maintainers"`
ProjectRepo string `json:"projectRepo"`
ProjectHome string `json:"projectHome"`
LogsLinks []string `json:"logsLinks"`
StatsLinks []string `json:"statsLinks"`
CustomData map[string]interface{} `json:"customData"`
}
type AboutResponse struct {
Id string `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Protocol string `json:"protocol"`
Owners []string `json:"owners"`
Version string `json:"version"`
Host string `json:"host"`
ProjectRepo string `json:"projectRepo"`
ProjectHome string `json:"projectHome"`
LogsLinks []string `json:"logsLinks"`
StatsLinks []string `json:"statsLinks"`
Dependencies []Dependency `json:"dependencies"`
CustomData map[string]interface{} `json:"customData"`
}
type AboutResponseV2 struct {
Id string `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Protocol string `json:"protocol"`
Owners []string `json:"owners"`
Version string `json:"version"`
Host string `json:"host"`
ProjectRepo string `json:"projectRepo"`
ProjectHome string `json:"projectHome"`
LogsLinks []string `json:"logsLinks"`
StatsLinks []string `json:"statsLinks"`
Dependencies []DependencyInfo `json:"dependencies"`
CustomData map[string]interface{} `json:"customData"`
}
type Dependency struct {
Name string `json:"name"`
Status []JsonResponse `json:"status"`
StatusDuration float64 `json:"statusDuration"`
StatusPath string `json:"statusPath"`
Type string `json:"type"`
IsTraversable bool `json:"isTraversable"`
}
type DependencyInfo struct {
Name string `json:"name"`
Status JsonResponse `json:"status"`
StatusDuration float64 `json:"statusDuration"`
StatusPath string `json:"statusPath"`
Type string `json:"type"`
IsTraversable bool `json:"isTraversable"`
}
type dependencyPosition struct {
item Dependency
position int
}
type dependencyInfoPosition struct {
item DependencyInfo
position int
}
func getAboutFieldValue(aboutConfigMap map[string]interface{}, key string, aboutFilePath string) string {
value, ok := aboutConfigMap[key]
if !ok {
fmt.Printf("Field `%s` missing from %s.\n", key, aboutFilePath)
return ABOUT_FIELD_NA
}
stringValue, ok := value.(string)
if !ok {
fmt.Printf("Field `%s` is not a String in %s.\n", key, aboutFilePath)
return ABOUT_FIELD_NA
}
return stringValue
}
func getAboutFieldValues(aboutConfigMap map[string]interface{}, key string, aboutFilePath string) []string {
value, ok := aboutConfigMap[key]
if !ok {
fmt.Printf("Field `%s` missing from %s.\n", key, aboutFilePath)
return []string{}
}
interfaces, ok := value.([]interface{})
if !ok {
fmt.Printf("Field `%s` is not an array in %s.\n", key, aboutFilePath)
return []string{}
}
strings := make([]string, len(interfaces))
for i := range interfaces {
stringValue, ok := interfaces[i].(string)
if !ok {
strings[i] = ABOUT_FIELD_NA
fmt.Printf("Field[%d] `%s` is not a String in %s.\n", i, key, aboutFilePath)
} else {
strings[i] = stringValue
}
}
return strings
}
func getAboutCustomDataFieldValues(aboutConfigMap map[string]interface{}, aboutFilePath string) map[string]interface{} {
value, ok := aboutConfigMap["customData"]
if !ok {
return nil
}
mapValue, ok := value.(map[string]interface{})
if !ok {
fmt.Printf("Field `customData` is not a valid JSON object in %s.\n", aboutFilePath)
return nil
}
return mapValue
}
func About(
statusEndpoints []StatusEndpoint,
protocol string, aboutFilePath string,
versionFilePath string,
customData map[string]interface{},
apiVersion APIVersion,
checkStatus bool,
) (string, error) {
switch apiVersion {
case APIV1:
return aboutV1(statusEndpoints, protocol, aboutFilePath, versionFilePath, customData), nil
case APIV2:
return aboutV2(statusEndpoints, protocol, aboutFilePath, versionFilePath, customData, checkStatus), nil
default:
return "", errors.New("Invalid API Version")
}
}
func aboutV1(
statusEndpoints []StatusEndpoint,
protocol string, aboutFilePath string,
versionFilePath string,
customData map[string]interface{},
) string {
aboutData, _ := ioutil.ReadFile(aboutFilePath)
// Initialize ConfigAbout with default values in case we have problems reading from the file
aboutConfig := ConfigAbout{
Id: ABOUT_FIELD_NA,
Summary: ABOUT_FIELD_NA,
Description: ABOUT_FIELD_NA,
Maintainers: []string{},
ProjectRepo: ABOUT_FIELD_NA,
ProjectHome: ABOUT_FIELD_NA,
LogsLinks: []string{},
StatsLinks: []string{},
}
// Unmarshal JSON into a generic object so we don't completely fail if one of the fields is invalid or missing
var aboutConfigMap map[string]interface{}
err := json.Unmarshal(aboutData, &aboutConfigMap)
if err == nil {
// Parse out each value individually
aboutConfig.Id = getAboutFieldValue(aboutConfigMap, "id", aboutFilePath)
aboutConfig.Summary = getAboutFieldValue(aboutConfigMap, "summary", aboutFilePath)
aboutConfig.Description = getAboutFieldValue(aboutConfigMap, "description", aboutFilePath)
aboutConfig.Maintainers = getAboutFieldValues(aboutConfigMap, "maintainers", aboutFilePath)
aboutConfig.ProjectRepo = getAboutFieldValue(aboutConfigMap, "projectRepo", aboutFilePath)
aboutConfig.ProjectHome = getAboutFieldValue(aboutConfigMap, "projectHome", aboutFilePath)
aboutConfig.LogsLinks = getAboutFieldValues(aboutConfigMap, "logsLinks", aboutFilePath)
aboutConfig.StatsLinks = getAboutFieldValues(aboutConfigMap, "statsLinks", aboutFilePath)
aboutConfig.CustomData = getAboutCustomDataFieldValues(aboutConfigMap, aboutFilePath)
} else {
fmt.Printf("Error deserializing about data from %s. Error: %s JSON: %s\n", aboutFilePath, err.Error(), aboutData)
}
// Merge custom data from about.json with custom data passed in by client
// and prefer values passed by client over values in about.json
if customData != nil {
if aboutConfig.CustomData == nil {
aboutConfig.CustomData = make(map[string]interface{})
}
for key, value := range customData {
aboutConfig.CustomData[key] = value
}
}
// Extract version
var version string
versionData, err := ioutil.ReadFile(versionFilePath)
if err != nil {
fmt.Printf("Error reading version from %s. Error: %s\n", versionFilePath, err.Error())
version = VERSION_NA
} else {
version = strings.TrimSpace(string(versionData))
}
// Get hostname
host, err := os.Hostname()
if err != nil {
fmt.Printf("Error getting hostname. Error: %s\n", err.Error())
host = "unknown"
}
aboutResponse := AboutResponse{
Id: aboutConfig.Id,
Name: aboutConfig.Summary,
Description: aboutConfig.Description,
Protocol: protocol,
Owners: aboutConfig.Maintainers,
Version: version,
Host: host,
ProjectRepo: aboutConfig.ProjectRepo,
ProjectHome: aboutConfig.ProjectHome,
LogsLinks: aboutConfig.LogsLinks,
StatsLinks: aboutConfig.StatsLinks,
CustomData: aboutConfig.CustomData,
}
// Execute status checks async
var wg sync.WaitGroup
dc := make(chan dependencyPosition)
wg.Add(len(statusEndpoints))
for ie, se := range statusEndpoints {
go func(s StatusEndpoint, i int) {
start := time.Now()
dependencyStatus := translateStatusList(s.StatusCheck.CheckStatus(s.Name))
elapsed := float64(time.Since(start)) * 0.000000001
dependency := Dependency{
Name: s.Name,
Status: dependencyStatus,
StatusDuration: elapsed,
StatusPath: s.Slug,
Type: s.Type,
IsTraversable: s.IsTraversable,
}
dc <- dependencyPosition{
item: dependency,
position: i,
}
}(se, ie)
}
// Collect our responses and put them in the right spot
dependencies := make([]Dependency, len(statusEndpoints))
go func() {
for dp := range dc {
dependencies[dp.position] = dp.item
wg.Done()
}
}()
// Wait until all async status checks are done and collected
wg.Wait()
close(dc)
aboutResponse.Dependencies = dependencies
aboutResponseJSON, err := json.Marshal(aboutResponse)
if err != nil {
msg := fmt.Sprintf("Error serializing AboutResponse: %s", err)
sl := StatusList{
StatusList: []Status{
{Description: "Invalid AboutResponse", Result: CRITICAL, Details: msg},
},
}
return SerializeStatusList(sl, APIV1)
}
return string(aboutResponseJSON)
}
func aboutV2(
statusEndpoints []StatusEndpoint,
protocol string, aboutFilePath string,
versionFilePath string,
customData map[string]interface{},
checkStatus bool,
) string {
aboutData, _ := ioutil.ReadFile(aboutFilePath)
// Initialize ConfigAbout with default values in case we have problems reading from the file
aboutConfig := ConfigAbout{
Id: ABOUT_FIELD_NA,
Summary: ABOUT_FIELD_NA,
Description: ABOUT_FIELD_NA,
Maintainers: []string{},
ProjectRepo: ABOUT_FIELD_NA,
ProjectHome: ABOUT_FIELD_NA,
LogsLinks: []string{},
StatsLinks: []string{},
}
// Unmarshal JSON into a generic object so we don't completely fail if one of the fields is invalid or missing
var aboutConfigMap map[string]interface{}
err := json.Unmarshal(aboutData, &aboutConfigMap)
if err == nil {
// Parse out each value individually
aboutConfig.Id = getAboutFieldValue(aboutConfigMap, "id", aboutFilePath)
aboutConfig.Summary = getAboutFieldValue(aboutConfigMap, "summary", aboutFilePath)
aboutConfig.Description = getAboutFieldValue(aboutConfigMap, "description", aboutFilePath)
aboutConfig.Maintainers = getAboutFieldValues(aboutConfigMap, "maintainers", aboutFilePath)
aboutConfig.ProjectRepo = getAboutFieldValue(aboutConfigMap, "projectRepo", aboutFilePath)
aboutConfig.ProjectHome = getAboutFieldValue(aboutConfigMap, "projectHome", aboutFilePath)
aboutConfig.LogsLinks = getAboutFieldValues(aboutConfigMap, "logsLinks", aboutFilePath)
aboutConfig.StatsLinks = getAboutFieldValues(aboutConfigMap, "statsLinks", aboutFilePath)
aboutConfig.CustomData = getAboutCustomDataFieldValues(aboutConfigMap, aboutFilePath)
} else {
fmt.Printf("Error deserializing about data from %s. Error: %s JSON: %s\n", aboutFilePath, err.Error(), aboutData)
}
// Merge custom data from about.json with custom data passed in by client
// and prefer values passed by client over values in about.json
if customData != nil {
if aboutConfig.CustomData == nil {
aboutConfig.CustomData = make(map[string]interface{})
}
for key, value := range customData {
aboutConfig.CustomData[key] = value
}
}
// Extract version
var version string
versionData, err := ioutil.ReadFile(versionFilePath)
if err != nil {
fmt.Printf("Error reading version from %s. Error: %s\n", versionFilePath, err.Error())
version = VERSION_NA
} else {
version = strings.TrimSpace(string(versionData))
}
// Get hostname
host, err := os.Hostname()
if err != nil {
fmt.Printf("Error getting hostname. Error: %s\n", err.Error())
host = "unknown"
}
aboutResponse := AboutResponseV2{
Id: aboutConfig.Id,
Name: aboutConfig.Summary,
Description: aboutConfig.Description,
Protocol: protocol,
Owners: aboutConfig.Maintainers,
Version: version,
Host: host,
ProjectRepo: aboutConfig.ProjectRepo,
ProjectHome: aboutConfig.ProjectHome,
LogsLinks: aboutConfig.LogsLinks,
StatsLinks: aboutConfig.StatsLinks,
CustomData: aboutConfig.CustomData,
}
dependencies := make([]DependencyInfo, len(statusEndpoints))
if checkStatus {
// Execute status checks async
var wg sync.WaitGroup
dc := make(chan dependencyInfoPosition)
wg.Add(len(statusEndpoints))
for ie, se := range statusEndpoints {
go func(s StatusEndpoint, i int) {
start := time.Now()
dependencyStatus := translateStatusListV2(s.StatusCheck.CheckStatus(s.Name))
elapsed := float64(time.Since(start)) * 0.000000001
dependency := DependencyInfo{
Name: s.Name,
Status: dependencyStatus,
StatusDuration: elapsed,
StatusPath: s.Slug,
Type: s.Type,
IsTraversable: s.IsTraversable,
}
dc <- dependencyInfoPosition{
item: dependency,
position: i,
}
}(se, ie)
}
// Collect our responses and put them in the right spot
go func() {
for dp := range dc {
dependencies[dp.position] = dp.item
wg.Done()
}
}()
// Wait until all async status checks are done and collected
wg.Wait()
close(dc)
} else {
for index, statusEndpoint := range statusEndpoints {
dependencies[index] = DependencyInfo{
Name: statusEndpoint.Name,
StatusPath: statusEndpoint.Slug,
Type: statusEndpoint.Type,
IsTraversable: statusEndpoint.IsTraversable,
}
}
}
aboutResponse.Dependencies = dependencies
aboutResponseJSON, err := json.Marshal(aboutResponse)
if err != nil {
msg := fmt.Sprintf("Error serializing AboutResponse: %s", err)
sl := StatusList{
StatusList: []Status{
{Description: "Invalid AboutResponse", Result: CRITICAL, Details: msg},
},
}
return SerializeStatusList(sl, APIV2)
}
return string(aboutResponseJSON)
}