Skip to content
Snippets Groups Projects
Commit 0d5cc214 authored by deuce's avatar deuce
Browse files

Move GeoIP lookup into separate module... the returned object has the

following properties:

Ip, Status, CountryCode, CountryName, RegionCode, RegionName, City,
ZipPostalCode, Latitude, Longitude.  Some values may be blank.

If the secod argument is true, it only contains:
Ip, Status, Countrycode, CountryName and is expected to be faster.

Also, a lookup by IP is quitea bit faster than a lookup by hostname.
parent 43d6a106
No related branches found
No related tags found
No related merge requests found
if(js.global.HTTPRequest==undefined)
load("http.js");
function get_geoip(host, countryonly)
{
var GeoIP;
var m,i,j;
var ishost=false;
var geoip_url;
var result;
var tmpobj={};
/*
* Check if this is an IP address or a hostname...
* (We'll ignore weird encodings though like 12345.12345)
*/
m=host.match(/^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$/);
if(m!=null) {
if(m.length==5) {
for(i=1; i<5; i++) {
j=parseInt(m[i]);
if(j < 0 || j > 255) {
ishost=true;
break;
}
}
}
}
else
ishost=true;
// Get the best URL
if(countryonly) {
if(ishost)
geoip_url='http://ipinfodb.com/ip_query_country2.php?output=json&ip='+encodeURIComponent(host);
else
geoip_url='http://ipinfodb.com/ip_query_country.php?timezone=false&output=json&ip='+encodeURIComponent(host);
}
else {
if(ishost)
geoip_url='http://ipinfodb.com/ip_query2.php?output=json&ip='+encodeURIComponent(host);
else
geoip_url='http://ipinfodb.com/ip_query.php?timezone=false&output=json&ip='+encodeURIComponent(host);
}
try {
result='ret='+new HTTPRequest().Get(geoip_url);
GeoIP=js.eval(result);
return GeoIP;
}
catch(e) {}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment