diff --git a/.gitignore b/.gitignore index bbc986c..091bd22 100644 --- a/.gitignore +++ b/.gitignore @@ -16,4 +16,7 @@ .DS_Store frontend/frontend -proxy/proxy \ No newline at end of file +proxy/proxy + +# don't include generated bindata file +frontend/bindata.go diff --git a/frontend/Dockerfile.amd64 b/frontend/Dockerfile.amd64 index bccf851..f0e62ad 100644 --- a/frontend/Dockerfile.amd64 +++ b/frontend/Dockerfile.amd64 @@ -2,6 +2,7 @@ FROM golang:buster AS step_0 ENV CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on WORKDIR /root COPY . . +RUN go generate RUN go build -o /frontend FROM scratch AS step_1 diff --git a/frontend/Dockerfile.arm32v7 b/frontend/Dockerfile.arm32v7 index 1ccd2ed..4c63217 100644 --- a/frontend/Dockerfile.arm32v7 +++ b/frontend/Dockerfile.arm32v7 @@ -2,6 +2,7 @@ FROM golang:buster AS step_0 ENV CGO_ENABLED=0 GOOS=linux GOARCH=arm GO111MODULE=on WORKDIR /root COPY . . +RUN go generate RUN go build -o /frontend FROM scratch AS step_1 diff --git a/frontend/Dockerfile.arm64v8 b/frontend/Dockerfile.arm64v8 index 129d810..982f66c 100644 --- a/frontend/Dockerfile.arm64v8 +++ b/frontend/Dockerfile.arm64v8 @@ -2,6 +2,7 @@ FROM golang:buster AS step_0 ENV CGO_ENABLED=0 GOOS=linux GOARCH=arm64 GO111MODULE=on WORKDIR /root COPY . . +RUN go generate RUN go build -o /frontend FROM scratch AS step_1 diff --git a/frontend/Dockerfile.i386 b/frontend/Dockerfile.i386 index 7db318f..72a2cdb 100644 --- a/frontend/Dockerfile.i386 +++ b/frontend/Dockerfile.i386 @@ -2,6 +2,7 @@ FROM golang:buster AS step_0 ENV CGO_ENABLED=0 GOOS=linux GOARCH=386 GO111MODULE=on WORKDIR /root COPY . . +RUN go generate RUN go build -o /frontend FROM scratch AS step_1 diff --git a/frontend/Dockerfile.ppc64le b/frontend/Dockerfile.ppc64le index 402733e..8422b19 100644 --- a/frontend/Dockerfile.ppc64le +++ b/frontend/Dockerfile.ppc64le @@ -2,6 +2,7 @@ FROM golang:buster AS step_0 ENV CGO_ENABLED=0 GOOS=linux GOARCH=ppc64le GO111MODULE=on WORKDIR /root COPY . . +RUN go generate RUN go build -o /frontend FROM scratch AS step_1 diff --git a/frontend/Dockerfile.s390x b/frontend/Dockerfile.s390x index b92a4e8..3f8c8dc 100644 --- a/frontend/Dockerfile.s390x +++ b/frontend/Dockerfile.s390x @@ -2,6 +2,7 @@ FROM golang:buster AS step_0 ENV CGO_ENABLED=0 GOOS=linux GOARCH=s390x GO111MODULE=on WORKDIR /root COPY . . +RUN go generate RUN go build -o /frontend FROM scratch AS step_1 diff --git a/frontend/bindata/robots.txt b/frontend/bindata/robots.txt new file mode 100644 index 0000000..1f53798 --- /dev/null +++ b/frontend/bindata/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: / diff --git a/frontend/bindata/templates/bgpmap b/frontend/bindata/templates/bgpmap new file mode 100644 index 0000000..89b6aa6 --- /dev/null +++ b/frontend/bindata/templates/bgpmap @@ -0,0 +1,14 @@ +
{{ html . }} | +{{ end }} + + +{{ range .Rows }} +|||||
---|---|---|---|---|---|
{{ html .Name }} | +{{ .Proto }} | +{{ .Table }} | +{{ .State }} | +{{ .Since }} | +{{ .Info }} | +
" + strings.TrimSpace(data) + "" - } else { - // Draw the table head - result += `
` + colTrimmed + ` | ` - } - result += `` - - stringsWithoutTitle := stringsSplitted[1:] - sort.Strings(stringsWithoutTitle) - - for _, line := range stringsWithoutTitle { - // Ignore empty lines - line = strings.TrimSpace(line) - if len(line) == 0 { - continue - } - - // Parse a total of 6 columns from bird summary - lineSplitted := regexp.MustCompile(`(\w+)(\s+)(\w+)(\s+)([\w-]+)(\s+)(\w+)(\s+)([0-9\-\. :]+)(.*)`).FindStringSubmatch(line) - if lineSplitted == nil { - continue - } - - var row [6]string - if len(lineSplitted) >= 2 { - row[0] = strings.TrimSpace(lineSplitted[1]) - } - if len(lineSplitted) >= 4 { - row[1] = strings.TrimSpace(lineSplitted[3]) - } - if len(lineSplitted) >= 6 { - row[2] = strings.TrimSpace(lineSplitted[5]) - } - if len(lineSplitted) >= 8 { - row[3] = strings.TrimSpace(lineSplitted[7]) - } - if len(lineSplitted) >= 10 { - row[4] = strings.TrimSpace(lineSplitted[9]) - } - if len(lineSplitted) >= 11 { - row[5] = strings.TrimSpace(lineSplitted[10]) - } - - // Draw the row in red if the link isn't up - result += `|
---|---|
` + row[0] + ` | ` - // Draw the other cells - for i := 1; i < 6; i++ { - result += "" + row[i] + " | " - } - result += "
" + strings.TrimSpace(data) + "" } - return result + args := TemplateSummary{ + ServerName: serverName, + Raw: data, + } + + // extract the table header + for _, col := range strings.Split(lines[0], " ") { + colTrimmed := strings.TrimSpace(col) + if len(colTrimmed) == 0 { + continue + } + args.Header = append(args.Header, col) + } + + // sort the remaining rows + rows := lines[1:] + sort.Strings(rows) + + // parse each line + for _, line := range rows { + + // Ignore empty lines + line = strings.TrimSpace(line) + if len(line) == 0 { + continue + } + + // Parse a total of 6 columns from bird summary + lineSplitted := splitSummaryLine.FindStringSubmatch(line) + if lineSplitted == nil { + continue + } + + var row SummaryRowData + + if len(lineSplitted) >= 2 { + row.Name = strings.TrimSpace(lineSplitted[1]) + } + if len(lineSplitted) >= 4 { + row.Proto = strings.TrimSpace(lineSplitted[3]) + } + if len(lineSplitted) >= 6 { + row.Table = strings.TrimSpace(lineSplitted[5]) + } + if len(lineSplitted) >= 8 { + row.State = strings.TrimSpace(lineSplitted[7]) + row.MappedState = summaryStateMap[row.State] + } + if len(lineSplitted) >= 10 { + row.Since = strings.TrimSpace(lineSplitted[9]) + } + if len(lineSplitted) >= 11 { + row.Info = strings.TrimSpace(lineSplitted[10]) + } + + // add to the result + args.Rows = append(args.Rows, row) + } + + // finally, render the summary template + tmpl := TemplateLibrary["summary"] + var buffer bytes.Buffer + err := tmpl.Execute(&buffer, args) + if err != nil { + fmt.Println("Error rendering summary:", err.Error()) + } + + return buffer.String() } diff --git a/frontend/template.go b/frontend/template.go index 2dcfac4..0c041dc 100644 --- a/frontend/template.go +++ b/frontend/template.go @@ -4,7 +4,10 @@ import ( "text/template" ) -type tmplArguments struct { +// template argument structures + +// page +type TemplatePage struct { // Global options Options map[string]string Servers []string @@ -27,73 +30,80 @@ type tmplArguments struct { Content string } -var tmpl = template.Must(template.New("tmpl").Parse(` - - - - - - - -