- Add golang templates to move HTML rendering out of the go code where possible - Add an endpoint for serving static files - Add URL escaping for servers and targets
110 lines
1.8 KiB
Go
110 lines
1.8 KiB
Go
package main
|
|
|
|
import (
|
|
"text/template"
|
|
)
|
|
|
|
// template argument structures
|
|
|
|
// page
|
|
type TemplatePage struct {
|
|
// Global options
|
|
Options map[string]string
|
|
Servers []string
|
|
|
|
// Parameters related to current request
|
|
AllServersLinkActive bool
|
|
AllServersURL string
|
|
|
|
// Whois specific handling (for its unique URL)
|
|
IsWhois bool
|
|
WhoisTarget string
|
|
|
|
URLOption string
|
|
URLServer string
|
|
URLCommand string
|
|
|
|
// Generated content to be displayed
|
|
Title string
|
|
Brand string
|
|
Content string
|
|
}
|
|
|
|
// summary
|
|
|
|
type SummaryRowData struct {
|
|
Name string
|
|
Proto string
|
|
Table string
|
|
State string
|
|
MappedState string
|
|
Since string
|
|
Info string
|
|
}
|
|
|
|
type TemplateSummary struct {
|
|
ServerName string
|
|
Raw string
|
|
Header []string
|
|
Rows []SummaryRowData
|
|
}
|
|
|
|
// whois
|
|
type TemplateWhois struct {
|
|
Target string
|
|
Result string
|
|
}
|
|
|
|
// bgpmap
|
|
type TemplateBGPmap struct {
|
|
Servers []string
|
|
Target string
|
|
Result string
|
|
}
|
|
|
|
// bird
|
|
type TemplateBird struct {
|
|
ServerName string
|
|
Target string
|
|
Result string
|
|
}
|
|
|
|
// global variable to hold the templates
|
|
|
|
var TemplateLibrary map[string]*template.Template
|
|
|
|
// list of required templates
|
|
|
|
var requiredTemplates = [...]string{
|
|
"page",
|
|
"summary",
|
|
"whois",
|
|
"bgpmap",
|
|
"bird",
|
|
}
|
|
|
|
// import templates from bindata
|
|
|
|
func ImportTemplates() {
|
|
|
|
// create a new (blank) initial template
|
|
TemplateLibrary = make(map[string]*template.Template)
|
|
|
|
// for each template that is needed
|
|
for _, tmpl := range requiredTemplates {
|
|
|
|
// extract the template definition from the bindata
|
|
def := MustAssetString("templates/" + tmpl)
|
|
|
|
// and add it to the template library
|
|
template, err := template.New(tmpl).Parse(def)
|
|
if err != nil {
|
|
panic("Unable to parse template (templates/" + tmpl + ": " + err.Error())
|
|
}
|
|
|
|
// store in the library
|
|
TemplateLibrary[tmpl] = template
|
|
}
|
|
|
|
}
|