X-Git-Url: https://git.sesse.net/?p=remoteglot;a=blobdiff_plain;f=www%2Fjs%2Fremoteglot.js;h=c18349378cd2aac2c592246c9e7d764de5c86da7;hp=595bce185aa1a3457dc89cb5241fe5abee9c307e;hb=511873c4d33587bbbccaa595f015143ecd1b821e;hpb=425bc089202a6160970805df00dbc76b2f74b43d diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index 595bce1..c183493 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -48,8 +48,8 @@ var highlight_to = undefined; /** @type {?jQuery} @private */ var highlighted_move = null; -/** @type {!number} @private */ -var unique = Math.random(); +/** @type {?number} @private */ +var unique = null; /** The current position on the board, represented as a FEN string. * @type {?string} @@ -76,6 +76,28 @@ var current_display_line = null; /** @type {?number} @private */ var current_display_move = null; +var supports_html5_storage = function() { + try { + return 'localStorage' in window && window['localStorage'] !== null; + } catch (e) { + return false; + } +} + +// Make the unique token persistent so people refreshing the page won't count twice. +// Of course, you can never fully protect against people deliberately wanting to spam. +var get_unique = function() { + var use_local_storage = supports_html5_storage(); + if (use_local_storage && localStorage['unique']) { + return localStorage['unique']; + } + var unique = Math.random(); + if (use_local_storage) { + localStorage['unique'] = unique; + } + return unique; +} + var request_update = function() { $.ajax({ url: "http://analysis.sesse.net/analysis.pl?ims=" + ims + "&unique=" + unique @@ -809,6 +831,8 @@ var update_displayed_line = function() { } var init = function() { + unique = get_unique(); + // Create board. board = new window.ChessBoard('board', 'start'); hiddenboard = new window.ChessBoard('hiddenboard', 'start');