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 += "
" + colTrimmed + " | " } + 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 += "" + row[i] + " | " + 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 += "
---|