Compare commits

...

26 Commits

Author SHA1 Message Date
01491ac5e0 feat(升级依赖): 升级依赖并去掉废弃函数 2023-04-07 15:32:15 +08:00
afe166ae6e feat(更新依赖): 更新依赖 2023-03-04 14:54:37 +08:00
6dac40e195 feat(升级依赖): 升级依赖 2023-02-05 23:57:02 +08:00
37b8c3e8ed feat(升级依赖): 升级依赖 2022-03-01 14:26:45 +08:00
630b82cca6 fix(更新依赖): 更新依赖 2021-09-28 22:01:16 +08:00
c86de58d02 fix(更新依赖): 更新依赖 2021-07-08 11:51:33 +08:00
776b126944 docs(更新文档): 更新文档 2021-07-08 11:44:05 +08:00
f37264f5ab fix(更改区域): 区域更改为运营商 2021-07-08 11:39:43 +08:00
ccbae8531d feat(查询优化): 查询优化 2021-04-09 13:19:47 +08:00
0865c44d5e feat(查询优化): 剔除无效区域 2021-04-09 13:08:23 +08:00
35d03559c6 feat(查询优化): 剔除返回结果首尾空白字符 2021-04-09 12:46:25 +08:00
5303137428 docs(更新文档): 更新文档 2021-01-23 15:29:26 +08:00
841b08cf06 docs(更新文档): 更新文档 2021-01-23 15:28:40 +08:00
88e9c989f5 feat(添加功能): client作为本地查询工具,server作为服务给其他服务调用 2021-01-23 15:26:04 +08:00
47ef8058d0 docs(更新文档): 更新文档 2021-01-23 11:41:14 +08:00
514f7fcd37 docs(更新文档): 更新文档 2021-01-21 18:25:47 +08:00
17b359bd3d docs(更新文档): 更新文档 2021-01-21 18:16:45 +08:00
c1803c9752 docs(更新文档): 更新文档 2021-01-21 18:14:38 +08:00
ebb890b8d1 docs(更新文档): 更新文档 2021-01-21 18:11:07 +08:00
021ab50216 docs(更新文档): 更新文档 2021-01-21 18:08:31 +08:00
a95d612bbe fix(修正命名): country调整为city 2021-01-21 18:06:18 +08:00
3caa55c1c7 feat(错误信息): 没有找到ip时返回err 2021-01-21 16:03:36 +08:00
d196a86e24 fix(修正查询): 修正部分IP查询错误 2021-01-21 15:51:55 +08:00
c30cc99c4e docs(更新文档): 更新文档 2021-01-21 14:32:57 +08:00
7cb8acfa16 docs(更新文档): 更新文档 2021-01-21 14:32:06 +08:00
a105f27338 fix(剔除导入): 剔除导入 2021-01-21 14:20:15 +08:00
9 changed files with 154 additions and 46 deletions

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
.idea/
.vscode/
.devcontainer/
qqwry.dat
assets/qqwry.dat

View File

