=' ) ) { add_filter( 'http_request_timeout', array( $this, 'set_timeout_for_images' ), 10, 2 ); } } /** * Set the timeout for the HTTP request by request URL. * * E.g. If URL is images (jpg|png|gif|jpeg) are from the domain `https://websitedemos.net` then we have set the timeout by 30 seconds. Default 5 seconds. * * @since 1.3.8 * * @param int $timeout_value Time in seconds until a request times out. Default 5. * @param string $url The request URL. */ function set_timeout_for_images( $timeout_value, $url ) { // URL not contain `https://websitedemos.net` then return $timeout_value. if ( strpos( $url, 'https://websitedemos.net' ) === false ) { return $timeout_value; } // Check is image URL of type jpg|png|gif|jpeg. if ( Astra_Sites_Image_Importer::get_instance()->is_image_url( $url ) ) { $timeout_value = 30; } return $timeout_value; } /** * Load WordPress WXR importer. */ public function load_importer() { require_once ASTRA_SITES_DIR . 'inc/importers/wxr-importer/class-astra-wxr-importer.php'; } /** * Start Site Import * * @since 1.1.0 * @return void */ function import_start() { if ( ! current_user_can( 'customize' ) ) { wp_send_json_error( __( 'You have not "customize" access to import the Astra site.', 'astra-sites' ) ); } $demo_api_uri = isset( $_POST['api_url'] ) ? esc_url( $_POST['api_url'] ) : ''; if ( ! empty( $demo_api_uri ) ) { $demo_data = self::get_astra_single_demo( $demo_api_uri ); update_option( 'astra_sites_import_data', $demo_data ); if ( is_wp_error( $demo_data ) ) { wp_send_json_error( $demo_data->get_error_message() ); } else { $log_file = Astra_Sites_Importer_Log::add_log_file_url(); if ( isset( $log_file['url'] ) && ! empty( $log_file['url'] ) ) { $demo_data['log_file'] = $log_file['url']; } do_action( 'astra_sites_import_start', $demo_data, $demo_api_uri ); } wp_send_json_success( $demo_data ); } else { wp_send_json_error( __( 'Request site API URL is empty. Try again!', 'astra-sites' ) ); } } /** * Import WP Forms * * @since 1.2.14 * * @return void */ function import_wpforms() { $wpforms_url = ( isset( $_REQUEST['wpforms_url'] ) ) ? urldecode( $_REQUEST['wpforms_url'] ) : ''; $ids_mapping = array(); if ( ! empty( $wpforms_url ) && function_exists( 'wpforms_encode' ) ) { // Download XML file. $xml_path = Astra_Sites_Helper::download_file( $wpforms_url ); if ( $xml_path['success'] ) { if ( isset( $xml_path['data']['file'] ) ) { $ext = strtolower( pathinfo( $xml_path['data']['file'], PATHINFO_EXTENSION ) ); if ( 'json' === $ext ) { $forms = json_decode( file_get_contents( $xml_path['data']['file'] ), true ); if ( ! empty( $forms ) ) { foreach ( $forms as $form ) { $title = ! empty( $form['settings']['form_title'] ) ? $form['settings']['form_title'] : ''; $desc = ! empty( $form['settings']['form_desc'] ) ? $form['settings']['form_desc'] : ''; $new_id = post_exists( $title ); if ( ! $new_id ) { $new_id = wp_insert_post( array( 'post_title' => $title, 'post_status' => 'publish', 'post_type' => 'wpforms', 'post_excerpt' => $desc, ) ); // Set meta for tracking the post. update_post_meta( $new_id, '_astra_sites_imported_wp_forms', true ); Astra_Sites_Importer_Log::add( 'Inserted WP Form ' . $new_id ); } if ( $new_id ) { // ID mapping. $ids_mapping[ $form['id'] ] = $new_id; $form['id'] = $new_id; wp_update_post( array( 'ID' => $new_id, 'post_content' => wpforms_encode( $form ), ) ); } } } } } } } update_option( 'astra_sites_wpforms_ids_mapping', $ids_mapping ); wp_send_json_success( $ids_mapping ); } /** * Import Customizer Settings. * * @since 1.0.14 * @return void */ function import_customizer_settings() { $customizer_data = ( isset( $_POST['customizer_data'] ) ) ? (array) json_decode( stripcslashes( $_POST['customizer_data'] ), 1 ) : array(); if ( ! empty( $customizer_data ) ) { Astra_Sites_Importer_Log::add( 'Imported Customizer Settings ' . json_encode( $customizer_data ) ); // Set meta for tracking the post. update_option( '_astra_sites_old_customizer_data', $customizer_data ); Astra_Customizer_Import::instance()->import( $customizer_data ); wp_send_json_success( $customizer_data ); } else { wp_send_json_error( __( 'Customizer data is empty!', 'astra-sites' ) ); } } /** * Prepare XML Data. * * @since 1.1.0 * @return void */ function prepare_xml_data() { if ( ! class_exists( 'XMLReader' ) ) { wp_send_json_error( __( 'If XMLReader is not available, it imports all other settings and only skips XML import. This creates an incomplete website. We should bail early and not import anything if this is not present.', 'astra-sites' ) ); } $wxr_url = ( isset( $_REQUEST['wxr_url'] ) ) ? urldecode( $_REQUEST['wxr_url'] ) : ''; if ( isset( $wxr_url ) ) { Astra_Sites_Importer_Log::add( 'Importing from XML ' . $wxr_url ); // Download XML file. $xml_path = Astra_Sites_Helper::download_file( $wxr_url ); if ( $xml_path['success'] ) { if ( isset( $xml_path['data']['file'] ) ) { $data = Astra_WXR_Importer::instance()->get_xml_data( $xml_path['data']['file'] ); $data['xml'] = $xml_path['data']; wp_send_json_success( $data ); } else { wp_send_json_error( __( 'There was an error downloading the XML file.', 'astra-sites' ) ); } } else { wp_send_json_error( $xml_path['data'] ); } } else { wp_send_json_error( __( 'Invalid site XML file!', 'astra-sites' ) ); } } /** * Import Options. * * @since 1.0.14 * @return void */ function import_options() { $options_data = ( isset( $_POST['options_data'] ) ) ? (array) json_decode( stripcslashes( $_POST['options_data'] ), 1 ) : ''; if ( ! empty( $options_data ) ) { // Set meta for tracking the post. if ( is_array( $options_data ) ) { Astra_Sites_Importer_Log::add( 'Imported - Site Options ' . json_encode( $options_data ) ); update_option( '_astra_sites_old_site_options', $options_data ); } $options_importer = Astra_Site_Options_Import::instance(); $options_importer->import_options( $options_data ); wp_send_json_success( $options_data ); } else { wp_send_json_error( __( 'Site options are empty!', 'astra-sites' ) ); } } /** * Import Widgets. * * @since 1.0.14 * @return void */ function import_widgets() { $widgets_data = ( isset( $_POST['widgets_data'] ) ) ? (object) json_decode( stripcslashes( $_POST['widgets_data'] ) ) : ''; Astra_Sites_Importer_Log::add( 'Imported - Widgets ' . json_encode( $widgets_data ) ); if ( ! empty( $widgets_data ) ) { $widgets_importer = Astra_Widget_Importer::instance(); $status = $widgets_importer->import_widgets_data( $widgets_data ); // Set meta for tracking the post. if ( is_object( $widgets_data ) ) { $widgets_data = (array) $widgets_data; update_option( '_astra_sites_old_widgets_data', $widgets_data ); } wp_send_json_success( $widgets_data ); } else { wp_send_json_error( __( 'Widget data is empty!', 'astra-sites' ) ); } } /** * Import End. * * @since 1.0.14 * @return void */ function import_end() { do_action( 'astra_sites_import_complete' ); } /** * Get single demo. * * @since 1.0.0 * * @param (String) $demo_api_uri API URL of a demo. * * @return (Array) $astra_demo_data demo data for the demo. */ public static function get_astra_single_demo( $demo_api_uri ) { // default values. $remote_args = array(); $defaults = array( 'id' => '', 'astra-site-widgets-data' => '', 'astra-site-customizer-data' => '', 'astra-site-options-data' => '', 'astra-post-data-mapping' => '', 'astra-site-wxr-path' => '', 'astra-site-wpforms-path' => '', 'astra-enabled-extensions' => '', 'astra-custom-404' => '', 'required-plugins' => '', 'astra-site-taxonomy-mapping' => '', ); $api_args = apply_filters( 'astra_sites_api_args', array( 'timeout' => 15, ) ); // Use this for premium demos. $request_params = apply_filters( 'astra_sites_api_params', array( 'purchase_key' => '', 'site_url' => '', ) ); $demo_api_uri = add_query_arg( $request_params, $demo_api_uri ); // API Call. $response = wp_remote_get( $demo_api_uri, $api_args ); if ( is_wp_error( $response ) || ( isset( $response->status ) && 0 === $response->status ) ) { if ( isset( $response->status ) ) { $data = json_decode( $response, true ); } else { return new WP_Error( 'api_invalid_response_code', $response->get_error_message() ); } } else { $data = json_decode( wp_remote_retrieve_body( $response ), true ); } $data = json_decode( wp_remote_retrieve_body( $response ), true ); if ( ! isset( $data['code'] ) ) { $remote_args['id'] = $data['id']; $remote_args['astra-site-widgets-data'] = json_decode( $data['astra-site-widgets-data'] ); $remote_args['astra-site-customizer-data'] = $data['astra-site-customizer-data']; $remote_args['astra-site-options-data'] = $data['astra-site-options-data']; $remote_args['astra-post-data-mapping'] = $data['astra-post-data-mapping']; $remote_args['astra-site-wxr-path'] = $data['astra-site-wxr-path']; $remote_args['astra-site-wpforms-path'] = $data['astra-site-wpforms-path']; $remote_args['astra-enabled-extensions'] = $data['astra-enabled-extensions']; $remote_args['astra-custom-404'] = $data['astra-custom-404']; $remote_args['required-plugins'] = $data['required-plugins']; $remote_args['astra-site-taxonomy-mapping'] = $data['astra-site-taxonomy-mapping']; } // Merge remote demo and defaults. return wp_parse_args( $remote_args, $defaults ); } /** * Clear Cache. * * @since 1.0.9 */ public function clear_cache() { // Clear 'Elementor' file cache. if ( class_exists( '\Elementor\Plugin' ) ) { Elementor\Plugin::$instance->posts_css_manager->clear_cache(); } // Clear 'Builder Builder' cache. if ( is_callable( 'FLBuilderModel::delete_asset_cache_for_all_posts' ) ) { FLBuilderModel::delete_asset_cache_for_all_posts(); } // Clear 'Astra Addon' cache. if ( is_callable( 'Astra_Minify::refresh_assets' ) ) { Astra_Minify::refresh_assets(); } Astra_Sites_Importer_Log::add( 'Complete ' ); } /** * Reset customizer data * * @since 1.3.0 * @return void */ function reset_customizer_data() { Astra_Sites_Importer_Log::add( 'Deleted customizer Settings ' . json_encode( get_option( 'astra-settings', array() ) ) ); delete_option( 'astra-settings' ); wp_send_json_success(); } /** * Reset site options * * @since 1.3.0 * @return void */ function reset_site_options() { $options = get_option( '_astra_sites_old_site_options', array() ); Astra_Sites_Importer_Log::add( 'Deleted - Site Options ' . json_encode( $options ) ); if ( $options ) { foreach ( $options as $option_key => $option_value ) { delete_option( $option_key ); } } wp_send_json_success(); } /** * Reset widgets data * * @since 1.3.0 * @return void */ function reset_widgets_data() { $old_widgets = get_option( '_astra_sites_old_widgets_data', array() ); Astra_Sites_Importer_Log::add( 'DELETED - WIDGETS ' . json_encode( $old_widgets ) ); if ( $old_widgets ) { $sidebars_widgets = get_option( 'sidebars_widgets', array() ); foreach ( $old_widgets as $sidebar_id => $widgets ) { if ( $widgets ) { foreach ( $widgets as $widget_key => $widget_data ) { if ( isset( $sidebars_widgets['wp_inactive_widgets'] ) ) { if ( ! in_array( $widget_key, $sidebars_widgets['wp_inactive_widgets'], true ) ) { $sidebars_widgets['wp_inactive_widgets'][] = $widget_key; } } } } } update_option( 'sidebars_widgets', $sidebars_widgets ); } wp_send_json_success(); } /** * Delete imported posts * * @since 1.3.0 * @return void */ function delete_imported_posts() { $post_id = isset( $_REQUEST['post_id'] ) ? absint( $_REQUEST['post_id'] ) : ''; $message = 'Deleted - Post ID ' . $post_id . ' - ' . get_post_type( $post_id ) . ' - ' . get_the_title( $post_id ); Astra_Sites_Importer_Log::add( $message ); wp_delete_post( $post_id, true ); /* translators: %s is the post ID */ wp_send_json_success( $message ); } /** * Delete imported WP forms * * @since 1.3.0 * @return void */ function delete_imported_wp_forms() { $post_id = isset( $_REQUEST['post_id'] ) ? absint( $_REQUEST['post_id'] ) : ''; $message = 'Deleted - Form ID ' . $post_id . ' - ' . get_post_type( $post_id ) . ' - ' . get_the_title( $post_id ); Astra_Sites_Importer_Log::add( $message ); wp_delete_post( $post_id, true ); /* translators: %s is the form ID */ wp_send_json_success( $message ); } /** * Delete imported terms * * @since 1.3.0 * @return void */ function delete_imported_terms() { $term_id = isset( $_REQUEST['term_id'] ) ? absint( $_REQUEST['term_id'] ) : ''; $message = ''; if ( $term_id ) { $term = get_term( $term_id ); if ( $term ) { $message = 'Deleted - Term ' . $term_id . ' - ' . $term->name . ' ' . $term->taxonomy; Astra_Sites_Importer_Log::add( $message ); wp_delete_term( $term_id, $term->taxonomy ); } } /* translators: %s is the term ID */ wp_send_json_success( $message ); } } /** * Kicking this off by calling 'get_instance()' method */ Astra_Sites_Importer::get_instance(); endif;