*
* Copyright 2008-2011 Crowd Favorite, Ltd. All rights reserved. '.__('ANNO_IMPORT_DEBUG: You are using %s to parse data.', 'anno').' ' . __( 'Sorry, there has been an error.', 'anno' ) . ' ' . __( 'Sorry, there has been an error.', 'anno' ) . ' ';
foreach($this->processed_posts as $the_imported_article) {
$the_imported_post = get_post($the_imported_article);
printf( __('%s “%s” imported. ', 'anno'), ucfirst(esc_html($the_imported_post->post_type)), esc_html($the_imported_post->post_title));
if ($the_imported_post->post_type == 'attachment') {
$preview_url = get_permalink($the_imported_post->ID);
}
else {
$preview_url = get_permalink($the_imported_post->ID);
if (is_ssl()) {
$preview_url = str_replace('http://', 'https://', $preview_link);
}
$preview_url = add_query_arg('preview', 'true', $preview_url);
}
// Only provide preview link for attachments or knol articles
// Kipling DTD articles must be edited and saved at least once to preview correctly
if ($GLOBALS['importer'] == 'google_knol_wxr' or $the_imported_post->post_type == 'attachment') {
printf( __('[ %sEdit%s | %sPreview%s ]', 'anno'),
'','',
'','.');
}
else {
printf( __('[ %sEdit%s ]', 'anno'),
'','');
}
echo ' ' . __( 'All done.', 'anno' ) . ' ' . __( 'Have fun!', 'anno' ) . '' . ' ' . __( 'Remember to update the passwords and roles of imported users.', 'anno' ) . ' ' . __( 'Sorry, there has been an error.', 'anno' ) . ' ' . __( 'Sorry, there has been an error.', 'anno' ) . ' ';
printf( __( 'This WXR file (version %s) may not be supported by this version of the importer. Please consider updating.', 'anno' ), esc_html($import_data['version']) );
echo ' or assign posts to an existing user: ', 'anno' );
else
_e( ' or assign posts to an existing user: ', 'anno' );
$dropdown_args = array(
'name' => "user_map[$n]",
'multi' => true,
'show_option_all' => __( '- Select -', 'anno' )
);
// @TODO reactivate some time in the future, or remove.
// Auto select a user found that has a matching Knol ID.
/* @TODO Search locally, this blog only.
if (!empty($users) && is_array($users)) {
$dropdown_args['selected'] = $users[0]->ID;
}
*/
// Preselect if we're returning to this page.
if (!empty($_POST['user_map'][$n])) {
$dropdown_args['selected'] = $_POST['user_map'][$n];
}
wp_dropdown_users($dropdown_args);
_e( ' ', 'anno');
if ( $this->version != '1.0' ) {
_e( 'or you can create new user:', 'anno' );
$value = '';
} else {
_e( 'as a new user:', 'anno' );
$value = esc_attr( sanitize_user( $author['author_login'], true ) );
}
$new_user_email = !empty($_POST['user_new'][$n]['user_email']) ? $_POST['user_new'][$n]['user_email'] : '';
echo ' ';
printf( __( 'A new version of this importer is available. Please update to version %s to ensure compatibility with newer export files.', 'anno' ), $update->update->new_version );
echo ' '.__( 'Howdy! Upload your Google Knol eXtended RSS (WXR) file and we’ll import the posts, pages, comments, custom fields, categories, and tags into this site.', 'anno' ).' '.__( 'Choose a Google Knol WXR (.xml) file to upload, then click Upload file and import.', 'anno' ).'
';
echo __( 'The file does not exist, please try again.', 'anno' ) . '
';
echo esc_html( $import_data->get_error_message() ) . '
';
}
echo '
';
echo esc_html( $file['error'] ) . '
';
echo esc_html( $import_data->get_error_message() ) . '
';
continue;
}
if ( ! isset($this->authors[$login]) )
$this->authors[$login] = array(
'author_login' => $login,
'author_display_name' => $post['post_author']
);
}
}
}
}
/**
* Display pre-import options, author importing/mapping and option to
* fetch attachments
*/
function import_options() {
$j = 0;
?>
' . esc_html( $author['author_display_name'] );
if ( $this->version != '1.0' ) {
echo $extra;
}
echo ' '._x('as the current user.', 'user import display text', 'anno').'
';
if ( $this->version != '1.0' )
echo '
';
}
*/
$create_users = $this->allow_create_users();
if ( ! $create_users && $this->version == '1.0' )
_e( '
';
}
// We store 'creator' data by ID in Knol Export, not login.
$import_author_value = $author['author_id'];
echo '';
_e( '
';
continue;
}
}
unset( $this->categories );
}
/**
* Create new post tags based on import information
*
* Doesn't create a tag if its slug already exists
*/
function process_tags() {
if ( empty( $this->tags ) )
return;
foreach ( $this->tags as $tag ) {
// if the tag already exists leave it alone
$term_id = term_exists( $tag['tag_slug'], 'post_tag' );
if ( $term_id ) {
if ( is_array($term_id) ) $term_id = $term_id['term_id'];
if ( isset($tag['term_id']) )
$this->processed_terms[$tag['term_id']] = (int) $term_id;
continue;
}
$tag_desc = isset( $tag['tag_description'] ) ? $tag['tag_description'] : '';
$tagarr = array( 'slug' => $tag['tag_slug'], 'description' => $tag_desc );
$id = wp_insert_term( $tag['tag_name'], 'post_tag', $tagarr );
if ( ! is_wp_error( $id ) ) {
if ( isset($tag['term_id']) )
$this->processed_terms[$tag['term_id']] = $id['term_id'];
} else {
printf( __( 'Failed to import post tag %s', 'anno' ), esc_html($tag['tag_name']) );
if ( defined('ANNO_IMPORT_DEBUG') && ANNO_IMPORT_DEBUG )
echo ': ' . $id->get_error_message();
echo '
';
continue;
}
}
unset( $this->tags );
}
/**
* Create new terms based on import information
*
* Doesn't create a term its slug already exists
*/
function process_terms() {
if ( empty( $this->terms ) )
return;
foreach ( $this->terms as $term ) {
// if the term already exists in the correct taxonomy leave it alone
$term_id = term_exists( $term['slug'], $term['term_taxonomy'] );
if ( $term_id ) {
if ( is_array($term_id) ) $term_id = $term_id['term_id'];
if ( isset($term['term_id']) )
$this->processed_terms[$term['term_id']] = (int) $term_id;
continue;
}
if ( empty( $term['term_parent'] ) ) {
$parent = 0;
} else {
$parent = term_exists( $term['term_parent'], $term['term_taxonomy'] );
if ( is_array( $parent ) ) $parent = $parent['term_id'];
}
$description = isset( $term['term_description'] ) ? $term['term_description'] : '';
$termarr = array( 'slug' => $term['slug'], 'description' => $description, 'parent' => $parent );
$id = wp_insert_term( $term['term_name'], $term['term_taxonomy'], $termarr );
if ( ! is_wp_error( $id ) ) {
if ( isset($term['term_id']) )
$this->processed_terms[$term['term_id']] = $id['term_id'];
} else {
printf( __( 'Failed to import %s %s', 'anno' ), esc_html($term['term_taxonomy']), esc_html($term['term_name']) );
if ( defined('ANNO_IMPORT_DEBUG') && ANNO_IMPORT_DEBUG )
echo ': ' . $id->get_error_message();
echo '
';
continue;
}
}
unset( $this->terms );
}
/**
* Create new posts based on import information
*
* Posts marked as having a parent which doesn't exist will become top level items.
* Doesn't create a new post if: the post type doesn't exist, the given post ID
* is already noted as imported or a post with the same title and date already exists.
* Note that new/updated terms, comments and meta are imported for the last of the above.
*/
function process_posts() {
$snapshot_template = array(
'id' => '',
'surname' => '',
'given_names' => '',
'prefix' => '',
'suffix' => '',
'degrees' => '',
'institution' => '',
'bio' => '',
'email' => '',
'link' => '',
);
foreach ( $this->posts as $post ) {
if ( ! post_type_exists( $post['post_type'] ) ) {
printf( __( 'Failed to import “%s”: Invalid post type %s', 'anno' ),
esc_html($post['post_title']), esc_html($post['post_type']) );
echo '
';
continue;
}
if ( isset( $this->processed_posts[$post['post_id']] ) && ! empty( $post['post_id'] ) )
continue;
if ( $post['status'] == 'auto-draft' )
continue;
if ( 'nav_menu_item' == $post['post_type'] ) {
$this->process_menu_item( $post );
continue;
}
$post_type_object = get_post_type_object( $post['post_type'] );
// Just to be safe, knols come with post_date_gmt.
if (empty($post['post_date'])) {
$post['post_date'] = $post['post_date_gmt'];
}
$post_exists = post_exists( $post['post_title'], '', $post['post_date'], array('article') );
if ( $post_exists ) {
printf( __('%s “%s” already exists.', 'anno'), $post_type_object->labels->singular_name, esc_html($post['post_title']) );
echo '
';
$comment_post_ID = $post_id = $post_exists;
} else {
$post_parent = $post['post_parent'];
if ( $post_parent ) {
// if we already know the parent, map it to the new local ID
if ( isset( $this->processed_posts[$post_parent] ) ) {
$post_parent = $this->processed_posts[$post_parent];
// otherwise record the parent for later
} else {
$this->post_orphans[$post['post_id']] = $post_parent;
$post_parent = 0;
}
}
// map the post author
if (isset($post['post_author'])) {
$author = sanitize_user($post['post_author'], true);
if ( isset( $this->author_mapping[$author] ) ) {
$author = $this->author_mapping[$author];
}
else {
$author = (int) get_current_user_id();
}
}
else
$author = (int) get_current_user_id();
$postdata = array(
'import_id' => $post['post_id'], 'post_author' => $author, 'post_date' => $post['post_date'],
'post_date_gmt' => $post['post_date_gmt'], 'post_content' => $post['post_content_filtered'],
'post_excerpt' => $post['post_excerpt'], 'post_title' => $post['post_title'],
'post_status' => $post['status'], 'post_name' => $post['post_name'],
'comment_status' => $post['comment_status'], 'ping_status' => $post['ping_status'],
'guid' => $post['guid'], 'post_parent' => $post_parent, 'menu_order' => $post['menu_order'],
'post_type' => $post['post_type'], 'post_password' => $post['post_password'], 'post_content_filtered' => $post['post_content_filtered'],
);
// Get rid of wrapping tag in XML
$postdata['post_content_filtered'] = preg_replace('#?body(\s[^>]*)?>#i', '', $postdata['post_content_filtered']);
if ( 'attachment' == $postdata['post_type'] ) {
$remote_url = ! empty($post['attachment_url']) ? $post['attachment_url'] : $post['guid'];
// try to use _wp_attached file for upload folder placement to ensure the same location as the export site
// e.g. location is 2003/05/image.jpg but the attachment post_date is 2010/09, see media_handle_upload()
$postdata['upload_date'] = $post['post_date'];
if ( isset( $post['postmeta']) && is_array($post['postmeta']) ) {
foreach( $post['postmeta'] as $meta ) {
if ( $meta['key'] == '_wp_attached_file' ) {
if ( preg_match( '%^[0-9]{4}/[0-9]{2}%', $meta['value'], $matches ) )
$postdata['upload_date'] = $matches[0];
break;
}
}
}
$comment_post_ID = $post_id = $this->process_attachment( $postdata, $remote_url );
} else {
remove_filter('wp_insert_post_data', 'anno_insert_post_data', null, 2);
remove_filter('edit_post_content', 'anno_edit_post_content', 10, 2 );
remove_filter('edit_post_content_filtered', 'anno_edit_post_content_filtered', 10, 2 );
$comment_post_ID = $post_id = wp_insert_post( $postdata, true );
}
if ( is_wp_error( $post_id ) ) {
printf( __( 'Failed to import %s “%s”', 'anno' ),
$post_type_object->labels->singular_name, esc_html($post['post_title']) );
if ( defined('ANNO_IMPORT_DEBUG') && ANNO_IMPORT_DEBUG )
echo ': ' . $post_id->get_error_message();
echo '
';
continue;
}
if ( $post['is_sticky'] == 1 )
stick_post( $post_id );
// map pre-import ID to local ID
$this->processed_posts[$post['post_id']] = $post_id;
// add categories, tags and other terms
if ( ! empty( $post['terms'] ) ) {
$terms_to_set = array();
foreach ( $post['terms'] as $term ) {
// back compat with WXR 1.0 map 'tag' to 'post_tag'
$taxonomy = ( 'tag' == $term['domain'] ) ? 'post_tag' : $term['domain'];
$term_exists = term_exists( $term['slug'], $taxonomy );
$term_id = is_array( $term_exists ) ? $term_exists['term_id'] : $term_exists;
if ( ! $term_id ) {
$t = wp_insert_term( $term['name'], $taxonomy, array( 'slug' => $term['slug'] ) );
if ( ! is_wp_error( $t ) ) {
$term_id = $t['term_id'];
} else {
printf( __( 'Failed to import %s %s', 'anno' ), esc_html($taxonomy), esc_html($term['name']) );
if ( defined('ANNO_IMPORT_DEBUG') && ANNO_IMPORT_DEBUG )
echo ': ' . $t->get_error_message();
echo '
';
continue;
}
}
$terms_to_set[$taxonomy][] = $term_id;
}
foreach ( $terms_to_set as $tax => $ids ) {
$tt_ids = wp_set_post_terms( $post_id, $ids, $tax );
}
unset( $post['terms'], $terms_to_set );
}
// add/update comments
if ( ! empty( $post['comments'] ) ) {
$num_comments = 0;
$inserted_comments = array();
foreach ( $post['comments'] as $comment ) {
$comment_id = $comment['comment_id'];
$newcomments[$comment_id]['comment_post_ID'] = $comment_post_ID;
$newcomments[$comment_id]['comment_author'] = $comment['comment_author'];
$newcomments[$comment_id]['comment_author_email'] = $comment['comment_author_email'];
$newcomments[$comment_id]['comment_author_IP'] = $comment['comment_author_IP'];
$newcomments[$comment_id]['comment_author_url'] = $comment['comment_author_url'];
$newcomments[$comment_id]['comment_date'] = $comment['comment_date'];
$newcomments[$comment_id]['comment_date_gmt'] = $comment['comment_date_gmt'];
$newcomments[$comment_id]['comment_content'] = $comment['comment_content'];
$newcomments[$comment_id]['comment_approved'] = $comment['comment_approved'];
$newcomments[$comment_id]['comment_type'] = $comment['comment_type'];
$newcomments[$comment_id]['comment_parent'] = $comment['comment_parent'];
$newcomments[$comment_id]['commentmeta'] = isset( $comment['commentmeta'] ) ? $comment['commentmeta'] : array();
// This will be empty in the Knol WXR
/*
if ( isset( $this->processed_authors[$comment['comment_user_id']] ) )
$newcomments[$comment_id]['user_id'] = $this->processed_authors[$comment['comment_user_id']];
*/
}
ksort( $newcomments );
foreach ( $newcomments as $key => $comment ) {
// if this is a new post we can skip the comment_exists() check
if ( ! $post_exists || ! comment_exists( $comment['comment_author'], $comment['comment_date'] ) ) {
if ( isset( $inserted_comments[$comment['comment_parent']] ) )
$comment['comment_parent'] = $inserted_comments[$comment['comment_parent']];
$comment = wp_filter_comment( $comment );
$inserted_comments[$key] = wp_insert_comment( $comment );
foreach( $comment['commentmeta'] as $meta ) {
$value = maybe_unserialize( $meta['value'] );
add_comment_meta( $inserted_comments[$key], $meta['key'], $value );
}
$num_comments++;
}
}
unset( $newcomments, $inserted_comments, $post['comments'] );
}
// add/update post meta
$author_snapshot = array();
// Save the primary author in the author snapshot first
$snapshot = $snapshot_template;
if (isset($post['post_author'])) {
$snapshot['id'] = $this->authors[$post['post_author']]['author_id'];
$snapshot['email'] = $this->authors[$post['post_author']]['author_email'];
$snapshot['surname'] = $this->authors[$post['post_author']]['author_last_name'];
$snapshot['given_names'] = $this->authors[$post['post_author']]['author_first_name'];
$author_snapshot[$post['post_author']] = $snapshot;
}
if ( isset( $post['postmeta'] ) && is_array($post['postmeta']) ) {
foreach ( $post['postmeta'] as $meta ) {
$key = apply_filters( 'import_post_meta_key', $meta['key'] );
$value = false;
// Store both the Knol ID and WP ID, for potential future users/associations.
if (strpos($key, '_anno_knol_author_') !== false) {
$knol_author_id = str_replace('_anno_knol_author_', '', $key);
if (isset($this->author_mapping[$knol_author_id])) {
$wp_author_id = $this->author_mapping[$knol_author_id];
$this->add_user_to_post('author', $wp_author_id, $post_id);
}
// Generate our author snapshot based on post meta that comes in.
// We don't need to do this for _anno_author_, those will only exist in DTD imports, which will be in draft
// Snapshots get taken on publish status transition
$snapshot = $snapshot_template;
if (isset($this->authors[$knol_author_id]) && !isset($author_snapshot[$this->authors[$knol_author_id]['author_id']])) {
$snapshot = $snapshot_template;
$snapshot['id'] = $this->authors[$knol_author_id]['author_id'];
$snapshot['email'] = $this->authors[$knol_author_id]['author_email'];
$snapshot['surname'] = $this->authors[$knol_author_id]['author_last_name'];
$snapshot['given_names'] = $this->authors[$knol_author_id]['author_first_name'];
$author_snapshot[$snapshot['id']] = $snapshot;
}
}
if (strpos($key, '_anno_knol_reviewer_') !== false) {
$knol_author_id = str_replace('_anno_knol_reviewer_', '', $key);
if (isset($this->author_mapping[$knol_author_id])) {
$wp_reviewer_id = $this->author_mapping[$knol_author_id];
$this->add_user_to_post('reviewer', $wp_reviewer_id, $post_id);
}
}
if ( '_edit_last' == $key ) {
if ( isset( $this->processed_authors[$meta['value']] ) )
$value = $this->processed_authors[$meta['value']];
else
$key = false;
}
if ( $key ) {
// export gets meta straight from the DB so could have a serialized string
if ( ! $value )
$value = maybe_unserialize( $meta['value'] );
// Update co-author data to be the wp user not the local file user.
if (strpos($key, '_anno_author_') !== false) {
$local_author_id = str_replace('_anno_author_', '', $key);
// Set the key and value to be our WP user ID, not the local
if (isset($this->author_mapping[$local_author_id])) {
$wp_author_id = $this->author_mapping[$local_author_id];
$this->add_user_to_post('author', $wp_author_id, $post_id);
}
}
else if (strpos($key, '_anno_reviewer_') !== false) {
$local_author_id = str_replace('_anno_reviewer_', '', $key);
// Set the key and value to be our WP user ID, not the local
if (isset($this->author_mapping[$local_author_id])) {
$wp_author_id = $this->author_mapping[$local_author_id];
$this->add_user_to_post('reviewer', $wp_author_id, $post_id);
}
}
else {
update_post_meta( $post_id, $key, $value );
}
do_action( 'import_post_meta', $post_id, $key, $value );
// if the post has a featured image, take note of this in case of remap
if ( '_thumbnail_id' == $key )
$this->featured_images[$post_id] = $value;
}
}
// Save our snapshot
if (!empty($author_snapshot)) {
update_post_meta($post_id, '_anno_author_snapshot', $author_snapshot);
}
}
if ($GLOBALS['importer'] == 'google_knol_wxr') {
// Add a key to the post. Posts from google knol with this key are alerted
// that the XML structure may change on save. Meta is deleted on save.
// Kipling (non-knol xml) imports don't need the extra parsing on save
// Fixes https://github.com/Annotum/Annotum/issues/40
add_post_meta($post_id, '_anno_knol_import', 1);
}
}
}
unset( $this->posts );
}
/**
* Attempt to create a new menu item from import data
*
* Fails for draft, orphaned menu items and those without an associated nav_menu
* or an invalid nav_menu term. If the post type or term object which the menu item
* represents doesn't exist then the menu item will not be imported (waits until the
* end of the import to retry again before discarding).
*
* @param array $item Menu item details from WXR file
*/
function process_menu_item( $item ) {
// skip draft, orphaned menu items
if ( 'draft' == $item['status'] )
return;
$menu_slug = false;
if ( isset($item['terms']) ) {
// loop through terms, assume first nav_menu term is correct menu
foreach ( $item['terms'] as $term ) {
if ( 'nav_menu' == $term['domain'] ) {
$menu_slug = $term['slug'];
break;
}
}
}
// no nav_menu term associated with this menu item
if ( ! $menu_slug ) {
_e( 'Menu item skipped due to missing menu slug', 'anno' );
echo '
';
return;
}
$menu_id = term_exists( $menu_slug, 'nav_menu' );
if ( ! $menu_id ) {
printf( __( 'Menu item skipped due to invalid menu slug: %s', 'anno' ), esc_html( $menu_slug ) );
echo '
';
return;
} else {
$menu_id = is_array( $menu_id ) ? $menu_id['term_id'] : $menu_id;
}
foreach ( $item['postmeta'] as $meta )
$$meta['key'] = $meta['value'];
if ( 'taxonomy' == $_menu_item_type && isset( $this->processed_terms[intval($_menu_item_object_id)] ) ) {
$_menu_item_object_id = $this->processed_terms[intval($_menu_item_object_id)];
} else if ( 'post_type' == $_menu_item_type && isset( $this->processed_posts[$_menu_item_object_id] ) ) {
$_menu_item_object_id = $this->processed_posts[($_menu_item_object_id)];
} else if ( 'custom' != $_menu_item_type ) {
// associated object is missing or not imported yet, we'll retry later
$this->missing_menu_items[] = $item;
return;
}
if ( isset( $this->processed_menu_items[intval($_menu_item_menu_item_parent)] ) ) {
$_menu_item_menu_item_parent = $this->processed_menu_items[intval($_menu_item_menu_item_parent)];
} else if ( $_menu_item_menu_item_parent ) {
$this->menu_item_orphans[$item['post_id']] = (int) $_menu_item_menu_item_parent;
$_menu_item_menu_item_parent = 0;
}
// wp_update_nav_menu_item expects CSS classes as a space separated string
$_menu_item_classes = maybe_unserialize( $_menu_item_classes );
if ( is_array( $_menu_item_classes ) )
$_menu_item_classes = implode( ' ', $_menu_item_classes );
$args = array(
'menu-item-object-id' => $_menu_item_object_id,
'menu-item-object' => $_menu_item_object,
'menu-item-parent-id' => $_menu_item_menu_item_parent,
'menu-item-position' => intval( $item['menu_order'] ),
'menu-item-type' => $_menu_item_type,
'menu-item-title' => $item['post_title'],
'menu-item-url' => $_menu_item_url,
'menu-item-description' => $item['post_content'],
'menu-item-attr-title' => $item['post_excerpt'],
'menu-item-target' => $_menu_item_target,
'menu-item-classes' => $_menu_item_classes,
'menu-item-xfn' => $_menu_item_xfn,
'menu-item-status' => $item['status']
);
$id = wp_update_nav_menu_item( $menu_id, 0, $args );
if ( $id && ! is_wp_error( $id ) )
$this->processed_menu_items[$item['post_id']] = (int) $id;
}
/**
* If fetching attachments is enabled then attempt to create a new attachment
*
* @param array $post Attachment post details from WXR
* @param string $url URL to fetch attachment from
* @return int|WP_Error Post ID on success, WP_Error otherwise
*/
function process_attachment( $post, $url ) {
if ( ! $this->fetch_attachments )
return new WP_Error( 'attachment_processing_error',
__( 'Fetching attachments is not enabled', 'anno' ) );
// Keep track of the original URL for remapping purposes
$original_url = $url;
// if the URL is absolute, but does not contain address, then upload it assuming base_site_url
if ( preg_match( '|^/[\w\W]+$|', $url ) )
$url = rtrim( $this->base_url, '/' ) . $url;
$upload = $this->fetch_remote_file( $url, $post, $original_url );
if ( is_wp_error( $upload ) )
return $upload;
if ( $info = wp_check_filetype( $upload['file'] ) )
$post['post_mime_type'] = $info['type'];
else
return new WP_Error( 'attachment_processing_error', __('Invalid file type', 'anno') );
$post['guid'] = $upload['url'];
// as per wp-admin/includes/upload.php
$post_id = wp_insert_attachment( $post, $upload['file'] );
wp_update_attachment_metadata( $post_id, wp_generate_attachment_metadata( $post_id, $upload['file'] ) );
// remap resized image URLs, works by stripping the extension and remapping the URL stub.
if ( preg_match( '!^image/!', $info['type'] ) ) {
$parts = pathinfo( $url );
$name = basename( $parts['basename'], ".{$parts['extension']}" ); // PATHINFO_FILENAME in PHP 5.2
$parts_new = pathinfo( $upload['url'] );
$name_new = basename( $parts_new['basename'], ".{$parts_new['extension']}" );
$this->url_remap[$parts['dirname'] . '/' . $name] = $parts_new['dirname'] . '/' . $name_new;
}
return $post_id;
}
/**
* Attempt to download a remote file attachment
*
* @param string $url URL of item to fetch
* @param array $post Attachment details
* @param string $original_url Original that can in from the content, un processed. Used in remapping
* @return array|WP_Error Local file location details on success, WP_Error otherwise
*/
function fetch_remote_file( $url, $post, $original_url) {
// extract the file name and extension from the url
// Decode and remove spaces, so WP can recognize the filename
$file_name = str_replace(' ', '', urldecode( basename( $url ) ) );
// get placeholder file in the upload dir with a unique, sanitized filename
$upload = wp_upload_bits( $file_name, 0, '', $post['upload_date'] );
if ( $upload['error'] )
return new WP_Error( 'upload_dir_error', $upload['error'] );
// fetch the remote url and write it to the placeholder file
$headers = wp_get_http( $url, $upload['file'] );
// request failed
if ( ! $headers ) {
@unlink( $upload['file'] );
return new WP_Error( 'import_file_error', __('Remote server did not respond', 'anno') );
}
// make sure the fetch was successful
if ( $headers['response'] != '200' ) {
@unlink( $upload['file'] );
return new WP_Error( 'import_file_error', sprintf( __('Remote server returned error response %1$d %2$s', 'anno'), esc_html($headers['response']), get_status_header_desc($headers['response']) ) );
}
$filesize = filesize( $upload['file'] );
if ( isset( $headers['content-length'] ) && $filesize != $headers['content-length'] ) {
@unlink( $upload['file'] );
return new WP_Error( 'import_file_error', __('Remote file is incorrect size', 'anno') );
}
if ( 0 == $filesize ) {
@unlink( $upload['file'] );
return new WP_Error( 'import_file_error', __('Zero size file downloaded', 'anno') );
}
$max_size = (int) $this->max_attachment_size();
if ( ! empty( $max_size ) && $filesize > $max_size ) {
@unlink( $upload['file'] );
return new WP_Error( 'import_file_error', sprintf(__('Remote file is too large, limit is %s', 'anno'), size_format($max_size) ) );
}
// keep track of the old and new urls so we can substitute them later
$this->url_remap[$original_url] = $upload['url'];
$this->url_remap[$post['guid']] = $upload['url']; // r13735, really needed?
// keep track of the destination if the remote url is redirected somewhere else
if ( isset($headers['x-final-location']) && $headers['x-final-location'] != $url )
$this->url_remap[$headers['x-final-location']] = $upload['url'];
return $upload;
}
/**
* Attempt to associate posts and menu items with previously missing parents
*
* An imported post's parent may not have been imported when it was first created
* so try again. Similarly for child menu items and menu items which were missing
* the object (e.g. post) they represent in the menu
*/
function backfill_parents() {
global $wpdb;
// find parents for post orphans
foreach ( $this->post_orphans as $child_id => $parent_id ) {
$local_child_id = $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, array( 'post_parent' => $local_parent_id ), array( 'ID' => $local_child_id ), '%d', '%d' );
}
// all other posts/terms are imported, retry menu items with missing associated object
$missing_menu_items = $this->missing_menu_items;
foreach ( $missing_menu_items as $item )
$this->process_menu_item( $item );
// find parents for menu item orphans
foreach ( $this->menu_item_orphans as $child_id => $parent_id ) {
$local_child_id = $local_parent_id = 0;
if ( isset( $this->processed_menu_items[$child_id] ) )
$local_child_id = $this->processed_menu_items[$child_id];
if ( isset( $this->processed_menu_items[$parent_id] ) )
$local_parent_id = $this->processed_menu_items[$parent_id];
if ( $local_child_id && $local_parent_id )
update_post_meta( $local_child_id, '_menu_item_menu_item_parent', $local_parent_id );
}
}
/**
* Use stored mapping information to update old attachment URLs
*/
function backfill_attachment_urls() {
global $wpdb;
// make sure the longest urls first, in case one is a substring of another
uksort( $this->url_remap, array( &$this, 'cmpr_strlen' ) );
foreach ( $this->url_remap as $from_url => $to_url ) {
// remap urls in post_content and post_content_filtered
// Note double replacement for ending with ' and " this prevents links from replacing images
// e.g. http://image.png => http://image1.png then http://image => http://image1
$wpdb->query( $wpdb->prepare( "
UPDATE {$wpdb->posts}
SET post_content = REPLACE(post_content, %s, %s),
post_content_filtered = REPLACE(post_content_filtered, %s, %s),
post_content = REPLACE(post_content, %s, %s),
post_content_filtered = REPLACE(post_content_filtered, %s, %s)",
$from_url . '\'', $to_url . '\'',
$from_url . '\'', $to_url . '\'',
$from_url . '"', $to_url . '"',
$from_url . '"', $to_url . '"'
) );
// remap enclosure urls
$result = $wpdb->query( $wpdb->prepare( "
UPDATE {$wpdb->postmeta}
SET meta_value = REPLACE(meta_value, %s, %s)
WHERE meta_key='enclosure'
AND meta_value = %s",
$from_url,
$to_url,
$from_url
) );
}
}
/**
* Update _thumbnail_id meta to new, imported attachment IDs
*/
function remap_featured_images() {
// cycle through posts that have a featured image
foreach ( $this->featured_images as $post_id => $value ) {
if ( isset( $this->processed_posts[$value] ) ) {
$new_id = $this->processed_posts[$value];
// only update if there's a difference
if ( $new_id != $value )
update_post_meta( $post_id, '_thumbnail_id', $new_id );
}
}
}
/**
* Parse a WXR file
*
* @param string $file Path to WXR file for parsing
* @return array Information gathered from the WXR file
*/
function parse( $file ) {
$parser = new Knol_WXR_Parser();
return $parser->parse( $file );
}
// Display import page title
function header() {
echo '' . __( 'Google Knol WXR Import', 'anno' ) . '
';
$updates = get_plugin_updates();
$basename = plugin_basename(__FILE__);
if ( isset( $updates[$basename] ) ) {
$update = $updates[$basename];
echo '
()
_filesystem_hidden_fields(); ?> articles, comments, custom fields, categories, and tags from a Google Knol WXR export file.', 'anno'), array( $GLOBALS['knol_import'], 'dispatch' ) ); } add_action( 'admin_init', 'anno_knol_importer_init' ); }