@ -1,6 +1,11 @@
# qqwry[![Go Reference](https://pkg.go.dev/badge/github.com/xiaoqidun/qqwry.svg)](https://pkg.go.dev/github.com/xiaoqidun/qqwry)
# QQWry [![Go Reference](https://pkg.go.dev/badge/github.com/xiaoqidun/qqwry.svg)](https://pkg.go.dev/github.com/xiaoqidun/qqwry)
golang qqwry内存操作线程安全支持缓存的纯真IP查询库
Golang QQWry高性能纯真IP查询库
# 使用须知
1. 仅支持ipv4查询。
2. city也可能是国家。
# 使用说明
@ -18,11 +23,27 @@ func main() {
panic(err)
}
// 从内存或缓存查询IP
country, area, err := qqwry.QueryIP("1.1.1.1")
log.Printf("国家%s区域%s错误%v", country, area, err)
city, isp, err := qqwry.QueryIP("1.1.1.1")
log.Printf("城市%s运营商%s错误%v", city, isp, err)
}
```
# IP数据库
- [https://aite.xyz/share-file/qqwry/qqwry.dat](https://aite.xyz/share-file/qqwry/qqwry.dat)
# 编译说明
1. 下载IP数据库并放置于assets目录中。
2. client和server需要go1.16的内嵌资源特性。
3. 作为库使用请直接引包并不需要go1.16+才能编译。
# 服务接口
1. 自行根据需要调整server下源码。
2. 可以通过-listen参数指定http服务地址。
3. json apicurl http://127.0.0.1/ip/1.1.1.1
# 特别感谢
- 感谢[纯真IP库](https://www.cz88.net/)一直坚持为大家提供免费IP数据库。

6
assets/assets.go Normal file
View File

@ -0,0 +1,6 @@
package assets
import _ "embed"
//go:embed qqwry.dat
var QQWryDat []byte

25
client/client.go Normal file
View File

@ -0,0 +1,25 @@
package main
import (
"fmt"
"github.com/xiaoqidun/qqwry"
"github.com/xiaoqidun/qqwry/assets"
"os"
)
func init() {
qqwry.LoadData(assets.QQWryDat)
}
func main() {
if len(os.Args) < 2 {
return
}
queryIp := os.Args[1]
city, isp, err := qqwry.QueryIP(queryIp)
if err != nil {
fmt.Printf("错误:%v\n", err)
return
}
fmt.Printf("城市:%s运营商%s\n", city, isp)
}

4
go.mod
View File

@ -1,5 +1,5 @@
module github.com/xiaoqidun/qqwry
go 1.16
go 1.20
require golang.org/x/text v0.3.5
require golang.org/x/text v0.9.0

5
go.sum
View File

@ -1,3 +1,2 @@
golang.org/x/text v0.3.5 h1:i6eZZ+zk0SOf0xgBpEpPD18qWcJda6q1sxt3S0kzyUQ=
golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE=
golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=

View File

@ -2,13 +2,14 @@ package qqwry
import (
"bytes"
_ "embed"
"encoding/binary"
"errors"
"golang.org/x/text/encoding/simplifiedchinese"
"golang.org/x/text/transform"
"io/ioutil"
"io"
"net"
"os"
"strings"
"sync"
)
@ -25,8 +26,8 @@ const (
)
type cache struct {
Country string
Area string
City string
Isp string
}
func byte3ToUInt32(data []byte) uint32 {
@ -39,15 +40,15 @@ func byte3ToUInt32(data []byte) uint32 {
func gb18030Decode(src []byte) string {
in := bytes.NewReader(src)
out := transform.NewReader(in, simplifiedchinese.GB18030.NewDecoder())
d, _ := ioutil.ReadAll(out)
d, _ := io.ReadAll(out)
return string(d)
}
// QueryIP 从内存或缓存查询IP
func QueryIP(queryIp string) (country string, area string, err error) {
func QueryIP(queryIp string) (city string, isp string, err error) {
if v, ok := ipCache.Load(queryIp); ok {
country = v.(cache).Country
area = v.(cache).Area
city = v.(cache).City
isp = v.(cache).Isp
return
}
ip := net.ParseIP(queryIp).To4()
@ -83,64 +84,73 @@ func QueryIP(queryIp string) (country string, area string, err error) {
}
}
if offset <= 0 {
err = errors.New("ip not found")
return
}
posM := offset + 4
mode := data[posM]
var areaPos uint32
var ispPos uint32
switch mode {
case redirectMode1:
posC := byte3ToUInt32(data[posM+1 : posM+4])
mode = data[posC]
var cA uint32 = 0
posCA := posC
if mode == redirectMode2 {
cA = byte3ToUInt32(data[posC+1 : posC+4])
posCA = byte3ToUInt32(data[posC+1 : posC+4])
posC += 4
}
for i := cA; i < dataLen; i++ {
for i := posCA; i < dataLen; i++ {
if data[i] == 0 {
country = string(data[cA:i])
city = string(data[posCA:i])
break
}
}
if mode != redirectMode2 {
posC += uint32(len(country) + 1)
posC += uint32(len(city) + 1)
}
areaPos = posC
ispPos = posC
case redirectMode2:
cA := byte3ToUInt32(data[posM+1 : posM+4])
for i := cA; i < dataLen; i++ {
posCA := byte3ToUInt32(data[posM+1 : posM+4])
for i := posCA; i < dataLen; i++ {
if data[i] == 0 {
country = string(data[cA:i])
city = string(data[posCA:i])
break
}
}
areaPos = offset + 8
ispPos = offset + 8
default:
cA := offset + 4
for i := cA; i < dataLen; i++ {
posCA := offset + 4
for i := posCA; i < dataLen; i++ {
if data[i] == 0 {
country = string(data[cA:i])
city = string(data[posCA:i])
break
}
}
areaPos = offset + uint32(5+len(country))
ispPos = offset + uint32(5+len(city))
}
areaMode := data[areaPos]
if areaMode == redirectMode1 || areaMode == redirectMode2 {
areaPos = byte3ToUInt32(data[areaPos+1 : areaPos+4])
if city != "" {
city = strings.TrimSpace(gb18030Decode([]byte(city)))
}
if areaPos > 0 {
for i := areaPos; i < dataLen; i++ {
ispMode := data[ispPos]
if ispMode == redirectMode1 || ispMode == redirectMode2 {
ispPos = byte3ToUInt32(data[ispPos+1 : ispPos+4])
}
if ispPos > 0 {
for i := ispPos; i < dataLen; i++ {
if data[i] == 0 {
area = string(data[areaPos:i])
isp = string(data[ispPos:i])
if isp != "" {
if strings.Contains(isp, "CZ88.NET") {
isp = ""
} else {
isp = strings.TrimSpace(gb18030Decode([]byte(isp)))
}
}
break
}
}
}
country = gb18030Decode([]byte(country))
area = gb18030Decode([]byte(area))
ipCache.Store(queryIp, cache{Country: country, Area: area})
ipCache.Store(queryIp, cache{City: city, Isp: isp})
return
}
@ -152,7 +162,7 @@ func LoadData(database []byte) {
// LoadFile 从文件加载IP数据库
func LoadFile(filepath string) (err error) {
data, err = ioutil.ReadFile(filepath)
data, err = os.ReadFile(filepath)
if err != nil {
return
}

View File

@ -5,16 +5,16 @@ import (
)
func init() {
if err := LoadFile("qqwry.dat"); err != nil {
if err := LoadFile("assets/qqwry.dat"); err != nil {
panic(err)
}
}
func TestQueryIP(t *testing.T) {
queryIp := "1.1.1.1"
country, area, err := QueryIP(queryIp)
city, isp, err := QueryIP(queryIp)
if err != nil {
t.Fatal(err)
}
t.Log(country, area)
t.Logf("城市:%s运营商%s", city, isp)
}

47
server/server.go Normal file
View File

@ -0,0 +1,47 @@
package main
import (
"encoding/json"
"flag"
"github.com/xiaoqidun/qqwry"
"github.com/xiaoqidun/qqwry/assets"
"net"
"net/http"
)
type resp struct {
IP string `json:"ip"`
Err string `json:"err"`
City string `json:"city"`
Isp string `json:"isp"`
}
func init() {
qqwry.LoadData(assets.QQWryDat)
}
func main() {
listen := flag.String("listen", "127.0.0.1:80", "http server listen addr")
flag.Parse()
http.HandleFunc("/ip/", IpAPI)
if err := http.ListenAndServe(*listen, nil); err != nil {
panic(err)
}
}
func IpAPI(writer http.ResponseWriter, request *http.Request) {
ip := request.URL.Path[4:]
if ip == "" {
ip, _, _ = net.SplitHostPort(request.RemoteAddr)
}
rw := &resp{IP: ip}
city, isp, err := qqwry.QueryIP(ip)
if err != nil {
rw.Err = err.Error()
} else {
rw.City = city
rw.Isp = isp
}
b, _ := json.MarshalIndent(rw, "", " ")
_, _ = writer.Write(b)
}