229 lines
6.1 KiB
PHP
229 lines
6.1 KiB
PHP
<?php
|
|
/**
|
|
* WooCommerce Admin API Keys Class
|
|
*
|
|
* @package WooCommerce\Admin
|
|
* @version 2.4.0
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* WC_Admin_API_Keys.
|
|
*/
|
|
class WC_Admin_API_Keys {
|
|
|
|
/**
|
|
* Initialize the API Keys admin actions.
|
|
*/
|
|
public function __construct() {
|
|
add_action( 'admin_init', array( $this, 'actions' ) );
|
|
add_action( 'woocommerce_settings_page_init', array( $this, 'screen_option' ) );
|
|
}
|
|
|
|
/**
|
|
* Check if is API Keys settings page.
|
|
*
|
|
* @return bool
|
|
*/
|
|
private function is_api_keys_settings_page() {
|
|
return isset( $_GET['page'], $_GET['tab'], $_GET['section'] ) && 'wc-settings' === $_GET['page'] && 'advanced' === $_GET['tab'] && 'keys' === $_GET['section']; // WPCS: input var okay, CSRF ok.
|
|
}
|
|
|
|
/**
|
|
* Page output.
|
|
*/
|
|
public static function page_output() {
|
|
// Hide the save button.
|
|
$GLOBALS['hide_save_button'] = true;
|
|
|
|
if ( isset( $_GET['create-key'] ) || isset( $_GET['edit-key'] ) ) {
|
|
$key_id = isset( $_GET['edit-key'] ) ? absint( $_GET['edit-key'] ) : 0; // WPCS: input var okay, CSRF ok.
|
|
$key_data = self::get_key_data( $key_id );
|
|
|
|
include 'settings/views/html-keys-edit.php';
|
|
} else {
|
|
self::table_list_output();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Add screen option.
|
|
*/
|
|
public function screen_option() {
|
|
global $keys_table_list;
|
|
|
|
if ( ! isset( $_GET['create-key'] ) && ! isset( $_GET['edit-key'] ) && $this->is_api_keys_settings_page() ) { // WPCS: input var okay, CSRF ok.
|
|
$keys_table_list = new WC_Admin_API_Keys_Table_List();
|
|
|
|
// Add screen option.
|
|
add_screen_option(
|
|
'per_page', array(
|
|
'default' => 10,
|
|
'option' => 'woocommerce_keys_per_page',
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Table list output.
|
|
*/
|
|
private static function table_list_output() {
|
|
global $wpdb, $keys_table_list;
|
|
|
|
echo '<h2>' . esc_html__( 'REST API', 'woocommerce' ) . ' <a href="' . esc_url( admin_url( 'admin.php?page=wc-settings&tab=advanced§ion=keys&create-key=1' ) ) . '" class="add-new-h2">' . esc_html__( 'Add key', 'woocommerce' ) . '</a></h2>';
|
|
|
|
// Get the API keys count.
|
|
$count = $wpdb->get_var( "SELECT COUNT(key_id) FROM {$wpdb->prefix}woocommerce_api_keys WHERE 1 = 1;" );
|
|
|
|
if ( absint( $count ) && $count > 0 ) {
|
|
$keys_table_list->prepare_items();
|
|
|
|
echo '<input type="hidden" name="page" value="wc-settings" />';
|
|
echo '<input type="hidden" name="tab" value="api" />';
|
|
echo '<input type="hidden" name="section" value="keys" />';
|
|
|
|
$keys_table_list->views();
|
|
$keys_table_list->search_box( __( 'Search key', 'woocommerce' ), 'key' );
|
|
$keys_table_list->display();
|
|
} else {
|
|
echo '<div class="woocommerce-BlankState woocommerce-BlankState--api">';
|
|
?>
|
|
<h2 class="woocommerce-BlankState-message"><?php esc_html_e( 'The WooCommerce REST API allows external apps to view and manage store data. Access is granted only to those with valid API keys.', 'woocommerce' ); ?></h2>
|
|
<a class="woocommerce-BlankState-cta button-primary button" href="<?php echo esc_url( admin_url( 'admin.php?page=wc-settings&tab=advanced§ion=keys&create-key=1' ) ); ?>"><?php esc_html_e( 'Create an API key', 'woocommerce' ); ?></a>
|
|
<style type="text/css">#posts-filter .wp-list-table, #posts-filter .tablenav.top, .tablenav.bottom .actions { display: none; }</style>
|
|
<?php
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get key data.
|
|
*
|
|
* @param int $key_id API Key ID.
|
|
* @return array
|
|
*/
|
|
private static function get_key_data( $key_id ) {
|
|
global $wpdb;
|
|
|
|
$empty = array(
|
|
'key_id' => 0,
|
|
'user_id' => '',
|
|
'description' => '',
|
|
'permissions' => '',
|
|
'truncated_key' => '',
|
|
'last_access' => '',
|
|
);
|
|
|
|
if ( 0 === $key_id ) {
|
|
return $empty;
|
|
}
|
|
|
|
$key = $wpdb->get_row(
|
|
$wpdb->prepare(
|
|
"SELECT key_id, user_id, description, permissions, truncated_key, last_access
|
|
FROM {$wpdb->prefix}woocommerce_api_keys
|
|
WHERE key_id = %d",
|
|
$key_id
|
|
), ARRAY_A
|
|
);
|
|
|
|
if ( is_null( $key ) ) {
|
|
return $empty;
|
|
}
|
|
|
|
return $key;
|
|
}
|
|
|
|
/**
|
|
* API Keys admin actions.
|
|
*/
|
|
public function actions() {
|
|
if ( $this->is_api_keys_settings_page() ) {
|
|
// Revoke key.
|
|
if ( isset( $_GET['revoke-key'] ) ) { // WPCS: input var okay, CSRF ok.
|
|
$this->revoke_key();
|
|
}
|
|
|
|
// Bulk actions.
|
|
if ( isset( $_GET['action'] ) && isset( $_GET['key'] ) ) { // WPCS: input var okay, CSRF ok.
|
|
$this->bulk_actions();
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Notices.
|
|
*/
|
|
public static function notices() {
|
|
if ( isset( $_GET['revoked'] ) && 1 === $_GET['revoked'] ) { // WPCS: input var okay, CSRF ok.
|
|
WC_Admin_Settings::add_message( __( 'API key revoked successfully.', 'woocommerce' ) );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Revoke key.
|
|
*/
|
|
private function revoke_key() {
|
|
check_admin_referer( 'revoke' );
|
|
|
|
if ( isset( $_GET['revoke-key'] ) ) { // WPCS: input var okay, CSRF ok.
|
|
$key_id = absint( $_GET['revoke-key'] ); // WPCS: input var okay, CSRF ok.
|
|
|
|
if ( $key_id ) {
|
|
$this->remove_key( $key_id );
|
|
}
|
|
}
|
|
|
|
wp_redirect( esc_url_raw( add_query_arg( array( 'revoked' => 1 ), admin_url( 'admin.php?page=wc-settings&tab=advanced§ion=keys' ) ) ) );
|
|
exit();
|
|
}
|
|
|
|
/**
|
|
* Bulk actions.
|
|
*/
|
|
private function bulk_actions() {
|
|
check_admin_referer( 'woocommerce-settings' );
|
|
|
|
if ( ! current_user_can( 'manage_woocommerce' ) ) {
|
|
wp_die( esc_html__( 'You do not have permission to edit API Keys', 'woocommerce' ) );
|
|
}
|
|
|
|
if ( isset( $_GET['action'] ) ) { // WPCS: input var okay, CSRF ok.
|
|
$action = sanitize_text_field( wp_unslash( $_GET['action'] ) ); // WPCS: input var okay, CSRF ok.
|
|
$keys = isset( $_GET['key'] ) ? array_map( 'absint', (array) $_GET['key'] ) : array(); // WPCS: input var okay, CSRF ok.
|
|
|
|
if ( 'revoke' === $action ) {
|
|
$this->bulk_revoke_key( $keys );
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Bulk revoke key.
|
|
*
|
|
* @param array $keys API Keys.
|
|
*/
|
|
private function bulk_revoke_key( $keys ) {
|
|
foreach ( $keys as $key_id ) {
|
|
$this->remove_key( $key_id );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Remove key.
|
|
*
|
|
* @param int $key_id API Key ID.
|
|
* @return bool
|
|
*/
|
|
private function remove_key( $key_id ) {
|
|
global $wpdb;
|
|
|
|
$delete = $wpdb->delete( $wpdb->prefix . 'woocommerce_api_keys', array( 'key_id' => $key_id ), array( '%d' ) );
|
|
|
|
return $delete;
|
|
}
|
|
}
|
|
|
|
new WC_Admin_API_Keys();
|