diff --git a/class/class-mainwp-child.php b/class/class-mainwp-child.php index 04ee459..35ee0c4 100644 --- a/class/class-mainwp-child.php +++ b/class/class-mainwp-child.php @@ -146,6 +146,7 @@ class MainWP_Child { 'wp_rocket' => 'wp_rocket', 'settings_tools' => 'settings_tools', 'skeleton_key' => 'skeleton_key', + 'custom_post_type' => 'custom_post_type' ); private $FTP_ERROR = 'Failed, please add FTP details for automatic upgrades.'; @@ -3223,6 +3224,7 @@ class MainWP_Child { foreach ( $posts as $post ) { $outPost = array(); $outPost['id'] = $post->ID; + $outPost['post_type'] = $post->post_type; $outPost['status'] = $post->post_status; $outPost['title'] = $post->post_title; $outPost['content'] = $post->post_content; @@ -3281,7 +3283,8 @@ class MainWP_Child { } function get_all_posts() { - $this->get_all_posts_by_type( 'post' ); + $post_type = (isset($_POST['post_type']) ? $_POST['post_type'] : 'post'); + $this->get_all_posts_by_type( $post_type ); } function get_terms() { @@ -4642,6 +4645,10 @@ class MainWP_Child { MainWP_Child_Skeleton_Key::Instance()->action(); } + function custom_post_type() { + MainWP_Custom_Post_Type::Instance()->action(); + } + static function fix_for_custom_themes() { if ( file_exists( ABSPATH . '/wp-admin/includes/screen.php' ) ) { include_once( ABSPATH . '/wp-admin/includes/screen.php' ); diff --git a/class/class-mainwp-custom-post-type.php b/class/class-mainwp-custom-post-type.php new file mode 100755 index 0000000..eb62505 --- /dev/null +++ b/class/class-mainwp-custom-post-type.php @@ -0,0 +1,309 @@ +' . base64_encode( serialize( array( 'error' => 'MainWPChild fatal error : ' . $error['message'] . ' Line: ' . $error['line'] . ' File: ' . $error['file'] ) ) ) . '' ); + } else { + die( '' . base64_encode( serialize( MainWP_Custom_Post_Type::$information ) ) . '' ); + } + } + + register_shutdown_function( "mainwp_custom_post_type_handle_fatal_error" ); + + $information = array(); + switch ( $_POST['action'] ) { + case 'custom_post_type_import': + $information = $this->_import(); + break; + + default: + $information = array( 'error' => 'Unknown action' ); + + } + + MainWP_Custom_Post_Type::$information = $information; + + exit(); + } + + private function _import() { + add_filter( 'http_request_host_is_external', '__return_true' ); + + if ( ! isset( $_POST['data'] ) || strlen( $_POST['data'] ) < 2 ) { + return array( 'error' => __( 'Missing data', $this->plugin_translate ) ); + } + + $data = stripslashes( $_POST['data'] ); + + $data = json_decode( $data, true ); + + if ( empty( $data ) || ! is_array( $data ) || ! isset( $data['post'] ) ) { + return array( 'error' => __( 'Cannot decode data', $this->plugin_translate ) ); + } + + // Insert post + $data_insert = array(); + $data_post = $data['post']; + $data_insert['post_author'] = get_current_user_id(); + + $data_keys = array( + 'post_date', + 'post_date_gmt', + 'post_content', + 'post_title', + 'post_excerpt', + 'post_status', + 'comment_status', + 'ping_status', + 'post_password', + 'post_name', + 'to_ping', + 'pinged', + 'post_modified', + 'post_modified_gmt', + 'post_content_filtered', + 'menu_order', + 'post_type' + ); + + foreach ( $data_keys as $key ) { + if ( ! isset( $data_post[ $key ] ) ) { + return array( 'error' => _( 'Missing', $this->plugin_translate ) . ' ' . $key . ' ' . __( 'inside post data', $this->plugin_translate ) ); + } + + $data_insert[ $key ] = $data_post[ $key ]; + } + + if ( ! in_array( $data_insert['post_type'], get_post_types( array( '_builtin' => false ) ) ) ) { + return array( 'error' => __( 'Please install', $this->plugin_translate ) . ' ' . $data_insert['post_type'] . ' ' . __( 'on child and try again', $this->plugin_translate ) ); + } + + $data_insert['post_content'] = $this->_search_images( $data_insert['post_content'], $data['extras']['upload_dir'] ); + + $is_woocomerce = false; + if ( $data_insert['post_type'] == 'product' && function_exists( 'wc_product_has_unique_sku' ) ) { + $is_woocomerce = true; + } + + // Support post_edit + if ( isset( $_POST['post_id'] ) ) { + $old_post_id = (int) $_POST['post_id']; + $old_post = get_post( $old_post_id, ARRAY_A ); + if ( is_null( $old_post ) ) { + return array( + 'delete_connection' => 1, + 'error' => __( 'Cannot get old post. Probably is deleted now. Please try again for create new post', $this->plugin_translate ) + ); + } + + if ( get_post_status( $old_post_id ) == 'trash' ) { + return array( 'error' => __( 'This post is inside trash on child website. Please try publish it manually and try again.', $this->plugin_translate ) ); + } + + // Set id + $data_insert['ID'] = $old_post_id; + + // Remove all previous post meta + // Get all unique meta_key + foreach ( get_post_meta( $old_post_id ) as $temp_meta_key => $temp_meta_val ) { + if ( ! delete_post_meta( $old_post_id, $temp_meta_key ) ) { + return array( 'error' => __( 'Cannot delete old post meta values', $this->plugin_translate ) ); + } + } + + // Remove all previous taxonomy + wp_delete_object_term_relationships( $old_post_id, get_object_taxonomies( $data_insert['post_type'] ) ); + } + + $post_id = wp_insert_post( $data_insert, true ); + if ( is_wp_error( $post_id ) ) { + return array( 'error' => __( 'Error when insert new post:', $this->plugin_translate ) . ' ' . $post_id->get_error_message() ); + } + + // Insert post meta + if ( ! empty( $data['postmeta'] ) && is_array( $data['postmeta'] ) ) { + foreach ( $data['postmeta'] as $key ) { + if ( isset( $key['meta_key'] ) && isset( $key['meta_value'] ) ) { + if ( $is_woocomerce ) { + if ( $key['meta_key'] == '_sku' ) { + if ( ! wc_product_has_unique_sku( $post_id, $key['meta_value'] ) ) { + return array( 'error' => __( 'Product SKU must be unique', $this->plugin_translate ) ); + } + } + + if ( $key['meta_key'] == '_product_image_gallery' ) { + $product_image_gallery = array(); + if ( isset($data['extras']['woocommerce']['product_images']) ) { + foreach ( $data['extras']['woocommerce']['product_images'] as $product_image ) { + try { + $upload_featured_image = MainWP_Helper::uploadImage( $product_image ); + + if ( null !== $upload_featured_image ) { + $product_image_gallery[] = $upload_featured_image['id']; + } else { + return array( 'error' => __( 'Cannot add product image', $this->plugin_translate ) ); + } + } catch ( Exception $e ) { + continue; + } + } + $key['meta_value'] = implode( $product_image_gallery, ',' ); + } else { + continue; + } + } + } + + if ( $key['meta_key'] == '_thumbnail_id' ) { + if ( isset( $data['extras']['featured_image']) ) { + try { + $upload_featured_image = MainWP_Helper::uploadImage( $data['extras']['featured_image'] ); + + if ( null !== $upload_featured_image ) { + $key['meta_value'] = $upload_featured_image['id']; + } else { + return array( 'error' => __( 'Cannot add featured image', $this->plugin_translate ) ); + } + } catch ( Exception $e ) { + continue; + } + } else { + continue; + } + } + + if ( add_post_meta( $post_id, $key['meta_key'], $key['meta_value'] ) === false ) { + return array( 'error' => __( 'Error when adding post meta', $this->plugin_translate ) . ' `' . esc_html( $key['meta_key'] ) . '`' ); + } + } + } + } + + // MainWP Categories + if ( ! empty( $data['categories'] ) && is_array( $data['categories'] ) ) { + // Contains wp_create_categories + include_once( ABSPATH . 'wp-admin/includes/taxonomy.php' ); + $categories = $data['categories']; + if ( $data['post_only_existing'] == '0' ) { + $post_category = wp_create_categories( $categories, $post_id ); + } else { + $cat_ids = array(); + foreach ( $categories as $cat ) { + if ( $id = category_exists( $cat ) ) { + $cat_ids[] = $id; + } + } + if ( count( $cat_ids ) > 0 ) { + wp_set_post_categories( $post_id, $cat_ids ); + } + } + } + + //Insert post terms except categories + if ( ! empty( $data['terms'] ) && is_array( $data['terms'] ) ) { + foreach ( $data['terms'] as $key ) { + if ( ! taxonomy_exists( $key['taxonomy'] ) ) { + return array( 'error' => __( 'Missing taxonomy', $this->plugin_translate ) . ' `' . esc_html( $key['taxonomy'] ) . '`' ); + } + + // @todo missing alias_of which means term_group + $term = wp_insert_term( $key['name'], $key['taxonomy'], array( + 'description' => $key['description'], + 'slug' => $key['slug'] + ) ); + + $term_taxonomy_id = 0; + + if ( is_wp_error( $term ) ) { + if ( isset( $term->error_data['term_exists'] ) ) { + $term_taxonomy_id = (int) $term->error_data['term_exists']; + } + } else { + if ( isset( $term['term_taxonomy_id'] ) ) { + $term_taxonomy_id = (int) $term['term_taxonomy_id']; + } + } + + if ( $term_taxonomy_id > 0 ) { + $term_taxonomy_ids = wp_set_object_terms( $post_id, $term_taxonomy_id, $key['taxonomy'], true ); + if ( is_wp_error( $term_taxonomy_ids ) ) { + return array( 'error' => __( 'Error when adding taxonomy to post', $this->plugin_translate ) ); + } + } + } + } + + return array( 'success' => 1, 'post_id' => $post_id ); + } + + /** + * Search image inside post content and upload it to child + **/ + private function _search_images( $post_content, $upload_dir ) { + $foundMatches = preg_match_all( '/(]+href=\"(.*?)\"[^>]*>)?(\/]*src=\"((.*?)(png|gif|jpg|jpeg))\")/ix', $post_content, $matches, PREG_SET_ORDER ); + if ( $foundMatches > 0 ) { + foreach ( $matches as $match ) { + $hrefLink = $match[2]; + $imgUrl = $match[4]; + + if ( ! isset( $upload_dir['baseurl'] ) || ( 0 !== strripos( $imgUrl, $upload_dir['baseurl'] ) ) ) { + continue; + } + + if ( preg_match( '/-\d{3}x\d{3}\.[a-zA-Z0-9]{3,4}$/', $imgUrl, $imgMatches ) ) { + $search = $imgMatches[0]; + $replace = '.' . $match[6]; + $originalImgUrl = str_replace( $search, $replace, $imgUrl ); + } else { + $originalImgUrl = $imgUrl; + } + + try { + $downloadfile = MainWP_Helper::uploadImage( $originalImgUrl ); + $localUrl = $downloadfile['url']; + $linkToReplaceWith = dirname( $localUrl ); + if ( '' !== $hrefLink ) { + $server = get_option( 'mainwp_child_server' ); + $serverHost = parse_url( $server, PHP_URL_HOST ); + if ( ! empty( $serverHost ) && strpos( $hrefLink, $serverHost ) !== false ) { + $serverHref = 'href="' . $serverHost; + $replaceServerHref = 'href="' . parse_url( $localUrl, PHP_URL_SCHEME ) . '://' . parse_url( $localUrl, PHP_URL_HOST ); + $post_content = str_replace( $serverHref, $replaceServerHref, $post_content ); + } else if ( strpos( $hrefLink, 'http' ) !== false ) { + $lnkToReplace = dirname( $hrefLink ); + if ( 'http:' !== $lnkToReplace && 'https:' !== $lnkToReplace ) { + $post_content = str_replace( $lnkToReplace, $linkToReplaceWith, $post_content ); + } + } + } + + $lnkToReplace = dirname( $imgUrl ); + if ( 'http:' !== $lnkToReplace && 'https:' !== $lnkToReplace ) { + $post_content = str_replace( $lnkToReplace, $linkToReplaceWith, $post_content ); + } + } catch ( Exception $e ) { + + } + } + } + + return $post_content; + } +} \ No newline at end of file