Add "show route where net ~ [ ... ]"
This commit is contained in:
parent
eb977532c0
commit
e63b2f1fe5
@ -106,6 +106,16 @@ func templateHeader(w http.ResponseWriter, r *http.Request, title string) {
|
|||||||
} else {
|
} else {
|
||||||
options += `<option value="route_all">show route for ... all</option>`
|
options += `<option value="route_all">show route for ... all</option>`
|
||||||
}
|
}
|
||||||
|
if split[2] == "route_where" {
|
||||||
|
options += `<option value="route_where" selected>show route where net ~ [ ... ]</option>`
|
||||||
|
} else {
|
||||||
|
options += `<option value="route_where">show route where net ~ [ ... ]</option>`
|
||||||
|
}
|
||||||
|
if split[2] == "route_where_all" {
|
||||||
|
options += `<option value="route_where_all" selected>show route where net ~ [ ... ] all</option>`
|
||||||
|
} else {
|
||||||
|
options += `<option value="route_where_all">show route where net ~ [ ... ] all</option>`
|
||||||
|
}
|
||||||
if isWhois {
|
if isWhois {
|
||||||
options += `<option value="whois" selected>whois ...</option>`
|
options += `<option value="whois" selected>whois ...</option>`
|
||||||
} else {
|
} else {
|
||||||
@ -122,10 +132,10 @@ func templateHeader(w http.ResponseWriter, r *http.Request, title string) {
|
|||||||
// This is a whois request, use original path URL instead of the modified one
|
// This is a whois request, use original path URL instead of the modified one
|
||||||
// and extract the target
|
// and extract the target
|
||||||
whoisSplit := strings.Split(r.URL.Path, "/")
|
whoisSplit := strings.Split(r.URL.Path, "/")
|
||||||
target = whoisSplit[2]
|
target = strings.Join(whoisSplit[2:], "/")
|
||||||
} else if len(split) >= 5 {
|
} else if len(split) >= 5 {
|
||||||
// This is a normal request, just extract the target
|
// This is a normal request, just extract the target
|
||||||
target = split[4]
|
target = strings.Join(split[4:], "/")
|
||||||
}
|
}
|
||||||
|
|
||||||
w.Write([]byte(`
|
w.Write([]byte(`
|
||||||
|
@ -46,6 +46,26 @@ func webDispatcherIPv6RouteAll(w http.ResponseWriter, r *http.Request) {
|
|||||||
webHandler(w, r, "bird6", split[0], "show route for " + strings.Join(split[1:], "/") + " all")
|
webHandler(w, r, "bird6", split[0], "show route for " + strings.Join(split[1:], "/") + " all")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func webDispatcherIPv4RouteWhere(w http.ResponseWriter, r *http.Request) {
|
||||||
|
split := strings.Split(r.URL.Path[len("/ipv4/route_where/"):], "/")
|
||||||
|
webHandler(w, r, "bird", split[0], "show route where net ~ [ " + strings.Join(split[1:], "/") + " ]")
|
||||||
|
}
|
||||||
|
|
||||||
|
func webDispatcherIPv6RouteWhere(w http.ResponseWriter, r *http.Request) {
|
||||||
|
split := strings.Split(r.URL.Path[len("/ipv6/route_where/"):], "/")
|
||||||
|
webHandler(w, r, "bird6", split[0], "show route where net ~ [ " + strings.Join(split[1:], "/") + " ]")
|
||||||
|
}
|
||||||
|
|
||||||
|
func webDispatcherIPv4RouteWhereAll(w http.ResponseWriter, r *http.Request) {
|
||||||
|
split := strings.Split(r.URL.Path[len("/ipv4/route_where_all/"):], "/")
|
||||||
|
webHandler(w, r, "bird", split[0], "show route where net ~ [ " + strings.Join(split[1:], "/") + " ] all")
|
||||||
|
}
|
||||||
|
|
||||||
|
func webDispatcherIPv6RouteWhereAll(w http.ResponseWriter, r *http.Request) {
|
||||||
|
split := strings.Split(r.URL.Path[len("/ipv6/route_where_all/"):], "/")
|
||||||
|
webHandler(w, r, "bird6", split[0], "show route where net ~ [ " + strings.Join(split[1:], "/") + " ] all")
|
||||||
|
}
|
||||||
|
|
||||||
func webDispatcherWhois(w http.ResponseWriter, r *http.Request) {
|
func webDispatcherWhois(w http.ResponseWriter, r *http.Request) {
|
||||||
var target string = r.URL.Path[len("/whois/"):]
|
var target string = r.URL.Path[len("/whois/"):]
|
||||||
|
|
||||||
@ -112,6 +132,10 @@ func webServerStart() {
|
|||||||
http.HandleFunc("/ipv6/route/", webDispatcherIPv6Route)
|
http.HandleFunc("/ipv6/route/", webDispatcherIPv6Route)
|
||||||
http.HandleFunc("/ipv4/route_all/", webDispatcherIPv4RouteAll)
|
http.HandleFunc("/ipv4/route_all/", webDispatcherIPv4RouteAll)
|
||||||
http.HandleFunc("/ipv6/route_all/", webDispatcherIPv6RouteAll)
|
http.HandleFunc("/ipv6/route_all/", webDispatcherIPv6RouteAll)
|
||||||
|
http.HandleFunc("/ipv4/route_where/", webDispatcherIPv4RouteWhere)
|
||||||
|
http.HandleFunc("/ipv6/route_where/", webDispatcherIPv6RouteWhere)
|
||||||
|
http.HandleFunc("/ipv4/route_where_all/", webDispatcherIPv4RouteWhereAll)
|
||||||
|
http.HandleFunc("/ipv6/route_where_all/", webDispatcherIPv6RouteWhereAll)
|
||||||
http.HandleFunc("/ipv4/traceroute/", webDispatcherIPv4Traceroute)
|
http.HandleFunc("/ipv4/traceroute/", webDispatcherIPv4Traceroute)
|
||||||
http.HandleFunc("/ipv6/traceroute/", webDispatcherIPv6Traceroute)
|
http.HandleFunc("/ipv6/traceroute/", webDispatcherIPv6Traceroute)
|
||||||
http.HandleFunc("/whois/", webDispatcherWhois)
|
http.HandleFunc("/whois/", webDispatcherWhois)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user