frontend: use regexp to parse summary table
This commit is contained in:
parent
877afa24fd
commit
df425a07c6
@ -78,54 +78,54 @@ func smartFormatter(s string) string {
|
|||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type summaryTableArguments struct {
|
||||||
|
Headers []string
|
||||||
|
Lines [][]string
|
||||||
|
}
|
||||||
|
|
||||||
// Output a table for the summary page
|
// Output a table for the summary page
|
||||||
func summaryTable(isIPv6 bool, data string, serverName string) string {
|
func summaryTable(isIPv6 bool, data string, serverName string) string {
|
||||||
var result string
|
var result string
|
||||||
|
|
||||||
// Sort the table, excluding title row
|
// Sort the table, excluding title row
|
||||||
stringsSplitted := strings.Split(data, "\n")
|
stringsSplitted := strings.Split(strings.TrimSpace(data), "\n")
|
||||||
if len(stringsSplitted) > 1 {
|
if len(stringsSplitted) <= 1 {
|
||||||
stringsWithoutTitle := stringsSplitted[1:]
|
// Likely backend returned an error message
|
||||||
sort.Strings(stringsWithoutTitle)
|
result = "<pre>" + strings.TrimSpace(data) + "</pre>"
|
||||||
data = stringsSplitted[0] + "\n" + strings.Join(stringsWithoutTitle, "\n")
|
} else {
|
||||||
}
|
// Draw the table head
|
||||||
|
result += "<table class=\"table table-striped table-bordered table-sm\">"
|
||||||
result += "<table class=\"table table-striped table-bordered table-sm\">"
|
result += "<thead>"
|
||||||
for lineID, line := range strings.Split(data, "\n") {
|
for _, col := range strings.Split(stringsSplitted[0], " ") {
|
||||||
var row [6]string
|
colTrimmed := strings.TrimSpace(col)
|
||||||
var rowIndex int = 0
|
if len(colTrimmed) == 0 {
|
||||||
|
|
||||||
words := strings.Split(line, " ")
|
|
||||||
for wordID, word := range words {
|
|
||||||
if len(word) == 0 {
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if rowIndex < 4 {
|
result += "<th scope=\"col\">" + colTrimmed + "</th>"
|
||||||
row[rowIndex] += word
|
|
||||||
rowIndex++
|
|
||||||
} else if len(words[wordID-1]) == 0 && rowIndex < len(row)-1 {
|
|
||||||
if len(row[rowIndex]) > 0 {
|
|
||||||
rowIndex++
|
|
||||||
}
|
|
||||||
row[rowIndex] += word
|
|
||||||
} else {
|
|
||||||
row[rowIndex] += " " + word
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
result += "</thead><tbody>"
|
||||||
|
|
||||||
// Ignore empty lines
|
stringsWithoutTitle := stringsSplitted[1:]
|
||||||
if len(row[0]) == 0 {
|
sort.Strings(stringsWithoutTitle)
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
if lineID == 0 {
|
for _, line := range stringsWithoutTitle {
|
||||||
// Draw the table head
|
// Ignore empty lines
|
||||||
result += "<thead>"
|
line = strings.TrimSpace(line)
|
||||||
for i := 0; i < 6; i++ {
|
if len(line) == 0 {
|
||||||
result += "<th scope=\"col\">" + row[i] + "</th>"
|
continue
|
||||||
}
|
}
|
||||||
result += "</thead><tbody>"
|
|
||||||
} else {
|
// Parse a total of 6 columns from bird summary
|
||||||
|
lineSplitted := regexp.MustCompile(`(\w+)(\s+)(\w+)(\s+)([\w-]+)(\s+)(\w+)(\s+)([0-9\- :]+)(.*)`).FindStringSubmatch(line)
|
||||||
|
var row = [6]string{
|
||||||
|
strings.TrimSpace(lineSplitted[1]),
|
||||||
|
strings.TrimSpace(lineSplitted[3]),
|
||||||
|
strings.TrimSpace(lineSplitted[5]),
|
||||||
|
strings.TrimSpace(lineSplitted[7]),
|
||||||
|
strings.TrimSpace(lineSplitted[9]),
|
||||||
|
strings.TrimSpace(lineSplitted[10]),
|
||||||
|
}
|
||||||
|
|
||||||
// Draw the row in red if the link isn't up
|
// Draw the row in red if the link isn't up
|
||||||
result += "<tr class=\"" + (map[string]string{
|
result += "<tr class=\"" + (map[string]string{
|
||||||
"up": "table-success",
|
"up": "table-success",
|
||||||
@ -145,7 +145,9 @@ func summaryTable(isIPv6 bool, data string, serverName string) string {
|
|||||||
}
|
}
|
||||||
result += "</tr>"
|
result += "</tr>"
|
||||||
}
|
}
|
||||||
|
result += "</tbody></table>"
|
||||||
|
result += "<!==" + data + "-->"
|
||||||
}
|
}
|
||||||
result += "</tbody></table>"
|
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user