diff --git a/frontend/lgproxy.go b/frontend/lgproxy.go index c10389c..9c820ee 100644 --- a/frontend/lgproxy.go +++ b/frontend/lgproxy.go @@ -12,11 +12,14 @@ type channelData struct { data string } +// Send commands to lgproxy instances in parallel, and retrieve their responses func batchRequest(servers []string, endpoint string, command string) []string { + // Channel and array for storing responses var ch chan channelData = make(chan channelData) var response_array []string = make([]string, len(servers)) for i, server := range servers { + // Check if the server is in the valid server list passed at startup var isValidServer bool = false for _, validServer := range settingServers { if validServer == server { @@ -24,11 +27,14 @@ func batchRequest(servers []string, endpoint string, command string) []string { break } } + if !isValidServer { + // If the server is not valid, create a dummy goroutine to return a failure go func (i int) { ch <- channelData{i, "request failed: invalid server\n"} } (i) } else { + // Compose URL and send the request url := "http://" + server + "." + settingServersDomain + ":" + strconv.Itoa(settingServersPort) + "/" + url.PathEscape(endpoint) + "?q=" + url.QueryEscape(command) go func (url string, i int){ response, err := http.Get(url) @@ -42,6 +48,7 @@ func batchRequest(servers []string, endpoint string, command string) []string { } } + // Sort the responses by their ids, to return data in order for range servers { var output channelData = <-ch response_array[output.id] = output.data diff --git a/frontend/main.go b/frontend/main.go index 4850475..3382169 100644 --- a/frontend/main.go +++ b/frontend/main.go @@ -9,17 +9,20 @@ var settingServers []string var settingServersDomain string var settingServersPort int var settingWhoisServer string +var settingListen string func main() { serversPtr := flag.String("servers", "", "server name prefixes, separated by comma") domainPtr := flag.String("domain", "", "server name domain suffixes") portPtr := flag.Int("port", 8000, "port bird-lgproxy is running on") whoisPtr := flag.String("whois", "whois.verisign-grs.com", "whois server for queries") + listenPortPtr := flag.String("listen", ":5000", "address bird-lg is listening on") flag.Parse() settingServers = strings.Split(*serversPtr, ",") settingServersDomain = *domainPtr settingServersPort = *portPtr settingWhoisServer = *whoisPtr + settingListen = *listenPortPtr webServerStart() } diff --git a/frontend/template.go b/frontend/template.go index a125524..a709beb 100644 --- a/frontend/template.go +++ b/frontend/template.go @@ -7,13 +7,38 @@ import ( "strconv" ) +// Helper to check if the IP is valid +func isIP(s string) bool { + return nil != net.ParseIP(s) +} + +// Helper to check if the number is valid +func isNumber(s string) bool { + _, err := strconv.Atoi(s) + return nil == err +} + +// Print HTML header to the given http response func templateHeader(w http.ResponseWriter, r *http.Request, title string) { path := r.URL.Path - if len(strings.Split(r.URL.Path, "/")) < 4 { - path = "/ipv4/summary/" + strings.Join(settingServers[:], "+") + "/" + split := strings.Split(r.URL.Path, "/") + + // Mark if the URL is for a whois query + var isWhois bool = false + if len(split) >= 2 && split[1] == "whois" { + isWhois = true } - split := strings.Split(path, "/") + // Use a default URL if the request URL is too short + // The URL is for return to IPv4 summary page + if len(split) < 4 { + path = "/ipv4/summary/" + strings.Join(settingServers[:], "+") + "/" + } else if len(split) == 4 { + path += "/" + } + + // Compose URLs for link in navbar + split = strings.Split(path, "/") split[1] = "ipv4" ipv4_url := strings.Join(split, "/") @@ -25,12 +50,14 @@ func templateHeader(w http.ResponseWriter, r *http.Request, title string) { split[3] = strings.Join(settingServers[:], "+") all_url := strings.Join(split, "/") + // Check if the "All Server" link should be marked as active split = strings.Split(path, "/") var serverAllActive string if split[3] == strings.Join(settingServers[:], "+") { serverAllActive = " active" } + // Print the IPv4, IPv6, All Servers link in navbar var serverNavigation string = `