<?php
namespace Elementor\App\Modules\ImportExportCustomization\Runners\Import;
use Elementor\App\Modules\ImportExportCustomization\Utils as ImportExportUtils;
use Elementor\Plugin;
class Elementor_Content extends Import_Runner_Base {
const IMPORT_STATUS_SUCCEEDED = 'succeed';
const IMPORT_STATUS_FAILED = 'failed';
private $show_page_on_front;
private $page_on_front_id;
private $import_session_id;
private $imported_data;
private $processed_posts = [];
private $post_orphans = [];
public function __construct() {
$this->init_page_on_front_data();
}
public static function get_name(): string {
return 'elementor-content';
}
public function should_import( array $data ) {
return (
isset( $data['include'] ) &&
in_array( 'content', $data['include'], true ) &&
! empty( $data['manifest']['content'] ) &&
! empty( $data['extracted_directory_path'] )
);
}
public function import( array $data, array $imported_data ) {
if ( ! function_exists( 'wp_set_post_terms' ) ) {
require_once ABSPATH . 'wp-admin/includes/taxonomy.php';
}
$result['content'] = [];
$this->import_session_id = $data['session_id'];
$this->imported_data = $imported_data;
$customization = $data['customization']['content'] ?? null;
$selected_custom_post_types = $data['selected_custom_post_types'] ?? null;
$excluded_post_types = [];
if ( $selected_custom_post_types && ! in_array( 'post', $selected_custom_post_types, true ) ) {
$excluded_post_types[] = 'post';
}
$post_types = ImportExportUtils::get_elementor_post_types( $excluded_post_types );
$post_types = apply_filters( 'elementor/import-export-customization/elementor-content/post-types/customization', $post_types, $customization );
foreach ( $post_types as $post_type ) {
if ( empty( $data['manifest']['content'][ $post_type ] ) ) {
continue;
}
$posts_settings = $data['manifest']['content'][ $post_type ];
$path = $data['extracted_directory_path'] . 'content/' . $post_type . '/';
$imported_terms = ! empty( $imported_data['taxonomies'] )
? ImportExportUtils::map_old_new_term_ids( $imported_data )
: [];
$result['content'][ $post_type ] = $this->import_elementor_post_type(
$posts_settings,
$path,
$post_type,
$imported_terms,
$data['customization']['content'] ?? null,
);
}
return $result;
}
private function import_elementor_post_type( array $posts_settings, $path, $post_type, array $imported_terms, $customization ) {
$result = [
'succeed' => [],
'failed' => [],
];
foreach ( $posts_settings as $id => $post_settings ) {
try {
if ( 'page' === $post_type ) {
$data = [
'path' => $path,
'id' => $id,
'post_settings' => $post_settings,
'post_type' => $post_type,
'imported_terms' => $imported_terms,
];
$import_result = apply_filters( 'elementor/import-export-customization/import/elementor-content/customization', null, $data, [], $customization ?? [], $this );
if ( is_array( $import_result ) ) {
$result[ $import_result['status'] ][ $id ] = $import_result['result'];
$this->map_imported_post_id( $id, $import_result );
continue;
}
}
$import_result = $this->read_and_import_post( $path, $id, $post_settings, $post_type, $imported_terms );
$this->map_imported_post_id( $id, $import_result );
$result[ $import_result['status'] ][ $id ] = $import_result['result'];
} catch ( \Exception $error ) {
$result['failed'][ $id ] = $error->getMessage();
}
}
$this->backfill_parents();
return $result;
}
public function read_and_import_post( $path, $id, $post_settings, $post_type, $imported_terms ) {
try {
$post_data = ImportExportUtils::read_json_file( $path . $id );
$import = $this->import_post( $post_settings, $post_data, $post_type, $imported_terms, $id );
if ( is_wp_error( $import ) ) {
$result = [
'status' => static::IMPORT_STATUS_FAILED,
'result' => $import->get_error_message(),
];
} else {
$result = [
'status' => static::IMPORT_STATUS_SUCCEEDED,
'result' => $import,
];
}
} catch ( \Exception $error ) {
$result = [
'status' => static::IMPORT_STATUS_FAILED,
'result' => $error->getMessage(),
];
}
return $result;
}
private function import_post( array $post_settings, array $post_data, $post_type, array $imported_terms, int $original_post_id ) {
$post_attributes = [
'post_title' => $post_settings['title'],
'post_type' => $post_type,
'post_status' => 'publish',
];
if ( ! empty( $post_settings['excerpt'] ) ) {
$post_attributes['post_excerpt'] = $post_settings['excerpt'];
}
$post_parent_id = $this->get_imported_parent_id( $post_settings, $original_post_id );
if ( $post_parent_id ) {
$post_attributes['post_parent'] = $post_parent_id;
}
$new_document = Plugin::$instance->documents->create(
$post_settings['doc_type'],
$post_attributes
);
if ( is_wp_error( $new_document ) ) {
throw new \Exception( esc_html( $new_document->get_error_message() ) );
}
$post_data['import_settings'] = $post_settings;
$new_attachment_callback = function( $attachment_id ) {
$this->set_session_post_meta( $attachment_id, $this->import_session_id );
};
add_filter( 'elementor/template_library/import_images/new_attachment', $new_attachment_callback );
$new_document->import( $post_data );
remove_filter( 'elementor/template_library/import_images/new_attachment', $new_attachment_callback );
$new_post_id = $new_document->get_main_id();
if ( ! empty( $post_settings['terms'] ) ) {
$this->set_post_terms( $new_post_id, $post_settings['terms'], $imported_terms );
}
if ( ! empty( $post_settings['show_on_front'] ) ) {
$this->set_page_on_front( $new_post_id );
}
$this->set_session_post_meta( $new_post_id, $this->import_session_id );
return $new_post_id;
}
private function get_imported_parent_id( array $post_settings, int $original_post_id ): int {
$post_parent_id = (int) ( $post_settings['post_parent'] ?? 0 );
if ( ! $post_parent_id ) {
return 0;
}
if ( isset( $this->processed_posts[ $post_parent_id ] ) ) {
return $this->processed_posts[ $post_parent_id ];
}
$this->post_orphans[ $original_post_id ] = $post_parent_id;
return 0;
}
private function set_post_terms( $post_id, array $terms, array $imported_terms ) {
foreach ( $terms as $term ) {
if ( ! isset( $imported_terms[ $term['term_id'] ] ) ) {
continue;
}
wp_set_post_terms( $post_id, [ $imported_terms[ $term['term_id'] ] ], $term['taxonomy'], false );
}
}
private function init_page_on_front_data() {
$this->show_page_on_front = 'page' === get_option( 'show_on_front' );
if ( $this->show_page_on_front ) {
$this->page_on_front_id = (int) get_option( 'page_on_front' );
}
}
private function set_page_on_front( $page_id ) {
update_option( 'page_on_front', $page_id );
if ( ! $this->show_page_on_front ) {
update_option( 'show_on_front', 'page' );
}
}
public function get_import_session_metadata(): array {
return [
'page_on_front' => $this->page_on_front_id ?? 0,
];
}
private function map_imported_post_id( $original_id, $import_result ) {
if ( static::IMPORT_STATUS_SUCCEEDED !== $import_result['status'] ) {
return;
}
$this->processed_posts[ $original_id ] = $import_result['result'];
}
private function backfill_parents() {
global $wpdb;
// Find parents for post orphans.
foreach ( $this->post_orphans as $child_id => $parent_id ) {
$local_child_id = false;
$local_parent_id = false;
if ( isset( $this->processed_posts[ $child_id ] ) ) {
$local_child_id = $this->processed_posts[ $child_id ];
}
if ( isset( $this->processed_posts[ $parent_id ] ) ) {
$local_parent_id = $this->processed_posts[ $parent_id ];
}
if ( $local_child_id && $local_parent_id ) {
$wpdb->update( $wpdb->posts, [ 'post_parent' => $local_parent_id ], [ 'ID' => $local_child_id ], '%d', '%d' );
clean_post_cache( $local_child_id );
}
}
}
}