Initial commit: Atomaste website

This commit is contained in:
2025-12-10 12:17:30 -05:00
commit 0b9e5d1605
19260 changed files with 5206382 additions and 0 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,601 @@
(function ($) {
$(function() {
/*
Plugins page
splash screen on activation
*/
$('.updraftplus-welcome .close').on('click', function(e) {
e.preventDefault();
$(this).closest('.updraftplus-welcome').remove();
});
/*
Updraftplus page tour
*/
// if Shepherd is undefined, exit.
if (!window.Shepherd) return;
var button_classes = 'button button-primary';
var plugins_page_tour = window.updraft_plugins_page_tour = new Shepherd.Tour();
var main_tour = window.updraft_main_tour = new Shepherd.Tour();
// Set up the defaults for each step
main_tour.options.defaults = plugins_page_tour.options.defaults = {
classes: 'shepherd-theme-arrows-plain-buttons shepherd-main-tour',
showCancelLink: true,
scrollTo: false,
tetherOptions: {
constraints: [
{
to: 'scrollParent',
attachment: 'together',
pin: false
}
]
}
};
/*
Plugins page
*/
plugins_page_tour.addStep('intro', {
title: updraftplus_tour_i18n.plugins_page.title,
text: updraftplus_tour_i18n.plugins_page.text,
attachTo: '.js-updraftplus-settings top',
buttons: [
{
classes: button_classes,
text: updraftplus_tour_i18n.plugins_page.button.text,
action: function() {
window.location = updraftplus_tour_i18n.plugins_page.button.url;
}
}
],
tetherOptions: {
constraints: [
{
to: 'scrollParent',
attachment: 'together',
pin: false
}
],
offset: '20px 0'
},
when: {
show: function() {
$('body').addClass('highlight-udp');
var popup = $(this.el);
// var target = $(this.tether.target);
$('body, html').animate({
scrollTop: popup.offset().top - 50
}, 500, function() {
window.scrollTo(0, popup.offset().top - 50);
});
},
hide: function() {
$('body').removeClass('highlight-udp');
}
}
});
/*
Main Tour steps
*/
// 1. Your first backup
main_tour.addStep('backup_now', {
title: updraftplus_tour_i18n.backup_now.title,
text: updraftplus_tour_i18n.backup_now.text,
attachTo: '#updraft-backupnow-button bottom',
buttons: [
{
classes: 'udp-tour-end',
text: updraftplus_tour_i18n.end_tour,
action: main_tour.cancel
},
{
classes: button_classes,
text: updraftplus_tour_i18n.next,
action: function() {
$('#updraft-navtab-settings').trigger('click');
}
}
]
});
// Manual backup options
main_tour.addStep('backup_options', {
title: updraftplus_tour_i18n.backup_options.title,
text: updraftplus_tour_i18n.backup_options.text,
classes: 'shepherd-theme-arrows-plain-buttons shepherd-main-tour super-index',
attachTo: '#backupnow_includedb left',
tetherOptions: {
offset: '-15px 25px'
},
buttons: [
{
classes: 'udp-tour-back',
text: updraftplus_tour_i18n.back,
action: function() {
$('#updraft-backupnow-modal').dialog('close');
}
},
{
classes: button_classes,
text: updraftplus_tour_i18n.next,
action: main_tour.next
}
]
});
// Backup Now button
main_tour.addStep('backup_now_btn', {
title: updraftplus_tour_i18n.backup_now_btn.title,
text: updraftplus_tour_i18n.backup_now_btn.text,
classes: 'shepherd-theme-arrows-plain-buttons shepherd-main-tour super-index',
attachTo: '.js-tour-backup-now-button top',
buttons: [
{
classes: 'udp-tour-back',
text: updraftplus_tour_i18n.back,
action: function() {
main_tour.back();
}
},
{
classes: button_classes,
text: updraftplus_tour_i18n.backup_now_btn.btn_text,
action: function() {
$('#updraft-backupnow-modal').dialog('close');
$('#updraft-navtab-settings').trigger('click');
}
}
]
});
// Congratulations - Shows when a user clicks "backup now" in the modal
main_tour.addStep('backup_now_btn_success', {
title: updraftplus_tour_i18n.backup_now_btn_success.title,
text: updraftplus_tour_i18n.backup_now_btn_success.text,
attachTo: '#updraft_activejobs_table top',
buttons: [
{
classes: 'udp-tour-back',
text: updraftplus_tour_i18n.back,
action: function() {
$('#updraft-backupnow-button').trigger('click');
main_tour.show('backup_now_btn');
}
},
{
classes: button_classes,
text: updraftplus_tour_i18n.backup_now_btn_success.btn_text,
action: function() {
$('#updraft-navtab-settings').trigger('click');
}
}
],
when: {
show: function() {
setTimeout(function() {
$(window).trigger('scroll');
})
}
}
})
// Settings - timing
main_tour.addStep('settings_timing', {
title: updraftplus_tour_i18n.settings_timing.title,
text: updraftplus_tour_i18n.settings_timing.text,
attachTo: '.retain-files right',
buttons: [
{
classes: 'udp-tour-back',
text: updraftplus_tour_i18n.back,
action: function() {
$('#updraft-navtab-backups').trigger('click');
}
},
{
classes: button_classes,
text: updraftplus_tour_i18n.next,
action: main_tour.next
}
],
tetherOptions: $.extend({}, main_tour.options.defaults.tetherOptions, {
offset: '-33px -15px'
}),
when: {
show: function() {
scroll_to_popup();
}
}
});
// Settings - Remote storage + vault
main_tour.addStep('settings_remote_storage', {
title: updraftplus_tour_i18n.settings_remote_storage.title,
text: updraftplus_tour_i18n.settings_remote_storage.text,
attachTo: {
element: 'label[for=updraft_servicecheckbox_updraftvault]',
on: 'top'
},
buttons: [
{
classes: 'udp-tour-back',
text: updraftplus_tour_i18n.back,
action: function() {
main_tour.back();
}
},
{
classes: button_classes,
text: updraftplus_tour_i18n.next,
action: function() {
if ($('#updraft_servicecheckbox_updraftvault').is(':checked')) {
main_tour.show('vault_selected')
} else {
main_tour.next();
}
}
}
],
when: {
show: function(p) {
$('label[for=updraft_servicecheckbox_updraftvault]').addClass('emphasize');
scroll_to_popup();
},
hide: function(p) {
$('label[for=updraft_servicecheckbox_updraftvault]').removeClass('emphasize');
}
}
});
// Settings - more + updraftcentral
main_tour.addStep('settings_more', {
title: updraftplus_tour_i18n.settings_more.title,
text: updraftplus_tour_i18n.settings_more.text,
attachTo: '.js-tour-settings-more top',
scrollTo: false,
tetherOptions: {},
buttons: [
{
classes: 'udp-tour-back',
text: updraftplus_tour_i18n.back,
action: function() {
main_tour.back();
}
},
{
classes: button_classes,
text: updraftplus_tour_i18n.next,
action: main_tour.next
}
],
when: {
show: function() {
scroll_to_popup();
}
}
});
// Save settings
main_tour.addStep('settings_save', {
title: updraftplus_tour_i18n.settings_save.title,
text: updraftplus_tour_i18n.settings_save.text,
attachTo: '#updraftplus-settings-save top',
scrollTo: false,
buttons: [
{
classes: 'udp-tour-back',
text: updraftplus_tour_i18n.back,
action: function() {
main_tour.back();
}
},
{
classes: button_classes,
text: updraftplus_tour_i18n.next,
action: function() {
if ($('#updraftcentral_cloud_connect_container').length) {
main_tour.show('updraft_central');
} else {
$('#updraft-navtab-addons').trigger('click');
}
}
}
],
when: {
show: function() {
scroll_to_popup();
}
}
});
// UDCentral
main_tour.addStep('updraft_central', {
title: updraftplus_tour_i18n.updraft_central.title,
text: updraftplus_tour_i18n.updraft_central.text,
attachTo: '#updraftcentral_cloud_connect_container top',
scrollTo: false,
buttons: [
{
classes: 'udp-tour-back',
text: updraftplus_tour_i18n.back,
action: function() {
main_tour.back();
}
},
{
classes: button_classes,
text: updraftplus_tour_i18n.next,
action: function() {
$('#updraft-navtab-addons').trigger('click');
}
}
],
when: {
show: function() {
scroll_to_popup();
}
}
});
// Premium + addons
main_tour.addStep('premium', {
title: updraftplus_tour_i18n.premium.title,
text: updraftplus_tour_i18n.premium.text,
attachTo: updraftplus_tour_i18n.premium.attach_to,
scrollTo: false,
buttons: [
{
classes: 'udp-tour-back',
text: updraftplus_tour_i18n.back,
action: function() {
main_tour.going_somewhere = true;
$('#updraft-navtab-settings').trigger('click');
if ($('#updraftcentral_cloud_connect_container').length) {
main_tour.show('updraft_central');
} else {
main_tour.show('settings_save');
}
scroll_to_popup();
}
},
{
classes: button_classes,
text: updraftplus_tour_i18n.premium.button,
action: main_tour.cancel
}
],
when: {
show: function() {
window.scroll(0, 0)
}
}
});
// EXTRA STEPS
// Premium + addons
main_tour.addStep('vault_selected', {
title: updraftplus_tour_i18n.vault_selected.title,
text: updraftplus_tour_i18n.vault_selected.text,
attachTo: '#updraftvault_settings_cell top',
scrollTo: false,
buttons: [
{
classes: 'udp-tour-back',
text: updraftplus_tour_i18n.back,
action: function() {
main_tour.show('settings_remote_storage');
}
},
{
classes: button_classes,
text: updraftplus_tour_i18n.next,
action: function() {
main_tour.show('settings_more');
}
}
],
when: {
show: function(p) {
scroll_to_popup();
}
}
});
// Saved settings
main_tour.addStep('settings_saved', {
title: updraftplus_tour_i18n.settings_saved.title,
text: updraftplus_tour_i18n.settings_saved.text,
attachTo: '#updraftplus-settings-save top',
scrollTo: false,
buttons: [
{
classes: 'udp-tour-back',
text: updraftplus_tour_i18n.back,
action: function() {
main_tour.show('settings_more');
}
},
{
classes: button_classes,
text: updraftplus_tour_i18n.next,
action: function() {
if ($('#updraftcentral_cloud_connect_container').length) {
main_tour.show('updraft_central');
} else {
$('#updraft-navtab-addons').trigger('click');
}
}
}
],
when: {
show: function() {
scroll_to_popup();
}
}
});
main_tour.steps.forEach(function(step) {
step.once('show', function() {
// Adds a Close label near the (x)
var close_btn = $(this.el).find('header .shepherd-cancel-link');
close_btn.attr('data-btntext', updraftplus_tour_i18n.close);
// opens the settings tab
$(this.el).find('.js--go-to-settings').on('click', function(e) {
e.preventDefault();
$('#updraft-navtab-settings').trigger('click');
});
})
});
// on Cancel
main_tour.on('cancel', cancel_tour);
plugins_page_tour.on('cancel', cancel_tour);
/**
* Cancel tour
*/
function cancel_tour() {
// The tour is either finished or [x] was clicked
main_tour.canceled = true;
var data = {
current_step: this.getCurrentStep().id
};
if ('function' === typeof updraft_send_command) {
updraft_send_command(
'set_tour_status',
data,
function(response) {
console.log('Successfully deactivated tour');
},
{ alert_on_error: false }
);
} else {
jQuery.ajax({
url: ajaxurl,
type: 'POST',
data: {
action: 'updraft_ajax',
subaction: 'set_tour_status',
nonce: updraftplus_tour_i18n.nonce,
current_step: this.getCurrentStep().id
}
});
}
};
/**
* Scroll to Popup
*
* @param {Object} step
*/
var scroll_to_popup = function(step) {
main_tour.going_somewhere = false;
if (!step) {
step = main_tour.getCurrentStep();
}
var popup = $(step.el);
var target = $(step.tether.target);
$('body, html').animate({
scrollTop: popup.offset().top - 50
}, 500, function() {
window.scrollTo(0, popup.offset().top - 50);
});
}
// If $('#updraft-backupnow-button'), start tour
if ($('#updraft-backupnow-button').length) {
/*
Setup other events
*/
// Backup now
$('#updraft-backupnow-button').on('click', function(e) {
if (!main_tour.canceled) {
main_tour.show('backup_options');
}
});
// Click on status tab
$('#updraft-navtab-backups').on('click', function(e) {
if (!main_tour.canceled) {
main_tour.show('backup_now');
}
});
$(document).on('click', 'label[for=updraft_servicecheckbox_updraftvault]', function(e) {
if (!main_tour.canceled && !$('#updraft_servicecheckbox_updraftvault').is(':checked')) {
setTimeout(function() {
main_tour.show('vault_selected');
}, 200);
}
});
// close backup backupnow modal
$('#updraft-backupnow-modal').on("dialogclose", function(event, ui) {
if (!main_tour.canceled) {
main_tour.show('backup_now');
}
});
// Backup now - manual backup is starting
$('.js-tour-backup-now-button').on('click', function(e) {
if (!main_tour.canceled) {
main_tour.show('backup_now_btn_success');
}
})
// settings tab
$('#updraft-navtab-settings').on('click', function(e) {
if (!main_tour.canceled && !main_tour.going_somewhere) {
main_tour.show('settings_timing');
}
});
// addons tab
$('#updraft-navtab-addons').on('click', function(e) {
if (!main_tour.canceled) {
main_tour.show('premium');
}
});
// Tabs without guide
$('#updraft-navtab-migrate, #updraft-navtab-expert').on('click', function(e) {
if (!main_tour.canceled) {
main_tour.hide();
}
});
// start tour
main_tour.start();
// go back to first tab
if (updraftplus_tour_i18n.show_tab_on_load) {
$(updraftplus_tour_i18n.show_tab_on_load).trigger('click');
} else {
$('#updraft-navtab-backups').trigger('click');
}
}
// start plugins page tour
if ($('.js-updraftplus-settings').length) {
plugins_page_tour.start();
}
});
})(jQuery);

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,346 @@
var updraft_restore_screen = true;
jQuery(function($) {
var job_id = $('#updraftplus_ajax_restore_job_id').val();
var action = $('#updraftplus_ajax_restore_action').val();
var updraft_restore_update_timer;
var last_received = 0;
var $output = $('#updraftplus_ajax_restore_output');
var $steps_list = $('.updraft_restore_components_list');
var previous_stage;
var current_stage;
var logged_out = false;
var auto_resume_count = 0;
var server_500_count = 0;
$('#updraft-restore-hidethis').remove();
updraft_restore_command(job_id, action);
/**
* This function will start the restore over ajax for the passed in job_id.
*
* @param {string} job_id - the restore job id
* @param {string} action - the restore action
*/
function updraft_restore_command(job_id, action) {
var xhttp = new XMLHttpRequest();
var xhttp_data = 'action=' + action + '&updraftplus_ajax_restore=do_ajax_restore&job_id=' + job_id;
if ('updraft_ajaxrestore' === action) xhttp_data += '&nonce=' + updraft_credentialtest_nonce;
var previous_data_length = 0;
var show_alert = true;
var debug = $('#updraftplus_ajax_restore_debug').length;
xhttp.open("POST", ajaxurl, true);
xhttp.onprogress = function(response) {
if (response.currentTarget.status >= 200 && response.currentTarget.status < 300) {
if (-1 !== response.currentTarget.responseText.indexOf('<html')) {
if (show_alert) {
show_alert = false;
alert("UpdraftPlus " + updraftlion.ajax_restore_error + ' ' + updraftlion.ajax_restore_invalid_response);
}
$output.append("UpdraftPlus " + updraftlion.ajax_restore_error + ' ' + updraftlion.ajax_restore_invalid_response);
console.log("UpdraftPlus restore error: HTML detected in response could be a copy of the WordPress front page caused by mod_security");
console.log(response.currentTarget.responseText);
return;
}
if (previous_data_length == response.currentTarget.responseText.length) return;
last_received = Math.round(Date.now() / 1000);
var responseText = response.currentTarget.responseText.substr(previous_data_length);
previous_data_length = response.currentTarget.responseText.length;
var i = 0;
var end_of_json = 0;
// Check if there is restore information json in the response if so process it and remove it from the response so that it does not make it to page
while (i < responseText.length) {
var buffer = responseText.substr(i, 7);
if ('RINFO:{' == buffer) {
// Output what precedes the RINFO:
$output
.append(responseText.substring(end_of_json, i).trim()) // add the text to the activity log
.scrollTop($output[0].scrollHeight); // Scroll to the bottom of the box
// Grab what follows RINFO:
var analyse_it = ud_parse_json(responseText.substr(i), true);
if (1 == debug) { console.log(analyse_it); }
updraft_restore_process_data(analyse_it.parsed);
// move the for loop counter to the end of the json
end_of_json = i + analyse_it.json_last_pos - analyse_it.json_start_pos + 6;
// When the for loop goes round again, it will start with the end of the JSON
i = end_of_json;
} else {
i++;
}
}
$output.append(responseText.substr(end_of_json).trim()).scrollTop($output[0].scrollHeight);
// check if the fylesystem form is displayed
if ($output.find('input[name=connection_type]').length && $output.find('#upgrade').length) {
updraft_restore_setup_filesystem_form();
}
} else {
if (0 == response.currentTarget.status) {
$output.append("UpdraftPlus " + updraftlion.ajax_restore_error + ' ' + updraftlion.ajax_restore_contact_failed);
} else {
$output.append("UpdraftPlus " + updraftlion.ajax_restore_error + ' ' + response.currentTarget.status + ' ' + response.currentTarget.statusText);
}
console.log("UpdraftPlus restore error: " + response.currentTarget.status + ' ' + response.currentTarget.statusText);
console.log(response.currentTarget);
}
}
xhttp.onload = function() {
var $result = $output.find('.updraft_restore_successful, .updraft_restore_error');
// if we don't find the result, exit
if (!$result.length) return;
var $result_output = $('.updraft_restore_result');
$result_output.slideDown();
$steps_list.slideUp();
$steps_list.siblings('h2').slideUp();
if ($result.is('.updraft_restore_successful')) {
$result_output.find('.dashicons').addClass('dashicons-yes');
$result_output.find('.updraft_restore_result--text').text($result.text());
$result_output.addClass('restore-success');
} else if ($result.is('.updraft_restore_error')) {
$result_output.find('.dashicons').addClass('dashicons-no-alt');
$result_output.find('.updraft_restore_result--text').text($result.text());
$result_output.addClass('restore-error');
}
// scroll log to the bottom
setTimeout(function() {
$output.scrollTop($output[0].scrollHeight);
}, 500);
}
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhttp.send(xhttp_data);
}
/**
* This function will process the parsed restore data and make updates to the front end
*
* @param {object} restore_data - the restore data object contains information on the restore progress to update the front end
*/
function updraft_restore_process_data(restore_data) {
// If the stage is started then we want to start our restore timer as the restore has now actually began
if ('started' == restore_data.stage) {
updraft_restore_update_timer = setInterval(function () {
updraft_restore_update();
}, 5000);
}
// If the stage is finished then we want to remove our timer and clean up the UI
if ('finished' == restore_data.stage && updraft_restore_update_timer) {
clearInterval(updraft_restore_update_timer);
$('#updraftplus_ajax_restore_last_activity').html('');
}
if (restore_data) {
if ('state' == restore_data.type || 'state_change' == restore_data.type) {
console.log(restore_data.stage, restore_data.data);
if ('files' == restore_data.stage) {
current_stage = restore_data.data.entity;
} else {
current_stage = restore_data.stage;
}
var $current = $steps_list.find('[data-component='+current_stage+']');
// show simplified activity log next to the component's label
if ('files' == restore_data.stage) {
$current.find('.updraft_component--progress').html(' — '+updraftlion.restore_files_progress.replace('%s1', '<strong>'+(restore_data.data.fileindex)+'</strong>').replace('%s2', '<strong>'+restore_data.data.total_files+'</strong>'));
}
if ('db' == restore_data.stage) {
if (restore_data.data.hasOwnProperty('stage')) {
if ('table' == restore_data.data.stage) {
$current.find('.updraft_component--progress').html(' — '+updraftlion.restore_db_table_progress.replace('%s', '<strong>'+(restore_data.data.table)+'</strong>'));
} else if ('stored_routine' == restore_data.data.stage) {
$current.find('.updraft_component--progress').html(' — '+updraftlion.restore_db_stored_routine_progress.replace('%s', '<strong>'+(restore_data.data.routine_name)+'</strong>'));
} else if ('finished' == restore_data.data.stage) {
$current.find('.updraft_component--progress').html(' — '+updraftlion.finished);
} else if ('begun' == restore_data.data.stage) {
$current.find('.updraft_component--progress').html(' — '+updraftlion.begun+'...');
}
}
}
if (previous_stage !== current_stage) {
if (previous_stage) {
var $prev = $steps_list.find('[data-component='+previous_stage+']');
// empty the line's status
$prev.find('.updraft_component--progress').html('');
$prev.removeClass('active').addClass('done');
}
if ('finished' == current_stage) {
$current.addClass('done');
$steps_list.find('[data-component]').each(function(index, el) {
$el = $(el);
if (!$el.is('.done')) {
$el.addClass('error');
}
});
if (restore_data.data.hasOwnProperty('actions') && 'object' == typeof restore_data.data.actions) {
updraft_restore_get_pages(restore_data.data.urls, function(pages_found) {
if (!$.isEmptyObject(pages_found)) {
$('.updraft_restore_result').before(updraftlion.ajax_restore_404_detected);
$.each(pages_found, function(index, url) {
$('.updraft_missing_pages').append('<li>'+url+'</li>');
});
}
});
$.each(restore_data.data.actions, function(index, item) {
$steps_list.after('<a href="'+item+'" class="button button-primary">'+index+'</a>');
});
}
} else {
$current.addClass('active');
}
}
previous_stage = current_stage;
}
}
}
/**
* This function will update the time in the front end that we last received data, after 120 seconds call the resume restore notice
*/
function updraft_restore_update() {
var current_time = Math.round(Date.now() / 1000);
var last_activity = current_time - last_received;
if (60 > last_activity) {
$('#updraftplus_ajax_restore_last_activity').html(updraftlion.last_activity.replace('%d', last_activity));
} else {
var resume_in = 120 - last_activity;
if (0 < resume_in) {
$('#updraftplus_ajax_restore_last_activity').html(updraftlion.no_recent_activity.replace('%d', resume_in));
} else {
$('#updraftplus_ajax_restore_last_activity').html('');
updraft_restore_resume_notice();
}
}
}
/**
* This will move the filesystem form to take all the required space
*/
function updraft_restore_setup_filesystem_form() {
// Hiding things is handled via CSS
$('.updraft_restore_main').addClass('show-credentials-form');
if ($('#message').length) {
$('.restore-credential-errors .restore-credential-errors--list').appendTo($('#message'));
$('.restore-credential-errors .restore-credential-errors--link').appendTo($('#message'));
}
}
/**
* This function will make a call to the backend to get the resume restore notice so the user can resume the timed out restore from the same page
*/
function updraft_restore_resume_notice() {
updraft_send_command('get_restore_resume_notice', { job_id: job_id }, function(response) {
if (response.hasOwnProperty('status') && 'success' == response.status && response.hasOwnProperty('html')) {
if (updraft_restore_update_timer) clearInterval(updraft_restore_update_timer);
if ('plugins' != current_stage && 'db' != current_stage && 5 > auto_resume_count) {
auto_resume_count++;
updraft_restore_command(job_id, 'updraft_ajaxrestore_continue');
} else {
$('.updraft_restore_main--components').prepend(response.html);
}
} else if (response.hasOwnProperty('error_code') && response.hasOwnProperty('error_message')) {
if (updraft_restore_update_timer) clearInterval(updraft_restore_update_timer);
alert(response.error_code + ': ' + response.error_message);
console.log(response.error_code + ': ' + response.error_message);
}
}, {
error_callback: function (response, status, error_code, resp) {
if (500 == response.status && 3 > server_500_count) {
server_500_count++;
updraft_restore_command(job_id, 'updraft_ajaxrestore_continue');
} else {
updraft_restore_process_data({stage: 'finished', type: 'state_change'})
var error_message = "updraft_send_command: error: " + status + " (" + error_code + ")";
alert(error_message);
console.log(error_message);
console.log(response);
}
}
});
}
/**
* This function will make a call to the passed in urls and check if the response code is a 404 if it is then add it to the array of urls that are not found and return it via a callback
*
* @param {array} urls - the urls we want to test
* @param {Function} callback - will be called with the array of urls not found
*/
function updraft_restore_get_pages(urls, callback) {
var urls_not_found = [];
var ajax_requests = [];
$.each(urls, function(index, url) {
var d = $.Deferred();
ajax_requests.push(d.promise());
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (4 == this.readyState) {
if (404 == this.status) urls_not_found.push(url);
d.resolve();
}
};
xhttp.open('GET', url, true);
xhttp.send(null);
});
$.when.apply($, ajax_requests).done(function() {
callback(urls_not_found);
});
}
$('#updraftplus_ajax_restore_progress').on('click', '#updraft_restore_resume', function(e) {
e.preventDefault();
$("#updraftplus_ajax_restore_progress").slideUp(1000, function () {
$(this).remove();
});
updraft_restore_command(job_id, 'updraft_ajaxrestore_continue');
});
$(document).on('heartbeat-tick', function (event, heartbeat_data) {
if (!heartbeat_data.hasOwnProperty('wp-auth-check')) return;
// check if we are logged out
if (!heartbeat_data["wp-auth-check"]) {
logged_out = true;
return;
}
// if we were previously logged out but are now logged in retry the restore
if (logged_out && heartbeat_data["wp-auth-check"]) {
last_received = Math.round(Date.now() / 1000);
logged_out = false;
}
if (!heartbeat_data.hasOwnProperty('updraftplus')) return;
var updraftplus_data = heartbeat_data.updraftplus;
// if we are logged in, check if theres a new nonce
if (updraftplus_data.hasOwnProperty('updraft_credentialtest_nonce')) {
updraft_credentialtest_nonce = updraftplus_data.updraft_credentialtest_nonce;
last_received = Math.round(Date.now() / 1000);
}
});
});