. * * ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗ * ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝ * ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝ * ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗ * ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗ * ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ */ if ( ! defined( 'ABSPATH' ) ) { die( 'Kangaroos cannot jump here' ); } class Ai1wm_Export_Controller { public static function index() { Ai1wm_Template::render( 'export/index' ); } public static function export( $params = array() ) { global $ai1wm_params; ai1wm_setup_environment(); // Set params if ( empty( $params ) ) { $params = stripslashes_deep( array_merge( $_GET, $_POST ) ); } // Set priority if ( ! isset( $params['priority'] ) ) { $params['priority'] = 5; } // 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; } $ai1wm_params = $params; // Loop over filters if ( ( $filters = ai1wm_get_filters( 'ai1wm_export' ) ) ) { while ( $hooks = current( $filters ) ) { if ( intval( $params['priority'] ) === key( $filters ) ) { foreach ( $hooks as $hook ) { try { // Run function hook $params = call_user_func_array( $hook['function'], array( $params ) ); } catch ( Ai1wm_Database_Exception $e ) { if ( defined( 'WP_CLI' ) ) { WP_CLI::error( sprintf( __( 'Unable to export. Error code: %s. %s', AI1WM_PLUGIN_NAME ), $e->getCode(), $e->getMessage() ) ); } else { status_header( $e->getCode() ); ai1wm_json_response( array( 'errors' => array( array( 'code' => $e->getCode(), 'message' => $e->getMessage() ) ) ) ); } Ai1wm_Directory::delete( ai1wm_storage_path( $params ) ); // Check if export is performed from scheduled event if ( isset( $params['event_id'] ) ) { $params['error_message'] = $e->getMessage(); do_action( 'ai1wm_status_export_fail', $params ); } exit; } catch ( Exception $e ) { if ( defined( 'WP_CLI' ) ) { WP_CLI::error( sprintf( __( 'Unable to export: %s', AI1WM_PLUGIN_NAME ), $e->getMessage() ) ); } else { 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 ) ); // Check if export is performed from scheduled event if ( isset( $params['event_id'] ) ) { $params['error_message'] = $e->getMessage(); do_action( 'ai1wm_status_export_fail', $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 ( defined( 'WP_CLI' ) ) { if ( ! defined( 'DOING_CRON' ) ) { continue; } } if ( isset( $params['ai1wm_manual_export'] ) ) { ai1wm_json_response( $params ); exit; } wp_remote_request( apply_filters( 'ai1wm_http_export_url', add_query_arg( array( 'ai1wm_import' => 1 ), admin_url( 'admin-ajax.php?action=ai1wm_export' ) ) ), array( 'method' => apply_filters( 'ai1wm_http_export_method', 'POST' ), 'timeout' => apply_filters( 'ai1wm_http_export_timeout', 10 ), '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 ); } } return $params; } public static function buttons() { $active_filters = array(); $static_filters = array(); // All-in-One WP Migration if ( defined( 'AI1WM_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_file', Ai1wm_Template::get_content( 'export/button-file' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_file', Ai1wm_Template::get_content( 'export/button-file' ) ); } // Add FTP Extension if ( defined( 'AI1WMFE_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_ftp', Ai1wm_Template::get_content( 'export/button-ftp' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_ftp', Ai1wm_Template::get_content( 'export/button-ftp' ) ); } // Add Dropbox Extension if ( defined( 'AI1WMDE_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_dropbox', Ai1wm_Template::get_content( 'export/button-dropbox' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_dropbox', Ai1wm_Template::get_content( 'export/button-dropbox' ) ); } // Add Google Drive Extension if ( defined( 'AI1WMGE_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_gdrive', Ai1wm_Template::get_content( 'export/button-gdrive' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_gdrive', Ai1wm_Template::get_content( 'export/button-gdrive' ) ); } // Add Amazon S3 Extension if ( defined( 'AI1WMSE_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_s3', Ai1wm_Template::get_content( 'export/button-s3' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_s3', Ai1wm_Template::get_content( 'export/button-s3' ) ); } // Add Backblaze B2 Extension if ( defined( 'AI1WMAE_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_b2', Ai1wm_Template::get_content( 'export/button-b2' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_b2', Ai1wm_Template::get_content( 'export/button-b2' ) ); } // Add OneDrive Extension if ( defined( 'AI1WMOE_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_onedrive', Ai1wm_Template::get_content( 'export/button-onedrive' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_onedrive', Ai1wm_Template::get_content( 'export/button-onedrive' ) ); } // Add Box Extension if ( defined( 'AI1WMBE_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_box', Ai1wm_Template::get_content( 'export/button-box' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_box', Ai1wm_Template::get_content( 'export/button-box' ) ); } // Add Mega Extension if ( defined( 'AI1WMEE_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_mega', Ai1wm_Template::get_content( 'export/button-mega' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_mega', Ai1wm_Template::get_content( 'export/button-mega' ) ); } // Add DigitalOcean Spaces Extension if ( defined( 'AI1WMIE_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_digitalocean', Ai1wm_Template::get_content( 'export/button-digitalocean' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_digitalocean', Ai1wm_Template::get_content( 'export/button-digitalocean' ) ); } // Add Google Cloud Storage Extension if ( defined( 'AI1WMCE_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_gcloud_storage', Ai1wm_Template::get_content( 'export/button-gcloud-storage' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_gcloud_storage', Ai1wm_Template::get_content( 'export/button-gcloud-storage' ) ); } // Add Microsoft Azure Extension if ( defined( 'AI1WMZE_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_azure_storage', Ai1wm_Template::get_content( 'export/button-azure-storage' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_azure_storage', Ai1wm_Template::get_content( 'export/button-azure-storage' ) ); } // Add Amazon Glacier Extension if ( defined( 'AI1WMRE_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_glacier', Ai1wm_Template::get_content( 'export/button-glacier' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_glacier', Ai1wm_Template::get_content( 'export/button-glacier' ) ); } // Add pCloud Extension if ( defined( 'AI1WMPE_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_pcloud', Ai1wm_Template::get_content( 'export/button-pcloud' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_pcloud', Ai1wm_Template::get_content( 'export/button-pcloud' ) ); } // Add WebDAV Extension if ( defined( 'AI1WMWE_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_webdav', Ai1wm_Template::get_content( 'export/button-webdav' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_webdav', Ai1wm_Template::get_content( 'export/button-webdav' ) ); } // Add S3 Client Extension if ( defined( 'AI1WMNE_PLUGIN_NAME' ) ) { $active_filters[] = apply_filters( 'ai1wm_export_s3_client', Ai1wm_Template::get_content( 'export/button-s3-client' ) ); } else { $static_filters[] = apply_filters( 'ai1wm_export_s3_client', Ai1wm_Template::get_content( 'export/button-s3-client' ) ); } return array_merge( $active_filters, $static_filters ); } public static function cleanup() { try { // Iterate over storage directory $iterator = new Ai1wm_Recursive_Directory_Iterator( AI1WM_STORAGE_PATH ); // Exclude index.php $iterator = new Ai1wm_Recursive_Exclude_Filter( $iterator, array( 'index.php', 'index.html' ) ); // Loop over folders and files foreach ( $iterator as $item ) { try { if ( $item->getMTime() < ( time() - AI1WM_MAX_STORAGE_CLEANUP ) ) { if ( $item->isDir() ) { Ai1wm_Directory::delete( $item->getPathname() ); } else { Ai1wm_File::delete( $item->getPathname() ); } } } catch ( Exception $e ) { } } } catch ( Exception $e ) { } } }