Changeset 13098
- Timestamp:
- 08/31/2021 09:46:50 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/bp-members-cache.php
r11110 r13098 74 74 } 75 75 add_action( 'bp_core_user_updated_last_activity', 'bp_members_reset_activity_cache_incrementor' ); 76 77 /** 78 * Bust signup caches when editing or deleting. 79 * 80 * @since 10.0.0 81 * 82 * @param int $signup_id The ID of the signup affected. 83 */ 84 function bp_members_delete_signup_cache( $signup_id = 0 ) { 85 wp_cache_delete( $signup_id, 'bp_signups' ); 86 } 87 add_action( 'bp_core_signups_after_add', 'bp_members_delete_signup_cache' ); 88 add_action( 'bp_core_signups_after_update_meta', 'bp_members_delete_signup_cache' ); 89 90 /** 91 * Bust signup caches for arrays of signup IDs. 92 * 93 * @since 10.0.0 94 * 95 * @param array $signup_ids The IDs of the signups affected. 96 */ 97 function bp_members_delete_signup_cache_multiples( $signup_ids = array() ) { 98 // Ensure that the incoming item is an array. 99 $signup_ids = wp_parse_id_list( $signup_ids ); 100 foreach ( $signup_ids as $signup_id ) { 101 bp_members_delete_signup_cache( $signup_id ); 102 } 103 } 104 add_action( 'bp_core_signup_after_resend', 'bp_members_delete_signup_cache_multiples' ); 105 add_action( 'bp_core_signup_after_activate', 'bp_members_delete_signup_cache_multiples' ); 106 add_action( 'bp_core_signup_after_delete', 'bp_members_delete_signup_cache_multiples' ); 107 108 /** 109 * Reset cache incrementor for BP_Signups. 110 * 111 * This function invalidates all cached results of BP_Signup queries, 112 * whenever one of the following events takes place: 113 * - A record is created or updated. 114 * - A record is deleted. 115 * 116 * @since 10.0.0 117 * 118 * @return bool True on success, false on failure. 119 */ 120 function bp_members_reset_signup_cache_incrementor() { 121 return bp_core_reset_incrementor( 'bp_signups' ); 122 } 123 add_filter( 'bp_core_signups_after_add', 'bp_members_reset_signup_cache_incrementor' ); 124 add_action( 'bp_core_activated_user', 'bp_members_reset_signup_cache_incrementor' ); 125 add_action( 'bp_core_signup_after_activate', 'bp_members_reset_signup_cache_incrementor' ); 126 add_action( 'bp_core_signups_after_update_meta', 'bp_members_reset_signup_cache_incrementor' ); 127 add_action( 'bp_core_signup_after_delete', 'bp_members_reset_signup_cache_incrementor' ); 128 -
trunk/src/bp-members/classes/class-bp-signup.php
r12768 r13098 79 79 public $activation_key; 80 80 81 /** 82 * The activated date for the user. 83 * 84 * @since 10.0.0 85 * @var string 86 */ 87 public $activated; 88 89 /** 90 * Whether the user account is activated or not. 91 * 92 * @since 10.0.0 93 * @var bool 94 */ 95 public $active; 96 97 /** 98 * The date that the last activation email was sent. 99 * 100 * @since 10.0.0 101 * @var string 102 */ 103 public $date_sent; 104 105 /** 106 * Was the last activation email sent in the last 24 hours? 107 * 108 * @since 10.0.0 109 * @var bool 110 */ 111 public $recently_sent; 112 113 /** 114 * The number of activation emails sent to this user. 115 * 116 * @since 10.0.0 117 * @var int 118 */ 119 public $count_sent; 120 121 /** 122 * The domain for the signup. 123 * 124 * @since 10.0.0 125 * @var string 126 */ 127 public $domain; 128 129 /** 130 * The path for the signup. 131 * 132 * @since 10.0.0 133 * @var string 134 */ 135 public $path; 136 137 /** 138 * The title for the signup. 139 * 140 * @since 10.0.0 141 * @var string 142 */ 143 public $title; 144 81 145 82 146 /** Public Methods *******************************************************/ … … 90 154 */ 91 155 public function __construct( $signup_id = 0 ) { 92 if ( ! empty( $signup_id ) ) {156 if ( ! empty( $signup_id ) ) { 93 157 $this->id = $signup_id; 94 158 $this->populate(); … … 104 168 global $wpdb; 105 169 106 $signups_table = buddypress()->members->table_name_signups; 107 $signup = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$signups_table} WHERE signup_id = %d AND active = 0", $this->id ) ); 108 109 $this->avatar = get_avatar( $signup->user_email, 32 ); 170 // Get BuddyPress. 171 $bp = buddypress(); 172 173 // Check cache for signup data. 174 $signup = wp_cache_get( $this->id, 'bp_signups' ); 175 176 // Cache missed, so query the DB. 177 if ( false === $signup ) { 178 $signup = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$bp->members->table_name_signups} WHERE signup_id = %d", $this->id ) ); 179 180 wp_cache_set( $this->id, $signup, 'bp_signups' ); 181 } 182 183 // No signup found so set the ID and bail. 184 if ( empty( $signup ) || is_wp_error( $signup ) ) { 185 $this->id = 0; 186 return; 187 } 188 189 /* 190 * Add every db column to the object. 191 */ 192 $this->signup_id = $this->id; 193 $this->domain = $signup->domain; 194 $this->path = $signup->path; 195 $this->title = $signup->title; 110 196 $this->user_login = $signup->user_login; 111 197 $this->user_email = $signup->user_email; 198 $this->registered = $signup->registered; 199 $this->activated = $signup->activated; 200 $this->active = (bool) $signup->active; 201 $this->activation_key = $signup->activation_key; 112 202 $this->meta = maybe_unserialize( $signup->meta ); 113 $this->user_name = ! empty( $this->meta['field_1'] ) ? wp_unslash( $this->meta['field_1'] ) : ''; 114 $this->registered = $signup->registered; 115 $this->activation_key = $signup->activation_key; 203 204 // Add richness. 205 $this->avatar = get_avatar( $signup->user_email, 32 ); 206 $this->user_name = ! empty( $this->meta['field_1'] ) ? wp_unslash( $this->meta['field_1'] ) : ''; 207 208 // When was the activation email sent? 209 if ( isset( $this->meta['sent_date'] ) && '0000-00-00 00:00:00' !== $this->meta['sent_date'] ) { 210 $this->date_sent = $this->meta['sent_date']; 211 212 // Sent date defaults to date of registration. 213 } else { 214 $this->date_sent = $signup->registered; 215 } 216 217 /** 218 * Calculate a diff between now & last time 219 * an activation link has been resent. 220 */ 221 $sent_at = mysql2date( 'U', $this->date_sent ); 222 $now = current_time( 'timestamp', true ); 223 $diff = $now - $sent_at; 224 225 /** 226 * Set a boolean to track whether an activation link 227 * was sent in the last day. 228 */ 229 $this->recently_sent = ( $diff < 1 * DAY_IN_SECONDS ); 230 231 // How many times has the activation email been sent? 232 if ( isset( $this->meta['count_sent'] ) ) { 233 $this->count_sent = absint( $this->meta['count_sent'] ); 234 } else { 235 $this->count_sent = 0; 236 } 116 237 } 117 238 … … 127 248 * The argument to retrieve desired signups. 128 249 * @type int $offset Offset amount. Default 0. 129 * @type int $number How many to fetch. Default 1.250 * @type int $number How many to fetch. Pass -1 to fetch all. Default 1. 130 251 * @type bool|string $usersearch Whether or not to search for a username. Default false. 131 252 * @type string $orderby Order By parameter. Possible values are `signup_id`, `login`, `email`, … … 133 254 * @type string $order Order direction. Default 'DESC'. 134 255 * @type bool $include Whether or not to include more specific query params. 135 * @type string $activation_key Activation key to search for. 256 * @type string $activation_key Activation key to search for. If specified, all other 257 * parameters will be ignored. 136 258 * @type string $user_login Specific user login to return. 137 259 * @type string $fields Which fields to return. Specify 'ids' to fetch a list of signups IDs. … … 146 268 global $wpdb; 147 269 148 $r = bp_parse_args( $args, 270 $bp = buddypress(); 271 $r = bp_parse_args( 272 $args, 149 273 array( 150 274 'offset' => 0, … … 155 279 'include' => false, 156 280 'activation_key' => '', 281 'user_email' => '', 157 282 'user_login' => '', 158 283 'fields' => 'all', … … 172 297 $r['orderby'] = sanitize_title( $r['orderby'] ); 173 298 174 $sql = array(); 175 $signups_table = buddypress()->members->table_name_signups; 176 $sql['select'] = "SELECT * FROM {$signups_table}"; 177 $sql['where'] = array(); 178 $sql['where'][] = "active = 0"; 179 180 if ( empty( $r['include'] ) ) { 299 $sql = array( 300 'select' => "SELECT DISTINCT signup_id", 301 'from' => "{$bp->members->table_name_signups}", 302 'where' => array(), 303 'orderby' => '', 304 'limit' => '', 305 ); 306 307 // Activation key trumps other parameters because it should be unique. 308 if ( ! empty( $r['activation_key'] ) ) { 309 $sql['where'][] = $wpdb->prepare( "activation_key = %s", $r['activation_key'] ); 310 311 // `Include` finds signups by ID. 312 } else if ( ! empty( $r['include'] ) ) { 313 314 $in = implode( ',', wp_parse_id_list( $r['include'] ) ); 315 $sql['where'][] = "signup_id IN ({$in})"; 316 317 /** 318 * Finally, the general case where a variety of parameters 319 * can be used in combination to find signups. 320 */ 321 } else { 181 322 182 323 // Search terms. … … 186 327 } 187 328 188 // Activation key.189 if ( ! empty( $r[' activation_key'] ) ) {190 $sql['where'][] = $wpdb->prepare( " activation_key = %s", $r['activation_key'] );329 // User email. 330 if ( ! empty( $r['user_email'] ) ) { 331 $sql['where'][] = $wpdb->prepare( "user_email = %s", $r['user_email'] ); 191 332 } 192 333 … … 196 337 } 197 338 198 $sql['orderby'] = "ORDER BY {$r['orderby']}"; 199 $sql['order'] = bp_esc_sql_order( $r['order'] ); 200 $sql['limit'] = $wpdb->prepare( "LIMIT %d, %d", $r['offset'], $r['number'] ); 201 } else { 202 $in = implode( ',', wp_parse_id_list( $r['include'] ) ); 203 $sql['in'] = "AND signup_id IN ({$in})"; 339 $order = bp_esc_sql_order( $r['order'] ); 340 $sql['orderby'] = "ORDER BY {$r['orderby']} {$order}"; 341 342 $number = intval( $r['number'] ); 343 if ( -1 !== $number ) { 344 $sql['limit'] = $wpdb->prepare( "LIMIT %d, %d", absint( $r['offset'] ), $number ); 345 } 204 346 } 205 347 206 348 // Implode WHERE clauses. 207 349 $sql['where'] = 'WHERE ' . implode( ' AND ', $sql['where'] ); 350 351 $paged_signups_sql = "{$sql['select']} FROM {$sql['from']} {$sql['where']} {$sql['orderby']} {$sql['limit']}"; 208 352 209 353 /** … … 217 361 * @param array $r Array of parsed arguments for get() method. 218 362 */ 219 $paged_signups = $wpdb->get_results( apply_filters( 'bp_members_signups_paged_query', join( ' ', $sql ), $sql, $args, $r ) ); 220 221 if ( empty( $paged_signups ) ) { 222 return array( 'signups' => false, 'total' => false ); 363 $paged_signups_sql = apply_filters( 'bp_members_signups_paged_query', $paged_signups_sql, $sql, $args, $r ); 364 365 $cached = bp_core_get_incremented_cache( $paged_signups_sql, 'bp_signups' ); 366 if ( false === $cached ) { 367 $paged_signup_ids = $wpdb->get_col( $paged_signups_sql ); 368 bp_core_set_incremented_cache( $paged_signups_sql, 'bp_signups', $paged_signup_ids ); 369 } else { 370 $paged_signup_ids = $cached; 223 371 } 224 372 225 373 // We only want the IDs. 226 374 if ( 'ids' === $r['fields'] ) { 227 $paged_signups = wp_list_pluck( $paged_signups, 'signup_id' ); 375 $paged_signups = array_map( 'intval', $paged_signup_ids ); 376 228 377 } else { 229 230 // Used to calculate a diff between now & last 231 // time an activation link has been resent. 232 $now = current_time( 'timestamp', true ); 233 234 foreach ( (array) $paged_signups as $key => $signup ) { 235 236 $signup->id = intval( $signup->signup_id ); 237 238 $signup->meta = ! empty( $signup->meta ) ? maybe_unserialize( $signup->meta ) : false; 239 240 $signup->user_name = ''; 241 if ( ! empty( $signup->meta['field_1'] ) ) { 242 $signup->user_name = wp_unslash( $signup->meta['field_1'] ); 378 $uncached_signup_ids = bp_get_non_cached_ids( $paged_signup_ids, 'bp_signups' ); 379 if ( $uncached_signup_ids ) { 380 $signup_ids_sql = implode( ',', array_map( 'intval', $uncached_signup_ids ) ); 381 $signup_data_objects = $wpdb->get_results( "SELECT * FROM {$bp->members->table_name_signups} WHERE signup_id IN ({$signup_ids_sql})" ); 382 foreach ( $signup_data_objects as $signup_data_object ) { 383 wp_cache_set( $signup_data_object->signup_id, $signup_data_object, 'bp_signups' ); 243 384 } 244 245 // Sent date defaults to date of registration.246 if ( ! empty( $signup->meta['sent_date'] ) ) {247 $signup->date_sent = $signup->meta['sent_date'];248 } else {249 $signup->date_sent = $signup->registered;250 }251 252 $sent_at = mysql2date('U', $signup->date_sent );253 $diff = $now - $sent_at;254 255 /**256 * Add a boolean in case the last time an activation link257 * has been sent happened less than a day ago.258 */259 if ( $diff < 1 * DAY_IN_SECONDS ) {260 $signup->recently_sent = true;261 }262 263 if ( ! empty( $signup->meta['count_sent'] ) ) {264 $signup->count_sent = absint( $signup->meta['count_sent'] );265 } else {266 $signup->count_sent = 1;267 }268 269 $paged_signups[ $key ] = $signup;270 385 } 271 } 272 273 unset( $sql['limit'] ); 274 $sql['select'] = preg_replace( "/SELECT.*?FROM/", "SELECT COUNT(*) FROM", $sql['select'] ); 386 387 $paged_signups = array(); 388 foreach ( $paged_signup_ids as $paged_signup_id ) { 389 $paged_signups[] = new BP_Signup( $paged_signup_id ); 390 } 391 } 392 393 // Find the total number of signups in the results set. 394 $total_signups_sql = "SELECT COUNT(DISTINCT signup_id) FROM {$sql['from']} {$sql['where']}"; 275 395 276 396 /** … … 284 404 * @param array $r Array of parsed arguments for get() method. 285 405 */ 286 $total_signups = $wpdb->get_var( apply_filters( 'bp_members_signups_count_query', join( ' ', $sql ), $sql, $args, $r ) ); 406 $total_signups_sql = apply_filters( 'bp_members_signups_count_query', $total_signups_sql, $sql, $args, $r ); 407 408 $cached = bp_core_get_incremented_cache( $total_signups_sql, 'bp_signups' ); 409 if ( false === $cached ) { 410 $total_signups = (int) $wpdb->get_var( $total_signups_sql ); 411 bp_core_set_incremented_cache( $total_signups_sql, 'bp_signups', $total_signups ); 412 } else { 413 $total_signups = (int) $cached; 414 } 287 415 288 416 return array( 'signups' => $paged_signups, 'total' => $total_signups ); … … 310 438 global $wpdb; 311 439 312 $r = bp_parse_args( $args, 440 $r = bp_parse_args( 441 $args, 313 442 array( 314 443 'domain' => '', … … 319 448 'registered' => current_time( 'mysql', true ), 320 449 'activation_key' => '', 321 'meta' => '',450 'meta' => array(), 322 451 ), 323 452 'bp_core_signups_add_args' 324 453 ); 454 455 // Ensure that sent_date and count_sent are set in meta. 456 if ( ! isset( $r['meta']['sent_date'] ) ) { 457 $r['meta']['sent_date'] = '0000-00-00 00:00:00'; 458 } 459 if ( ! isset( $r['meta']['count_sent'] ) ) { 460 $r['meta']['count_sent'] = 0; 461 } 325 462 326 463 $r['meta'] = maybe_serialize( $r['meta'] ); … … 339 476 340 477 /** 478 * Fires after adding a new BP_Signup. 479 * 480 * @since 10.0.0 481 * 482 * @param int|bool $retval ID of the BP_Signup just added. 483 * @param array $r Array of parsed arguments for add() method. 484 * @param array $args Array of original arguments for add() method. 485 */ 486 do_action( 'bp_core_signups_after_add', $retval, $r, $args ); 487 488 /** 341 489 * Filters the result of a signup addition. 342 490 * 343 491 * @since 2.0.0 344 492 * 345 * @param int|bool $retval Newly added userID on success, false on failure.493 * @param int|bool $retval Newly added signup ID on success, false on failure. 346 494 */ 347 495 return apply_filters( 'bp_core_signups_add', $retval ); … … 369 517 global $wpdb; 370 518 371 $user_id = wp_insert_user( array( 372 'user_login' => $user_login, 373 'user_pass' => $user_password, 374 'display_name' => sanitize_title( $user_login ), 375 'user_email' => $user_email 376 ) ); 519 $user_id = wp_insert_user( 520 array( 521 'user_login' => $user_login, 522 'user_pass' => $user_password, 523 'display_name' => sanitize_title( $user_login ), 524 'user_email' => $user_email 525 ) 526 ); 377 527 378 528 if ( is_wp_error( $user_id ) || empty( $user_id ) ) { … … 422 572 423 573 /** 574 * Fires after adding a new WP User (backcompat). 575 * 576 * @since 10.0.0 577 * 578 * @param int $user_id ID of the WP_User just added. 579 */ 580 do_action( 'bp_core_signups_after_add_backcompat', $user_id ); 581 582 /** 424 583 * Filters the user ID for the backcompat functionality. 425 584 * … … 446 605 } 447 606 448 $user_status = $wpdb->get_var( $wpdb->prepare( "SELECT user_status FROM {$wpdb->users} WHERE ID = %d", $user_id ) ); 607 $user = get_user_by( 'id', $user_id ); 608 $user_status = $user->user_status; 449 609 450 610 /** … … 512 672 */ 513 673 public static function count_signups() { 514 global $wpdb; 515 516 $signups_table = buddypress()->members->table_name_signups; 517 $count_signups = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) AS total FROM {$signups_table} WHERE active = %d", 0 ) ); 674 $all_signups = self::get( 675 array( 676 'fields' => 'ids', 677 ) 678 ); 679 $count_signups = $all_signups['total']; 518 680 519 681 /** … … 545 707 global $wpdb; 546 708 547 $r = bp_parse_args( $args, 709 $r = bp_parse_args( 710 $args, 548 711 array( 549 712 'signup_id' => 0, … … 557 720 } 558 721 722 $signup_id = absint( $r['signup_id'] ); 723 724 // Figure out which meta keys should be updated. 725 $signup = new BP_Signup( $signup_id ); 726 $blended_meta = wp_parse_args( $r['meta'], $signup->meta ); 727 559 728 $wpdb->update( 560 729 // Signups table. … … 562 731 // Data to update. 563 732 array( 564 'meta' => serialize( $ r['meta']),733 'meta' => serialize( $blended_meta ), 565 734 ), 566 735 // WHERE. 567 736 array( 568 'signup_id' => $ r['signup_id'],737 'signup_id' => $signup_id, 569 738 ), 570 739 // Data sanitization format. … … 579 748 580 749 /** 750 * Fires after updating the meta of a new BP_Signup. 751 * 752 * @since 10.0.0 753 * 754 * @param int|bool $signup_id ID of the BP_Signup updated. 755 * @param array $r Array of parsed arguments to update() method. 756 * @param array $args Array of original arguments to update() method. 757 * @param array $blended_meta The complete set of meta to save. 758 */ 759 do_action( 'bp_core_signups_after_update_meta', $signup_id, $r, $args, $blended_meta ); 760 761 /** 581 762 * Filters the signup ID which received a meta update. 582 763 * … … 601 782 } 602 783 603 $to_resend = self::get( array( 604 'include' => $signup_ids, 605 ) ); 784 $to_resend = self::get( 785 array( 786 'include' => $signup_ids, 787 ) 788 ); 606 789 607 790 if ( ! $signups = $to_resend['signups'] ) { … … 622 805 foreach ( $signups as $signup ) { 623 806 624 $meta = $signup->meta; 625 $meta['sent_date'] = current_time( 'mysql', true ); 626 $meta['count_sent'] = $signup->count_sent + 1; 807 $meta = array( 808 'sent_date' => current_time( 'mysql', true ), 809 'count_sent' => $signup->count_sent + 1 810 ); 627 811 628 812 // Send activation email. … … 656 840 657 841 // Update metas. 658 $result['resent'][] = self::update( array( 659 'signup_id' => $signup->signup_id, 660 'meta' => $meta, 661 ) ); 842 $result['resent'][] = self::update( 843 array( 844 'signup_id' => $signup->signup_id, 845 'meta' => $meta, 846 ) 847 ); 662 848 } 663 849 … … 695 881 } 696 882 697 $to_activate = self::get( array( 698 'include' => $signup_ids, 699 ) ); 883 $to_activate = self::get( 884 array( 885 'include' => $signup_ids, 886 ) 887 ); 700 888 701 889 if ( ! $signups = $to_activate['signups'] ) { … … 779 967 } 780 968 781 $to_delete = self::get( array( 782 'include' => $signup_ids, 783 ) ); 969 $to_delete = self::get( 970 array( 971 'include' => $signup_ids, 972 ) 973 ); 784 974 785 975 if ( ! $signups = $to_delete['signups'] ) { -
trunk/tests/phpunit/testcases/members/class-bp-signup.php
r12635 r13098 357 357 $this->assertEquals( array( $s3, $s2, $s1 ), $ss['signups'] ); 358 358 } 359 360 /** 361 * @group cache 362 */ 363 public function test_get_queries_should_be_cached() { 364 global $wpdb; 365 366 $s = self::factory()->signup->create(); 367 368 $found1 = BP_Signup::get( 369 array( 370 'fields' => 'ids', 371 ) 372 ); 373 374 $num_queries = $wpdb->num_queries; 375 376 $found2 = BP_Signup::get( 377 array( 378 'fields' => 'ids', 379 ) 380 ); 381 382 $this->assertEqualSets( $found1, $found2 ); 383 $this->assertSame( $num_queries, $wpdb->num_queries ); 384 } 385 386 /** 387 * @group cache 388 */ 389 public function test_get_query_caches_should_be_busted_by_add() { 390 $s1 = self::factory()->signup->create(); 391 392 $found1 = BP_Signup::get( 393 array( 394 'fields' => 'ids', 395 ) 396 ); 397 $this->assertEqualSets( array( $s1 ), $found1['signups'] ); 398 399 $s2 = self::factory()->signup->create(); 400 $found2 = BP_Signup::get( 401 array( 402 'fields' => 'ids', 403 ) 404 ); 405 $this->assertEqualSets( array( $s2 ), $found2['signups'] ); 406 } 407 408 /** 409 * @group cache 410 */ 411 public function test_get_query_caches_should_be_busted_by_meta_update() { 412 $time = bp_core_current_time(); 413 414 $args = array( 415 'domain' => 'foo', 416 'path' => 'bar', 417 'title' => 'Foo bar', 418 'user_login' => 'user1', 419 'user_email' => 'user1@example.com', 420 'registered' => $time, 421 'activation_key' => '12345', 422 'meta' => array( 423 'field_1' => 'Fozzie', 424 'meta1' => 'meta2', 425 ), 426 ); 427 $s1 = BP_Signup::add( $args ); 428 429 $args['meta']['field_1'] = 'Fozz'; 430 $s2 = BP_Signup::add( $args ); 431 432 // Should find both. 433 $found1 = BP_Signup::get( array( 434 'fields' => 'ids', 435 'number' => -1, 436 'usersearch' => 'Fozz', 437 ) ); 438 $this->assertEqualSets( array( $s1, $s2 ), $found1['signups'] ); 439 440 BP_Signup::update( array( 441 'signup_id' => $s1, 442 'meta' => array( 443 'field_1' => 'Fonzie' 444 ), 445 ) ); 446 447 $found2 = BP_Signup::get( array( 448 'fields' => 'ids', 449 'number' => -1, 450 'usersearch' => 'Fozz', 451 ) ); 452 453 $this->assertEqualSets( array( $s2 ), $found2['signups'] ); 454 } 455 456 /** 457 * @group cache 458 */ 459 public function test_get_query_caches_should_be_busted_by_delete() { 460 global $wpdb; 461 $time = bp_core_current_time(); 462 463 $args = array( 464 'domain' => 'foo', 465 'path' => 'bar', 466 'title' => 'Foo bar', 467 'user_login' => 'user1', 468 'user_email' => 'user1@example.com', 469 'registered' => $time, 470 'activation_key' => '12345', 471 'meta' => array( 472 'field_1' => 'Fozzie', 473 'meta1' => 'meta2', 474 ), 475 ); 476 $s1 = BP_Signup::add( $args ); 477 478 $args['meta']['field_1'] = 'Fozz'; 479 $s2 = BP_Signup::add( $args ); 480 481 // Should find both. 482 $found1 = BP_Signup::get( array( 483 'fields' => 'ids', 484 'number' => -1, 485 'usersearch' => 'Fozz', 486 ) ); 487 $this->assertEqualSets( array( $s1, $s2 ), $found1['signups'] ); 488 489 BP_Signup::delete( array( $s1 ) ); 490 491 $found2 = BP_Signup::get( array( 492 'fields' => 'ids', 493 'number' => -1, 494 'usersearch' => 'Fozz', 495 ) ); 496 497 $this->assertEqualSets( array( $s2 ), $found2['signups'] ); 498 } 499 500 /** 501 * @group cache 502 */ 503 public function test_get_query_caches_should_be_busted_by_activation() { 504 $s1 = self::factory()->signup->create( array( 505 'user_login' => 'accountone', 506 'user_email' => 'accountone@example.com', 507 'activation_key' => 'activationkeyone', 508 ) ); 509 510 $s2 = self::factory()->signup->create( array( 511 'user_login' => 'accounttwo', 512 'user_email' => 'accounttwo@example.com', 513 'activation_key' => 'activationkeytwo', 514 ) ); 515 $found1 = BP_Signup::get( 516 array( 517 'number' => -1, 518 'fields' => 'ids', 519 ) 520 ); 521 $this->assertEqualSets( array( $s1, $s2 ), $found1['signups'] ); 522 523 $activate = BP_Signup::activate( (array) $s2 ); 524 525 $found2 = BP_Signup::get( 526 array( 527 'number' => -1, 528 'fields' => 'ids', 529 ) 530 ); 531 $this->assertEqualSets( array( $s1 ), $found2['signups'] ); 532 } 533 534 /** 535 * @group cache 536 */ 537 public function signup_objects_should_be_cached() { 538 global $wpdb; 539 540 $s1 = self::factory()->signup->create( array( 541 'user_login' => 'accountone', 542 'user_email' => 'accountone@example.com', 543 'activation_key' => 'activationkeyone', 544 ) ); 545 546 $found1 = new BP_Signup( $s1 ); 547 548 $num_queries = $wpdb->num_queries; 549 550 // Object should be rebuilt from cache. 551 $found2 = new BP_Signup( $s1 ); 552 553 // @TODO: This fails because "get_avatar()" in populate() results in db queries. 554 $this->assertEquals( $found1, $found2 ); 555 $this->assertEquals( $num_queries, $wpdb->num_queries ); 556 } 557 558 /** 559 * @group cache 560 */ 561 public function test_signup_object_caches_should_be_busted_by_activation() { 562 $s1 = self::factory()->signup->create( array( 563 'user_login' => 'accountone', 564 'user_email' => 'accountone@example.com', 565 'activation_key' => 'activationkeyone', 566 ) ); 567 568 $found1 = new BP_Signup( $s1 ); 569 $this->assertEquals( $s1, $found1->id ); 570 $this->assertFalse( $found1->active ); 571 572 $activate = BP_Signup::activate( (array) $s1 ); 573 574 $found2 = new BP_Signup( $s1 ); 575 $this->assertEquals( $s1, $found2->id ); 576 $this->assertTrue( $found2->active ); 577 578 } 359 579 }
Note: See TracChangeset
for help on using the changeset viewer.