From 793a9be777688d10094af27f506c81f7bb046fe2 Mon Sep 17 00:00:00 2001 From: saxmatt Date: Fri, 23 Apr 2004 04:47:17 +0000 Subject: [PATCH] Importer updates. git-svn-id: http://svn.automattic.com/wordpress/trunk@1134 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/import-livejournal.php | 147 ++++++++++++++++++++++++++++++++ wp-admin/import-rss.php | 2 +- 2 files changed, 148 insertions(+), 1 deletion(-) create mode 100644 wp-admin/import-livejournal.php diff --git a/wp-admin/import-livejournal.php b/wp-admin/import-livejournal.php new file mode 100644 index 000000000..f0b1975ac --- /dev/null +++ b/wp-admin/import-livejournal.php @@ -0,0 +1,147 @@ + + + +WordPress › Import from RSS + + + +

WordPress

+ +

Howdy! This importer allows you to extract posts from a LiveJournal XML export file. To get started you must edit the following line in this file (import-livejournal.php)

+

define('XMLFILE', '');

+

You want to define where the RSS file we'll be working with is, for example:

+

define('XMLFILE', '2002-04.xml');

+

You have to do this manually for security reasons.

+

If you've done that and you’re all ready, let's go!

+previous page to continue."); + +// Bring in the data +set_magic_quotes_runtime(0); +$datalines = file(XMLFILE); // Read the file into an array +$importdata = implode('', $datalines); // squish it +$importdata = str_replace(array("\r\n", "\r"), "\n", $importdata); + +preg_match_all('|(.*?)|is', $importdata, $posts); +$posts = $posts[1]; + +echo '
    '; +foreach ($posts as $post) : +$title = $date = $categories = $content = $post_id = ''; +echo "
  1. Importing post... "; + +preg_match('|(.*?)|is', $post, $title); +$title = addslashes( trim($title[1]) ); +$post_name = sanitize_title($title); + +preg_match('|(.*?)|is', $post, $date); +$date = strtotime($date[1]); + +$post_date = date('Y-m-d H:i:s', $date); + + +preg_match('|(.*?)|is', $post, $content); +$content = str_replace( array(''), '', addslashes( trim($content[1]) ) ); + +// Now lets put it in the DB +if ($wpdb->get_var("SELECT ID FROM $tableposts WHERE post_title = '$title' AND post_date = '$post_date'")) : + echo 'Post already imported'; +else : + + $wpdb->query("INSERT INTO $tableposts + (post_author, post_date, post_date_gmt, post_content, post_title,post_status, comment_status, ping_status, post_name) + VALUES + ('$post_author', '$post_date', DATE_ADD('$post_date', INTERVAL '$add_hours:$add_minutes' HOUR_MINUTE), '$content', '$title', 'publish', '$comment_status', '$ping_status', '$post_name')"); + $post_id = $wpdb->get_var("SELECT ID FROM $tableposts WHERE post_title = '$title' AND post_date = '$post_date'"); + if (!$post_id) die("couldn't get post ID"); + if (0 != count($categories)) : + foreach ($categories as $post_category) : + // See if the category exists yet + $cat_id = $wpdb->get_var("SELECT cat_ID from $tablecategories WHERE cat_name = '$post_category'"); + if (!$cat_id && '' != trim($post_category)) { + $cat_nicename = sanitize_title($post_category); + $wpdb->query("INSERT INTO $tablecategories (cat_name, category_nicename) VALUES ('$post_category', '$cat_nicename')"); + $cat_id = $wpdb->get_var("SELECT cat_ID from $tablecategories WHERE cat_name = '$post_category'"); + } + if ('' == trim($post_category)) $cat_id = 1; + // Double check it's not there already + $exists = $wpdb->get_row("SELECT * FROM $tablepost2cat WHERE post_id = $post_id AND category_id = $cat_id"); + + if (!$exists) { + $wpdb->query(" + INSERT INTO $tablepost2cat + (post_id, category_id) + VALUES + ($post_id, $cat_id) + "); + } + endforeach; + else: + $exists = $wpdb->get_row("SELECT * FROM $tablepost2cat WHERE post_id = $post_id AND category_id = 1"); + if (!$exists) $wpdb->query("INSERT INTO $tablepost2cat (post_id, category_id) VALUES ($post_id, 1) "); + endif; + echo 'Done!
  2. '; +endif; + + +endforeach; +?> +
+ +

All done. Have fun!

+ + + \ No newline at end of file diff --git a/wp-admin/import-rss.php b/wp-admin/import-rss.php index 8372d3797..02bb13b11 100644 --- a/wp-admin/import-rss.php +++ b/wp-admin/import-rss.php @@ -53,7 +53,7 @@ switch($step) { case 0: ?> -

Howdy! This importer allows you to extract posts from any RSS 2.0 file into your blog. This is useful if you want to import your posts from a system that is not handled by a custom import tool. To get started you must edit the following line this file (import-rss.php)

+

Howdy! This importer allows you to extract posts from any RSS 2.0 file into your blog. This is useful if you want to import your posts from a system that is not handled by a custom import tool. To get started you must edit the following line in this file (import-rss.php)

define('RSSFILE', '');

You want to define where the RSS file we'll be working with is, for example:

define('RSSFILE', 'rss.xml');