Server IP : 15.235.198.142 / Your IP : 216.73.216.154 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/rhodeworks/wp-content/plugins/nextgen-gallery/src/Legacy/admin/js/ |
Upload File : |
/* * Ajax Plugin for NextGEN gallery * Version: 1.4.1 * Author : Alex Rabe * */ (function($) { nggAjax = { settings: { url: nggAjaxSetup.url, type: "POST", action: nggAjaxSetup.action, operation : nggAjaxSetup.operation, nonce: nggAjaxSetup.nonce, ids: nggAjaxSetup.ids, permission: nggAjaxSetup.permission, error: nggAjaxSetup.error, failure: nggAjaxSetup.failure, timeout: 20000, retries: 0, max_retries: 5, retry_delay: 30000 }, run: function( index ) { s = this.settings; var req = $.ajax({ type: "POST", url: s.url, data:"action=" + s.action + "&operation=" + s.operation + "&_wpnonce=" + s.nonce + "&image=" + s.ids[index] + "&retries="+nggAjax.settings.retries, cache: false, timeout: 30000, success: function(msg){ switch ( parseInt(msg) ) { case -1: nggProgressBar.addNote( nggAjax.settings.permission ); break; case 0: nggProgressBar.addNote( nggAjax.settings.error ); break; case 1: // show nothing, its better break; default: // Return the message nggProgressBar.addNote( "<strong>ID " + nggAjax.settings.ids[index] + ":</strong> " + nggAjax.settings.failure, msg ); break; } }, error: function(jqXHR, textStatus, errorThrown) { nggAjax.settings.errorThrown = errorThrown; }, complete: function (jqXHR, textStatus) { index++; if (index < nggAjax.settings.ids.length) { var run = true; if (textStatus == 'error' || textStatus == 'abort') { nggAjax.settings.retries += 1; if (nggAjax.settings.retries <= nggAjax.settings.max_retries) { var seconds = nggAjax.settings.retry_delay / 1000; index--; run = false; nggProgressBar.addNote("<strong>ID " + nggAjax.settings.ids[length] + ":</strong> " + "Retrying in " + seconds + " seconds; host might be throttling."); setTimeout(function(){ nggAjax.run( index ); }, nggAjax.settings.retry_delay); } else { var msg = jqXHR.responseText; if (msg == '') { msg = '( ' + nggAjax.settings.errorThrown + ' )'; } nggProgressBar.addNote( "<strong>ID " + nggAjax.settings.ids[index] + ":</strong> " + nggAjax.settings.failure, msg); nggProgressBar.increase(index); } } else { nggAjax.settings.retries = 0; nggProgressBar.increase(index); } if (run) nggAjax.run( index ); } // Done processing else { nggProgressBar.finished(); } } }); }, readIDs: function( index ) { s = this.settings; var req = $.ajax({ type: "POST", url: s.url, data:"action=" + s.action + "&operation=" + s.operation + "&_wpnonce=" + s.nonce + "&image=" + s.ids[index], dataType: "json", cache: false, timeout: 30000, success: function(msg){ // join the array imageIDS = imageIDS.concat(msg); }, error: function (msg) { nggProgressBar.addNote( "<strong>ID " + nggAjax.settings.ids[index] + ":</strong> " + nggAjax.settings.failure, msg.responseText ); }, complete: function () { index++; nggProgressBar.increase( index ); // parse the whole array if (index < nggAjax.settings.ids.length) nggAjax.readIDs( index ); else { // and now run the image operation index = 0; nggAjax.settings.ids = imageIDS; nggAjax.settings.operation = nextOperation; nggAjax.settings.maxStep = imageIDS.length; nggProgressBar.init( nggAjax.settings ); nggAjax.run( index ); } } }); }, init: function( s ) { if (this.inited) return; var index = 0; // get the settings this.settings = $.extend( {}, this.settings, {}, s || {} ); // a gallery operation need first all image ids via ajax if ( this.settings.operation.substring(0, 8) == 'gallery_' ) { nextOperation = this.settings.operation.substring(8); //first run, get all the ids this.settings.operation = 'get_image_ids'; imageIDS = new Array(); this.readIDs( index ); } else { // start the ajax process this.run( index ); } this.inited = true; } } }(jQuery));