From df425a07c6e299e06e0f80f207974cff8307e08e Mon Sep 17 00:00:00 2001 From: Lan Tian Date: Mon, 1 Jun 2020 23:02:28 +0800 Subject: [PATCH] frontend: use regexp to parse summary table --- frontend/templateHelper.go | 78 +++++++++++++++++++------------------- 1 file changed, 40 insertions(+), 38 deletions(-) diff --git a/frontend/templateHelper.go b/frontend/templateHelper.go index b832d70..dfeeb8f 100644 --- a/frontend/templateHelper.go +++ b/frontend/templateHelper.go @@ -78,54 +78,54 @@ func smartFormatter(s string) string { return result } +type summaryTableArguments struct { + Headers []string + Lines [][]string +} + // Output a table for the summary page func summaryTable(isIPv6 bool, data string, serverName string) string { var result string // Sort the table, excluding title row - stringsSplitted := strings.Split(data, "\n") - if len(stringsSplitted) > 1 { - stringsWithoutTitle := stringsSplitted[1:] - sort.Strings(stringsWithoutTitle) - data = stringsSplitted[0] + "\n" + strings.Join(stringsWithoutTitle, "\n") - } - - result += "" - for lineID, line := range strings.Split(data, "\n") { - var row [6]string - var rowIndex int = 0 - - words := strings.Split(line, " ") - for wordID, word := range words { - if len(word) == 0 { + stringsSplitted := strings.Split(strings.TrimSpace(data), "\n") + if len(stringsSplitted) <= 1 { + // Likely backend returned an error message + result = "
" + strings.TrimSpace(data) + "
" + } else { + // Draw the table head + result += "
" + result += "" + for _, col := range strings.Split(stringsSplitted[0], " ") { + colTrimmed := strings.TrimSpace(col) + if len(colTrimmed) == 0 { continue } - if rowIndex < 4 { - 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 += "" } + result += "" - // Ignore empty lines - if len(row[0]) == 0 { - continue - } + stringsWithoutTitle := stringsSplitted[1:] + sort.Strings(stringsWithoutTitle) - if lineID == 0 { - // Draw the table head - result += "" - for i := 0; i < 6; i++ { - result += "" + for _, line := range stringsWithoutTitle { + // Ignore empty lines + line = strings.TrimSpace(line) + if len(line) == 0 { + continue } - result += "" - } 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 result += "" } - result += "
" + colTrimmed + "
" + row[i] + "
" + return result }