-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
currentTubeJobsSummaryTable.go
103 lines (98 loc) · 3.24 KB
/
currentTubeJobsSummaryTable.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
// Copyright 2016 - 2021 The aurora Authors. All rights reserved. Use of this
// source code is governed by a MIT license that can be found in the LICENSE
// file.
//
// The aurora is a web-based beanstalkd queue server console written in Go
// and works on macOS, Linux and Windows machines. Main idea behind using Go
// for backend development is to utilize ability of the compiler to produce
// zero-dependency binaries for multiple platforms. aurora was created as an
// attempt to build very simple and portable application to work with local or
// remote beanstalkd server.
package main
import (
"net/url"
"strings"
"github.com/xuri/aurora/beanstalk"
)
// currentTubeJobsSummaryTable constructs a tube job table based on the given
// server and tube conf.
func currentTubeJobsSummaryTable(server string, tube string) string {
var err error
var th, tr, td, template strings.Builder
var bstkConn *beanstalk.Conn
if bstkConn, err = beanstalk.Dial("tcp", server); err != nil {
for _, v := range selfConf.TubeFilters {
th.WriteString(`<th>`)
th.WriteString(v)
th.WriteString(`</th>`)
}
if currentTubeStatisticCheck(server, tube) {
th.WriteString(`<th> </th>`)
}
buf := strings.Builder{}
buf.WriteString(`<section id="summaryTable"><div class="row"><div class="col-sm-12"><table class="table table-striped table-hover"><thead><tr><th>name</th>`)
buf.WriteString(th.String())
buf.WriteString(`</tr></thead><tbody></tbody></table></div></div></section>`)
return buf.String()
}
tubes, _ := bstkConn.ListTubes()
for _, v := range selfConf.TubeFilters {
th.WriteString(`<th>`)
th.WriteString(v)
th.WriteString(`</th>`)
}
if currentTubeStatisticCheck(server, tube) {
th.WriteString(`<th> </th>`)
}
for _, v := range tubes {
if v != tube {
continue
}
tubeStats := &beanstalk.Tube{Conn: bstkConn, Name: v}
statsMap, err := tubeStats.Stats()
if err != nil {
continue
}
for _, stats := range selfConf.TubeFilters {
td.WriteString(`<td>`)
td.WriteString(statsMap[stats])
td.WriteString(`</td>`)
}
tr.WriteString(`<tr><td>`)
tr.WriteString(v)
tr.WriteString(`</td>`)
if currentTubeStatisticCheck(server, tube) {
td.WriteString(`<td><a class="btn btn-xs btn-default" title="Statistics overview" href="./statistics?server=`)
td.WriteString(server)
td.WriteString(`&tube=`)
td.WriteString(url.QueryEscape(v))
td.WriteString(`"><span class="glyphicon glyphicon-stats"> </span></a></td>`)
}
tr.WriteString(td.String())
tr.WriteString(`</tr>`)
td.Reset()
}
bstkConn.Close()
template.WriteString(`<section id="summaryTable"><div class="row"><div class="col-sm-12"><table class="table table-striped table-hover"><thead><tr><th>name</th>`)
template.WriteString(th.String())
template.WriteString(`</tr></thead><tbody> `)
template.WriteString(tr.String())
template.WriteString(`</tbody></table></div></div></section>`)
if tr.String() == `` {
return ``
}
return template.String()
}
// currentTubeStatisticCheck provide a method to confirm that the current tube
// statistics are available.
func currentTubeStatisticCheck(server string, tube string) bool {
if selfConf.StatisticsCollection == 0 {
return false
}
s, ok := statisticsData.Server[server]
if !ok {
return false
}
_, ok = s[tube]
return ok
}