Add DN42 specific whois handling

This commit is contained in:
Lan Tian 2020-04-08 18:22:09 +08:00
parent 5157f64f9d
commit abd0eda45b
No known key found for this signature in database
GPG Key ID: 27F31700E751EC22
3 changed files with 65 additions and 28 deletions

47
frontend/dn42.go Normal file
View File

@ -0,0 +1,47 @@
package main
import (
"fmt"
"strings"
)
func dn42WhoisFilter(whois string) string {
commandResult := ""
isNextSection := false
skippedLines := 0
// 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(whois, "\n") {
if len(s) == 0 {
// This line is a separation between parts of results
// Only keep last part of result
isNextSection = true
continue
}
shouldSkip := false
for _, filtered := range filteredPrefix {
if strings.HasPrefix(s, filtered) {
shouldSkip = true
}
}
if shouldSkip {
skippedLines++
continue
}
if isNextSection {
isNextSection = false
skippedLines = 0
commandResult = ""
}
commandResult += s + "\n"
}
return commandResult + fmt.Sprintf("\n%d line(s) skipped.\n", skippedLines)
}

View File

@ -8,12 +8,13 @@ import (
)
type settingType struct {
servers []string
domain string
proxyPort int
whoisServer string
listen string
dnsInterface string
servers []string
domain string
proxyPort int
whoisServer string
listen string
dnsInterface string
netSpecificMode string
}
var setting settingType
@ -26,6 +27,7 @@ func main() {
"whois.verisign-grs.com",
":5000",
"asn.cymru.com",
"",
}
if env := os.Getenv("BIRDLG_SERVERS"); env != "" {
@ -50,12 +52,17 @@ func main() {
settingDefault.dnsInterface = env
}
if env := os.Getenv("BIRDLG_NET_SPECIFIC_MODE"); env != "" {
settingDefault.netSpecificMode = env
}
serversPtr := flag.String("servers", strings.Join(settingDefault.servers, ","), "server name prefixes, separated by comma")
domainPtr := flag.String("domain", settingDefault.domain, "server name domain suffixes")
proxyPortPtr := flag.Int("proxy-port", settingDefault.proxyPort, "port bird-lgproxy is running on")
whoisPtr := flag.String("whois", settingDefault.whoisServer, "whois server for queries")
listenPtr := flag.String("listen", settingDefault.listen, "address bird-lg is listening on")
dnsInterfacePtr := flag.String("dns-interface", settingDefault.dnsInterface, "dns zone to query ASN information")
netSpecificModePtr := flag.String("net-specific-mode", settingDefault.netSpecificMode, "network specific operation mode, [(none)|dn42]")
flag.Parse()
if *serversPtr == "" {
@ -71,6 +78,7 @@ func main() {
*whoisPtr,
*listenPtr,
*dnsInterfacePtr,
strings.ToLower(*netSpecificModePtr),
}
webServerStart()

View File

@ -94,28 +94,10 @@ func webHandlerTelegramBot(w http.ResponseWriter, r *http.Request) {
} else if telegramIsCommand(request.Message.Text, "whois") {
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"
if setting.netSpecificMode == "dn42" {
commandResult = dn42WhoisFilter(tempResult)
} else {
commandResult = tempResult
}
} else if telegramIsCommand(request.Message.Text, "help") {