-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathip.go
394 lines (361 loc) · 9.25 KB
/
ip.go
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
package go_utils
import (
"bytes"
"encoding/hex"
"fmt"
"github.com/pion/stun"
"golang.org/x/text/encoding/simplifiedchinese"
"io"
"log"
"math/big"
"net"
"net/http"
"strconv"
"strings"
)
var (
szCurIp string
//IpReg = regexp.MustCompile(`^(\d{1,3}\.){3}\d{1,3}$`) // ip v4
)
func GBKToUTF8(s []byte) []byte {
utf8Str := simplifiedchinese.GBK.NewDecoder().Reader(bytes.NewReader(s))
if data, err := io.ReadAll(utf8Str); nil == err {
return data
}
return nil
}
func IsIp(s string) bool {
aIp1 := strings.Split(s, ":")
return IpReg.Match([]byte(aIp1[0]))
}
// 通过cloudflare 获取自己当前互联网 ip
func GetCurPubIp() string {
szRst := ""
szUrl := "https://www.cloudflare.com/cdn-cgi/trace"
DoUrlCbk(szUrl, "", nil, func(resp *http.Response, szUrl string) {
if data, err := io.ReadAll(resp.Body); nil == err {
s := string(data)
if a := strings.Split(s, "ip="); 2 == len(a) {
a = strings.Split(a[1], "\n")
if 1 < len(a) {
szRst = a[0]
}
}
}
})
return szRst
}
func DoUrlCbk4byte4Redirect(szUrl string, data []byte, hd map[string]string, cbk func(resp *http.Response, szUrl string), Redirect bool) string {
szR := ""
szM := "GET"
if 0 < len(data) {
szM = "POST"
}
PipE.ErrCount = 0
PipE.ErrLimit = 999999999
if Redirect {
PipE.Client.CheckRedirect = func(req *http.Request, via []*http.Request) error {
return nil
}
}
c11 := PipE.Client
if strings.HasPrefix(strings.ToLower(szUrl), "http://") {
c11 = PipE.GetClient(nil)
}
PipE.DoGetWithClient4SetHd(c11, szUrl, szM, bytes.NewReader(data), func(resp *http.Response, err error, szU string) {
if nil == err && nil != resp {
defer resp.Body.Close()
cbk(resp, szU)
} else {
//log.Println(err)
}
}, func() map[string]string {
return hd
}, true)
return szR
}
func DoUrlCbk4byte(szUrl string, data []byte, hd map[string]string, cbk func(resp *http.Response, szUrl string)) string {
return DoUrlCbk4byte4Redirect(szUrl, data, hd, cbk, false)
}
// 通用的获取数据的方法
func DoUrlCbk(szUrl string, data string, hd map[string]string, cbk func(resp *http.Response, szUrl string)) string {
return DoUrlCbk4byte(szUrl, []byte(data), hd, cbk)
}
// get ip location
func GetIpLocation(x string) string {
if m1 := GetIpInfo(x); nil != m1 {
if a, ok := (*m1)["data"].([]interface{}); ok {
if 0 < len(a) {
s := GetJson4Query(a[0], "location")
return fmt.Sprintf("%v", s)
}
}
}
return ""
}
var ht1 = PipE.GetClient(nil)
func DoBody2(szUrl string, body io.ReadCloser, cbk func(*map[string]interface{}) error) {
var err error
var data []byte
if data, err = io.ReadAll(body); nil == err {
var m = map[string]interface{}{}
if err = Json.Unmarshal(data, &m); nil == err {
err = cbk(&m)
}
}
if nil != err {
log.Println(szUrl, err, string(data))
}
}
/*
获取当前ip
*/
func GETCurIp4QqApi() string {
var szIp = ""
PipE.DoGetWithClient4SetHd(PipE.GetClient4Http2(), "https://otheve.beacon.qq.com/analytics/v2_upload?appkey=0WEB04SGH543EALS", "POST", nil, func(resp *http.Response, err error, szU string) {
DoBody2(szU, resp.Body, func(m1 *map[string]interface{}) error {
if nil != m1 {
if s1, ok := (*m1)["srcGatewayIp"].(string); ok {
szIp = s1
}
}
return nil
})
}, func() map[string]string {
return map[string]string{
"Accept": "application/json",
"Content-Type": "application/json;charset=utf-8",
"Origin": "app://.",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) QQ/6.9.33-23384 Chrome/120.0.6099.56 Electron/28.0.0 Safari/537.36 OS/darwin,x64,23.5.0,Darwin Kernel Version 23.5.0: Wed May 1 20:09:52 PDT 2024; root:xnu-10063.121.3~5/RELEASE_X86_64",
}
}, true)
return szIp
}
func GetIpInfo2(ip string) *map[string]interface{} {
var err error
var ipInfo = map[string]interface{}{}
PipE.DoGetWithClient4SetHd(ht1, "http://ip-api.com/json/"+ip, "GET", nil, func(resp *http.Response, err1 error, szU string) {
err = err1
if resp != nil {
defer resp.Body.Close() // resp 可能为 nil,不能读取 Body
}
if err != nil {
//log.Println(err)
return
}
err = Json.NewDecoder(resp.Body).Decode(&ipInfo)
}, func() map[string]string {
return map[string]string{
"User-Agent": "curl/1.0",
"Cache-Control": "no-cache",
"Connection": "close",
}
}, true)
if nil == err {
return &ipInfo
}
return nil
}
func GetIpInfo(s string) *map[string]interface{} {
m1 := func() *map[string]interface{} {
var m = &map[string]interface{}{}
// Cookie: BAIDUID=FFA6422C7077C2875A952E842F52B05F:FG=1
DoUrlCbk("https://opendata.baidu.com/api.php?query="+s+"&resource_id=6006&format=json", "", map[string]string{
"Cookie": "BAIDUID=AD297683AEA2BE6DF0794437E0AE9E08:FG=1",
"User-Agent": "VideoGo/1897687 CFNetwork/1410.0.3 Darwin/22.6.0",
"Accept-Language": "zh-CN,zh-Hans;q=0.9",
"Connection": "close",
}, func(resp *http.Response, szUrl string) {
if data, err := io.ReadAll(resp.Body); nil == err {
if data1 := GBKToUTF8(data); 0 < len(data1) {
Json.Unmarshal(data1, m)
}
}
})
return m
}()
if nil == m1 || 0 == len(*m1) {
if m1 = GetIpInfo2(s); nil != m1 {
(*m1)["data"] = &map[string]interface{}{"location": fmt.Sprintf("%v %v", (*m1)["country"], (*m1)["city"])}
}
}
return m1
}
//func GetIpaInfo(a []string) {
// for _, x := range a {
// if m1 := GetIpInfo(x); nil != m1 {
// a := (*m1)["data"].([]interface{})
// if 0 == len(a) {
// continue
// }
// s := GetJson4Query(a[0], "location")
// if "" == s {
// continue
// }
// fmt.Printf("%s\t%v\n", x, s)
// }
// }
//}
// get your public ip
// auto skip proxy
func GetPublicIp() string {
if "" != szCurIp {
return szCurIp
}
c, err := stun.Dial("udp", "stun.l.google.com:19302")
if err != nil {
log.Println(err)
return ""
}
szR := ""
// Building binding request with random transaction id.
message := stun.MustBuild(stun.TransactionID, stun.BindingRequest)
// Sending request to STUN server, waiting for response message.
if err := c.Do(message, func(res stun.Event) {
if res.Error != nil {
log.Println(err)
return
}
// Decoding XOR-MAPPED-ADDRESS attribute from message.
var xorAddr stun.XORMappedAddress
if err := xorAddr.GetFrom(res.Message); err != nil {
log.Println(err)
}
szR = xorAddr.IP.String()
szCurIp = szR
fmt.Println("your IP is", szR)
}); err != nil {
log.Println(err)
}
return szR
}
// Get the Internet egress ip of the current machine
func GetOutboundIP() net.IP {
conn, err := net.Dial("udp", "8.8.8.8:80")
if err != nil {
return nil
}
defer conn.Close()
localAddr := conn.LocalAddr().(*net.UDPAddr)
return localAddr.IP
}
// 获取domain的所有ip
func GetIps(domain string) []string {
UseCacheIp := GetValAsBool("UseCacheIp")
if UseCacheIp {
a, err := GetAny[[]string](domain)
if nil == err {
return a
}
}
a1 := GetDomian2IpsAll(domain)
if nil != a1 && 0 < len(a1) {
go PutAny[[]string](domain, a1)
}
return a1
}
// domain
// opType 0 all type,1 ipv4,2 ipv6
func GetDomian2Ips(domain string, opType int) []string {
ips, _ := net.LookupIP(domain)
var aIps []string
for _, ip := range ips {
if 0 == opType || 1 == opType {
if ipv4 := ip.To4(); ipv4 != nil {
aIps = append(aIps, ipv4.String())
}
}
if 0 == opType || 2 == opType {
if ipv6 := ip.To16(); ipv6 != nil {
aIps = append(aIps, ipv6.String())
}
}
}
return aIps
}
func GetDomian2IpsAll(domain string) []string {
return GetDomian2Ips(domain, 0)
}
// ipv4 to bigint
// ipv6 to bigint
func Ip2Int(ip net.IP) *big.Int {
i := big.NewInt(0)
i.SetBytes(ip)
return i
}
// ipv4 string to bigint
// ipv6 string to bigint
func StrIp2Int(ip string) *big.Int {
return Ip2Int(net.ParseIP(ip))
}
func IsIPv4(address string) bool {
return strings.Count(address, ":") < 2
}
func IsIPv6(str string) bool {
return strings.Count(str, ":") >= 2
}
// big int to Ip
func IntToIpv6(intipv6 *big.Int) *net.IP {
ip := intipv6.Bytes()
var a net.IP = ip
if IsIPv4(a.String()) {
a = ip[len(ip)-4:]
}
ip1 := a.To4()
if nil != ip1 {
return &ip1
}
return &a
}
// string big int to big int
// If the string input tosetString() starts with “0x” base 16 (hexadecimal) will be used.
//
// If the string starts with “0” base 8 (octal) will be used.
//
// Otherwise it will use base 10 (decimal)
func Str2BigInt(s string, base int) *big.Int {
bi := new(big.Int)
bi.SetString(s, base)
return bi
}
func Str2Int(s string) int {
if i, err := strconv.Atoi(s); nil == err {
return i
}
return 0
}
func FullIPv6(ip net.IP) string {
dst := make([]byte, hex.EncodedLen(len(ip)))
_ = hex.Encode(dst, ip)
return string(dst[0:4]) + ":" +
string(dst[4:8]) + ":" +
string(dst[8:12]) + ":" +
string(dst[12:16]) + ":" +
string(dst[16:20]) + ":" +
string(dst[20:24]) + ":" +
string(dst[24:28]) + ":" +
string(dst[28:])
}
// big int to ip(v6) string
func IntToIpv6Str(intipv6 *big.Int) string {
ip := IntToIpv6(intipv6)
s1 := ip.String()
if IsIPv4(s1) {
return s1
} else {
return FullIPv6(*ip)
}
}
// big int to hex, base is 16
func BigInt2Hex(v *big.Int, base int) string {
return v.Text(base)
}
// int to hex string
func Any2Hex(v interface{}) string {
data, err := Json.Marshal(v)
if nil != err {
log.Println("Any2Hex is error: ", err)
return ""
}
return fmt.Sprintf("%x", data)
}