-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreload.js
317 lines (298 loc) · 9.52 KB
/
preload.js
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
const os = require("os");
const publicIp = require('public-ip');
const internalIp = require('internal-ip');
const interfaces = os.networkInterfaces();
const {Navigator} = require("node-navigator");
const mode_navigator = new Navigator();
// 撒花依赖
const confetti = require('canvas-confetti');
/**
* 获取局域网ip地址,如果获取不到就从本地网卡进行推断
* @param success success(ip)
*/
window.lanIPv4 = async function (success) {
internalIp.v4().then(ip => {
if (ip !== undefined) {
success(ip);
} else {
success(localIpInfer());
}
}).catch(err => success(localIpInfer()));
}
/**
* 尝试从本地网卡信息推断局域网ip
*/
function localIpInfer() {
console.log("本地推断!")
let lanIpv4 = '';
if (utools.isMacOs()) {
if (interfaces.en0 != undefined) {
for (let i = 0; i < interfaces.en0.length; i++) {
if (interfaces.en0[i].family == 'IPv4') {
lanIpv4 = interfaces.en0[i].address;
}
}
} else {
lanIpv4 = "无连接网络!"
}
} else if (utools.isWindows()) {
for (let devName in interfaces) {
let iface = interfaces[devName];
for (let i = 0; i < iface.length; i++) {
let alias = iface[i];
if (alias.family === 'IPv4' && alias.address !== '127.0.0.1' && !alias.internal) {
lanIpv4 = alias.address;
}
}
}
}
return lanIpv4;
}
/**
* 获取 公网ip地址,不包含代理
* @param success success(ip,cityName)
* @param fail fail(errorMessage)
*/
window.wan_no_proxy = function (success, fail) {
let fromBaidu = (tryFunction) => {
console.log("从百度查询国内ip")
fetch('https://qifu-api.baidubce.com/ip/local/geo/v1/district', {
method: "GET",
headers: {
"User-Agent": "curl/8.1.2"
}
}).then(response => {
if (!response.ok) {
console.error(response);
tryFunction();
}
response.json().then(data => {
console.log('百度结果:' + data)
success({
ip: data.ip,
addr: data.data.prov + ' ' + data.data.city + ' ' + data.data.district,
isp: data.data.isp,
net_str: data.data.isp
})
}).catch(reason => {
console.error(reason);
tryFunction();
});
}).catch(e => {
console.error(e);
tryFunction();
});
}
let fromIpcn = (tryFunction) => {
console.log("从ip.cn获取国内ip")
fetch('https://www.ip.cn/api/index?ip=&type=0', {
method: "GET",
headers: {
"User-Agent": "curl/8.1.2"
}
}).then(response => {
if (!response.ok) {
console.error(response);
tryFunction();
}
response.json().then(data => {
console.log(data)
success({
ip: data.ip,
addr: data.address,
isp: data.rs,
net_str: data.rs
})
}).catch(reason => {
console.error(reason);
tryFunction();
});
}).catch(e => {
console.error(e);
tryFunction();
});
}
let fromUseragetInfo = (tryFunction) => {
console.log("从ip.useragentinfo.com获取国内ip")
fetch('https://ip.useragentinfo.com/json', {
method: "GET",
headers: {
"User-Agent": "curl/8.1.2"
}
}).then(response => {
if (!response.ok) {
console.error(response);
tryFunction();
}
response.json().then(data => {
console.log(data)
success({
ip: data.ip,
addr: data.province + ' ' + data.city + ' ' + data.district,
isp: data.isp,
net_str: data.short_name+','+data.isp
})
}).catch(reason => {
console.error(reason);
tryFunction();
});
}).catch(e => {
console.error(e);
tryFunction();
});
}
let fetchFromDns = () => {
console.log("从DNS获取")
publicIp.v4({timeout: 3000}).then(ip => success({
ip: ip,
addr: "未知",
isp: "未知",
net_str: "未知"
})).catch(err => fail("网络出错啦!"));
}
// 优先级,百度,到ipcn到dns查询
fromBaidu(() => fromIpcn(() => fromUseragetInfo(() => fetchFromDns)));
}
/**
* 公网Ip 包括代理
* @param success success(ip,cityName)
* @param fail fail(errorMessage)
*/
window.wan_has_proxy = function (success, fail) {
let fromPing0 = (tryFunction) => {
console.log("从ping0获取")
fetch('https://ping0.cc/geo', {
method: "GET",
headers: {
"User-Agent": "curl/8.1.2"
}
}).then(response => {
if (!response.ok) {
tryFunction();
}
response.text().then(data => {
console.log(data)
let dataLine = data.split(/\r?\n/);
success({
ip: dataLine[0],
addr: dataLine[1],
isp: dataLine[2],
net_str: dataLine[3]
});
fetch("https://ipv4.ping0.cc/Ip/ipleakdo?ip="+dataLine).then(res => {
if (res.ok) {
res.json().then(ipTypeRes => {
console.log('获取ip类型:'+ipTypeRes.iptype);
success({
ip: dataLine[0],
addr: dataLine[1],
isp: dataLine[2],
net_str: dataLine[3] + '\r\n['+ipTypeRes.iptype+']'
});
})
}
})
}).catch(reason => {
console.error(reason)
tryFunction();
});
}).catch(data => {
console.error(data)
tryFunction();
});
}
let fromIpInfo = (tryFunction) => {
console.log("从ipinfo获取")
fetch('https://ipinfo.io', {
method: "GET",
headers: {
"Accept": "application/json",
"Content-Type": "application/json",
"User-Agent": "curl/8.1.2"
}
}).then(response => {
if (!response.ok) {
console.error(response);
tryFunction();
}
response.json().then(data => {
console.log(data)
return {
ip: data.ip,
addr: data.country + ' ' + data.region + ' ' + data.city,
isp: data.org,
net_str: data.org
}
}).catch(reason => {
tryFunction();
return false;
});
}).catch(data => {
tryFunction();
return false;
});
}
let fetchFromDns = () => {
console.log("从DNS获取")
publicIp.v4({timeout: 3000}).then(ip => success({
ip: ip,
addr: "未知",
isp: "未知",
net_str: "未知"
})).catch(err => fail("网络出错啦!"));
}
// 优先级从外面到里面进行查询
fromPing0(() => fromIpInfo(() => fetchFromDns()));
}
/**
* 获取用户的位置
* @param success
* @param fail
*/
window.locationInfo = function (success, fail) {
if (mode_navigator.geolocation) {
// 从操作系统获取用户位置信息
mode_navigator.geolocation.getCurrentPosition((loc, error) => {
if (error) {
console.error(error);
fail(error.message);
} else {
var url = "http://api.map.baidu.com/geocoder?location="
+ loc.latitude + "," + loc.longitude + "&output=json";
fetch(url).then(response => {
if (response.ok) {
response.json().then(bodyObj => {
if (bodyObj.status == "OK") {
success(bodyObj.result.formatted_address);
} else {
fail("无法获取地址信息")
}
}).catch(reason => console.error(reason));
} else {
response.text().then((body) => {
console.error(body);
fail(body);
}).catch(reason => console.error(reason));
}
}).catch(err => {
console.error(err);
fail("无法获取地址信息");
});
}
});
} else {
console.error("不支持定位");
fail("不支持定位");
}
}
/**
* 撒花
*/
window.confetti = function (e){
confetti({
origin: {
x: 0.5,
y: 0.5
}
});
}