mirror of
https://github.com/xiaoqidun/qqwry.git
synced 2023-06-27 14:38:22 +08:00
Compare commits
3 Commits
5303137428
...
ccbae8531d
Author | SHA1 | Date | |
---|---|---|---|
ccbae8531d | |||
0865c44d5e | |||
35d03559c6 |
13
qqwry.go
13
qqwry.go
@ -8,6 +8,7 @@ import (
|
||||
"golang.org/x/text/transform"
|
||||
"io/ioutil"
|
||||
"net"
|
||||
"strings"
|
||||
"sync"
|
||||
)
|
||||
|
||||
@ -138,8 +139,16 @@ func QueryIP(queryIp string) (city string, area string, err error) {
|
||||
}
|
||||
}
|
||||
}
|
||||
city = gb18030Decode([]byte(city))
|
||||
area = gb18030Decode([]byte(area))
|
||||
if city != "" {
|
||||
city = strings.TrimSpace(gb18030Decode([]byte(city)))
|
||||
}
|
||||
if area != "" {
|
||||
if strings.Contains(area, "CZ88.NET") {
|
||||
area = ""
|
||||
} else {
|
||||
area = strings.TrimSpace(gb18030Decode([]byte(area)))
|
||||
}
|
||||
}
|
||||
ipCache.Store(queryIp, cache{City: city, Area: area})
|
||||
return
|
||||
}
|
||||
|
Reference in New Issue
Block a user