forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 1
/
status.go
134 lines (118 loc) · 3.28 KB
/
status.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
// Copyright 2013, Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package worker
import (
"fmt"
"html/template"
"net/http"
"strings"
"github.com/youtube/vitess/go/acl"
"github.com/youtube/vitess/go/vt/servenv"
)
const workerStatusPartHTML = servenv.JQueryIncludes + `
<script type="text/javascript">
$(function() {
getStatus();
});
function getStatus() {
$('div#status').load('/status');
setTimeout("getStatus()",10000);
}
</script>
<div id="status"></div>
`
const workerStatusHTML = `
<html>
<head>
<title>Worker Status</title>
</head>
<body>
{{if .Status}}
<h2>Worker status:</h2>
<blockquote>
{{.Status}}
</blockquote>
<h2>Worker logs:</h2>
<blockquote>
{{.Logs}}
</blockquote>
{{if .Done}}
<p><a href="/reset">Reset Job</a></p>
{{else}}
<p><a href="/cancel">Cancel Job</a></p>
{{end}}
{{else}}
<p>This worker is idle.</p>
<p><a href="/">Toplevel Menu</a></p>
{{end}}
</body>
</html>
`
// InitStatusHandling installs webserver handlers for global actions like /status, /reset and /cancel.
func (wi *Instance) InitStatusHandling() {
// code to serve /status
workerTemplate := mustParseTemplate("worker", workerStatusHTML)
http.HandleFunc("/status", func(w http.ResponseWriter, r *http.Request) {
if err := acl.CheckAccessHTTP(r, acl.ADMIN); err != nil {
acl.SendError(w, err)
return
}
wi.currentWorkerMutex.Lock()
wrk := wi.currentWorker
logger := wi.currentMemoryLogger
ctx := wi.currentContext
err := wi.lastRunError
stopTime := wi.lastRunStopTime
wi.currentWorkerMutex.Unlock()
data := make(map[string]interface{})
if wrk != nil {
status := template.HTML("Current worker:<br>\n") + wrk.StatusAsHTML()
if ctx == nil {
data["Done"] = true
if err != nil {
status += template.HTML(fmt.Sprintf("<br>\nEnded with an error: %v<br>\n", err))
}
status += template.HTML(fmt.Sprintf("<br>\n<b>End Time:</b> %v<br>\n", stopTime))
}
data["Status"] = status
if logger != nil {
data["Logs"] = template.HTML(strings.Replace(logger.String(), "\n", "</br>\n", -1))
} else {
data["Logs"] = template.HTML("See console for logs</br>\n")
}
}
executeTemplate(w, workerTemplate, data)
})
// add the section in status that does auto-refresh of status div
servenv.AddStatusPart("Worker Status", workerStatusPartHTML, func() interface{} {
return nil
})
// reset handler
http.HandleFunc("/reset", func(w http.ResponseWriter, r *http.Request) {
if err := acl.CheckAccessHTTP(r, acl.ADMIN); err != nil {
acl.SendError(w, err)
return
}
if err := wi.Reset(); err != nil {
httpError(w, err.Error(), nil)
} else {
// No worker currently running, we go to the menu.
http.Redirect(w, r, "/", http.StatusTemporaryRedirect)
}
})
// cancel handler
http.HandleFunc("/cancel", func(w http.ResponseWriter, r *http.Request) {
if err := acl.CheckAccessHTTP(r, acl.ADMIN); err != nil {
acl.SendError(w, err)
return
}
if wi.Cancel() {
// We canceled the running worker. Go back to the status page.
http.Redirect(w, r, servenv.StatusURLPath(), http.StatusTemporaryRedirect)
} else {
// No worker, or not running, we go to the menu.
http.Redirect(w, r, "/", http.StatusTemporaryRedirect)
}
})
}