Increase consistency of path escaping and support IPv6 addresses instead of hostnames

This commit is contained in:
Henri 2021-04-06 21:43:58 +02:00
parent f77a8a28fe
commit 874089117b
5 changed files with 21 additions and 20 deletions

View File

@ -33,8 +33,8 @@
</li> </li>
{{ range $k, $v := .Servers }} {{ range $k, $v := .Servers }}
<li class="nav-item"> <li class="nav-item">
<a class="nav-link{{ if eq $server $v }} active{{ end }}" <a class="nav-link{{ if eq $server $k }} active{{ end }}"
href="/{{ $option }}/{{ $v }}/{{ $target }}">{{ html $v }}</a> href="/{{ $option }}/{{ $k }}/{{ $target }}">{{ html $v }}</a>
</li> </li>
{{ end }} {{ end }}
</ul> </ul>

View File

@ -5,6 +5,7 @@ import (
"net/http" "net/http"
"net/url" "net/url"
"strconv" "strconv"
"strings"
) )
type channelData struct { type channelData struct {
@ -36,6 +37,10 @@ func batchRequest(servers []string, endpoint string, command string) []string {
} else { } else {
// Compose URL and send the request // Compose URL and send the request
hostname := server hostname := server
hostname = url.PathEscape(hostname)
if strings.Contains(hostname, ":") {
hostname = "[" + hostname + "]"
}
if setting.domain != "" { if setting.domain != "" {
hostname += "." + setting.domain hostname += "." + setting.domain
} }

View File

@ -5,6 +5,7 @@ import (
"errors" "errors"
"fmt" "fmt"
"net/http" "net/http"
"net/url"
"regexp" "regexp"
"sort" "sort"
"strings" "strings"
@ -47,23 +48,28 @@ func renderPageTemplate(w http.ResponseWriter, r *http.Request, title string, co
// Use a default URL if the request URL is too short // Use a default URL if the request URL is too short
// The URL is for return to summary page // The URL is for return to summary page
if len(split) < 2 { if len(split) < 2 {
path = "summary/" + strings.Join(setting.servers, "+") + "/" path = "summary/" + url.PathEscape(strings.Join(setting.servers, "+")) + "/"
} else if len(split) == 2 { } else if len(split) == 2 {
path += "/" path += "/"
} }
split = strings.SplitN(path, "/", 3) split = strings.SplitN(path, "/", 3)
serversEscaped := map[string]string{}
for _, v := range setting.servers {
serversEscaped[url.PathEscape(v)] = v
}
args := TemplatePage{ args := TemplatePage{
Options: optionsMap, Options: optionsMap,
Servers: setting.servers, Servers: serversEscaped,
AllServersLinkActive: strings.ToLower(split[1]) == strings.ToLower(strings.Join(setting.servers, "+")), AllServersLinkActive: strings.ToLower(split[1]) == strings.ToLower(strings.Join(setting.servers, "+")),
AllServersURL: strings.Join(setting.servers, "+"), AllServersURL: url.PathEscape(strings.Join(setting.servers, "+")),
IsWhois: isWhois, IsWhois: isWhois,
WhoisTarget: whoisTarget, WhoisTarget: whoisTarget,
URLOption: strings.ToLower(split[0]), URLOption: strings.ToLower(split[0]),
URLServer: strings.ToLower(split[1]), URLServer: url.PathEscape(strings.ToLower(split[1])),
URLCommand: split[2], URLCommand: split[2],
Title: setting.titleBrand + title, Title: setting.titleBrand + title,
Brand: setting.navBarBrand, Brand: setting.navBarBrand,

View File

@ -11,7 +11,7 @@ import (
type TemplatePage struct { type TemplatePage struct {
// Global options // Global options
Options map[string]string Options map[string]string
Servers []string Servers map[string]string
// Parameters related to current request // Parameters related to current request
AllServersLinkActive bool AllServersLinkActive bool

View File

@ -71,12 +71,7 @@ func webBackendCommunicator(endpoint string, command string) func(w http.Respons
split := strings.SplitN(r.URL.Path[1:], "/", 3) split := strings.SplitN(r.URL.Path[1:], "/", 3)
var urlCommands string var urlCommands string
if len(split) >= 3 { if len(split) >= 3 {
tmp, err := url.PathUnescape(split[2]) urlCommands = split[2]
if err != nil {
serverError(w, r)
return
}
urlCommands = tmp
} }
var backendCommand string var backendCommand string
@ -87,12 +82,7 @@ func webBackendCommunicator(endpoint string, command string) func(w http.Respons
} }
backendCommand = strings.TrimSpace(backendCommand) backendCommand = strings.TrimSpace(backendCommand)
escapedServers, err := url.PathUnescape(split[1]) servers := strings.Split(split[1], "+")
if err != nil {
serverError(w, r)
return
}
servers := strings.Split(escapedServers, "+")
var responses []string = batchRequest(servers, endpoint, backendCommand) var responses []string = batchRequest(servers, endpoint, backendCommand)
var content string var content string
@ -182,7 +172,7 @@ func webServerStart() {
// redirect main page to all server summary // redirect main page to all server summary
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, "/summary/"+strings.Join(setting.servers, "+"), 302) http.Redirect(w, r, "/summary/"+url.PathEscape(strings.Join(setting.servers, "+")), 302)
}) })
// serve static pages using the AssetFS and bindata // serve static pages using the AssetFS and bindata