From d2c695ee899446f179878e746d5b65d03cb5816e Mon Sep 17 00:00:00 2001 From: rvelices Date: Tue, 14 May 2013 19:30:26 +0000 Subject: feature 2885: Add geoip info in the stats / history page git-svn-id: http://piwigo.org/svn/trunk@22664 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/themes/default/js/jquery.geoip.js | 42 +++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 admin/themes/default/js/jquery.geoip.js (limited to 'admin/themes/default/js') diff --git a/admin/themes/default/js/jquery.geoip.js b/admin/themes/default/js/jquery.geoip.js new file mode 100644 index 000000000..fae389190 --- /dev/null +++ b/admin/themes/default/js/jquery.geoip.js @@ -0,0 +1,42 @@ + +GeoIp = { + cache: {}, + pending: {}, + + get: function(ip, callback){ + if (GeoIp.cache.hasOwnProperty(ip)) + callback(GeoIp.cache[ip]); + else if (GeoIp.pending[ip]) + GeoIp.pending[ip].push(callback); + else { + GeoIp.pending[ip] = [callback]; + jQuery.ajax( { + url: "http://freegeoip.net/json/" + ip, + dataType: "json", + success: function(data) { + var res=[]; + if (data.city) res.push(data.city); + if (data.region_name) res.push(data.region_name); + if (data.country_name) res.push(data.country_name); + data.fullName = res.join(", "); + + GeoIp.cache[ip] = data; + var callbacks = GeoIp.pending[ip]; + delete GeoIp.pending[ip]; + for (var i=0; i