2005-12-28 21:24:12 +01:00
|
|
|
<?php
|
2008-08-14 08:30:38 +02:00
|
|
|
/**
|
|
|
|
* LiveJournal Importer
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Importer
|
|
|
|
*/
|
2005-12-28 21:24:12 +01:00
|
|
|
|
2008-08-14 08:30:38 +02:00
|
|
|
/**
|
|
|
|
* LiveJournal Importer class
|
|
|
|
*
|
|
|
|
* Imports your LiveJournal XML exported file into WordPress.
|
|
|
|
*
|
|
|
|
* @since unknown
|
|
|
|
*/
|
2005-12-28 21:24:12 +01:00
|
|
|
class LJ_Import {
|
|
|
|
|
|
|
|
var $file;
|
|
|
|
|
|
|
|
function header() {
|
|
|
|
echo '<div class="wrap">';
|
|
|
|
echo '<h2>'.__('Import LiveJournal').'</h2>';
|
|
|
|
}
|
|
|
|
|
|
|
|
function footer() {
|
|
|
|
echo '</div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
function unhtmlentities($string) { // From php.net for < 4.3 compat
|
|
|
|
$trans_tbl = get_html_translation_table(HTML_ENTITIES);
|
|
|
|
$trans_tbl = array_flip($trans_tbl);
|
|
|
|
return strtr($string, $trans_tbl);
|
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-12-28 21:24:12 +01:00
|
|
|
function greet() {
|
2006-10-06 03:14:47 +02:00
|
|
|
echo '<div class="narrow">';
|
2006-12-05 08:15:12 +01:00
|
|
|
echo '<p>'.__('Howdy! Upload your LiveJournal XML export file and we’ll import the posts into this blog.').'</p>';
|
|
|
|
echo '<p>'.__('Choose a LiveJournal XML file to upload, then click Upload file and import.').'</p>';
|
2005-12-28 21:24:12 +01:00
|
|
|
wp_import_upload_form("admin.php?import=livejournal&step=1");
|
2006-10-06 03:14:47 +02:00
|
|
|
echo '</div>';
|
2005-12-28 21:24:12 +01:00
|
|
|
}
|
|
|
|
|
2005-12-29 02:25:41 +01:00
|
|
|
function import_posts() {
|
2005-12-28 21:24:12 +01:00
|
|
|
global $wpdb, $current_user;
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-12-28 21:24:12 +01:00
|
|
|
set_magic_quotes_runtime(0);
|
2005-12-29 02:25:41 +01:00
|
|
|
$importdata = file($this->file); // Read the file into an array
|
|
|
|
$importdata = implode('', $importdata); // squish it
|
2005-12-28 21:24:12 +01:00
|
|
|
$importdata = str_replace(array ("\r\n", "\r"), "\n", $importdata);
|
|
|
|
|
2005-12-29 02:25:41 +01:00
|
|
|
preg_match_all('|<entry>(.*?)</entry>|is', $importdata, $posts);
|
|
|
|
$posts = $posts[1];
|
|
|
|
unset($importdata);
|
2006-02-12 08:53:23 +01:00
|
|
|
echo '<ol>';
|
2005-12-29 02:25:41 +01:00
|
|
|
foreach ($posts as $post) {
|
2005-12-28 21:24:12 +01:00
|
|
|
preg_match('|<subject>(.*?)</subject>|is', $post, $post_title);
|
|
|
|
$post_title = $wpdb->escape(trim($post_title[1]));
|
|
|
|
if ( empty($post_title) ) {
|
2005-12-29 02:25:41 +01:00
|
|
|
preg_match('|<itemid>(.*?)</itemid>|is', $post, $post_title);
|
2005-12-28 21:24:12 +01:00
|
|
|
$post_title = $wpdb->escape(trim($post_title[1]));
|
|
|
|
}
|
|
|
|
|
2005-12-29 02:25:41 +01:00
|
|
|
preg_match('|<eventtime>(.*?)</eventtime>|is', $post, $post_date);
|
2005-12-28 21:24:12 +01:00
|
|
|
$post_date = strtotime($post_date[1]);
|
2007-04-27 02:56:12 +02:00
|
|
|
$post_date = date('Y-m-d H:i:s', $post_date);
|
2005-12-28 21:24:12 +01:00
|
|
|
|
|
|
|
preg_match('|<event>(.*?)</event>|is', $post, $post_content);
|
2005-12-29 02:25:41 +01:00
|
|
|
$post_content = str_replace(array ('<![CDATA[', ']]>'), '', trim($post_content[1]));
|
|
|
|
$post_content = $this->unhtmlentities($post_content);
|
2005-12-28 21:24:12 +01:00
|
|
|
|
|
|
|
// Clean up content
|
|
|
|
$post_content = preg_replace('|<(/?[A-Z]+)|e', "'<' . strtolower('$1')", $post_content);
|
|
|
|
$post_content = str_replace('<br>', '<br />', $post_content);
|
|
|
|
$post_content = str_replace('<hr>', '<hr />', $post_content);
|
2005-12-29 02:25:41 +01:00
|
|
|
$post_content = $wpdb->escape($post_content);
|
2005-12-28 21:24:12 +01:00
|
|
|
|
|
|
|
$post_author = $current_user->ID;
|
|
|
|
$post_status = 'publish';
|
|
|
|
|
2005-12-29 02:25:41 +01:00
|
|
|
echo '<li>';
|
2005-12-28 21:24:12 +01:00
|
|
|
if ($post_id = post_exists($post_title, $post_content, $post_date)) {
|
2008-02-29 18:09:44 +01:00
|
|
|
printf(__('Post <em>%s</em> already exists.'), stripslashes($post_title));
|
2005-12-28 21:24:12 +01:00
|
|
|
} else {
|
2008-02-29 18:09:44 +01:00
|
|
|
printf(__('Importing post <em>%s</em>...'), stripslashes($post_title));
|
2006-01-05 06:35:09 +01:00
|
|
|
$postdata = compact('post_author', 'post_date', 'post_content', 'post_title', 'post_status');
|
|
|
|
$post_id = wp_insert_post($postdata);
|
2007-09-18 18:32:22 +02:00
|
|
|
if ( is_wp_error( $post_id ) )
|
|
|
|
return $post_id;
|
2005-12-28 21:24:12 +01:00
|
|
|
if (!$post_id) {
|
|
|
|
_e("Couldn't get post ID");
|
2005-12-29 02:25:41 +01:00
|
|
|
echo '</li>';
|
|
|
|
break;
|
2005-12-28 21:24:12 +01:00
|
|
|
}
|
2005-12-29 02:25:41 +01:00
|
|
|
}
|
2005-12-28 21:24:12 +01:00
|
|
|
|
2005-12-29 02:25:41 +01:00
|
|
|
preg_match_all('|<comment>(.*?)</comment>|is', $post, $comments);
|
|
|
|
$comments = $comments[1];
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-12-29 02:25:41 +01:00
|
|
|
if ( $comments ) {
|
2007-03-23 01:59:21 +01:00
|
|
|
$comment_post_ID = (int) $post_id;
|
2005-12-29 02:25:41 +01:00
|
|
|
$num_comments = 0;
|
|
|
|
foreach ($comments as $comment) {
|
|
|
|
preg_match('|<event>(.*?)</event>|is', $comment, $comment_content);
|
|
|
|
$comment_content = str_replace(array ('<![CDATA[', ']]>'), '', trim($comment_content[1]));
|
|
|
|
$comment_content = $this->unhtmlentities($comment_content);
|
|
|
|
|
|
|
|
// Clean up content
|
|
|
|
$comment_content = preg_replace('|<(/?[A-Z]+)|e', "'<' . strtolower('$1')", $comment_content);
|
|
|
|
$comment_content = str_replace('<br>', '<br />', $comment_content);
|
|
|
|
$comment_content = str_replace('<hr>', '<hr />', $comment_content);
|
|
|
|
$comment_content = $wpdb->escape($comment_content);
|
|
|
|
|
|
|
|
preg_match('|<eventtime>(.*?)</eventtime>|is', $comment, $comment_date);
|
|
|
|
$comment_date = trim($comment_date[1]);
|
|
|
|
$comment_date = date('Y-m-d H:i:s', strtotime($comment_date));
|
|
|
|
|
|
|
|
preg_match('|<name>(.*?)</name>|is', $comment, $comment_author);
|
|
|
|
$comment_author = $wpdb->escape(trim($comment_author[1]));
|
|
|
|
|
|
|
|
preg_match('|<email>(.*?)</email>|is', $comment, $comment_author_email);
|
|
|
|
$comment_author_email = $wpdb->escape(trim($comment_author_email[1]));
|
|
|
|
|
|
|
|
$comment_approved = 1;
|
|
|
|
// Check if it's already there
|
|
|
|
if (!comment_exists($comment_author, $comment_date)) {
|
|
|
|
$commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_date', 'comment_content', 'comment_approved');
|
|
|
|
$commentdata = wp_filter_comment($commentdata);
|
|
|
|
wp_insert_comment($commentdata);
|
|
|
|
$num_comments++;
|
|
|
|
}
|
|
|
|
}
|
2005-12-28 21:24:12 +01:00
|
|
|
}
|
2006-01-05 06:35:09 +01:00
|
|
|
if ( $num_comments ) {
|
|
|
|
echo ' ';
|
2007-12-20 18:05:06 +01:00
|
|
|
printf(__ngettext('(%s comment)', '(%s comments)', $num_comments), $num_comments);
|
2006-01-05 06:35:09 +01:00
|
|
|
}
|
2005-12-28 21:24:12 +01:00
|
|
|
echo '</li>';
|
|
|
|
}
|
|
|
|
echo '</ol>';
|
|
|
|
}
|
|
|
|
|
|
|
|
function import() {
|
|
|
|
$file = wp_import_handle_upload();
|
|
|
|
if ( isset($file['error']) ) {
|
|
|
|
echo $file['error'];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->file = $file['file'];
|
2007-09-18 18:32:22 +02:00
|
|
|
$result = $this->import_posts();
|
|
|
|
if ( is_wp_error( $result ) )
|
|
|
|
return $result;
|
2005-12-28 21:24:12 +01:00
|
|
|
wp_import_cleanup($file['id']);
|
2007-12-23 02:10:29 +01:00
|
|
|
do_action('import_done', 'livejournal');
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-12-28 21:24:12 +01:00
|
|
|
echo '<h3>';
|
|
|
|
printf(__('All done. <a href="%s">Have fun!</a>'), get_option('home'));
|
|
|
|
echo '</h3>';
|
|
|
|
}
|
|
|
|
|
|
|
|
function dispatch() {
|
|
|
|
if (empty ($_GET['step']))
|
|
|
|
$step = 0;
|
|
|
|
else
|
|
|
|
$step = (int) $_GET['step'];
|
|
|
|
|
|
|
|
$this->header();
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-12-28 21:24:12 +01:00
|
|
|
switch ($step) {
|
|
|
|
case 0 :
|
|
|
|
$this->greet();
|
|
|
|
break;
|
|
|
|
case 1 :
|
2007-05-07 17:56:53 +02:00
|
|
|
check_admin_referer('import-upload');
|
2007-09-18 18:32:22 +02:00
|
|
|
$result = $this->import();
|
|
|
|
if ( is_wp_error( $result ) )
|
|
|
|
echo $result->get_error_message();
|
2005-12-28 21:24:12 +01:00
|
|
|
break;
|
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-12-28 21:24:12 +01:00
|
|
|
$this->footer();
|
|
|
|
}
|
|
|
|
|
|
|
|
function LJ_Import() {
|
2006-02-12 08:53:23 +01:00
|
|
|
// Nothing.
|
2005-12-28 21:24:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$livejournal_import = new LJ_Import();
|
|
|
|
|
2008-02-27 23:05:50 +01:00
|
|
|
register_importer('livejournal', __('LiveJournal'), __('Import posts from a LiveJournal XML export file.'), array ($livejournal_import, 'dispatch'));
|
2005-12-28 21:24:12 +01:00
|
|
|
?>
|