$(function(){
var _iterator = 0;
$('.no_js_hide').show();
var redirectStep = function( infoBox, url, baseurl ) {
_iterator++;
$.ajax( url, {
dataType: 'json',
cache: false,
timeout: IPS_TIMEOUT !== false ? parseInt( IPS_TIMEOUT * 1000 ) : 30000,
complete: function( jqXHR, textStatus )
{
var response = $.parseJSON( jqXHR.responseText );
if( response.custom ){
$('.ipsRedirect_loading').hide();
$('.ipsRedirect_progress').hide();
$('.ipsRedirect_message').addClass( 'custom_message' );
var originalContent = infoBox.children('span').html();
console.log(originalContent);
var newContent = infoBox.children('span').html( response.custom );
newContent.find( '[data-action="redirectContinue"]' ).click(function(e){
e.preventDefault();
$('.ipsRedirect_loading').show();
$('.ipsRedirect_progress').show();
$('.ipsRedirect_message').removeClass( 'custom_message' );
infoBox.children('span').html( originalContent );
redirectStep( infoBox, $(this).attr('href'), baseurl );
});
return;
}
else if( response.redirect )
{
window.location = response.redirect;
}
else
{
infoBox.children('span').html( response[1] );
if ( response[2] ) {
infoBox.children('.ipsRedirect_loading').hide();
infoBox.children('.ipsRedirect_progress').show().find('.ipsProgressBar_progress').css({ width: ( response[2] + '%' ) });
}
var newurl = baseurl + '&mr=' + _iterator;
if ( response.done && response.done == true ) {
window.location = newurl;
} else {
redirectStep( infoBox, newurl, baseurl );
}
}
},
error: function( jqXHR, textStatus )
{
if ( jqXHR === 'timeout' )
{
var counter = ( getUrlParam('count') === false ) ? 0 : parseInt( getUrlParam('count') );
if ( counter < 101 )
{
window.location = window.location.replace( /&count=([0-9]+?)(&|$)/, '' ) + '&count=' + ( counter + 1 );
return;
}
if ( confirm( "The server encountered multiple instances where it has stopped responding.\nPress 'OK' to reload this page and re-run this installation step.") )
{
window.location = window.location.replace( /&count=([0-9]+?)(&|$)/, '' ) + '&count=' + ( counter + 1 );
return;
}
}
console.log( "Error, loading " + url );
window.location = url + '&mr_error=1';
}
});
};
var getUrlParam = function( name )
{
if ( name = ( new RegExp( '[?&]'+encodeURIComponent( name ) + '=([^&]*)' ) ).exec( location.search ) )
{
return decodeURIComponent( name[1] );
}
return false;
};
$('.ipsMultipleRedirect').each(function(){
redirectStep( $(this).children('.no_js_hide'), $(this).attr('data-url') + '&mr=' + $(this).attr('data-continue'), $(this).attr('data-url') );
});
})