-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathserver.go
251 lines (217 loc) · 7.55 KB
/
server.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
package main
import (
"bytes"
"fmt"
"io/ioutil"
"log"
"net/http"
"os/exec"
"regexp"
"strings"
)
// PostStruct wraps a buffer string
type PostStruct struct {
Buffer string
}
func serve(port int, context string) {
http.Handle("/", handler(context))
http.Handle("/api/", apiHandler(context))
http.Handle("/api/v1/", apiHandler(context))
http.Handle("/health/", healthHandler(context))
http.Handle("/api/v1/metrics/", metricsHandler(context))
log.Fatal(http.ListenAndServe(fmt.Sprintf(":%d", port), nil))
}
func handler(context string) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
var buffer, dot, output string
getJSONData(&buffer)
output = "dot"
dot, percentageIsolated, percentageIsolatedNamespace, percentageCovered, err := processBytes([]byte(buffer), &output)
if err != nil {
sData := fmt.Sprintf("<p>Can't process input data: %s</p>", err)
fmt.Fprintf(w, page(context, sData))
return
}
cmd := exec.Command("dot", "-Tsvg")
cmd.Stdin = strings.NewReader(dot)
var svg bytes.Buffer
cmd.Stdout = &svg
err = cmd.Run()
if err != nil {
sDot := fmt.Sprintf("<p>Graphviz conversion failed: %s</p>", err)
fmt.Fprintf(w, page(context, sDot))
return
}
colorClassIsolation := "bg-success"
if percentageIsolated < 50 {
colorClassIsolation = "bg-danger"
} else if percentageIsolated < 75 {
colorClassIsolation = "bg-warning"
}
colorClassNamespaceIsolation := "bg-success"
if percentageIsolatedNamespace < 50 {
colorClassNamespaceIsolation = "bg-danger"
} else if percentageIsolatedNamespace < 75 {
colorClassNamespaceIsolation = "bg-warning"
}
colorClassCoverage := "bg-success"
if percentageCovered < 50 {
colorClassCoverage = "bg-danger"
} else if percentageCovered < 75 {
colorClassCoverage = "bg-warning"
}
svgString := string(svg.Bytes())
patternW := regexp.MustCompile(`width=[^ ]+`)
svgString = patternW.ReplaceAllLiteralString(svgString, "")
patternH := regexp.MustCompile(`height=[^ ]+`)
svgString = patternH.ReplaceAllLiteralString(svgString, "")
svgString = strings.Replace(svgString, "Times,serif", "sans-serif", -1)
buffer = fmt.Sprintf(`
<div>%s</div>
<br/>
<div class="progress">
<div class="progress-bar %s" style="width: %d%%%%" role="progressbar" aria-valuenow="%d" aria-valuemin="0" aria-valuemax="100">%d%%%% isolation</div>
</div>
<br/>
<div class="progress">
<div class="progress-bar %s" style="width: %d%%%%" role="progressbar" aria-valuenow="%d" aria-valuemin="0" aria-valuemax="100">%d%%%% namespace isolation</div>
</div>
<br/>
<div class="progress">
<div class="progress-bar %s" style="width: %d%%%%" role="progressbar" aria-valuenow="%d" aria-valuemin="0" aria-valuemax="100">%d%%%% namespace coverage</div>
</div>`,
svgString,
colorClassIsolation,
percentageIsolated,
percentageIsolated,
percentageIsolated,
colorClassNamespaceIsolation,
percentageIsolatedNamespace,
percentageIsolatedNamespace,
percentageIsolatedNamespace,
colorClassCoverage,
percentageCovered,
percentageCovered,
percentageCovered)
fmt.Fprintf(w, page(context, buffer))
})
}
func apiHandler(context string) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
buffer := fmt.Sprintf(`
<div class="row">
<div class="col-sm-2"><a href="/">/</a></div>
<div class="col-sm-10">show graph</div>
</div>
<div class="row">
<div class="col-sm-2"><a href="/health/">/health/</a></div>
<div class="col-sm-10">health endpoint</div>
</div>
<div class="row">
<div class="col-sm-2"><a href="/api/v1/metrics/">/api/v1/metrics/</a></div>
<div class="col-sm-10">metrics endpoint</div>
</div>`)
fmt.Fprintf(w, page(context, buffer))
return
})
}
func healthHandler(context string) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "{\"status\":\"ok\"}")
})
}
func metricsHandler(context string) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
var buffer, output string
getJSONData(&buffer)
output = "dot"
_, percentageIsolated, percentageIsolatedNamespaceToNamespace, percentageNamespaceCoverage, err := processBytes([]byte(buffer), &output)
if err != nil {
sData := fmt.Sprintf("<p>Can't process input data: %s</p>", err)
fmt.Fprintf(w, page(context, sData))
return
}
fmt.Fprintf(w, "{\"percentageIsolated\":%d,\"percentageIsolatedNamespaceToNamespace\":%d,\"percentageNamespaceCoverage\":%d}", percentageIsolated, percentageIsolatedNamespaceToNamespace, percentageNamespaceCoverage)
})
}
func handleGet(context string) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
var buffer, dot, output string
getJSONData(&buffer)
output = "dot"
dot, percentageIsolated, percentageIsolatedNamespaceToNamespace, percentageCovered, err := processBytes([]byte(buffer), &output)
if err != nil {
sData := fmt.Sprintf("<p>Can't process input data: %s</p>", err)
fmt.Fprintf(w, page(context, sData))
return
}
cmd := exec.Command("dot", "-Tsvg")
cmd.Stdin = strings.NewReader(dot)
var svg bytes.Buffer
cmd.Stdout = &svg
err = cmd.Run()
if err != nil {
sDot := fmt.Sprintf("<p>Graphviz conversion failed: %s</p>", err)
fmt.Fprintf(w, page(context, sDot))
return
}
colorClassIsolation := "progress-bar-success"
if percentageIsolated < 50 {
colorClassIsolation = "progress-bar-danger"
} else if percentageIsolated < 75 {
colorClassIsolation = "progress-bar-warning"
}
colorClassNamespaceIsolation := "progress-bar-success"
if percentageIsolatedNamespaceToNamespace < 50 {
colorClassNamespaceIsolation = "progress-bar-danger"
} else if percentageIsolatedNamespaceToNamespace < 75 {
colorClassNamespaceIsolation = "progress-bar-warning"
}
colorClassCoverage := "progress-bar-success"
if percentageCovered < 50 {
colorClassCoverage = "progress-bar-danger"
} else if percentageCovered < 75 {
colorClassCoverage = "progress-bar-warning"
}
svgString := string(svg.Bytes())
patternW := regexp.MustCompile(`width=[^ ]+`)
svgString = patternW.ReplaceAllLiteralString(svgString, "")
patternH := regexp.MustCompile(`height=[^ ]+`)
svgString = patternH.ReplaceAllLiteralString(svgString, "")
svgString = strings.Replace(svgString, "Times,serif", "sans-serif", -1)
buffer = fmt.Sprintf(`
<div>%s</div>
<div class="progress">
<div class="progress-bar %s" style="width: %d%%%%" role="progressbar" aria-valuenow="%d" aria-valuemin="0" aria-valuemax="100">%d%%%% isolation</div>
</div>
<div class="progress">
<div class="progress-bar %s" style="width: %d%%%%" role="progressbar" aria-valuenow="%d" aria-valuemin="0" aria-valuemax="100">%d%%%% namespace isolation</div>
</div>
<div class="progress">
<div class="progress-bar %s" style="width: %d%%%%" role="progressbar" aria-valuenow="%d" aria-valuemin="0" aria-valuemax="100">%d%%%% namespace coverage</div>
</div>`,
svgString,
colorClassIsolation,
percentageIsolated,
percentageIsolated,
percentageIsolated,
colorClassNamespaceIsolation,
percentageIsolatedNamespaceToNamespace,
percentageIsolatedNamespaceToNamespace,
percentageIsolatedNamespaceToNamespace,
colorClassCoverage,
percentageCovered,
percentageCovered,
percentageCovered)
fmt.Fprintf(w, page(context, buffer))
})
}
func handlePost(context string) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
body, err := ioutil.ReadAll(r.Body)
if err != nil {
fmt.Fprintf(w, "Can't read POST request body '%s': %s", body, err)
return
}
})
}