bbp_admin_repair_group_forum_relationship()
Repair group forum ID mappings after a bbPress 1.1 to Forums 2.2 conversion
Description
Return
(If) a wp_error() occurs and no converted forums are found
Source
File: bp-forums/admin/tools.php
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 | function bbp_admin_repair_group_forum_relationship() { global $wpdb ; $statement = __( 'Repairing BuddyBoss group-forum relationships… %s' , 'buddyboss' ); $g_count = 0; $f_count = 0; $s_count = 0; // Copy the BuddyBoss filter here, incase BuddyBoss is not active $prefix = apply_filters( 'bp_core_get_table_prefix' , $wpdb ->base_prefix ); $groups_table = $prefix . 'bp_groups' ; $groups_meta_table = $prefix . 'bp_groups_groupmeta' ; // Get the converted forum IDs $forum_ids = $wpdb ->query( "SELECT `forum`.`ID`, `forummeta`.`meta_value` FROM `{ $wpdb ->posts}` AS `forum` LEFT JOIN `{ $wpdb ->postmeta}` AS `forummeta` ON `forum`.`ID` = `forummeta`.`post_id` AND `forummeta`.`meta_key` = '_bbp_old_forum_id' WHERE `forum`.`post_type` = 'forum' GROUP BY `forum`.`ID`;" ); // Bail if forum IDs returned an error if ( is_wp_error( $forum_ids ) || empty ( $wpdb ->last_result ) ) return array ( 2, sprintf( $statement , __( 'Failed!' , 'buddyboss' ) ) ); // Stash the last results $results = $wpdb ->last_result; // Update each group forum foreach ( $results as $group_forums ) { // Only update if is a converted forum if ( ! isset( $group_forums ->meta_value ) ) continue ; // Attempt to update group meta $updated = $wpdb ->query( "UPDATE `{$groups_meta_table}` SET `meta_value` = '{$group_forums->ID}' WHERE `meta_key` = 'forum_id' AND `meta_value` = '{$group_forums->meta_value}';" ); // Bump the count if ( ! empty ( $updated ) && ! is_wp_error( $updated ) ) { ++ $g_count ; } // Update group to forum relationship data $group_id = (int) $wpdb ->get_var( "SELECT `group_id` FROM `{$groups_meta_table}` WHERE `meta_key` = 'forum_id' AND `meta_value` = '{$group_forums->ID}';" ); if ( ! empty ( $group_id ) ) { // Update the group to forum meta connection in forums update_post_meta( $group_forums ->ID, '_bbp_group_ids' , array ( $group_id ) ); // Get the group status $group_status = $wpdb ->get_var( "SELECT `status` FROM `{$groups_table}` WHERE `id` = '{$group_id}';" ); // Sync up forum visibility based on group status switch ( $group_status ) { // Public groups have public forums case 'public' : bbp_publicize_forum( $group_forums ->ID ); // Bump the count for output later ++ $s_count ; break ; // Private/hidden groups have hidden forums case 'private' : case 'hidden' : bbp_hide_forum( $group_forums ->ID ); // Bump the count for output later ++ $s_count ; break ; } // Bump the count for output later ++ $f_count ; } } // Make some logical guesses at the old group root forum if ( function_exists( 'bp_forums_parent_forum_id' ) ) { $old_default_forum_id = bp_forums_parent_forum_id(); } elseif ( defined( 'BP_FORUMS_PARENT_FORUM_ID' ) ) { $old_default_forum_id = (int) BP_FORUMS_PARENT_FORUM_ID; } else { $old_default_forum_id = 1; } // Try to get the group root forum $posts = get_posts( array ( 'post_type' => bbp_get_forum_post_type(), 'meta_key' => '_bbp_old_forum_id' , 'meta_value' => $old_default_forum_id , 'numberposts' => 1 ) ); // Found the group root forum if ( ! empty ( $posts ) ) { // Rename 'Default Forum' since it's now visible in sitewide forums if ( 'Default Forum' === $posts [0]->post_title ) { wp_update_post( array ( 'ID' => $posts [0]->ID, 'post_title' => __( 'Group Forums' , 'buddyboss' ), 'post_name' => __( 'group-forums' , 'buddyboss' ), ) ); } // Update the group forums root metadata update_option( '_bbp_group_forums_root_id' , $posts [0]->ID ); } // Remove old bbPress 1.1 roles (BuddyBoss) remove_role( 'member' ); remove_role( 'inactive' ); remove_role( 'blocked' ); remove_role( 'moderator' ); remove_role( 'keymaster' ); // Complete results $result = sprintf( __( 'Complete! %s groups updated; %s forums updated; %s forum statuses synced.' , 'buddyboss' ), bbp_number_format( $g_count ), bbp_number_format( $f_count ), bbp_number_format( $s_count ) ); return array ( 0, sprintf( $statement , $result ) ); } |
Changelog
Version | Description |
---|---|
bbPress (r4395) | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.