-
Notifications
You must be signed in to change notification settings - Fork 3
/
controller.go
517 lines (416 loc) · 12.1 KB
/
controller.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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
package main
import (
"encoding/json"
"fmt"
"log"
"net/http"
)
// HtmlObject object to render web page
type HtmlObject struct {
PublicURL string
Functions []*Flow
LocationDepths []*Location
CurrentLocation *Location
InnerHtml string
DashBoard *DashboardSpec
Flow *FlowDesc
Requests *FlowRequests
Traces *RequestTrace
}
// Message API request query
type Message struct {
FlowName string `json:"function"`
RequestID string `json:"request-id"`
TraceID string `json:"trace-id"`
Data string `json:"data"`
}
// dashboardPageHandler handle dashboard view
func dashboardPageHandler(w http.ResponseWriter, r *http.Request) {
log.Printf("Serving request for dashboard view")
functions, err := listGoFLows()
if err != nil {
log.Printf("failed to get functions, error: %v", err)
functions = make([]*Flow, 0)
}
totalRequests := 0
for _, function := range functions {
requests, err := listFlowRequests(function.Name)
if err != nil {
log.Printf("failed to get requests, error: %v", err)
continue
}
totalRequests = totalRequests + len(requests)
}
dashboardSpec := &DashboardSpec{
TotalFlows: len(functions),
ReadyFlows: len(functions),
TotalRequests: totalRequests,
ActiveRequests: 0,
}
htmlObj := HtmlObject{
PublicURL: publicUri,
Functions: functions,
InnerHtml: "dashboard",
DashBoard: dashboardSpec,
}
err = gen.ExecuteTemplate(w, "index", htmlObj)
if err != nil {
http.Error(w, fmt.Sprintf("failed to generate requested page, error: %v", err), http.StatusInternalServerError)
}
}
// flowInfoPageHandler handle flow info page view
func flowInfoPageHandler(w http.ResponseWriter, r *http.Request) {
log.Printf("Serving request for dashboard view")
flowName := r.URL.Query().Get("flow-name")
functions, err := listGoFLows()
if err != nil {
log.Printf("failed to get functions, error: %v", err)
functions = make([]*Flow, 0)
}
flowDesc, err := buildFlowDesc(functions, flowName)
if err != nil {
log.Printf("failed to get function desc, error: %v", err)
}
requests, err := listFlowRequests(flowName)
if err != nil {
log.Printf("failed to get requests, error: %v", err)
flowDesc.InvocationCount = 0
} else {
flowDesc.InvocationCount = len(requests)
}
htmlObj := HtmlObject{
PublicURL: publicUri,
Functions: functions,
CurrentLocation: &Location{
Name: "Flow : " + flowName + "",
Link: "/flow/info?flow-name=" + flowName,
},
InnerHtml: "flow-info",
Flow: flowDesc,
}
err = gen.ExecuteTemplate(w, "index", htmlObj)
if err != nil {
http.Error(w, fmt.Sprintf("failed to generate requested page, error: %v", err), http.StatusInternalServerError)
}
}
// flowRequestsPageHandler handle tracing view
func flowRequestsPageHandler(w http.ResponseWriter, r *http.Request) {
log.Printf("Serving request for request list view")
flowName := r.URL.Query().Get("flow-name")
functions, err := listGoFLows()
if err != nil {
log.Printf("failed to get functions, error: %v", err)
functions = make([]*Flow, 0)
}
tracingEnabled := false
requests, err := listFlowRequests(flowName)
if err != nil {
log.Printf("failed to get requests, error: %v", err)
requests = make(map[string]string)
}
requestsList := make(map[string]*RequestTrace)
for request, traceId := range requests {
requestsList[request], err = listRequestTraces(request, traceId)
if err != nil {
log.Printf("failed to get request traces for request %s, traceId %s, error: %v",
request, traceId, err)
requestsList[request] = &RequestTrace{
TraceId: traceId,
}
}
requestState, err := getRequestState(flowName, request)
if err != nil {
log.Printf("failed to get request state for %s, request %s, error: %v",
flowName, request, err)
requestState = "UNKNOWN"
}
requestsList[request].Status = requestState
tracingEnabled = true
}
flowRequests := &FlowRequests{
TracingEnabled: tracingEnabled,
Flow: flowName,
Requests: requestsList,
}
locationDepths := []*Location{
&Location{
Name: "Flow : " + flowName + "",
Link: "/flow/info?flow-name=" + flowName,
},
}
htmlObj := HtmlObject{
PublicURL: publicUri,
Functions: functions,
LocationDepths: locationDepths,
CurrentLocation: &Location{
Name: "Requests",
Link: "/flow/requests?flow-name=" + flowName,
},
Requests: flowRequests,
InnerHtml: "requests",
}
err = gen.ExecuteTemplate(w, "index", htmlObj)
if err != nil {
http.Error(w, fmt.Sprintf("failed to generate requested page, error: %v", err), http.StatusInternalServerError)
}
}
// flowRequestMonitorPageHandler handle tracing view
func flowRequestMonitorPageHandler(w http.ResponseWriter, r *http.Request) {
log.Printf("Serving request for request monitor view")
flowName := r.URL.Query().Get("flow-name")
currentRequestID := r.URL.Query().Get("request")
functions, err := listGoFLows()
if err != nil {
log.Printf("failed to get functions, error: %v", err)
functions = make([]*Flow, 0)
}
tracingEnabled := false
requests, err := listFlowRequests(flowName)
if err != nil {
log.Printf("failed to get requests, error: %v", err)
requests = make(map[string]string)
}
requestsList := make(map[string]*RequestTrace)
for request, traceId := range requests {
requestsList[request], err = listRequestTraces(request, traceId)
if err != nil {
log.Printf("failed to get request traces for request %s, traceId %s, error: %v",
request, traceId, err)
requestsList[request] = &RequestTrace{
TraceId: traceId,
}
}
requestState, err := getRequestState(flowName, request)
if err != nil {
log.Printf("failed to get request state for %s, request %s, error: %v",
flowName, request, err)
requestState = "UNKNOWN"
}
requestsList[request].Status = requestState
tracingEnabled = true
if currentRequestID == "" {
currentRequestID = request
}
}
flowRequests := &FlowRequests{
TracingEnabled: tracingEnabled,
Flow: flowName,
Requests: requestsList,
CurrentRequestID: currentRequestID,
}
locationDepths := []*Location{
&Location{
Name: "Flow : " + flowName + "",
Link: "/flow/info?flow-name=" + flowName,
},
&Location{
Name: "Requests",
Link: "/flow/requests?flow-name=" + flowName,
},
}
htmlObj := HtmlObject{
PublicURL: publicUri,
Functions: functions,
LocationDepths: locationDepths,
CurrentLocation: &Location{
Name: "requests-choice",
},
Requests: flowRequests,
Traces: requestsList[currentRequestID],
InnerHtml: "request-monitor",
}
err = gen.ExecuteTemplate(w, "index", htmlObj)
if err != nil {
http.Error(w, fmt.Sprintf("failed to generate requested page, error: %v", err), http.StatusInternalServerError)
}
}
// API
// listFlows handle api request to list flow function
func listFlowsHandler(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", jsonType)
functions, err := listGoFLows()
if err != nil {
http.Error(w, fmt.Sprintf("failed to handle list request, error: %v", err), http.StatusInternalServerError)
return
}
data, _ := json.MarshalIndent(functions, "", " ")
w.Write(data)
}
// flowDesc request handler for a flow function
func flowDescHandler(w http.ResponseWriter, r *http.Request) {
if r.Body == nil {
http.Error(w, "invalid request, no content", 500)
return
}
var msg Message
err := json.NewDecoder(r.Body).Decode(&msg)
if err != nil {
http.Error(w, err.Error(), 500)
return
}
flowName := msg.FlowName
functions, err := listGoFLows()
if err != nil {
log.Printf("failed to get functions, error: %v", err)
functions = make([]*Flow, 0)
}
flowDesc, err := buildFlowDesc(functions, flowName)
if err != nil {
http.Error(w, "failed to handle request, "+err.Error(), 500)
return
}
data, _ := json.MarshalIndent(flowDesc, "", " ")
w.Header().Set("Content-Type", jsonType)
w.Write(data)
}
// listFlowRequestsApiHandler list the requests for a flow function
func listFlowRequestsHandler(w http.ResponseWriter, r *http.Request) {
if r.Body == nil {
http.Error(w, "invalid request, no content", 500)
return
}
var msg Message
err := json.NewDecoder(r.Body).Decode(&msg)
if err != nil {
http.Error(w, err.Error(), 500)
return
}
flowFunction := msg.FlowName
w.Header().Set("Content-Type", jsonType)
requests, err := listFlowRequests(flowFunction)
if err != nil {
http.Error(w, fmt.Sprintf("failed to handle request, error: %v", err), http.StatusInternalServerError)
return
}
data, _ := json.MarshalIndent(requests, "", " ")
w.Write(data)
return
}
// requestTracesApiHandler request handler for traces of a request
func requestTracesHandler(w http.ResponseWriter, r *http.Request) {
if r.Body == nil {
http.Error(w, "invalid request, no content", 500)
return
}
var msg Message
err := json.NewDecoder(r.Body).Decode(&msg)
if err != nil {
http.Error(w, err.Error(), 500)
return
}
traceID := msg.TraceID
flowName := msg.FlowName
requestId := msg.RequestID
w.Header().Set("Content-Type", jsonType)
trace, err := listRequestTraces(requestId, traceID)
if err != nil {
http.Error(w, fmt.Sprintf("failed to handle request, error: %v", err), http.StatusInternalServerError)
return
}
state, err := getRequestState(flowName, requestId)
if err != nil {
log.Printf("failed to get request state for %s, request %s, error: %v",
flowName, requestId, err)
state = "UNKNOWN"
}
trace.Status = state
data, _ := json.MarshalIndent(trace, "", " ")
w.Write(data)
return
}
// executeRequestHandler request handler for traces of a request
func executeRequestHandler(w http.ResponseWriter, r *http.Request) {
if r.Body == nil {
http.Error(w, "invalid request, no content", 500)
return
}
var msg Message
err := json.NewDecoder(r.Body).Decode(&msg)
if err != nil {
http.Error(w, err.Error(), 500)
return
}
flowName := msg.FlowName
data := msg.Data
requestId, err := executeFlow(flowName, []byte(data))
if err != nil {
log.Printf("failed to execute %s, error: %v",
flowName, err)
http.Error(w, fmt.Sprintf("failed to execute %s, error: %v", flowName, err),
http.StatusInternalServerError)
}
w.Write([]byte(requestId))
return
}
// pauseRequestHandler request handler for traces of a request
func pauseRequestHandler(w http.ResponseWriter, r *http.Request) {
if r.Body == nil {
http.Error(w, "invalid request, no content", 500)
return
}
var msg Message
err := json.NewDecoder(r.Body).Decode(&msg)
if err != nil {
http.Error(w, err.Error(), 500)
return
}
flowName := msg.FlowName
requestID := msg.RequestID
err = pauseRequest(flowName, requestID)
if err != nil {
log.Printf("failed to pause request %s for %s, error: %v",
requestID, flowName, err)
http.Error(w, fmt.Sprintf("failed to pause request %s for %s, error: %v",
requestID, flowName, err), http.StatusInternalServerError)
}
w.Write([]byte(""))
return
}
// resumeRequestHandler request handler for traces of a request
func resumeRequestHandler(w http.ResponseWriter, r *http.Request) {
if r.Body == nil {
http.Error(w, "invalid request, no content", 500)
return
}
var msg Message
err := json.NewDecoder(r.Body).Decode(&msg)
if err != nil {
http.Error(w, err.Error(), 500)
return
}
flowName := msg.FlowName
requestID := msg.RequestID
err = resumeRequest(flowName, requestID)
if err != nil {
log.Printf("failed to resume request %s for %s, error: %v",
requestID, flowName, err)
http.Error(w, fmt.Sprintf("failed to resume request %s for %s, error: %v",
requestID, flowName, err), http.StatusInternalServerError)
}
w.Write([]byte(""))
return
}
// stopRequestHandler request handler for traces of a request
func stopRequestHandler(w http.ResponseWriter, r *http.Request) {
if r.Body == nil {
http.Error(w, "invalid request, no content", 500)
return
}
var msg Message
err := json.NewDecoder(r.Body).Decode(&msg)
if err != nil {
http.Error(w, err.Error(), 500)
return
}
flowName := msg.FlowName
requestID := msg.RequestID
err = stopRequest(flowName, requestID)
if err != nil {
log.Printf("failed to stop request %s for %s, error: %v",
requestID, flowName, err)
http.Error(w, fmt.Sprintf("failed to stop request %s for %s, error: %v",
requestID, flowName, err), http.StatusInternalServerError)
}
w.Write([]byte(""))
return
}