PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
vendor
/
inpsyde
/
backwpup-restore-shared
/
resources
/
js
/** * Database Restore */ window.BWU = window.BWU || {}; ( function iife( BWU, _, $, backwpupRestoreLocalized ) { 'use strict'; var DatabaseRestore = { /** * Success Callback * * @returns {BWU} this for chaining */ restoreSuccess: function () { $( '#restore_progress' ) .text( backwpupRestoreLocalized.successDatabaseRestored ); this.closeSource(); return this; }, /** * Restore Failed * * @returns {BWU} this for chaining */ restoreFailed: function () { $( '#restore_progress' ) .text( backwpupRestoreLocalized.failedRestore ); this.closeSource(); return this; }, /** * On Open * * @returns {BWU} this for chaining */ onOpen: function () { $( '#start-restore' ) .prop( 'disabled', true ); $( '#restore_progress' ) .text( backwpupRestoreLocalized.restoringDatabase ); return this; }, /** * Close Source * * Close the Event Source. * * @returns {BWU} this for chaining */ closeSource: function () { this.eventSource.close(); $( '#start-restore' ) .prop( 'disabled', false ); return this; }, /** * On Done * * @param {object} data The data object to pass to the callback. * * @returns {BWU} this for chaining */ onDone: function ( data ) { if ( this.errors ) { this.restoreFailed(); } else { this.restoreSuccess(); } // On Success Callback. if ( _.isFunction( this.options.onSuccessCallback ) ) { this.options.onSuccessCallback.call( this, data ); } }, /** * On Message Callback * * The event source callback * * @param {string} message The message from the server. * * @returns {BWU} this for chaining */ onMessage: function ( message ) { var data = JSON.parse( message.data ); if ( 'done' === data.state ) { this.onDone( data ); } // On message Callback if ( _.isFunction( this.options.onMessageCallback ) ) { this.options.onMessageCallback.call( this, data ); } return this; }, /** * On Error * * @returns {BWU} this for chaining */ onError: function (data) { data = JSON.parse(data.data) var message = data.message; var $messageContainer = $('#restore_step'); this.eventSource.close() // Skip if not error. if (!data.state || 'error' !== data.state) { return this } BWU.Functions.printMessageError(message, $messageContainer) $('body').trigger(this.ACTION_DATABASE_RESTORE_ERROR, message) this.errors++ return this }, /** * Restore * * @returns {BWU} this for chaining */ restore: function () { if ( !( 'EventSource' in window ) ) { console.warn( backwpupRestoreLocalized.noEventSourceInWindowObject ); // eslint-disable-line return this; } this.eventSource = new EventSource( this.url + '?action=restore_db&context=event_source&controller=job&backwpup_action_nonce=' + this.nonce ); this.eventSource.onmessage = this.onMessage; this.eventSource.onopen = this.onOpen; this.eventSource.addEventListener( 'log', this.onError ); return this; }, /** * Initialize * * @returns {BWU} this for chaining */ init: function () { return this; }, /** * Construct * * @param {string} url The url where call the server. * @param {string} nonce The nonce for the request. * @param {object} options The options for the object. * * @returns {BWU} this for chaining */ construct: function ( url, nonce, options ) { _.bindAll( this, 'restoreSuccess', 'restoreFailed', 'onOpen', 'closeSource', 'onDone', 'onMessage', 'onError', 'restore', 'init' ); this.eventSource = null; this.url = url; this.nonce = nonce; this.options = { onMessageCallback: null, onSuccessCallback: null }; _.extend( this.options, options ); return this; } }; /** * Factory DatabaseRestore * * @constructor * * @param {string} url The url where call the server. * @param {string} nonce The nonce for the request. * @param {object} options The options for the object. * * @returns {DatabaseRestore} this for chaining */ BWU.Restore.FactoryDatabaseRestore = function FactoryDatabaseRestore ( url, nonce, options ) { return Object.create( DatabaseRestore, { ACTION_DATABASE_RESTORE_ERROR: BWU.Functions.makeConstant( 'backwpup.database_restore_error' ), }).construct(url, nonce, options) } }( window.BWU, window._, window.jQuery, window.backwpupRestoreLocalized ) );
[-] decrypter.js
[edit]
[-] database-restore.js
[edit]
[-] database.min.js
[edit]
[-] restore-functions.min.js
[edit]
[-] database.js
[edit]
[-] decompress.js
[edit]
[-] restore-functions.js
[edit]
[-] decompress.min.js
[edit]
[-] migrate.min.js
[edit]
[-] strategy.js
[edit]
[+]
..
[-] controller.js
[edit]
[-] download.js
[edit]
[-] files-restore.min.js
[edit]
[-] strategy.min.js
[edit]
[-] database-restore.min.js
[edit]
[-] controller.min.js
[edit]
[-] download.min.js
[edit]
[-] files-restore.js
[edit]
[-] migrate.js
[edit]
[-] decrypter.min.js
[edit]