Current File : /home/mdkeenpw/www/wp-content/plugins/trx_addons/components/api/bbpress/bbpress-demo-importer.php
<?php
/**
 * Plugin support: BBPress and BuddyPress (Importer support)
 *
 * @package ThemeREX Addons
 * @since v1.5
 */

// Don't load directly
if ( ! defined( 'TRX_ADDONS_VERSION' ) ) {
	exit;
}

if ( ! function_exists( 'trx_addons_bbpress_importer_required_plugins' ) ) {
	add_filter( 'trx_addons_filter_importer_required_plugins',	'trx_addons_bbpress_importer_required_plugins', 10, 2 );
	/**
	 * Add a checkbox 'BBPress and BuddyPress' to the importer checklist if plugin in the required plugins, but not installed yet
	 * 
	 * @hooked trx_addons_filter_importer_required_plugins
	 *
	 * @param string $not_installed  Plugins list to be installed
	 * @param string $list           List of required plugins
	 * 
	 * @return string                Plugins list to be installed with added 'BBPress and BuddyPress' plugin
	 */
	function trx_addons_bbpress_importer_required_plugins( $not_installed = '', $list = '' ) {
		if ( strpos( $list, 'bbpress' ) !== false && ! trx_addons_exists_bbpress() ) {
			$not_installed .= '<br>' . esc_html__( 'BBPress or BuddyPress', 'trx_addons' );
		}
		return $not_installed;
	}
}

if ( ! function_exists( 'trx_addons_bbpress_importer_set_options' ) ) {
	add_filter( 'trx_addons_filter_importer_options',	'trx_addons_bbpress_importer_set_options' );
	/**
	 * Set plugin's specific importer options: add slugs to export options for this plugin.
	 * Also add the item 'file_with_bbpress' to the list of files to export.
	 * 
	 * @hooked trx_addons_filter_importer_options
	 *
	 * @param array $options		Options to be passed to the importer
	 * 
	 * @return array				Modified options
	 */
	function trx_addons_bbpress_importer_set_options($options=array()) {
		if ( trx_addons_exists_bbpress() && in_array('bbpress', $options['required_plugins']) ) {
			$options['additional_options'][] = 'bp-active-components';
			$options['additional_options'][] = 'bp-pages';
			$options['additional_options'][] = 'widget_bp_%';
			$options['additional_options'][] = 'bp-deactivated-components';
			$options['additional_options'][] = 'bb-config-location';
			$options['additional_options'][] = 'bp-xprofile-base-group-name';
			$options['additional_options'][] = 'bp-xprofile-fullname-field-name';
			$options['additional_options'][] = 'hide-loggedout-adminbar';
			$options['additional_options'][] = 'bp-disable-account-deletion';
			$options['additional_options'][] = 'bp-disable-avatar-uploads';
			$options['additional_options'][] = 'bp-disable-cover-image-uploads';
			$options['additional_options'][] = 'bp-disable-profile-sync';
			$options['additional_options'][] = 'bp_restrict_group_creation';
			$options['additional_options'][] = 'bp-disable-group-avatar-uploads';
			$options['additional_options'][] = 'bp-disable-group-cover-image-uploads';
			$options['additional_options'][] = 'bp-disable-blogforum-comments';
			$options['additional_options'][] = '_bp_enable_heartbeat_refresh';
			$options['additional_options'][] = '_bp_theme_package_id';
			if ( is_array( $options['files'] ) && count( $options['files'] ) > 0 ) {
				foreach ( $options['files'] as $k => $v ) {
					$options['files'][ $k ]['file_with_bbpress'] = str_replace( 'name.ext', 'bbpress.txt', $v['file_with_'] );
				}
			}
		}
		return $options;
	}
}

