frontend: handle confederation brackets in smartWriter

This commit is contained in:
Lan Tian 2020-05-04 12:46:21 +08:00
parent fe42879d20
commit d413de8563
No known key found for this signature in database
GPG Key ID: 27F31700E751EC22

View File

@ -201,9 +201,11 @@ func smartWriter(w http.ResponseWriter, s string) {
// Bird will output ASNs later
isASes = true
lineFormatted += word
} else if isASes && isNumber(word) {
// Bird is outputing ASNs, ass whois for them
lineFormatted += "<a href=\"/whois/AS" + word + "\">" + word + "</a>"
} else if isASes && isNumber(strings.Trim(word, "()")) {
// Remove brackets in path caused by confederation
wordNum := strings.Trim(word, "()")
// Bird is outputing ASNs, add whois for them
lineFormatted += "<a href=\"/whois/AS" + wordNum + "\">" + word + "</a>"
} else {
// Just an ordinary word, print it and done
lineFormatted += word