-
-
Save ntwb/0bb069e5994c0ee8e85e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Implementation of Wotlab Burning Board v4.x Forum Converter. | |
* | |
* @since bbPress (r5104) | |
* @link Codex Docs http://codex.bbpress.org/import-forums/burningboard | |
*/ | |
class wbb4 extends BBP_Converter_Base { | |
/** | |
* Main Constructor | |
* | |
* @uses wbb4::setup_globals() | |
*/ | |
function __construct() { | |
parent::__construct(); | |
$this->setup_globals(); | |
} | |
/** | |
* Sets up the field mappings | |
*/ | |
public function setup_globals() { | |
/** Forum Section *****************************************************/ | |
// Forum id (Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_board', | |
'from_fieldname' => 'boardID', | |
'to_type' => 'forum', | |
'to_fieldname' => '_bbp_forum_id' | |
); | |
// Forum parent id (If no parent, then 0. Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_board', | |
'from_fieldname' => 'parentID', | |
'to_type' => 'forum', | |
'to_fieldname' => '_bbp_forum_parent_id' | |
); | |
// Forum topic count (Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_board', | |
'from_fieldname' => 'threads', | |
'to_type' => 'forum', | |
'to_fieldname' => '_bbp_topic_count' | |
); | |
// Forum reply count (Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_board', | |
'from_fieldname' => 'posts', | |
'to_type' => 'forum', | |
'to_fieldname' => '_bbp_reply_count' | |
); | |
// Forum total topic count (Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_board', | |
'from_fieldname' => 'threads', | |
'to_type' => 'forum', | |
'to_fieldname' => '_bbp_total_topic_count' | |
); | |
// Forum total reply count (Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_board', | |
'from_fieldname' => 'posts', | |
'to_type' => 'forum', | |
'to_fieldname' => '_bbp_total_reply_count' | |
); | |
// Forum title. | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_board', | |
'from_fieldname' => 'title', | |
'to_type' => 'forum', | |
'to_fieldname' => 'post_title' | |
); | |
// Forum slug (Clean name to avoid confilcts) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_board', | |
'from_fieldname' => 'title', | |
'to_type' => 'forum', | |
'to_fieldname' => 'post_name', | |
'callback_method' => 'callback_slug' | |
); | |
// Forum description. | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_board', | |
'from_fieldname' => 'description', | |
'to_type' => 'forum', | |
'to_fieldname' => 'post_content', | |
'callback_method' => 'callback_null' | |
); | |
// Forum display order (Starts from 1) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_board', | |
'from_fieldname' => 'position', | |
'to_type' => 'forum', | |
'to_fieldname' => 'menu_order' | |
); | |
// Forum type (Forum = 0 or Category = 1, Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_board', | |
'from_fieldname' => 'boardType', | |
'to_type' => 'forum', | |
'to_fieldname' => '_bbp_forum_type', | |
'callback_method' => 'callback_forum_type' | |
); | |
// Forum status (0=Open or 1=Closed, Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_board', | |
'from_fieldname' => 'isClosed', | |
'to_type' => 'forum', | |
'to_fieldname' => '_bbp_status', | |
'callback_method' => 'callback_forum_status' | |
); | |
// Forum dates. | |
$this->field_map[] = array( | |
'to_type' => 'forum', | |
'to_fieldname' => 'post_date', | |
'default' => date('Y-m-d H:i:s') | |
); | |
$this->field_map[] = array( | |
'to_type' => 'forum', | |
'to_fieldname' => 'post_date_gmt', | |
'default' => date('Y-m-d H:i:s') | |
); | |
$this->field_map[] = array( | |
'to_type' => 'forum', | |
'to_fieldname' => 'post_modified', | |
'default' => date('Y-m-d H:i:s') | |
); | |
$this->field_map[] = array( | |
'to_type' => 'forum', | |
'to_fieldname' => 'post_modified_gmt', | |
'default' => date('Y-m-d H:i:s') | |
); | |
/** Topic Section *****************************************************/ | |
// Topic id (Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'threadID', | |
'to_type' => 'topic', | |
'to_fieldname' => '_bbp_topic_id' | |
); | |
// Topic language (Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'languageID', | |
'to_type' => 'topic', | |
'to_fieldname' => '_bbp_language', | |
'callback_method' => 'callback_topic_language' | |
); | |
// Topic reply count (Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'replies', | |
'to_type' => 'topic', | |
'to_fieldname' => '_bbp_reply_count', | |
'callback_method' => 'callback_topic_reply_count' | |
); | |
// Topic total reply count (Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'replies', | |
'to_type' => 'topic', | |
'to_fieldname' => '_bbp_total_reply_count', | |
'callback_method' => 'callback_topic_reply_count' | |
); | |
// Topic parent forum id (If no parent, then 0. Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'boardID', | |
'to_type' => 'topic', | |
'to_fieldname' => '_bbp_forum_id', | |
'callback_method' => 'callback_forumid' | |
); | |
// Topic author. | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'userID', | |
'to_type' => 'topic', | |
'to_fieldname' => 'post_author', | |
'callback_method' => 'callback_userid' | |
); | |
// Topic author ip (Stored in postmeta) | |
// Note: We join the 'wbb1_1_post' table because 'wbb1_1_thread' does not include author ip. | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_post', | |
'from_fieldname' => 'ipAddress', | |
'join_tablename' => 'wbb1_thread', | |
'join_type' => 'INNER', | |
'join_expression' => 'USING (threadID) WHERE wbb1_post.postID = wbb1_thread.firstPostID', | |
'to_type' => 'topic', | |
'to_fieldname' => '_bbp_author_ip' | |
); | |
// Topic content. | |
// Note: We join the 'wbb1_1_post' table because 'wbb1_thread' does not include topic content. | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_post', | |
'from_fieldname' => 'message', | |
'join_tablename' => 'wbb1_thread', | |
'join_type' => 'INNER', | |
'join_expression' => 'USING (threadID) WHERE wbb1_post.postID = wbb1_thread.firstPostID', | |
'to_type' => 'topic', | |
'to_fieldname' => 'post_content', | |
'callback_method' => 'callback_html' | |
); | |
// Topic title. | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'topic', | |
'to_type' => 'topic', | |
'to_fieldname' => 'post_title' | |
); | |
// Topic slug (Clean name to avoid conflicts) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'topic', | |
'to_type' => 'topic', | |
'to_fieldname' => 'post_name', | |
'callback_method' => 'callback_slug' | |
); | |
// Topic parent forum id (If no parent, then 0) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'boardID', | |
'to_type' => 'topic', | |
'to_fieldname' => 'post_parent', | |
'callback_method' => 'callback_forumid' | |
); | |
// Topic dates. | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'time', | |
'to_type' => 'topic', | |
'to_fieldname' => 'post_date', | |
'callback_method' => 'callback_datetime' | |
); | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'time', | |
'to_type' => 'topic', | |
'to_fieldname' => 'post_date_gmt', | |
'callback_method' => 'callback_datetime' | |
); | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'time', | |
'to_type' => 'topic', | |
'to_fieldname' => 'post_modified', | |
'callback_method' => 'callback_datetime' | |
); | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'time', | |
'to_type' => 'topic', | |
'to_fieldname' => 'post_modified_gmt', | |
'callback_method' => 'callback_datetime' | |
); | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'lastPostTime', | |
'to_type' => 'topic', | |
'to_fieldname' => '_bbp_last_active_time', | |
'callback_method' => 'callback_datetime' | |
); | |
// Topic status (Open or Closed) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'isClosed', | |
'to_type' => 'topic', | |
'to_fieldname' => 'post_status', | |
'callback_method' => 'callback_topic_status' | |
); | |
/** Tags Section ******************************************************/ | |
/** | |
* WBB v3.x Forums do not support topic tags out of the box. WBB4?! | |
*/ | |
/** Reply Section *****************************************************/ | |
// Reply id (Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_post', | |
'from_fieldname' => 'postID', | |
'to_type' => 'reply', | |
'to_fieldname' => '_bbp_post_id' | |
); | |
// Reply parent forum id (If no parent, then 0. Stored in postmeta) | |
// Note: We join the 'wbb1_1_thread' table because 'wbb1_1_post' does not include forum id. | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_thread', | |
'from_fieldname' => 'boardID', | |
'join_tablename' => 'wbb1_post', | |
'join_type' => 'INNER', | |
'join_expression' => 'USING (threadID) WHERE wbb1_post.postID != wbb1_thread.firstPostID', | |
'to_type' => 'reply', | |
'to_fieldname' => '_bbp_forum_id', | |
'callback_method' => 'callback_forumid' | |
); | |
// Reply parent topic id (If no parent, then 0. Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_post', | |
'from_fieldname' => 'threadID', | |
'to_type' => 'reply', | |
'to_fieldname' => '_bbp_topic_id', | |
'callback_method' => 'callback_topicid' | |
); | |
// Reply author ip (Stored in postmeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_post', | |
'from_fieldname' => 'ipAddress', | |
'to_type' => 'reply', | |
'to_fieldname' => '_bbp_author_ip' | |
); | |
// Reply author. | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_post', | |
'from_fieldname' => 'userID', | |
'to_type' => 'reply', | |
'to_fieldname' => 'post_author', | |
'callback_method' => 'callback_userid' | |
); | |
// Reply title. | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_post', | |
'from_fieldname' => 'subject', | |
'to_type' => 'reply', | |
'to_fieldname' => 'post_title' | |
); | |
// Reply slug (Clean name to avoid conflicts) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_post', | |
'from_fieldname' => 'subject', | |
'to_type' => 'reply', | |
'to_fieldname' => 'post_name', | |
'callback_method' => 'callback_slug' | |
); | |
// Reply content. | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_post', | |
'from_fieldname' => 'message', | |
'to_type' => 'reply', | |
'to_fieldname' => 'post_content', | |
'callback_method' => 'callback_html' | |
); | |
// Reply parent topic id (If no parent, then 0) | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_post', | |
'from_fieldname' => 'threadID', | |
'to_type' => 'reply', | |
'to_fieldname' => 'post_parent', | |
'callback_method' => 'callback_topicid' | |
); | |
// Reply dates. | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_post', | |
'from_fieldname' => 'time', | |
'to_type' => 'reply', | |
'to_fieldname' => 'post_date', | |
'callback_method' => 'callback_datetime' | |
); | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_post', | |
'from_fieldname' => 'time', | |
'to_type' => 'reply', | |
'to_fieldname' => 'post_date_gmt', | |
'callback_method' => 'callback_datetime' | |
); | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_post', | |
'from_fieldname' => 'lastEditTime', | |
'to_type' => 'reply', | |
'to_fieldname' => 'post_modified', | |
'callback_method' => 'callback_datetime' | |
); | |
$this->field_map[] = array( | |
'from_tablename' => 'wbb1_post', | |
'from_fieldname' => 'lastEditTime', | |
'to_type' => 'reply', | |
'to_fieldname' => 'post_modified_gmt', | |
'callback_method' => 'callback_datetime' | |
); | |
/** User Section ******************************************************/ | |
// Store old User id (Stored in usermeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wcf1_user', | |
'from_fieldname' => 'userID', | |
'to_type' => 'user', | |
'to_fieldname' => '_bbp_user_id' | |
); | |
// User name. | |
$this->field_map[] = array( | |
'from_tablename' => 'wcf1_user', | |
'from_fieldname' => 'username', | |
'to_type' => 'user', | |
'to_fieldname' => 'user_login' | |
); | |
// User nice name. | |
$this->field_map[] = array( | |
'from_tablename' => 'wcf1_user', | |
'from_fieldname' => 'username', | |
'to_type' => 'user', | |
'to_fieldname' => 'user_nicename' | |
); | |
// User email. | |
$this->field_map[] = array( | |
'from_tablename' => 'wcf1_user', | |
'from_fieldname' => 'email', | |
'to_type' => 'user', | |
'to_fieldname' => 'user_email' | |
); | |
// User registered. | |
$this->field_map[] = array( | |
'from_tablename' => 'wcf1_user', | |
'from_fieldname' => 'registrationDate', | |
'to_type' => 'user', | |
'to_fieldname' => 'user_registered', | |
'callback_method' => 'callback_datetime' | |
); | |
// Store Signature (Stored in usermeta) | |
$this->field_map[] = array( | |
'from_tablename' => 'wcf1_user', | |
'from_fieldname' => 'signature', | |
'to_fieldname' => '_bbp_wbb4_user_sig', | |
'to_type' => 'user', | |
'callback_method' => 'callback_html' | |
); | |
} | |
/** | |
* This method allows us to indicates what is or is not converted for each | |
* converter. | |
*/ | |
public function info() { | |
return ''; | |
} | |
/** | |
* Translate the forum type from WBB v4.x numeric's to WordPress's strings. | |
* | |
* @param int $status WBBx v4.x numeric forum type | |
* @return string WordPress safe | |
*/ | |
public function callback_forum_type( $status = 0 ) { | |
switch ( $status ) { | |
case 1 : | |
$status = 'category'; | |
break; | |
case 0 : | |
default : | |
$status = 'forum'; | |
break; | |
} | |
return $status; | |
} | |
/** | |
* Translate the forum status from WBB v4.x numeric's to WordPress's strings. | |
* | |
* @param int $status WBB v4.x numeric forum status | |
* @return string WordPress safe | |
*/ | |
public function callback_forum_status( $status = 0 ) { | |
switch ( $status ) { | |
case 1 : | |
$status = 'closed'; | |
break; | |
case 0 : | |
default : | |
$status = 'open'; | |
break; | |
} | |
return $status; | |
} | |
/** | |
* Translate the post status from WBB v4.x numeric's to WordPress's strings. | |
* | |
* @param int $status WBB v4.x numeric forum status | |
* @return string WordPress safe | |
* | |
*/ | |
public function callback_topic_status( $status = 0 ) { | |
switch ( $status ) { | |
case 1 : | |
$status = 'closed'; | |
break; | |
case 0 : | |
default : | |
$status = 'publish'; | |
break; | |
} | |
return $status; | |
} | |
/** | |
* Verify the topic reply count. | |
* | |
* @param int $count WBB v4.x reply count | |
* @return string WordPress safe | |
*/ | |
public function callback_topic_reply_count( $count = 1 ) { | |
$count = absint( (int) $count - 1 ); | |
return $count; | |
} | |
/** | |
* Set languages, add more languages if needed | |
* | |
* @param int $language WBB v4.x numeric forum status | |
* @return string WordPress safe | |
*/ | |
public function callback_topic_language( $language = 4 ) { | |
switch ( $language ) { | |
case 4 : | |
$language = 'German'; | |
break; | |
case 5 : | |
default : | |
$language = 'English'; | |
break; | |
} | |
return $language; | |
} | |
/** | |
* This callback processes any custom BBCodes with parser.php | |
*/ | |
#protected function callback_html( $field ) { | |
# require_once( bbpress()->admin->admin_dir . 'parser.php' ); | |
# $bbcode = BBCode::getInstance(); | |
# $bbcode->enable_smileys = false; | |
# $bbcode->smiley_regex = false; | |
# return html_entity_decode( $bbcode->Parse( $field ) ); | |
#} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment