PATH:
home
/
lab2454c
/
archfort.com
/
wp-content
/
plugins
/
all-in-one-wp-migration-master
/
lib
/
controller
<?php /** * Copyright (C) 2014-2018 ServMask Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗ * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝ * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝ * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗ * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗ * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ */ class Ai1wm_Export_Controller { public static function index() { Ai1wm_Template::render( 'export/index' ); } public static function export( $params = array() ) { global $wp_filter; ai1wm_setup_environment(); // Set params if ( empty( $params ) ) { $params = stripslashes_deep( array_merge( $_GET, $_POST ) ); } // Set priority $priority = 5; if ( isset( $params['priority'] ) ) { $priority = (int) $params['priority']; } // Set secret key $secret_key = null; if ( isset( $params['secret_key'] ) ) { $secret_key = trim( $params['secret_key'] ); } try { // Ensure that unauthorized people cannot access export action ai1wm_verify_secret_key( $secret_key ); } catch ( Ai1wm_Not_Valid_Secret_Key_Exception $e ) { exit; } // Get hook if ( isset( $wp_filter['ai1wm_export'] ) && ( $filters = $wp_filter['ai1wm_export'] ) ) { // WordPress 4.7 introduces new class for working with filters/actions called WP_Hook // which adds another level of abstraction and we need to address it. if ( isset( $filters->callbacks ) ) { $filters = $filters->callbacks; } ksort( $filters ); // Loop over filters while ( $hooks = current( $filters ) ) { if ( $priority === key( $filters ) ) { foreach ( $hooks as $hook ) { try { // Run function hook $params = call_user_func_array( $hook['function'], array( $params ) ); // Log request Ai1wm_Log::export( $params ); } catch ( Exception $e ) { Ai1wm_Status::error( __( 'Unable to export', AI1WM_PLUGIN_NAME ), $e->getMessage() ); Ai1wm_Notification::error( __( 'Unable to export', AI1WM_PLUGIN_NAME ), $e->getMessage() ); Ai1wm_Directory::delete( ai1wm_storage_path( $params ) ); exit; } } // Set completed $completed = true; if ( isset( $params['completed'] ) ) { $completed = (bool) $params['completed']; } // Do request if ( $completed === false || ( $next = next( $filters ) ) && ( $params['priority'] = key( $filters ) ) ) { if ( isset( $params['ai1wm_manual_export'] ) ) { echo json_encode( $params ); exit; } wp_remote_post( apply_filters( 'ai1wm_http_export_url', admin_url( 'admin-ajax.php?action=ai1wm_export' ) ), array( 'timeout' => apply_filters( 'ai1wm_http_export_timeout', 5 ), 'blocking' => apply_filters( 'ai1wm_http_export_blocking', false ), 'sslverify' => apply_filters( 'ai1wm_http_export_sslverify', false ), 'headers' => apply_filters( 'ai1wm_http_export_headers', array() ), 'body' => apply_filters( 'ai1wm_http_export_body', $params ), ) ); exit; } } next( $filters ); } } } public static function buttons() { return array( apply_filters( 'ai1wm_export_file', Ai1wm_Template::get_content( 'export/button-file' ) ), apply_filters( 'ai1wm_export_ftp', Ai1wm_Template::get_content( 'export/button-ftp' ) ), apply_filters( 'ai1wm_export_dropbox', Ai1wm_Template::get_content( 'export/button-dropbox' ) ), apply_filters( 'ai1wm_export_gdrive', Ai1wm_Template::get_content( 'export/button-gdrive' ) ), apply_filters( 'ai1wm_export_s3', Ai1wm_Template::get_content( 'export/button-s3' ) ), apply_filters( 'ai1wm_export_b2', Ai1wm_Template::get_content( 'export/button-b2' ) ), apply_filters( 'ai1wm_export_onedrive', Ai1wm_Template::get_content( 'export/button-onedrive' ) ), apply_filters( 'ai1wm_export_box', Ai1wm_Template::get_content( 'export/button-box' ) ), apply_filters( 'ai1wm_export_mega', Ai1wm_Template::get_content( 'export/button-mega' ) ), apply_filters( 'ai1wm_export_digitalocean', Ai1wm_Template::get_content( 'export/button-digitalocean' ) ), apply_filters( 'ai1wm_export_gcloud_storage', Ai1wm_Template::get_content( 'export/button-gcloud-storage' ) ), apply_filters( 'ai1wm_export_azure_storage', Ai1wm_Template::get_content( 'export/button-azure-storage' ) ), apply_filters( 'ai1wm_export_glacier', Ai1wm_Template::get_content( 'export/button-glacier' ) ), apply_filters( 'ai1wm_export_pcloud', Ai1wm_Template::get_content( 'export/button-pcloud' ) ), ); } public static function http_export_headers( $headers = array() ) { if ( ( $user = get_option( AI1WM_AUTH_USER ) ) && ( $password = get_option( AI1WM_AUTH_PASSWORD ) ) ) { if ( ( $hash = base64_encode( sprintf( '%s:%s', $user, $password ) ) ) ) { $headers['Authorization'] = sprintf( 'Basic %s', $hash ); } } return $headers; } }
[-] class-ai1wm-export-controller.php
[edit]
[-] class-ai1wm-feedback-controller.php
[edit]
[-] class-ai1wm-backups-controller.php
[edit]
[+]
..
[-] class-ai1wm-main-controller.php
[edit]
[-] class-ai1wm-updater-controller.php
[edit]
[-] class-ai1wm-import-controller.php
[edit]
[-] class-ai1wm-status-controller.php
[edit]
[-] class-ai1wm-report-controller.php
[edit]