if ( ! function_exists( 'trx_addons_bbpress_importer_check_options' ) ) {
	add_filter( 'trx_addons_filter_import_theme_options', 'trx_addons_bbpress_importer_check_options', 10, 4 );
	/**
	 * Prevent to import plugin's specific options if plugin is not installed
	 * 
	 * @hooked trx_addons_filter_import_theme_options
	 *
	 * @param boolean $allow		Allow to import options or not
	 * @param string $k				Option's key
	 * @param string $v				Option's value
	 * @param array $options		Options to be passed to the importer
	 * 
	 * @return boolean				Allow to import options or not
	 */
	function trx_addons_bbpress_importer_check_options( $allow, $k, $v, $options ) {
		if ( $allow && (
			   strpos( $k, 'bp-' ) === 0
			|| strpos( $k, '_bp_' ) === 0
			|| strpos( $k, 'widget_bp_' ) === 0
			|| $k == 'hide-loggedout-adminbar'
			)
		) {
			$allow = trx_addons_exists_bbpress() && in_array( 'bbpress', $options['required_plugins'] );
		}
		return $allow;
	}
}

if ( ! function_exists( 'trx_addons_bbpress_importer_show_params' ) ) {
	add_action( 'trx_addons_action_importer_params',	'trx_addons_bbpress_importer_show_params', 10, 1 );
	/**
	 * Add checkbox to the one-click importer to allow import bbpress and buddypress
	 * 
	 * @hooked trx_addons_action_importer_params
	 *
	 * @param object $importer		Importer object
	 */
	function trx_addons_bbpress_importer_show_params( $importer ) {
		if ( trx_addons_exists_bbpress() && in_array( 'bbpress', $importer->options['required_plugins'] ) ) {
			$importer->show_importer_params( array(
				'slug' => 'bbpress',
				'title' => esc_html__('Import BBPress and BuddyPress', 'trx_addons'),
				'part' => 0
			) );
		}
	}
}

if ( ! function_exists( 'trx_addons_bbpress_importer_clear_tables' ) ) {
	add_action( 'trx_addons_action_importer_clear_tables',	'trx_addons_bbpress_importer_clear_tables', 10, 2 );
	/**
	 * Clear plugin specific tables before import start
	 * 
	 * @hooked trx_addons_action_importer_clear_tables
	 *
	 * @param object $importer		Importer object
	 * @param string $clear_tables	List of tables to clear
	 */
	function trx_addons_bbpress_importer_clear_tables( $importer, $clear_tables ) {
		if ( trx_addons_exists_bbpress() && in_array( 'bbpress', $importer->options['required_plugins'] ) ) {
			if ( strpos( $clear_tables, 'bbpress' ) !== false ) {
				if ( $importer->options['debug'] ) {
					dfl( __( 'Clear BBPress and BuddyPress tables', 'trx_addons' ) );
				}
				// Check if BuddyPress and BBPress tables are exists and recreate it (if need)
				trx_addons_bbpress_recreate_tables();
			}
		}
	}
}

