AnsPress_Admin_Ajax::recount_votes()

Description #

Ajax callback for ‘ap_recount_votes` which recounting votes of posts.

Changelog #

VersionDescription
4.0.5Introduced.

Source #

File: admin/ajax.php

301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
public static function recount_votes() {
    if ( ! anspress_verify_nonce( 'recount_votes' ) || ! current_user_can( 'manage_options' ) ) {
        wp_die();
    }
 
    $paged  = (int) ap_sanitize_unslash( 'paged', 'r', 0 );
    $offset = absint( $paged * 100 );
 
    global $wpdb;
 
    $ids = $wpdb->get_col( "SELECT SQL_CALC_FOUND_ROWS ID FROM {$wpdb->posts} WHERE post_type IN ('question', 'answer') LIMIT {$offset},100" ); // phpcs:ignore WordPress.DB
 
    $total_found = $wpdb->get_var( 'SELECT FOUND_ROWS()' ); // phpcs:ignore WordPress.DB
 
    foreach ( (array) $ids as $id ) {
        ap_update_votes_count( $id );
    }
 
    $done   = $offset + count( $ids );
    $remain = $total_found - ( $offset + count( $ids ) );
 
    $json = array(
        'success' => true,
        'total'   => $total_found,
        'remain'  => $remain,
        'el'      => '.ap-recount-votes',
        // translators: %1 is total completed, %2 is total found count.
        'msg'     => sprintf( __( '%1$d done out of %2$d', 'anspress-question-answer' ), $done, $total_found ),
    );
 
    if ( $remain > 0 ) {
        $json['q'] = array(
            'action'  => 'ap_recount_votes',
            '__nonce' => wp_create_nonce( 'recount_votes' ),
            'paged'   => $paged + 1,
        );
    }
 
    ap_send_json( $json );
}

Leave a Reply

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Add your comment