From 7effa8cf28438abc2f6b2c7ddacaf95e08174bc3 Mon Sep 17 00:00:00 2001 From: Lan Tian Date: Tue, 7 Apr 2020 23:55:45 +0800 Subject: [PATCH] Fix telegram api out of range --- frontend/telegram_bot.go | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/frontend/telegram_bot.go b/frontend/telegram_bot.go index 4667777..3dc3534 100644 --- a/frontend/telegram_bot.go +++ b/frontend/telegram_bot.go @@ -45,7 +45,7 @@ func webHandlerTelegramBot(w http.ResponseWriter, r *http.Request) { } // Do not respond if not a tg Bot command (starting with /) - if request.Message.Text[0] != '/' { + if len(request.Message.Text) == 0 || request.Message.Text[0] != '/' { return } @@ -66,27 +66,27 @@ func webHandlerTelegramBot(w http.ResponseWriter, r *http.Request) { // - traceroute if telegramIsCommand(request.Message.Text, "trace") || telegramIsCommand(request.Message.Text, "trace4") { - commandResult = batchRequest([]string{server}, "traceroute", target)[0] + commandResult = strings.Join(batchRequest([]string{server}, "traceroute", target), "") } else if telegramIsCommand(request.Message.Text, "trace6") { - commandResult = batchRequest([]string{server}, "traceroute6", target)[0] + commandResult = strings.Join(batchRequest([]string{server}, "traceroute6", target), "") } else if telegramIsCommand(request.Message.Text, "route") || telegramIsCommand(request.Message.Text, "route4") { - commandResult = batchRequest([]string{server}, "bird", "show route for "+target+" primary")[0] + commandResult = strings.Join(batchRequest([]string{server}, "bird", "show route for "+target+" primary"), "") } else if telegramIsCommand(request.Message.Text, "route6") { - commandResult = batchRequest([]string{server}, "bird6", "show route for "+target+" primary")[0] + commandResult = strings.Join(batchRequest([]string{server}, "bird6", "show route for "+target+" primary"), "") } else if telegramIsCommand(request.Message.Text, "path") || telegramIsCommand(request.Message.Text, "path4") { - tempResult := batchRequest([]string{server}, "bird", "show route for "+target+" all primary")[0] + tempResult := strings.Join(batchRequest([]string{server}, "bird", "show route for "+target+" all primary"), "") for _, s := range strings.Split(tempResult, "\n") { if strings.Contains(s, "BGP.as_path: ") { - commandResult = strings.Split(s, "BGP.as_path: ")[1] + commandResult = strings.Split(s, ":")[1] } } } else if telegramIsCommand(request.Message.Text, "path6") { - tempResult := batchRequest([]string{server}, "bird6", "show route for "+target+" all primary")[0] + tempResult := strings.Join(batchRequest([]string{server}, "bird6", "show route for "+target+" all primary"), "") for _, s := range strings.Split(tempResult, "\n") { if strings.Contains(s, "BGP.as_path: ") { - commandResult = strings.Split(s, "BGP.as_path: ")[1] + commandResult = strings.Split(s, ":")[1] } } @@ -94,12 +94,12 @@ func webHandlerTelegramBot(w http.ResponseWriter, r *http.Request) { commandResult = whois(target) } else if telegramIsCommand(request.Message.Text, "help") { - commandResult = strings.TrimSpace(` + commandResult = ` /[path|path6] /[route|route6] /[trace|trace6] /whois - `) + ` } // Create a JSON response @@ -107,7 +107,7 @@ func webHandlerTelegramBot(w http.ResponseWriter, r *http.Request) { response := &tgWebhookResponse{ Method: "sendMessage", ChatID: request.Message.Chat.ID, - Text: commandResult, + Text: strings.TrimSpace(commandResult), } err = json.NewEncoder(w).Encode(response) if err != nil {