if ( ! function_exists( 'trx_addons_bbpress_recreate_tables' ) ) {
	/**
	 * Check if BuddyPress and BBPress tables are exists and recreate it (if need)
	 */
	function trx_addons_bbpress_recreate_tables() {
		global $wpdb;
		$activity = count( $wpdb->get_results( $wpdb->prepare("SHOW TABLES LIKE %s", $wpdb->prefix . "bp_activity" ), ARRAY_A )) == 1;
		$friends  = count( $wpdb->get_results( $wpdb->prepare("SHOW TABLES LIKE %s", $wpdb->prefix . "bp_friends" ), ARRAY_A )) == 1;
		$groups   = count( $wpdb->get_results( $wpdb->prepare("SHOW TABLES LIKE %s", $wpdb->prefix . "bp_groups" ), ARRAY_A )) == 1;
		$messages = count( $wpdb->get_results( $wpdb->prepare("SHOW TABLES LIKE %s", $wpdb->prefix . "bp_messages_messages" ), ARRAY_A )) == 1;
		$blog     = count( $wpdb->get_results( $wpdb->prepare("SHOW TABLES LIKE %s", $wpdb->prefix . "bp_user_blogs" ), ARRAY_A )) == 1;
		$notify   = count( $wpdb->get_results( $wpdb->prepare("SHOW TABLES LIKE %s", $wpdb->prefix . "bp_notifications" ), ARRAY_A )) == 1;
		$extended = count( $wpdb->get_results( $wpdb->prepare("SHOW TABLES LIKE %s", $wpdb->prefix . "bp_xprofile_data" ), ARRAY_A )) == 1;
		if ( $activity == 0 || $friends == 0 || $groups == 0 || $messages == 0 || $blog == 0 || $notify == 0 || $extended == 0 ) {
			if ( function_exists( 'buddypress' ) ) {
				$bp = buddypress();
			}
			if ( ! function_exists( 'dbDelta' ) ) {
				require_once ABSPATH . 'wp-admin/includes/upgrade.php';
			}
			if ( file_exists( $bp->plugin_dir . '/bp-core/admin/bp-core-admin-schema.php' ) ) {
				require_once $bp->plugin_dir . '/bp-core/admin/bp-core-admin-schema.php';
				if ( $activity == 0 && function_exists('bp_core_install_activity_streams') )	bp_core_install_activity_streams();
				if ( $friends == 0 && function_exists('bp_core_install_friends') )				bp_core_install_friends();
				if ( $groups == 0 && function_exists('bp_core_install_groups') )				bp_core_install_groups();
				if ( $messages == 0 && function_exists('bp_core_install_private_messaging') )	bp_core_install_private_messaging();
				if ( $blog == 0 && function_exists('bp_core_install_blog_tracking') )			bp_core_install_blog_tracking();
				if ( $notify == 0 && function_exists('bp_core_install_notifications') )			bp_core_install_notifications();
				if ( $extended == 0 && function_exists('bp_core_install_extended_profiles') )	bp_core_install_extended_profiles();
				if ( function_exists('bp_core_maybe_install_signups') )							bp_core_maybe_install_signups();
			}
		}
	}
}

if ( ! function_exists( 'trx_addons_bbpress_importer_import' ) ) {
	add_action( 'trx_addons_action_importer_import',	'trx_addons_bbpress_importer_import', 10, 2 );
	/**
	 * Import BBPress and BuddyPress posts
	 * 
	 * @hooked trx_addons_action_importer_import
	 *
	 * @param object $importer		Importer object
	 * @param string $action		Action to perform: 'import_bbpress' - import BBPress and BuddyPress data
	 */
	function trx_addons_bbpress_importer_import( $importer, $action ) {
		if ( trx_addons_exists_bbpress() && in_array( 'bbpress', $importer->options['required_plugins'] ) ) {
			if ( $action == 'import_bbpress' ) {
				$importer->response['start_from_id'] = 0;
				$importer->import_dump( 'bbpress', esc_html__( 'BBPress and BuddyPress data', 'trx_addons' ) );
			}
		}
	}
}

if ( ! function_exists( 'trx_addons_bbpress_importer_check_row' ) ) {
	add_filter( 'trx_addons_filter_importer_import_row', 'trx_addons_bbpress_importer_check_row', 9, 4 );
	/**
	 * Check if the row will be imported to the table 'wp_posts'
	 *
	 * @hooked trx_addons_filter_importer_import_row
	 *
	 * @param boolean $flag		Flag to allow/ignore import
	 * @param string $table		Table name
	 * @param array $row		Data from the table
	 * @param array $list		List of the required plugins
	 * 
	 * @return boolean			Flag to allow/ignore import
	 */
	function trx_addons_bbpress_importer_check_row( $flag, $table, $row, $list ) {
		if ( $flag || strpos( $list, 'bbpress' ) === false ) {
			return $flag;
		}
		static $bbpress_pt_list = false;
		if ( trx_addons_exists_bbpress() ) {
			if ( $table == 'posts' ) {
				if ( $bbpress_pt_list === false ) {
					$bbpress_pt_list = array();
					if ( function_exists('bbp_get_forum_post_type') )	$bbpress_pt_list[] = bbp_get_forum_post_type();
					if ( function_exists('bbp_get_topic_post_type') )	$bbpress_pt_list[] = bbp_get_topic_post_type();
					if ( function_exists('bbp_get_reply_post_type') )	$bbpress_pt_list[] = bbp_get_reply_post_type();
					if ( function_exists('bp_get_email_post_type') )	$bbpress_pt_list[] = bp_get_email_post_type();
				}
				$flag = in_array( $row['post_type'], $bbpress_pt_list );
			}
		}
		return $flag;
	}
}

