-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcity.go
More file actions
201 lines (171 loc) · 3.32 KB
/
city.go
File metadata and controls
201 lines (171 loc) · 3.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
package datx
import (
"encoding/json"
"encoding/binary"
"io/ioutil"
"net"
"os"
"strings"
"errors"
)
var ErrIPv4Format = errors.New("ipv4 format error")
var ErrNotFound = errors.New("not found")
// NewCity ...
func NewCity(name string) (*City, error) {
db := &City{}
if err := db.load(name); err != nil {
return nil, err
}
return db, nil
}
// City ...
type City struct {
file *os.File
index []byte
data []byte
}
func (db *City) load(fn string) error {
var err error
db.file, err = os.Open(fn)
if err != nil {
return err
}
b4 := make([]byte, 4)
_, err = db.file.Read(b4)
if err != nil {
return err
}
off := int(binary.BigEndian.Uint32(b4))
_, err = db.file.Seek(262148, 0)
if err != nil {
return err
}
l := off-262148-262144
db.index = make([]byte, l)
_, err = db.file.Read(db.index)
if err != nil {
return err
}
db.data, err = ioutil.ReadAll(db.file)
if err != nil {
return err
}
return nil
}
// Find ...
func (db *City) Find(s string) ([]string, error) {
ipv := net.ParseIP(s)
if ipv == nil || ipv.To4() == nil {
return nil, ErrIPv4Format
}
low := 0
mid := 0
high := int(len(db.index)/9) - 1
val := binary.BigEndian.Uint32(ipv.To4())
for low <= high {
mid = int((low + high) / 2)
pos := mid * 9
var start uint32
if mid > 0 {
pos1 := (mid - 1) * 9
start = binary.BigEndian.Uint32(db.index[pos1:pos1+4]) + 1
} else {
start = 0
}
end := binary.BigEndian.Uint32(db.index[pos : pos+4])
if val < start {
high = mid - 1
} else if val > end {
low = mid + 1
} else {
off := int(binary.LittleEndian.Uint32([]byte{
db.index[pos+4],
db.index[pos+5],
db.index[pos+6],
0,
}))
l := int(db.index[pos+7])*256 + int(db.index[pos+8])
return strings.Split(string(db.data[off:off+l]), "\t"), nil
}
}
return nil, ErrNotFound
}
func (db *City) FindLocation(s string) (Location, error) {
var loc Location
a, e := db.Find(s)
if e != nil {
return loc, e
}
loc.Country = a[0]
loc.Province = a[1]
loc.City = a[2]
if len(a) < 5 { // free version
return loc, nil
}
loc.Organization = a[3]
loc.ISP = a[4]
if len(a) == 5 { // weekly
return loc, nil
}
// advanced
loc.Latitude = a[5]
loc.Longitude = a[6]
loc.TimeZone = a[7]
loc.TimeZone2 = a[8]
loc.CityCode = a[9]
loc.PhonePrefix = a[10]
loc.CountryCode = a[11]
loc.ContinentCode = a[12]
if len(a) == 17 { // profession
loc.IDC = a[13]
loc.BaseStation = a[14]
loc.CountryCode3 = a[15]
if a[15] == "1" {
loc.EuropeanUnion = true
} else {
loc.EuropeanUnion = false
}
} else if len(a) == 20 { // enterprise
loc.IDC = a[13]
loc.BaseStation = a[14]
loc.CountryCode3 = a[15]
if a[15] == "1" {
loc.EuropeanUnion = true
} else {
loc.EuropeanUnion = false
}
if a[19] == "ANYCAST" {
loc.Anycast = true
}
}
return loc, nil
}
type Location struct{
Country string
Province string
City string
Organization string
ISP string
Latitude string
Longitude string
TimeZone string
TimeZone2 string
CityCode string
PhonePrefix string
CountryCode string
ContinentCode string
IDC string // IDC | VPN
BaseStation string // WIFI | BS (Base Station)
CountryCode3 string
EuropeanUnion bool
CurrencyCode string
CurrencyName string
Anycast bool
}
func (l Location) ToJSON() []byte {
all, err := json.Marshal(l)
if err == nil {
return all
}
return nil
}