<?php

namespace Cleantalk\ApbctWP\FindSpam\ListTable;

class UsersLogs extends Users
{

    // Set columns
    function get_columns(){
        return array(
            'cb'            => '<input type="checkbox" />',
            'ct_start'      => esc_html__( 'Start time', 'cleantalk-spam-protect'),
            'ct_checked'          => esc_html__( 'Checked', 'cleantalk-spam-protect'),
            'ct_spam'         => esc_html__( 'Found spam', 'cleantalk-spam-protect'),
            'ct_bad'     => esc_html__( 'Found bad', 'cleantalk-spam-protect'),
        );
    }

    function prepare_items(){

        $columns = $this->get_columns();
        $this->_column_headers = array( $columns, array(), array() );

        $logs = $this->getScansLogs();

        foreach( $logs as $log ) {

            $this->items[] = array(
                'ct_id' => $log['id'],
                'ct_start'  => $log['start_time'],
                'ct_checked' => $log['count_to_scan'],
                'ct_spam' => $log['found_spam'],
                'ct_bad' => $log['found_bad'],
            );

        }

    }

    function get_bulk_actions() {
        $actions = array(
            'delete'    => 'Delete'
        );
        return $actions;
    }

    function bulk_actions_handler() {

        if( empty($_POST['spamids']) || empty($_POST['_wpnonce']) ) return;

        if ( ! $action = $this->current_action() ) return;

        if( ! wp_verify_nonce( $_POST['_wpnonce'], 'bulk-' . $this->_args['plural'] ) )
            wp_die('nonce error');

        $this->removeLogs( $_POST['spamids'] );

    }

    function no_items() {
        esc_html_e( 'No logs found.', 'cleantalk-spam-protect');
    }

}