if ( ! function_exists( 'trx_addons_bbpress_importer_import_fields' ) ) {
	add_action( 'trx_addons_action_importer_import_fields',	'trx_addons_bbpress_importer_import_fields', 10, 1 );
	/**
	 * Display 'BBPress and BuddyPress data' in the posts importer progress area
	 *
	 * @hooked trx_addons_action_importer_import_fields
	 *
	 * @param object $importer		Importer object
	 */
	function trx_addons_bbpress_importer_import_fields( $importer ) {
		if ( trx_addons_exists_bbpress() && in_array( 'bbpress', $importer->options['required_plugins'] ) ) {
			$importer->show_importer_fields( array(
				'slug'=>'bbpress', 
				'title' => esc_html__('BBPress and BuddyPress data', 'trx_addons')
			) );
		}
	}
}

if ( ! function_exists( 'trx_addons_bbpress_importer_export' ) ) {
	add_action( 'trx_addons_action_importer_export',	'trx_addons_bbpress_importer_export', 10, 1 );
	/**
	 * Export BBPress and BuddyPress tables and save it to the file 'bbpress.txt'
	 *
	 * @hooked trx_addons_action_importer_export
	 * 
	 * @trigger trx_addons_filter_importer_export_tables
	 *
	 * @param object $importer		Importer object
	 */
	function trx_addons_bbpress_importer_export( $importer ) {
		if ( trx_addons_exists_bbpress() && in_array( 'bbpress', $importer->options['required_plugins'] ) ) {
			trx_addons_fpc( $importer->export_file_dir( 'bbpress.txt' ), serialize( apply_filters( 'trx_addons_filter_importer_export_tables', array(
				'bp_activity'			=> $importer->export_dump("bp_activity"),
				'bp_activity_meta'		=> $importer->export_dump("bp_activity_meta"),
				'bp_friends'			=> $importer->export_dump("bp_friends"),
				'bp_groups'				=> $importer->export_dump("bp_groups"),
				'bp_groups_groupmeta'	=> $importer->export_dump("bp_groups_groupmeta"),
				'bp_groups_members'		=> $importer->export_dump("bp_groups_members"),
				'bp_messages_messages'	=> $importer->export_dump("bp_messages_messages"),
				'bp_messages_meta'		=> $importer->export_dump("bp_messages_meta"),
				'bp_messages_notices'	=> $importer->export_dump("bp_messages_notices"),
				'bp_messages_recipients'=> $importer->export_dump("bp_messages_recipients"),
				'bp_user_blogs'			=> $importer->export_dump("bp_user_blogs"),
				'bp_user_blogs_blogmeta'=> $importer->export_dump("bp_user_blogs_blogmeta"),
				'bp_notifications'		=> $importer->export_dump("bp_notifications"),
				'bp_notifications_meta'	=> $importer->export_dump("bp_notifications_meta"),
				'bp_xprofile_data'		=> $importer->export_dump("bp_xprofile_data"),
				'bp_xprofile_fields'	=> $importer->export_dump("bp_xprofile_fields"),
				'bp_xprofile_groups'	=> $importer->export_dump("bp_xprofile_groups"),
				'bp_xprofile_meta'		=> $importer->export_dump("bp_xprofile_meta")
				), 'bbpress' ) )
			);
		}
	}
}

if ( ! function_exists( 'trx_addons_bbpress_importer_export_fields' ) ) {
	add_action( 'trx_addons_action_importer_export_fields',	'trx_addons_bbpress_importer_export_fields', 10, 1 );
	/**
	 * Display 'BBPress and BuddyPress data' in the posts exporter
	 *
	 * @hooked trx_addons_action_importer_export_fields
	 *
	 * @param object $importer		Importer object
	 */
	function trx_addons_bbpress_importer_export_fields( $importer ) {
		if ( trx_addons_exists_bbpress() && in_array( 'bbpress', $importer->options['required_plugins'] ) ) {
			$importer->show_exporter_fields( array(
				'slug'	=> 'bbpress',
				'title' => esc_html__('BBPress and BuddyPress', 'trx_addons')
			) );
		}
	}
}