2013-01-29 07:15:25 +01:00
|
|
|
/**
|
|
|
|
* Heartbeat API
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Ensure the global `wp` object exists.
|
|
|
|
window.wp = window.wp || {};
|
|
|
|
|
|
|
|
(function($){
|
|
|
|
var Heartbeat = function() {
|
|
|
|
var self = this,
|
|
|
|
running,
|
2013-02-03 08:03:27 +01:00
|
|
|
beat,
|
2013-01-29 07:15:25 +01:00
|
|
|
nonce,
|
2013-02-03 08:03:27 +01:00
|
|
|
screenid = typeof pagenow != 'undefined' ? pagenow : '',
|
2013-03-31 00:32:12 +01:00
|
|
|
url = typeof ajaxurl != 'undefined' ? ajaxurl : '',
|
2013-01-29 07:15:25 +01:00
|
|
|
settings,
|
|
|
|
tick = 0,
|
|
|
|
queue = {},
|
|
|
|
interval,
|
2013-02-03 08:03:27 +01:00
|
|
|
connecting,
|
2013-03-31 00:32:12 +01:00
|
|
|
countdown = 0,
|
|
|
|
errorcount = 0,
|
2013-02-03 08:03:27 +01:00
|
|
|
tempInterval,
|
|
|
|
hasFocus = true,
|
|
|
|
isUserActive,
|
|
|
|
userActiveEvents,
|
|
|
|
winBlurTimeout,
|
|
|
|
frameBlurTimeout = -1;
|
2013-01-29 07:15:25 +01:00
|
|
|
|
|
|
|
this.autostart = true;
|
2013-03-31 00:32:12 +01:00
|
|
|
this.connectionLost = false;
|
2013-01-29 07:15:25 +01:00
|
|
|
|
|
|
|
if ( typeof( window.heartbeatSettings != 'undefined' ) ) {
|
2013-03-31 00:32:12 +01:00
|
|
|
settings = window.heartbeatSettings;
|
2013-01-29 07:15:25 +01:00
|
|
|
|
|
|
|
// Add private vars
|
|
|
|
nonce = settings.nonce || '';
|
|
|
|
delete settings.nonce;
|
|
|
|
|
2013-03-31 00:32:12 +01:00
|
|
|
url = settings.ajaxurl || url;
|
|
|
|
delete settings.ajaxurl;
|
|
|
|
|
2013-02-03 08:03:27 +01:00
|
|
|
interval = settings.interval || 15; // default interval
|
2013-01-29 07:15:25 +01:00
|
|
|
delete settings.interval;
|
2013-02-03 08:03:27 +01:00
|
|
|
// The interval can be from 5 to 60 sec.
|
|
|
|
if ( interval < 5 )
|
|
|
|
interval = 5;
|
|
|
|
else if ( interval > 60 )
|
|
|
|
interval = 60;
|
|
|
|
|
|
|
|
interval = interval * 1000;
|
|
|
|
|
|
|
|
// 'screenid' can be added from settings on the front-end where the JS global 'pagenow' is not set
|
|
|
|
screenid = screenid || settings.screenid || 'site';
|
|
|
|
delete settings.screenid;
|
2013-01-29 07:15:25 +01:00
|
|
|
|
2013-02-03 08:03:27 +01:00
|
|
|
// Add or overwrite public vars
|
2013-01-29 07:15:25 +01:00
|
|
|
$.extend( this, settings );
|
|
|
|
}
|
|
|
|
|
|
|
|
function time(s) {
|
|
|
|
if ( s )
|
|
|
|
return parseInt( (new Date()).getTime() / 1000 );
|
|
|
|
|
|
|
|
return (new Date()).getTime();
|
|
|
|
}
|
|
|
|
|
2013-02-06 08:10:04 +01:00
|
|
|
function isLocalFrame(frame) {
|
|
|
|
try {
|
|
|
|
if ( frame.contentWindow.document )
|
|
|
|
return true;
|
|
|
|
} catch(e) {}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-03-31 00:32:12 +01:00
|
|
|
// Set error state and fire an event if XHR errors or timeout
|
|
|
|
function errorstate( error ) {
|
|
|
|
var trigger;
|
|
|
|
|
|
|
|
if ( error ) {
|
|
|
|
switch ( error ) {
|
|
|
|
case 'abort':
|
|
|
|
// do nothing
|
|
|
|
break;
|
|
|
|
case 'timeout':
|
|
|
|
// no response for 30 sec.
|
|
|
|
trigger = true;
|
|
|
|
break;
|
|
|
|
case 'parsererror':
|
|
|
|
case 'error':
|
|
|
|
case 'empty':
|
|
|
|
case 'unknown':
|
|
|
|
errorcount++;
|
|
|
|
|
|
|
|
if ( errorcount > 2 )
|
|
|
|
trigger = true;
|
2013-01-29 07:15:25 +01:00
|
|
|
|
2013-03-31 00:32:12 +01:00
|
|
|
break;
|
|
|
|
}
|
2013-01-29 07:15:25 +01:00
|
|
|
|
2013-03-31 00:32:12 +01:00
|
|
|
if ( trigger && ! self.connectionLost ) {
|
2013-01-29 07:15:25 +01:00
|
|
|
self.connectionLost = true;
|
2013-03-31 00:32:12 +01:00
|
|
|
$(document).trigger( 'heartbeat-connection-lost' );
|
2013-01-29 07:15:25 +01:00
|
|
|
}
|
2013-03-31 00:32:12 +01:00
|
|
|
} else if ( self.connectionLost ) {
|
|
|
|
errorcount = 0;
|
|
|
|
self.connectionLost = false;
|
|
|
|
$(document).trigger( 'heartbeat-connection-restored' );
|
2013-01-29 07:15:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function connect() {
|
|
|
|
var data = {};
|
|
|
|
tick = time();
|
|
|
|
|
|
|
|
data.data = $.extend( {}, queue );
|
2013-03-31 00:32:12 +01:00
|
|
|
// Clear the data queue, anything added after this point will be send on the next tick
|
|
|
|
queue = {};
|
|
|
|
|
2013-02-25 03:32:22 +01:00
|
|
|
$(document).trigger( 'heartbeat-send', [data.data] );
|
2013-01-29 07:15:25 +01:00
|
|
|
|
|
|
|
data.interval = interval / 1000;
|
|
|
|
data._nonce = nonce;
|
|
|
|
data.action = 'heartbeat';
|
2013-02-03 08:03:27 +01:00
|
|
|
data.screenid = screenid;
|
|
|
|
data.has_focus = hasFocus;
|
|
|
|
|
|
|
|
connecting = true;
|
2013-03-31 00:32:12 +01:00
|
|
|
self.xhr = $.ajax({
|
|
|
|
url: url,
|
|
|
|
type: 'post',
|
|
|
|
timeout: 30000, // throw an error of not completed after 30 sec.
|
|
|
|
data: data,
|
|
|
|
dataType: 'json'
|
|
|
|
}).done( function( data, textStatus, jqXHR ) {
|
|
|
|
var new_interval, timed;
|
|
|
|
|
|
|
|
if ( ! data )
|
|
|
|
return errorstate( 'empty' );
|
2013-01-29 07:15:25 +01:00
|
|
|
|
|
|
|
// Clear error state
|
|
|
|
if ( self.connectionLost )
|
|
|
|
errorstate();
|
2013-02-03 08:03:27 +01:00
|
|
|
|
|
|
|
// Change the interval from PHP
|
2013-03-31 00:32:12 +01:00
|
|
|
new_interval = data.heartbeat_interval;
|
2013-02-03 08:03:27 +01:00
|
|
|
delete data.heartbeat_interval;
|
|
|
|
|
|
|
|
self.tick( data, textStatus, jqXHR );
|
|
|
|
|
2013-03-31 00:32:12 +01:00
|
|
|
// do this last, can trigger the next XHR if connection time > 5 sec. and new_interval == 'fast'
|
|
|
|
if ( new_interval )
|
|
|
|
self.interval.call( self, new_interval );
|
|
|
|
}).always( function() {
|
2013-02-03 08:03:27 +01:00
|
|
|
connecting = false;
|
2013-01-29 07:15:25 +01:00
|
|
|
next();
|
2013-03-31 00:32:12 +01:00
|
|
|
}).fail( function( jqXHR, textStatus, error ) {
|
|
|
|
errorstate( textStatus || 'unknown' );
|
2013-02-03 08:03:27 +01:00
|
|
|
self.error( jqXHR, textStatus, error );
|
2013-01-29 07:15:25 +01:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
function next() {
|
2013-02-03 08:03:27 +01:00
|
|
|
var delta = time() - tick, t = interval;
|
2013-01-29 07:15:25 +01:00
|
|
|
|
|
|
|
if ( !running )
|
|
|
|
return;
|
|
|
|
|
2013-02-03 08:03:27 +01:00
|
|
|
if ( !hasFocus ) {
|
|
|
|
t = 120000; // 2 min
|
2013-03-31 00:32:12 +01:00
|
|
|
} else if ( countdown > 0 && tempInterval ) {
|
2013-02-03 08:03:27 +01:00
|
|
|
t = tempInterval;
|
|
|
|
countdown--;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.clearTimeout(beat);
|
|
|
|
|
|
|
|
if ( delta < t ) {
|
|
|
|
beat = window.setTimeout(
|
2013-01-29 07:15:25 +01:00
|
|
|
function(){
|
|
|
|
if ( running )
|
|
|
|
connect();
|
|
|
|
},
|
2013-02-03 08:03:27 +01:00
|
|
|
t - delta
|
2013-01-29 07:15:25 +01:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
connect();
|
|
|
|
}
|
2013-02-03 08:03:27 +01:00
|
|
|
}
|
2013-01-29 07:15:25 +01:00
|
|
|
|
2013-02-03 08:03:27 +01:00
|
|
|
function blurred() {
|
|
|
|
window.clearTimeout(winBlurTimeout);
|
|
|
|
window.clearTimeout(frameBlurTimeout);
|
|
|
|
winBlurTimeout = frameBlurTimeout = 0;
|
|
|
|
|
|
|
|
hasFocus = false;
|
|
|
|
|
|
|
|
// temp debug
|
|
|
|
if ( self.debug )
|
|
|
|
console.log('### blurred(), slow down...')
|
|
|
|
}
|
|
|
|
|
|
|
|
function focused() {
|
|
|
|
window.clearTimeout(winBlurTimeout);
|
|
|
|
window.clearTimeout(frameBlurTimeout);
|
|
|
|
winBlurTimeout = frameBlurTimeout = 0;
|
|
|
|
|
|
|
|
isUserActive = time();
|
|
|
|
|
|
|
|
if ( hasFocus )
|
|
|
|
return;
|
|
|
|
|
|
|
|
hasFocus = true;
|
|
|
|
window.clearTimeout(beat);
|
|
|
|
|
|
|
|
if ( !connecting )
|
|
|
|
next();
|
|
|
|
|
|
|
|
// temp debug
|
|
|
|
if ( self.debug )
|
|
|
|
console.log('### focused(), speed up... ')
|
|
|
|
}
|
|
|
|
|
|
|
|
function setFrameEvents() {
|
|
|
|
$('iframe').each( function(i, frame){
|
2013-02-06 08:10:04 +01:00
|
|
|
if ( !isLocalFrame(frame) )
|
|
|
|
return;
|
|
|
|
|
2013-02-03 08:03:27 +01:00
|
|
|
if ( $.data(frame, 'wp-heartbeat-focus') )
|
|
|
|
return;
|
|
|
|
|
|
|
|
$.data(frame, 'wp-heartbeat-focus', 1);
|
|
|
|
|
|
|
|
$(frame.contentWindow).on('focus.wp-heartbeat-focus', function(e){
|
|
|
|
focused();
|
|
|
|
}).on('blur.wp-heartbeat-focus', function(e){
|
|
|
|
setFrameEvents();
|
|
|
|
frameBlurTimeout = window.setTimeout( function(){ blurred(); }, 500 );
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-03-31 00:32:12 +01:00
|
|
|
$(window).on('blur.wp-heartbeat-focus', function(e) {
|
2013-02-03 08:03:27 +01:00
|
|
|
setFrameEvents();
|
|
|
|
winBlurTimeout = window.setTimeout( function(){ blurred(); }, 500 );
|
2013-03-31 00:32:12 +01:00
|
|
|
}).on('focus.wp-heartbeat-focus', function() {
|
2013-02-03 08:03:27 +01:00
|
|
|
$('iframe').each( function(i, frame){
|
2013-02-06 08:10:04 +01:00
|
|
|
if ( !isLocalFrame(frame) )
|
|
|
|
return;
|
|
|
|
|
2013-02-03 08:03:27 +01:00
|
|
|
$.removeData(frame, 'wp-heartbeat-focus');
|
|
|
|
$(frame.contentWindow).off('.wp-heartbeat-focus');
|
|
|
|
});
|
|
|
|
|
|
|
|
focused();
|
|
|
|
});
|
|
|
|
|
|
|
|
function userIsActive() {
|
|
|
|
userActiveEvents = false;
|
|
|
|
$(document).off('.wp-heartbeat-active');
|
|
|
|
$('iframe').each( function(i, frame){
|
2013-02-06 08:10:04 +01:00
|
|
|
if ( !isLocalFrame(frame) )
|
|
|
|
return;
|
|
|
|
|
2013-02-03 08:03:27 +01:00
|
|
|
$(frame.contentWindow).off('.wp-heartbeat-active');
|
|
|
|
});
|
|
|
|
|
|
|
|
focused();
|
2013-01-29 07:15:25 +01:00
|
|
|
|
2013-02-03 08:03:27 +01:00
|
|
|
// temp debug
|
|
|
|
if ( self.debug )
|
|
|
|
console.log( 'userIsActive()' );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set 'hasFocus = true' if user is active and the window is in the background.
|
|
|
|
// Set 'hasFocus = false' if the user has been inactive (no mouse or keyboard activity) for 5 min. even when the window has focus.
|
|
|
|
function checkUserActive() {
|
|
|
|
var lastActive = isUserActive ? time() - isUserActive : 0;
|
|
|
|
|
|
|
|
// temp debug
|
|
|
|
if ( self.debug )
|
|
|
|
console.log( 'checkUserActive(), lastActive = %s seconds ago', parseInt(lastActive / 1000) || 'null' );
|
|
|
|
|
|
|
|
// Throttle down when no mouse or keyboard activity for 5 min
|
|
|
|
if ( lastActive > 300000 && hasFocus )
|
|
|
|
blurred();
|
|
|
|
|
|
|
|
if ( !userActiveEvents ) {
|
|
|
|
$(document).on('mouseover.wp-heartbeat-active keyup.wp-heartbeat-active', function(){ userIsActive(); });
|
2013-03-31 00:32:12 +01:00
|
|
|
|
2013-02-03 08:03:27 +01:00
|
|
|
$('iframe').each( function(i, frame){
|
2013-02-06 08:10:04 +01:00
|
|
|
if ( !isLocalFrame(frame) )
|
|
|
|
return;
|
|
|
|
|
2013-02-03 08:03:27 +01:00
|
|
|
$(frame.contentWindow).on('mouseover.wp-heartbeat-active keyup.wp-heartbeat-active', function(){ userIsActive(); });
|
|
|
|
});
|
2013-03-31 00:32:12 +01:00
|
|
|
|
2013-02-03 08:03:27 +01:00
|
|
|
userActiveEvents = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for user activity every 30 seconds.
|
|
|
|
window.setInterval( function(){ checkUserActive(); }, 30000 );
|
|
|
|
|
|
|
|
if ( this.autostart ) {
|
|
|
|
$(document).ready( function(){
|
|
|
|
// Start one tick (15 sec) after DOM ready
|
|
|
|
running = true;
|
|
|
|
tick = time();
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-03-31 00:32:12 +01:00
|
|
|
this.hasFocus = function() {
|
2013-02-03 08:03:27 +01:00
|
|
|
return hasFocus;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get/Set the interval
|
|
|
|
*
|
2013-03-31 00:32:12 +01:00
|
|
|
* When setting to 'fast', the interval is 5 sec. for the next 30 ticks (for 2 min and 30 sec).
|
|
|
|
* If the window doesn't have focus, the interval slows down to 2 min.
|
2013-02-03 08:03:27 +01:00
|
|
|
*
|
|
|
|
* @param string speed Interval speed: 'fast' (5sec), 'standard' (15sec) default, 'slow' (60sec)
|
|
|
|
* @return int Current interval in seconds
|
|
|
|
*/
|
2013-03-31 00:32:12 +01:00
|
|
|
this.interval = function( speed ) {
|
2013-02-03 08:03:27 +01:00
|
|
|
var reset, seconds;
|
|
|
|
|
|
|
|
if ( speed ) {
|
|
|
|
switch ( speed ) {
|
|
|
|
case 'fast':
|
|
|
|
seconds = 5;
|
2013-03-31 00:32:12 +01:00
|
|
|
countdown = 30;
|
2013-02-03 08:03:27 +01:00
|
|
|
break;
|
|
|
|
case 'slow':
|
|
|
|
seconds = 60;
|
2013-03-31 00:32:12 +01:00
|
|
|
countdown = 0;
|
2013-02-03 08:03:27 +01:00
|
|
|
break;
|
|
|
|
case 'long-polling':
|
|
|
|
// Allow long polling, (experimental)
|
|
|
|
interval = 0;
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
seconds = 15;
|
|
|
|
countdown = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset when the new interval value is lower than the current one
|
|
|
|
reset = seconds * 1000 < interval;
|
|
|
|
|
2013-03-31 00:32:12 +01:00
|
|
|
if ( countdown > 0 ) {
|
2013-02-03 08:03:27 +01:00
|
|
|
tempInterval = seconds * 1000;
|
|
|
|
} else {
|
|
|
|
interval = seconds * 1000;
|
|
|
|
tempInterval = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( reset )
|
|
|
|
next();
|
2013-01-29 07:15:25 +01:00
|
|
|
}
|
2013-02-03 08:03:27 +01:00
|
|
|
|
|
|
|
if ( !hasFocus )
|
|
|
|
return 120;
|
|
|
|
|
|
|
|
return tempInterval ? tempInterval / 1000 : interval / 1000;
|
2013-01-29 07:15:25 +01:00
|
|
|
};
|
|
|
|
|
2013-02-03 08:03:27 +01:00
|
|
|
// Start. Has no effect if heartbeat is already running
|
2013-01-29 07:15:25 +01:00
|
|
|
this.start = function() {
|
|
|
|
if ( running )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
running = true;
|
|
|
|
connect();
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
2013-02-03 08:03:27 +01:00
|
|
|
// Stop. If a XHR is in progress, abort it
|
2013-01-29 07:15:25 +01:00
|
|
|
this.stop = function() {
|
2013-02-03 08:03:27 +01:00
|
|
|
if ( self.xhr && self.xhr.readyState != 4 )
|
2013-01-29 07:15:25 +01:00
|
|
|
self.xhr.abort();
|
|
|
|
|
2013-04-03 00:51:09 +02:00
|
|
|
// Reset the error state
|
|
|
|
errorstate();
|
2013-01-29 07:15:25 +01:00
|
|
|
running = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-02-03 08:03:27 +01:00
|
|
|
/**
|
2013-03-31 00:32:12 +01:00
|
|
|
* Enqueue data to send with the next XHR
|
2013-02-03 08:03:27 +01:00
|
|
|
*
|
|
|
|
* As the data is sent later, this function doesn't return the XHR response.
|
|
|
|
* To see the response, use the custom jQuery event 'heartbeat-tick' on the document, example:
|
|
|
|
* $(document).on('heartbeat-tick.myname', function(data, textStatus, jqXHR) {
|
|
|
|
* // code
|
|
|
|
* });
|
|
|
|
* If the same 'handle' is used more than once, the data is overwritten when the third argument is 'true'.
|
|
|
|
* Use wp.heartbeat.isQueued('handle') to see if any data is already queued for that handle.
|
|
|
|
*
|
2013-03-31 00:32:12 +01:00
|
|
|
* $param string handle Unique handle for the data. The handle is used in PHP to receive the data.
|
|
|
|
* $param mixed data The data to send.
|
|
|
|
* $param bool dont_overwrite Whether to overwrite existing data in the queue.
|
|
|
|
* $return bool Whether the data was queued or not.
|
2013-02-03 08:03:27 +01:00
|
|
|
*/
|
2013-03-31 00:32:12 +01:00
|
|
|
this.enqueue = function( handle, data, dont_overwrite ) {
|
2013-02-03 08:03:27 +01:00
|
|
|
if ( handle ) {
|
2013-03-31 00:32:12 +01:00
|
|
|
if ( queue.hasOwnProperty(handle) && dont_overwrite )
|
2013-02-03 08:03:27 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
queue[handle] = data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2013-01-29 07:15:25 +01:00
|
|
|
}
|
|
|
|
|
2013-02-03 08:03:27 +01:00
|
|
|
/**
|
|
|
|
* Check if data with a particular handle is queued
|
|
|
|
*
|
|
|
|
* $param string handle The handle for the data
|
|
|
|
* $return mixed The data queued with that handle or null
|
|
|
|
*/
|
2013-03-31 00:32:12 +01:00
|
|
|
this.isQueued = function( handle ) {
|
2013-02-03 08:03:27 +01:00
|
|
|
return queue[handle];
|
2013-01-29 07:15:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$.extend( Heartbeat.prototype, {
|
2013-03-31 00:32:12 +01:00
|
|
|
tick: function( data, textStatus, jqXHR ) {
|
2013-02-03 08:03:27 +01:00
|
|
|
$(document).trigger( 'heartbeat-tick', [data, textStatus, jqXHR] );
|
2013-01-29 07:15:25 +01:00
|
|
|
},
|
2013-03-31 00:32:12 +01:00
|
|
|
error: function( jqXHR, textStatus, error ) {
|
2013-02-03 08:03:27 +01:00
|
|
|
$(document).trigger( 'heartbeat-error', [jqXHR, textStatus, error] );
|
2013-01-29 07:15:25 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
wp.heartbeat = new Heartbeat();
|
|
|
|
|
|
|
|
}(jQuery));
|