frontend: generic query types

This commit is contained in:
Lan Tian 2020-06-01 23:08:41 +08:00
parent 93f03bfe4e
commit 18d2d5ba6c
No known key found for this signature in database
GPG Key ID: 27F31700E751EC22
2 changed files with 8 additions and 0 deletions

View File

@ -34,6 +34,8 @@ func renderTemplate(w http.ResponseWriter, r *http.Request, title string, conten
"route_where": "show route where net ~ [ ... ]",
"route_where_all": "show route where net ~ [ ... ] all",
"route_where_bgpmap": "show route where net ~ [ ... ] (bgpmap)",
"route_generic": "show route ...",
"generic": "show ...",
"whois": "whois ...",
"traceroute": "traceroute ...",
}

View File

@ -28,6 +28,8 @@ func webBackendCommunicator(endpoint string, command string) func(w http.Respons
"route_all": "show route for %s all",
"route_where": "show route where net ~ [ %s ]",
"route_where_all": "show route where net ~ [ %s ] all",
"route_generic": "show route %s",
"generic": "show %s",
"traceroute": "%s",
})[command]
@ -143,6 +145,10 @@ func webServerStart() {
http.HandleFunc("/ipv6/route_where_all/", webBackendCommunicator("bird6", "route_where_all"))
http.HandleFunc("/ipv4/route_where_bgpmap/", webHandlerBGPMap("bird", "route_where_bgpmap"))
http.HandleFunc("/ipv6/route_where_bgpmap/", webHandlerBGPMap("bird6", "route_where_bgpmap"))
http.HandleFunc("/ipv4/route_generic/", webBackendCommunicator("bird", "route_generic"))
http.HandleFunc("/ipv6/route_generic/", webBackendCommunicator("bird6", "route_generic"))
http.HandleFunc("/ipv4/generic/", webBackendCommunicator("bird", "generic"))
http.HandleFunc("/ipv6/generic/", webBackendCommunicator("bird6", "generic"))
http.HandleFunc("/ipv4/traceroute/", webBackendCommunicator("traceroute", "traceroute"))
http.HandleFunc("/ipv6/traceroute/", webBackendCommunicator("traceroute6", "traceroute"))
http.HandleFunc("/whois/", webHandlerWhois)