Skip to content

Commit

Permalink
feature 2885: Add geoip info in the stats / history page
Browse files Browse the repository at this point in the history
- use jsonp (cross origin)
- use localStorage cache
- use tiptip instead of ui tooltip

git-svn-id: http://piwigo.org/svn/trunk@22683 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
rvelices committed May 16, 2013
1 parent 237a642 commit 42bdfe8
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 13 deletions.
23 changes: 21 additions & 2 deletions admin/themes/default/js/jquery.geoip.js
Expand Up @@ -4,6 +4,23 @@ GeoIp = {
pending: {},

get: function(ip, callback){
if (!GeoIp.storageInit && window.localStorage) {
GeoIp.storageInit = true;
var cache = localStorage.getItem("freegeoip");
if (cache) {
cache = JSON.parse(cache);
for (var ip in cache) {
var data = cache[ip];
if ( (new Date()).getTime() - data.reqTime > 36 * 3600000)
delete cache[ip];
}
GeoIp.cache = cache;
}
jQuery(window).on("unload", function() {
localStorage.setItem("freegeoip", JSON.stringify(GeoIp.cache) );
} );
}

if (GeoIp.cache.hasOwnProperty(ip))
callback(GeoIp.cache[ip]);
else if (GeoIp.pending[ip])
Expand All @@ -12,8 +29,10 @@ GeoIp = {
GeoIp.pending[ip] = [callback];
jQuery.ajax( {
url: "http://freegeoip.net/json/" + ip,
dataType: "json",
dataType: "jsonp",
cache: true,
success: function(data) {
data.reqTime = (new Date()).getTime();
var res=[];
if (data.city) res.push(data.city);
if (data.region_name) res.push(data.region_name);
Expand All @@ -28,7 +47,7 @@ GeoIp = {
},

error: function() {
var data = {ip:ip, fullName:""};
var data = {ip:ip, fullName:"", reqTime: (new Date()).getTime()};

GeoIp.cache[ip] = data;
var callbacks = GeoIp.pending[ip];
Expand Down
26 changes: 15 additions & 11 deletions admin/themes/default/template/history.tpl
Expand Up @@ -136,18 +136,22 @@
{if !empty($navbar) }{include file='navigation_bar.tpl'|@get_extent:'navbar'}{/if}

{combine_script id='jquery.geoip' load='async' path='admin/themes/default/js/jquery.geoip.js'}
{combine_script id='jquery.ui.tooltip' load='footer'}

{footer_script}{literal}
jQuery(".IP").tooltip( {
items: "*",
/*show: {delay:0, effect:"show"},
hide: {delay:50, effect:"hide"},*/
content: function(response) {
var that = $(this);
GeoIp.get( that.text(), function(data) {
response( data.fullName );
jQuery(".IP").one( "mouseenter", function(){
var that = $(this);
that
.data("isOver", true)
.one("mouseleave", function() {
that.removeData("isOver");
});
}
});
GeoIp.get( that.text(), function(data) {
if (!data.fullName) return;
that.tipTip( {
content: data.fullName
} );
if (that.data("isOver"))
that.trigger("mouseenter");
});
} );
{/literal}{/footer_script}

0 comments on commit 42bdfe8

Please sign in to comment.