PHP 5.4 sets UTF-8 as the default for htmlspecialchars, htmlentities and html_entity_decode. The first two will echo an empty string when given a string with umlauts. This commits introduces serendipity_specialchar-wrapper that are meant to be a temporary solution for the s9y-core until PHP 5.6 fixed the bug, so the native charset option of s9y continues to work.
255 lines
11 KiB
PHP
255 lines
11 KiB
PHP
<?php # $Id: wordpress.inc.php,v 1.16 2005/05/17 11:34:48 garvinhicking Exp $
|
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
|
# All rights reserved. See LICENSE file for licensing details
|
|
|
|
/*****************************************************************
|
|
* WordPress PostgreSQL Importer, by Devrim GUNDUZ *
|
|
*****************************************************************/
|
|
|
|
class Serendipity_Import_WordPress_PG extends Serendipity_Import {
|
|
var $info = array('software' => 'WordPress PostgreSQL');
|
|
var $data = array();
|
|
var $inputFields = array();
|
|
|
|
|
|
function Serendipity_Import_WordPress_PG($data) {
|
|
$this->data = $data;
|
|
$this->inputFields = array(array('text' => INSTALL_DBHOST,
|
|
'type' => 'input',
|
|
'name' => 'host'),
|
|
|
|
array('text' => INSTALL_DBUSER,
|
|
'type' => 'input',
|
|
'name' => 'user'),
|
|
|
|
array('text' => INSTALL_DBPASS,
|
|
'type' => 'protected',
|
|
'name' => 'password'),
|
|
|
|
array('text' => INSTALL_DBPORT,
|
|
'type' => 'input',
|
|
'name' => 'port'),
|
|
|
|
array('text' => INSTALL_DBNAME,
|
|
'type' => 'input',
|
|
'name' => 'name'),
|
|
|
|
array('text' => INSTALL_DBPREFIX,
|
|
'type' => 'input',
|
|
'name' => 'prefix'),
|
|
|
|
array('text' => CHARSET,
|
|
'type' => 'list',
|
|
'name' => 'charset',
|
|
'value' => 'UTF-8',
|
|
'default' => $this->getCharsets(true)),
|
|
|
|
array('text' => CONVERT_HTMLENTITIES,
|
|
'type' => 'bool',
|
|
'name' => 'use_strtr',
|
|
'default' => 'true'),
|
|
|
|
array('text' => ACTIVATE_AUTODISCOVERY,
|
|
'type' => 'bool',
|
|
'name' => 'autodiscovery',
|
|
'default' => 'false')
|
|
);
|
|
}
|
|
|
|
function validateData() {
|
|
return sizeof($this->data);
|
|
}
|
|
|
|
function getInputFields() {
|
|
return $this->inputFields;
|
|
}
|
|
|
|
function import() {
|
|
global $serendipity;
|
|
|
|
// Save this so we can return it to its original value at the end of this method.
|
|
$noautodiscovery = isset($serendipity['noautodiscovery']) ? $serendipity['noautodiscovery'] : false;
|
|
|
|
if ($this->data['autodiscovery'] == 'false') {
|
|
$serendipity['noautodiscovery'] = 1;
|
|
}
|
|
|
|
$this->getTransTable();
|
|
|
|
$this->data['prefix'] = serendipity_db_escape_string($this->data['prefix']);
|
|
$users = array();
|
|
$categories = array();
|
|
$entries = array();
|
|
|
|
if ( !extension_loaded('pgsql') ) {
|
|
return PGSQL_REQUIRED;;
|
|
}
|
|
|
|
$wpdb = pg_connect("$this->data['host'], $this->data['port'], $this->data['user'], $this->data['pass'], $this->data['name']");
|
|
if ( !$wpdb ) {
|
|
return sprintf(PGSQL_COULDNT_CONNECT, serendipity_specialchars($this->data['pass']));
|
|
}
|
|
|
|
/* Users */
|
|
$res = pg_query($wpdb, "SELECT ID, user_login, user_pass, user_email, user_level FROM {$this->data['prefix']}users;");
|
|
if ( !$res ) {
|
|
return sprintf(COULDNT_SELECT_USER_INFO, pg_last_error($wpdb));
|
|
}
|
|
|
|
for ( $x=0 ; $x<pg_num_rows($res) ; $x++ ) {
|
|
$users[$x] = pg_fetch_assoc($res);
|
|
|
|
$data = array('right_publish' => ($users[$x]['user_level'] >= 1) ? 1 : 0,
|
|
'realname' => $users[$x]['user_login'],
|
|
'username' => $users[$x]['user_login'],
|
|
'password' => $users[$x]['user_pass']); // WP uses md5, too.
|
|
|
|
if ( $users[$x]['user_level'] <= 1 ) {
|
|
$data['userlevel'] = USERLEVEL_EDITOR;
|
|
} elseif ( $users[$x]['user_level'] < 5 ) {
|
|
$data['userlevel'] = USERLEVEL_CHIEF;
|
|
} else {
|
|
$data['userlevel'] = USERLEVEL_ADMIN;
|
|
}
|
|
|
|
if ($serendipity['serendipityUserlevel'] < $data['userlevel']) {
|
|
$data['userlevel'] = $serendipity['serendipityUserlevel'];
|
|
}
|
|
|
|
serendipity_db_insert('authors', $this->strtrRecursive($data));
|
|
$users[$x]['authorid'] = serendipity_db_insert_id('authors', 'authorid');
|
|
}
|
|
|
|
/* Categories */
|
|
$res = @pg_query($wpdb, "SELECT cat_ID, cat_name, category_description, category_parent FROM {$this->data['prefix']}categories ORDER BY category_parent, cat_ID;");
|
|
if ( !$res ) {
|
|
return sprintf(COULDNT_SELECT_CATEGORY_INFO, pg_last_error($wpdb));
|
|
}
|
|
|
|
// Get all the info we need
|
|
for ( $x=0 ; $x<pg_num_rows($res) ; $x++ )
|
|
$categories[] = pg_fetch_assoc($res);
|
|
|
|
// Insert all categories as top level (we need to know everyone's ID before we can represent the hierarchy).
|
|
for ( $x=0 ; $x<sizeof($categories) ; $x++ ) {
|
|
$cat = array('category_name' => $categories[$x]['cat_name'],
|
|
'category_description' => $categories[$x]['category_description'],
|
|
'parentid' => 0, // <---
|
|
'category_left' => 0,
|
|
'category_right' => 0);
|
|
|
|
serendipity_db_insert('category', $this->strtrRecursive($cat));
|
|
$categories[$x]['categoryid'] = serendipity_db_insert_id('category', 'categoryid');
|
|
}
|
|
|
|
// There has to be a more efficient way of doing this...
|
|
foreach ( $categories as $cat ) {
|
|
if ( $cat['category_parent'] != 0 ) {
|
|
// Find the parent
|
|
$par_id = 0;
|
|
foreach ( $categories as $possible_par ) {
|
|
if ( $possible_par['cat_ID'] == $cat['category_parent'] ) {
|
|
$par_id = $possible_par['categoryid'];
|
|
break;
|
|
}
|
|
}
|
|
|
|
if ( $par_id != 0 ) {
|
|
serendipity_db_query("UPDATE {$serendipity['dbPrefix']}category SET parentid={$par_id} WHERE categoryid={$cat['categoryid']};");
|
|
} // else { echo "D'oh! " . random_string_of_profanity(); }
|
|
}
|
|
}
|
|
|
|
serendipity_rebuildCategoryTree();
|
|
|
|
/* Entries */
|
|
$res = @pg_query($wpdb, "SELECT * FROM {$this->data['prefix']}posts ORDER BY post_date;");
|
|
if ( !$res ) {
|
|
return sprintf(COULDNT_SELECT_ENTRY_INFO, pg_last_error($wpdb));
|
|
}
|
|
|
|
for ( $x=0 ; $x<pg_num_rows($res) ; $x++ ) {
|
|
$entries[$x] = pg_fetch_assoc($res);
|
|
|
|
$entry = array('title' => $this->decode($entries[$x]['post_title']), // htmlentities() is called later, so we can leave this.
|
|
'isdraft' => ($entries[$x]['post_status'] == 'publish') ? 'false' : 'true',
|
|
'allow_comments' => ($entries[$x]['comment_status'] == 'open' ) ? 'true' : 'false',
|
|
'timestamp' => strtotime($entries[$x]['post_date']),
|
|
'body' => $this->strtr($entries[$x]['post_content']));
|
|
|
|
foreach ( $users as $user ) {
|
|
if ( $user['ID'] == $entries[$x]['post_author'] ) {
|
|
$entry['authorid'] = $user['authorid'];
|
|
break;
|
|
}
|
|
}
|
|
|
|
if ( !is_int($entries[$x]['entryid'] = serendipity_updertEntry($entry)) ) {
|
|
return $entries[$x]['entryid'];
|
|
}
|
|
}
|
|
|
|
/* Entry/category */
|
|
$res = @pg_query($wpdb, "SELECT * FROM {$this->data['prefix']}post2cat;");
|
|
if ( !$res ) {
|
|
return sprintf(COULDNT_SELECT_ENTRY_INFO, pg_last_error($wpdb));
|
|
}
|
|
|
|
while ( $a = pg_fetch_assoc($res) ) {
|
|
foreach ( $categories as $category ) {
|
|
if ( $category['cat_ID'] == $a['category_id'] ) {
|
|
foreach ( $entries as $entry ) {
|
|
if ( $a['post_id'] == $entry['ID'] ) {
|
|
$data = array('entryid' => $entry['entryid'],
|
|
'categoryid' => $category['categoryid']);
|
|
serendipity_db_insert('entrycat', $this->strtrRecursive($data));
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Comments */
|
|
$res = @pg_query($wpdb, "SELECT * FROM {$this->data['prefix']}comments;");
|
|
if ( !$res ) {
|
|
return sprintf(COULDNT_SELECT_COMMENT_INFO, pg_last_error($wpdb));
|
|
}
|
|
|
|
while ( $a = pg_fetch_assoc($res) ) {
|
|
foreach ( $entries as $entry ) {
|
|
if ( $entry['ID'] == $a['comment_post_ID'] ) {
|
|
$comment = array('entry_id ' => $entry['entryid'],
|
|
'parent_id' => 0,
|
|
'timestamp' => strtotime($a['comment_date']),
|
|
'author' => $a['comment_author'],
|
|
'email' => $a['comment_author_email'],
|
|
'url' => $a['comment_author_url'],
|
|
'ip' => $a['comment_author_IP'],
|
|
'status' => (empty($a['comment_approved']) || $a['comment_approved'] == '1') ? 'approved' : 'pending',
|
|
'subscribed'=> 'false',
|
|
'body' => $a['comment_content'],
|
|
'type' => 'NORMAL');
|
|
|
|
serendipity_db_insert('comments', $this->strtrRecursive($comment));
|
|
if ($comment['status'] == 'approved') {
|
|
$cid = serendipity_db_insert_id('comments', 'id');
|
|
serendipity_approveComment($cid, $entry['entryid'], true);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
$serendipity['noautodiscovery'] = $noautodiscovery;
|
|
|
|
// That was fun.
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return 'Serendipity_Import_WordPress_PG';
|
|
|
|
/* vim: set sts=4 ts=4 expandtab : */
|
|
?>
|