Remove extra spaces in commands

This commit is contained in:
Lan Tian 2020-05-17 22:11:34 +08:00
parent b83c12224f
commit 4df9006c81
No known key found for this signature in database
GPG Key ID: 27F31700E751EC22
3 changed files with 4 additions and 0 deletions

View File

@ -78,6 +78,7 @@ func webHandlerTelegramBot(w http.ResponseWriter, r *http.Request) {
target := "" target := ""
if strings.Contains(request.Message.Text, " ") { if strings.Contains(request.Message.Text, " ") {
target = strings.Join(strings.Split(request.Message.Text, " ")[1:], " ") target = strings.Join(strings.Split(request.Message.Text, " ")[1:], " ")
target = strings.TrimSpace(target)
} }
// Execute command // Execute command

View File

@ -43,6 +43,7 @@ func webBackendCommunicator(endpoint string, command string) func(w http.Respons
} else { } else {
backendCommand = backendCommandPrimitive backendCommand = backendCommandPrimitive
} }
backendCommand = strings.TrimSpace(backendCommand)
templateHeader(w, r, "Bird-lg Go - "+html.EscapeString(endpoint+" "+backendCommand)) templateHeader(w, r, "Bird-lg Go - "+html.EscapeString(endpoint+" "+backendCommand))

View File

@ -5,6 +5,7 @@ import (
"net/http" "net/http"
"os/exec" "os/exec"
"runtime" "runtime"
"strings"
) )
// Wrapper of traceroute, IPv4 // Wrapper of traceroute, IPv4
@ -33,6 +34,7 @@ func tracerouteTryExecute(cmd []string, args [][]string) ([]byte, error) {
// Real handler of traceroute requests // Real handler of traceroute requests
func tracerouteRealHandler(useIPv6 bool, httpW http.ResponseWriter, httpR *http.Request) { func tracerouteRealHandler(useIPv6 bool, httpW http.ResponseWriter, httpR *http.Request) {
query := string(httpR.URL.Query().Get("q")) query := string(httpR.URL.Query().Get("q"))
query = strings.TrimSpace(query)
if query == "" { if query == "" {
invalidHandler(httpW, httpR) invalidHandler(httpW, httpR)
} else { } else {