Add whois result filter (for DN42)

This commit is contained in:
Lan Tian 2020-04-08 14:58:25 +08:00
parent 57e13faed9
commit 5157f64f9d
No known key found for this signature in database
GPG Key ID: 27F31700E751EC22

View File

@ -93,7 +93,30 @@ func webHandlerTelegramBot(w http.ResponseWriter, r *http.Request) {
}
} else if telegramIsCommand(request.Message.Text, "whois") {
commandResult = whois(target)
tempResult := whois(target)
// Filter out some long (and useless) keys
filteredPrefix := []string{
"descr:", "remarks:", "ds-rdata:", "auth:", "country:",
"nserver:", "status:", "pgp-fingerprint:", "mp-import:", "mp-export:",
"members:", "key:", "inetnum:", "inet6num:", "%",
}
for _, s := range strings.Split(tempResult, "\n") {
if len(s) == 0 {
continue
}
shouldSkip := false
for _, filtered := range filteredPrefix {
if strings.HasPrefix(s, filtered) {
shouldSkip = true
}
}
if shouldSkip {
continue
}
commandResult += s + "\n"
}
} else if telegramIsCommand(request.Message.Text, "help") {
commandResult = `