2014-02-26 07:55:14 +01:00
|
|
|
window.wp = window.wp || {};
|
|
|
|
|
2015-02-11 06:06:28 +01:00
|
|
|
(function( $, wp, pagenow ) {
|
2014-02-26 07:55:14 +01:00
|
|
|
wp.updates = {};
|
|
|
|
|
|
|
|
/**
|
2015-02-05 05:19:23 +01:00
|
|
|
* User nonce for ajax calls.
|
|
|
|
*
|
|
|
|
* @since 4.2.0
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
wp.updates.ajaxNonce = window._wpUpdatesSettings.ajax_nonce;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Localized strings.
|
|
|
|
*
|
|
|
|
* @since 4.2.0
|
|
|
|
*
|
|
|
|
* @var object
|
|
|
|
*/
|
|
|
|
wp.updates.l10n = window._wpUpdatesSettings.l10n;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Flag if we're waiting for an install/update to complete.
|
|
|
|
*
|
|
|
|
* @since 4.2.0
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
wp.updates.updateLock = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If the user tries to install/update a plugin while an install/update is
|
|
|
|
* already happening, it can be placed in this queue to perform later.
|
|
|
|
*
|
|
|
|
* @since 4.2.0
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
wp.updates.updateQueue = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Decrement update counts throughout the various menus.
|
|
|
|
*
|
|
|
|
* @since 3.9.0
|
2014-02-26 07:55:14 +01:00
|
|
|
*
|
|
|
|
* @param {string} updateType
|
|
|
|
*/
|
|
|
|
wp.updates.decrementCount = function( upgradeType ) {
|
2015-02-05 05:19:23 +01:00
|
|
|
var count,
|
|
|
|
pluginCount,
|
|
|
|
$adminBarUpdateCount = $( '#wp-admin-bar-updates .ab-label' ),
|
2015-02-05 20:52:22 +01:00
|
|
|
$dashboardNavMenuUpdateCount = $( 'a[href="update-core.php"] .update-plugins' ),
|
2015-02-05 05:19:23 +01:00
|
|
|
$pluginsMenuItem = $( '#menu-plugins' );
|
2014-02-26 07:55:14 +01:00
|
|
|
|
2015-02-05 05:19:23 +01:00
|
|
|
|
|
|
|
count = $adminBarUpdateCount.text();
|
2014-02-26 07:55:14 +01:00
|
|
|
count = parseInt( count, 10 ) - 1;
|
2014-10-18 21:55:18 +02:00
|
|
|
if ( count < 0 || isNaN( count ) ) {
|
2014-02-26 07:55:14 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-02-26 08:37:14 +01:00
|
|
|
$( '#wp-admin-bar-updates .ab-item' ).removeAttr( 'title' );
|
2015-02-05 05:19:23 +01:00
|
|
|
$adminBarUpdateCount.text( count );
|
|
|
|
|
2014-02-26 07:55:14 +01:00
|
|
|
|
2015-02-05 05:19:23 +01:00
|
|
|
$dashboardNavMenuUpdateCount.each( function( index, elem ) {
|
2014-02-26 07:55:14 +01:00
|
|
|
elem.className = elem.className.replace( /count-\d+/, 'count-' + count );
|
|
|
|
} );
|
2015-02-05 05:19:23 +01:00
|
|
|
$dashboardNavMenuUpdateCount.removeAttr( 'title' );
|
|
|
|
$dashboardNavMenuUpdateCount.find( '.update-count' ).text( count );
|
2014-02-26 07:55:14 +01:00
|
|
|
|
|
|
|
if ( 'plugin' === upgradeType ) {
|
2015-02-05 05:19:23 +01:00
|
|
|
pluginCount = $pluginsMenuItem.find( '.plugin-count' ).eq(0).text();
|
2014-02-26 07:55:14 +01:00
|
|
|
pluginCount = parseInt( pluginCount, 10 ) - 1;
|
2014-10-18 21:55:18 +02:00
|
|
|
if ( pluginCount < 0 || isNaN( pluginCount ) ) {
|
2014-02-26 07:55:14 +01:00
|
|
|
return;
|
|
|
|
}
|
2015-02-05 05:19:23 +01:00
|
|
|
$pluginsMenuItem.find( '.plugin-count' ).text( pluginCount );
|
|
|
|
$pluginsMenuItem.find( '.update-plugins' ).each( function( index, elem ) {
|
2014-02-26 07:55:14 +01:00
|
|
|
elem.className = elem.className.replace( /count-\d+/, 'count-' + pluginCount );
|
|
|
|
} );
|
2015-02-05 05:19:23 +01:00
|
|
|
|
|
|
|
if (pluginCount > 0 ) {
|
|
|
|
$( '.subsubsub .upgrade .count' ).text( '(' + pluginCount + ')' );
|
|
|
|
} else {
|
|
|
|
$( '.subsubsub .upgrade' ).remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send an Ajax request to the server to update a plugin.
|
|
|
|
*
|
|
|
|
* @since 4.2.0
|
|
|
|
*
|
|
|
|
* @param {string} plugin
|
|
|
|
* @param {string} slug
|
|
|
|
*/
|
|
|
|
wp.updates.updatePlugin = function( plugin, slug ) {
|
|
|
|
var $message;
|
|
|
|
if ( 'plugins' === pagenow || 'plugins-network' === pagenow ) {
|
|
|
|
$message = $( '#' + slug ).next().find( '.update-message' );
|
|
|
|
} else if ( 'plugin-install' === pagenow ) {
|
|
|
|
$message = $( '.plugin-card-' + slug ).find( '.update-now' );
|
|
|
|
}
|
|
|
|
|
|
|
|
$message.addClass( 'updating-message' );
|
|
|
|
$message.text( wp.updates.l10n.updating );
|
2015-03-01 20:11:27 +01:00
|
|
|
wp.a11y.speak( wp.updates.l10n.updatingMsg );
|
2015-02-05 05:19:23 +01:00
|
|
|
|
|
|
|
if ( wp.updates.updateLock ) {
|
|
|
|
wp.updates.updateQueue.push( {
|
|
|
|
type: 'update-plugin',
|
|
|
|
data: {
|
|
|
|
plugin: plugin,
|
|
|
|
slug: slug
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
return;
|
2014-02-26 07:55:14 +01:00
|
|
|
}
|
2015-02-05 05:19:23 +01:00
|
|
|
|
|
|
|
wp.updates.updateLock = true;
|
|
|
|
|
|
|
|
var data = {
|
|
|
|
'_ajax_nonce': wp.updates.ajaxNonce,
|
2015-03-12 18:51:26 +01:00
|
|
|
'plugin': plugin,
|
|
|
|
'slug': slug
|
2015-02-05 05:19:23 +01:00
|
|
|
};
|
|
|
|
|
2015-02-11 06:06:28 +01:00
|
|
|
wp.ajax.post( 'update-plugin', data )
|
|
|
|
.done( wp.updates.updateSuccess )
|
|
|
|
.fail( wp.updates.updateError )
|
|
|
|
.always( wp.updates.updateAlways );
|
2015-02-05 20:52:22 +01:00
|
|
|
};
|
2015-02-05 05:19:23 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* On a successful plugin update, update the UI with the result.
|
|
|
|
*
|
|
|
|
* @since 4.2.0
|
|
|
|
*
|
|
|
|
* @param {object} response
|
|
|
|
*/
|
|
|
|
wp.updates.updateSuccess = function( response ) {
|
|
|
|
var $message;
|
|
|
|
if ( 'plugins' === pagenow || 'plugins-network' === pagenow ) {
|
2015-02-11 06:06:28 +01:00
|
|
|
$message = $( '#' + response.slug ).next().find( '.update-message' );
|
|
|
|
$( '#' + response.slug ).addClass( 'updated' ).removeClass( 'update' );
|
|
|
|
$( '#' + response.slug + '-update' ).addClass( 'updated' ).removeClass( 'update' );
|
2015-02-05 05:19:23 +01:00
|
|
|
} else if ( 'plugin-install' === pagenow ) {
|
2015-02-11 06:06:28 +01:00
|
|
|
$message = $( '.plugin-card-' + response.slug ).find( '.update-now' );
|
2015-02-05 05:19:23 +01:00
|
|
|
$message.addClass( 'button-disabled' );
|
|
|
|
}
|
|
|
|
|
|
|
|
$message.removeClass( 'updating-message' ).addClass( 'updated-message' );
|
|
|
|
$message.text( wp.updates.l10n.updated );
|
2015-03-01 20:11:27 +01:00
|
|
|
wp.a11y.speak( wp.updates.l10n.updatedMsg );
|
2015-02-05 05:19:23 +01:00
|
|
|
|
|
|
|
wp.updates.decrementCount( 'plugin' );
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* On a plugin update error, update the UI appropriately.
|
|
|
|
*
|
|
|
|
* @since 4.2.0
|
|
|
|
*
|
|
|
|
* @param {object} response
|
|
|
|
*/
|
|
|
|
wp.updates.updateError = function( response ) {
|
|
|
|
var $message;
|
|
|
|
if ( 'plugins' === pagenow || 'plugins-network' === pagenow ) {
|
2015-02-11 06:06:28 +01:00
|
|
|
$message = $( '#' + response.slug ).next().find( '.update-message' );
|
2015-02-05 05:19:23 +01:00
|
|
|
} else if ( 'plugin-install' === pagenow ) {
|
2015-02-11 06:06:28 +01:00
|
|
|
$message = $( '.plugin-card-' + response.slug ).find( '.update-now' );
|
2015-02-05 05:19:23 +01:00
|
|
|
}
|
|
|
|
$message.removeClass( 'updating-message' );
|
|
|
|
$message.text( wp.updates.l10n.updateFailed );
|
2015-03-01 20:11:27 +01:00
|
|
|
wp.a11y.speak( wp.updates.l10n.updateFailed );
|
2015-02-05 05:19:23 +01:00
|
|
|
};
|
|
|
|
|
2015-02-11 06:06:28 +01:00
|
|
|
/**
|
|
|
|
* After an update attempt has completed, check the queue.
|
|
|
|
*
|
|
|
|
* @since 4.2.0
|
|
|
|
*/
|
|
|
|
wp.updates.updateAlways = function() {
|
|
|
|
wp.updates.updateLock = false;
|
|
|
|
wp.updates.queueChecker();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-02-05 05:19:23 +01:00
|
|
|
/**
|
|
|
|
* Send an Ajax request to the server to install a plugin.
|
|
|
|
*
|
|
|
|
* @since 4.2.0
|
|
|
|
*
|
|
|
|
* @param {string} slug
|
|
|
|
*/
|
|
|
|
wp.updates.installPlugin = function( slug ) {
|
|
|
|
var $message = $( '.plugin-card-' + slug ).find( '.install-now' );
|
|
|
|
|
|
|
|
$message.addClass( 'updating-message' );
|
|
|
|
$message.text( wp.updates.l10n.installing );
|
2015-03-01 20:11:27 +01:00
|
|
|
wp.a11y.speak( wp.updates.l10n.installingMsg );
|
2015-02-05 05:19:23 +01:00
|
|
|
|
|
|
|
if ( wp.updates.updateLock ) {
|
|
|
|
wp.updates.updateQueue.push( {
|
|
|
|
type: 'install-plugin',
|
|
|
|
data: {
|
|
|
|
slug: slug
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wp.updates.updateLock = true;
|
|
|
|
|
|
|
|
var data = {
|
2015-03-12 18:51:26 +01:00
|
|
|
'_ajax_nonce': wp.updates.ajaxNonce,
|
|
|
|
'slug': slug
|
2015-02-05 05:19:23 +01:00
|
|
|
};
|
|
|
|
|
2015-02-11 06:06:28 +01:00
|
|
|
wp.ajax.post( 'install-plugin', data )
|
|
|
|
.done( wp.updates.installSuccess )
|
|
|
|
.fail( wp.updates.installError )
|
|
|
|
.always( wp.updates.updateAlways );
|
2015-02-05 05:19:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* On plugin install success, update the UI with the result.
|
|
|
|
*
|
|
|
|
* @since 4.2.0
|
|
|
|
*
|
|
|
|
* @param {object} response
|
|
|
|
*/
|
|
|
|
wp.updates.installSuccess = function( response ) {
|
2015-02-11 06:06:28 +01:00
|
|
|
var $message = $( '.plugin-card-' + response.slug ).find( '.install-now' );
|
2015-02-05 05:19:23 +01:00
|
|
|
|
|
|
|
$message.removeClass( 'updating-message' ).addClass( 'updated-message button-disabled' );
|
|
|
|
$message.text( wp.updates.l10n.installed );
|
2015-03-01 20:11:27 +01:00
|
|
|
wp.a11y.speak( wp.updates.l10n.installedMsg );
|
2015-02-05 05:19:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* On plugin install failure, update the UI appropriately.
|
|
|
|
*
|
|
|
|
* @since 4.2.0
|
|
|
|
*
|
|
|
|
* @param {object} response
|
|
|
|
*/
|
|
|
|
wp.updates.installError = function( response ) {
|
2015-02-11 06:06:28 +01:00
|
|
|
var $message = $( '.plugin-card-' + response.slug ).find( '.install-now' );
|
2015-02-05 05:19:23 +01:00
|
|
|
|
|
|
|
$message.removeClass( 'updating-message' );
|
|
|
|
$message.text( wp.updates.l10n.installNow );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If an install/update job has been placed in the queue, queueChecker pulls it out and runs it.
|
|
|
|
*
|
|
|
|
* @since 4.2.0
|
|
|
|
*/
|
|
|
|
wp.updates.queueChecker = function() {
|
|
|
|
if ( wp.updates.updateLock || wp.updates.updateQueue.length <= 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var job = wp.updates.updateQueue.shift();
|
|
|
|
|
|
|
|
switch ( job.type ) {
|
|
|
|
case 'update-plugin':
|
|
|
|
wp.updates.updatePlugin( job.data.plugin, job.data.slug );
|
|
|
|
break;
|
|
|
|
case 'install-plugin':
|
|
|
|
wp.updates.installPlugin( job.data.slug );
|
|
|
|
break;
|
|
|
|
default:
|
2015-02-05 20:52:22 +01:00
|
|
|
window.console.log( 'Failed to exect queued update job.' );
|
|
|
|
window.console.log( job );
|
2015-02-05 05:19:23 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$( document ).ready( function() {
|
|
|
|
$( '.plugin-update-tr .update-link' ).on( 'click', function( e ) {
|
|
|
|
e.preventDefault();
|
|
|
|
var $row = $( e.target ).parents( '.plugin-update-tr' );
|
|
|
|
wp.updates.updatePlugin( $row.data( 'plugin' ), $row.data( 'slug' ) );
|
|
|
|
} );
|
|
|
|
|
|
|
|
$( '#bulk-action-form' ).on( 'submit', function( e ) {
|
2015-02-05 20:52:22 +01:00
|
|
|
var $checkbox, plugin, slug;
|
2015-02-05 05:19:23 +01:00
|
|
|
|
|
|
|
if ( $( '#bulk-action-selector-top' ).val() == 'update-selected' ) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
$( 'input[name="checked[]"]:checked' ).each( function( index, elem ) {
|
|
|
|
$checkbox = $( elem );
|
|
|
|
plugin = $checkbox.val();
|
|
|
|
slug = $checkbox.parents( 'tr' ).prop( 'id' );
|
|
|
|
|
|
|
|
wp.updates.updatePlugin( plugin, slug );
|
|
|
|
|
|
|
|
$checkbox.attr( 'checked', false );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
$( '.plugin-card .update-now' ).on( 'click', function( e ) {
|
|
|
|
e.preventDefault();
|
2015-02-05 20:52:22 +01:00
|
|
|
var $button = $( e.target );
|
2015-02-05 05:19:23 +01:00
|
|
|
wp.updates.updatePlugin( $button.data( 'plugin' ), $button.data( 'slug' ) );
|
|
|
|
} );
|
|
|
|
|
|
|
|
$( '.plugin-card .install-now' ).on( 'click', function( e ) {
|
|
|
|
e.preventDefault();
|
2015-02-05 20:52:22 +01:00
|
|
|
var $button = $( e.target );
|
2015-02-05 05:19:23 +01:00
|
|
|
if ( $button.hasClass( 'button-disabled' ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
wp.updates.installPlugin( $button.data( 'slug' ) );
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
|
2014-02-26 07:55:14 +01:00
|
|
|
$( window ).on( 'message', function( e ) {
|
|
|
|
var event = e.originalEvent,
|
|
|
|
message,
|
|
|
|
loc = document.location,
|
|
|
|
expectedOrigin = loc.protocol + '//' + loc.hostname;
|
|
|
|
|
|
|
|
if ( event.origin !== expectedOrigin ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
message = $.parseJSON( event.data );
|
|
|
|
|
|
|
|
if ( typeof message.action === 'undefined' || message.action !== 'decrementUpdateCount' ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wp.updates.decrementCount( message.upgradeType );
|
|
|
|
|
|
|
|
} );
|
|
|
|
|
2015-02-05 20:52:22 +01:00
|
|
|
})( jQuery, window.wp, window.pagenow, window.ajaxurl );
|