-
Notifications
You must be signed in to change notification settings - Fork 9
/
bigdatacloud_client_ip.js
51 lines (50 loc) · 1.22 KB
/
bigdatacloud_client_ip.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
;(function(_w,$) {
var BDCClientIp=function(endpoint,server) {
this.endpoint=endpoint ? endpoint : 'client-ip';
this.server=server ? server : 'api.bigdatacloud.net';
};
BDCClientIp.prototype={
getClientIp:function(cb) {
var _this=this;
if (!cb) return false;
this.callApi(function(result) {
cb(result);
},function(err) {
console.error(err);
cb(false);
});
},
callApi:function(cb) {
var xhr = new XMLHttpRequest()
xhr.open(
'GET',
'https://'+this.server+'/data/'+this.endpoint,
true
);
xhr.onreadystatechange = function() {
if (this.readyState === XMLHttpRequest.DONE) {
if (this.status === 200) {
try {
cb(JSON.parse(this.responseText))
} catch (e) {
cb(false)
}
} else {
try {
var result=JSON.parse(this.responseText);
console.error(result,this.status);
cb(false);
} catch (e) {
console.error(this.responseText,this.status);
cb(false);
}
}
}
}
xhr.send();
}
}
_w.BDCClientIp=BDCClientIp;
_w.BDCClientIpClient= new BDCClientIp();
_w.getBDCClientIp=BDCClientIpClient.getClientIp.bind(BDCClientIpClient);
})(window);