| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- <?php
- /**
- * WooCommerce API Keys Table List
- *
- * @package WooCommerce\Admin
- * @version 2.4.0
- */
- defined( 'ABSPATH' ) || exit;
- if ( ! class_exists( 'WP_List_Table' ) ) {
- require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php';
- }
- /**
- * API Keys table list class.
- */
- class WC_Admin_API_Keys_Table_List extends WP_List_Table {
- /**
- * Initialize the API key table list.
- */
- public function __construct() {
- parent::__construct(
- array(
- 'singular' => 'key',
- 'plural' => 'keys',
- 'ajax' => false,
- )
- );
- }
- /**
- * No items found text.
- */
- public function no_items() {
- esc_html_e( 'No keys found.', 'woocommerce' );
- }
- /**
- * Get list columns.
- *
- * @return array
- */
- public function get_columns() {
- return array(
- 'cb' => '<input type="checkbox" />',
- 'title' => __( 'Description', 'woocommerce' ),
- 'truncated_key' => __( 'Consumer key ending in', 'woocommerce' ),
- 'user' => __( 'User', 'woocommerce' ),
- 'permissions' => __( 'Permissions', 'woocommerce' ),
- 'last_access' => __( 'Last access', 'woocommerce' ),
- );
- }
- /**
- * Column cb.
- *
- * @param array $key Key data.
- * @return string
- */
- public function column_cb( $key ) {
- return sprintf( '<input type="checkbox" name="key[]" value="%1$s" />', $key['key_id'] );
- }
- /**
- * Return title column.
- *
- * @param array $key Key data.
- * @return string
- */
- public function column_title( $key ) {
- $url = admin_url( 'admin.php?page=wc-settings&tab=advanced§ion=keys&edit-key=' . $key['key_id'] );
- $output = '<strong>';
- $output .= '<a href="' . esc_url( $url ) . '" class="row-title">';
- if ( empty( $key['description'] ) ) {
- $output .= esc_html__( 'API key', 'woocommerce' );
- } else {
- $output .= esc_html( $key['description'] );
- }
- $output .= '</a>';
- $output .= '</strong>';
- // Get actions.
- $actions = array(
- /* translators: %s: API key ID. */
- 'id' => sprintf( __( 'ID: %d', 'woocommerce' ), $key['key_id'] ),
- 'edit' => '<a href="' . esc_url( $url ) . '">' . __( 'View/Edit', 'woocommerce' ) . '</a>',
- 'trash' => '<a class="submitdelete" aria-label="' . esc_attr__( 'Revoke API key', 'woocommerce' ) . '" href="' . esc_url(
- wp_nonce_url(
- add_query_arg(
- array(
- 'revoke-key' => $key['key_id'],
- ), admin_url( 'admin.php?page=wc-settings&tab=advanced§ion=keys' )
- ), 'revoke'
- )
- ) . '">' . esc_html__( 'Revoke', 'woocommerce' ) . '</a>',
- );
- $row_actions = array();
- foreach ( $actions as $action => $link ) {
- $row_actions[] = '<span class="' . esc_attr( $action ) . '">' . $link . '</span>';
- }
- $output .= '<div class="row-actions">' . implode( ' | ', $row_actions ) . '</div>';
- return $output;
- }
- /**
- * Return truncated consumer key column.
- *
- * @param array $key Key data.
- * @return string
- */
- public function column_truncated_key( $key ) {
- return '<code>…' . esc_html( $key['truncated_key'] ) . '</code>';
- }
- /**
- * Return user column.
- *
- * @param array $key Key data.
- * @return string
- */
- public function column_user( $key ) {
- $user = get_user_by( 'id', $key['user_id'] );
- if ( ! $user ) {
- return '';
- }
- if ( current_user_can( 'edit_user', $user->ID ) ) {
- return '<a href="' . esc_url( add_query_arg( array( 'user_id' => $user->ID ), admin_url( 'user-edit.php' ) ) ) . '">' . esc_html( $user->display_name ) . '</a>';
- }
- return esc_html( $user->display_name );
- }
- /**
- * Return permissions column.
- *
- * @param array $key Key data.
- * @return string
- */
- public function column_permissions( $key ) {
- $permission_key = $key['permissions'];
- $permissions = array(
- 'read' => __( 'Read', 'woocommerce' ),
- 'write' => __( 'Write', 'woocommerce' ),
- 'read_write' => __( 'Read/Write', 'woocommerce' ),
- );
- if ( isset( $permissions[ $permission_key ] ) ) {
- return esc_html( $permissions[ $permission_key ] );
- } else {
- return '';
- }
- }
- /**
- * Return last access column.
- *
- * @param array $key Key data.
- * @return string
- */
- public function column_last_access( $key ) {
- if ( ! empty( $key['last_access'] ) ) {
- /* translators: 1: last access date 2: last access time */
- $date = sprintf( __( '%1$s at %2$s', 'woocommerce' ), date_i18n( wc_date_format(), strtotime( $key['last_access'] ) ), date_i18n( wc_time_format(), strtotime( $key['last_access'] ) ) );
- return apply_filters( 'woocommerce_api_key_last_access_datetime', $date, $key['last_access'] );
- }
- return __( 'Unknown', 'woocommerce' );
- }
- /**
- * Get bulk actions.
- *
- * @return array
- */
- protected function get_bulk_actions() {
- return array(
- 'revoke' => __( 'Revoke', 'woocommerce' ),
- );
- }
- /**
- * Search box.
- *
- * @param string $text Button text.
- * @param string $input_id Input ID.
- */
- public function search_box( $text, $input_id ) {
- if ( empty( $_REQUEST['s'] ) && ! $this->has_items() ) { // WPCS: input var okay, CSRF ok.
- return;
- }
- $input_id = $input_id . '-search-input';
- $search_query = isset( $_REQUEST['s'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['s'] ) ) : ''; // WPCS: input var okay, CSRF ok.
- echo '<p class="search-box">';
- echo '<label class="screen-reader-text" for="' . esc_attr( $input_id ) . '">' . esc_html( $text ) . ':</label>';
- echo '<input type="search" id="' . esc_attr( $input_id ) . '" name="s" value="' . esc_attr( $search_query ) . '" />';
- submit_button(
- $text, '', '', false,
- array(
- 'id' => 'search-submit',
- )
- );
- echo '</p>';
- }
- /**
- * Prepare table list items.
- */
- public function prepare_items() {
- global $wpdb;
- $per_page = $this->get_items_per_page( 'woocommerce_keys_per_page' );
- $current_page = $this->get_pagenum();
- if ( 1 < $current_page ) {
- $offset = $per_page * ( $current_page - 1 );
- } else {
- $offset = 0;
- }
- $search = '';
- if ( ! empty( $_REQUEST['s'] ) ) { // WPCS: input var okay, CSRF ok.
- $search = "AND description LIKE '%" . esc_sql( $wpdb->esc_like( wc_clean( wp_unslash( $_REQUEST['s'] ) ) ) ) . "%' "; // WPCS: input var okay, CSRF ok.
- }
- // Get the API keys.
- $keys = $wpdb->get_results(
- "SELECT key_id, user_id, description, permissions, truncated_key, last_access FROM {$wpdb->prefix}woocommerce_api_keys WHERE 1 = 1 {$search}" .
- $wpdb->prepare( 'ORDER BY key_id DESC LIMIT %d OFFSET %d;', $per_page, $offset ), ARRAY_A
- ); // WPCS: unprepared SQL ok.
- $count = $wpdb->get_var( "SELECT COUNT(key_id) FROM {$wpdb->prefix}woocommerce_api_keys WHERE 1 = 1 {$search};" ); // WPCS: unprepared SQL ok.
- $this->items = $keys;
- // Set the pagination.
- $this->set_pagination_args(
- array(
- 'total_items' => $count,
- 'per_page' => $per_page,
- 'total_pages' => ceil( $count / $per_page ),
- )
- );
- }
- }
|