-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.go
214 lines (180 loc) · 6.31 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
package tyrgin
import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
"strings"
"sync"
"time"
)
// getABoutFieldValue gets the about field value if it exists and it is a stirng.
func getAboutFieldValue(aboutConfigMap map[string]interface{}, key, aboutFilePath string) string {
value, ok := aboutConfigMap[key]
if !ok {
NormalLog(fmt.Sprintf("Field `%s` missing from %s.", key, aboutFilePath))
return AboutFieldNa
}
stringValue, ok := value.(string)
if !ok {
NormalLog(fmt.Sprintf("Field `%s` is not a string in %s.", key, aboutFilePath))
return AboutFieldNa
}
return stringValue
}
// getAboutFieldValues gets the field value if it exists and it is a slice.
func getAboutFieldValues(aboutConfigMap map[string]interface{}, key, aboutFilePath string) []string {
value, ok := aboutConfigMap[key]
if !ok {
NormalLog(fmt.Sprintf("Field `%s` missing from %s.", key, aboutFilePath))
return []string{}
}
interfaces, ok := value.([]interface{})
if !ok {
NormalLog(fmt.Sprintf("Field `%s` is not an slice in %s.", key, aboutFilePath))
return []string{}
}
strings := make([]string, len(interfaces))
for i := range interfaces {
stringValue, ok := interfaces[i].(string)
if !ok {
strings[i] = AboutFieldNa
NormalLog(fmt.Sprintf("Field[%d] `%s` is not a String in %s.", i, key, aboutFilePath))
} else {
strings[i] = stringValue
}
}
return strings
}
// getAboutCustomDataFieldValues gets the field from the customData if it exists and is a valid
// JSON object.
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 {
NormalLog(fmt.Sprintf("Field `customData` is not a valid JSON object in %s.", aboutFilePath))
return nil
}
return mapValue
}
// About is the function to configure the About and returns the response about the endpoint.
func About(statusEndpoints []StatusEndpoint, protocol, aboutFilePath, versionFilePath string, customData map[string]interface{}) string {
aboutData, err := ioutil.ReadFile(aboutFilePath)
ErrorLogger(err, fmt.Sprintf("Something went wrong reading file `%s`.", aboutFilePath))
// Initialize ConfigAbout with default values in case we have problems reading from the file
aboutConfig := ConfigAbout{
ID: AboutFieldNa,
Summary: AboutFieldNa,
Description: AboutFieldNa,
Maintainers: []string{},
ProjectRepo: AboutFieldNa,
ProjectHome: AboutFieldNa,
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 {
ErrorLogger(err, fmt.Sprintf("Error deserializing about data from %s. Error: %s JSON: %s", 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 {
ErrorLogger(err, fmt.Sprintf("Error reading version from %s. Error: %s", versionFilePath, err.Error()))
version = VersionNa
} else {
version = strings.TrimSpace(string(versionData))
}
// Get hostname
host, err := os.Hostname()
if err != nil {
ErrorLogger(err, fmt.Sprintf("Error getting hostname. Error: %s", 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))
var 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)
}
return string(aboutResponseJSON)
}