2015-05-16 02:03:24 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* WooCommerce Admin API Keys Class.
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @category Admin
|
|
|
|
* @package WooCommerce/Admin
|
|
|
|
* @version 2.4.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WC_Admin_API_Keys
|
|
|
|
*/
|
|
|
|
class WC_Admin_API_Keys {
|
|
|
|
|
|
|
|
/**
|
2015-05-18 18:23:05 +00:00
|
|
|
* Initialize the API Keys admin actions
|
2015-05-16 02:03:24 +00:00
|
|
|
*/
|
|
|
|
public function __construct() {
|
2015-05-18 18:23:05 +00:00
|
|
|
add_action( 'admin_init', array( $this, 'actions' ) );
|
|
|
|
}
|
2015-05-16 02:03:24 +00:00
|
|
|
|
2015-05-18 18:23:05 +00:00
|
|
|
/**
|
|
|
|
* Check if is API Keys settings page
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function is_api_keys_settings_page() {
|
|
|
|
return isset( $_GET['page'] )
|
|
|
|
&& 'wc-settings' == $_GET['page']
|
|
|
|
&& isset( $_GET['tab'] )
|
|
|
|
&& 'api' == $_GET['tab']
|
|
|
|
&& isset( $_GET['section'] )
|
|
|
|
&& 'keys' == isset( $_GET['section'] );
|
2015-05-16 02:03:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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'] ) ) {
|
2015-05-18 18:23:05 +00:00
|
|
|
$key_id = isset( $_GET['edit-key'] ) ? absint( $_GET['edit-key'] ) : 0;
|
|
|
|
$key_data = self::get_key_data( $key_id );
|
|
|
|
|
2015-05-16 02:03:24 +00:00
|
|
|
include( 'settings/views/html-keys-edit.php' );
|
|
|
|
} else {
|
|
|
|
self::table_list_output();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Table list output
|
|
|
|
*/
|
|
|
|
private static function table_list_output() {
|
|
|
|
echo '<h3>' . __( 'Keys/Apps', 'woocommerce' ) . ' <a href="' . esc_url( admin_url( 'admin.php?page=wc-settings&tab=api§ion=keys&create-key=1' ) ) . '" class="add-new-h2">' . __( 'Add Key', 'woocommerce' ) . '</a></h3>';
|
|
|
|
|
|
|
|
$keys_table_list = new WC_Admin_API_Keys_Table_List();
|
|
|
|
$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();
|
|
|
|
}
|
2015-05-16 03:09:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get key data
|
|
|
|
*
|
|
|
|
* @param int $key_id
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private static function get_key_data( $key_id ) {
|
|
|
|
global $wpdb;
|
|
|
|
|
|
|
|
$empty = array(
|
|
|
|
'key_id' => 0,
|
|
|
|
'user_id' => '',
|
|
|
|
'description' => '',
|
|
|
|
'permissions' => '',
|
|
|
|
'consumer_key' => '',
|
|
|
|
'consumer_secret' => ''
|
|
|
|
);
|
|
|
|
|
|
|
|
if ( 0 == $key_id ) {
|
|
|
|
return $empty;
|
|
|
|
}
|
|
|
|
|
|
|
|
$key = $wpdb->get_row( $wpdb->prepare( "
|
|
|
|
SELECT key_id, user_id, description, permissions, consumer_key, consumer_secret
|
|
|
|
FROM {$wpdb->prefix}woocommerce_api_keys
|
|
|
|
WHERE key_id = %d
|
|
|
|
", $key_id ), ARRAY_A );
|
|
|
|
|
|
|
|
if ( is_null( $key ) ) {
|
|
|
|
return $empty;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $key;
|
|
|
|
}
|
2015-05-18 18:23:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* API Keys admin actions
|
|
|
|
*/
|
|
|
|
public function actions() {
|
|
|
|
if ( $this->is_api_keys_settings_page() ) {
|
|
|
|
// Generate Key / Edit Key
|
|
|
|
if ( isset( $_POST['update_api_key'] ) && isset( $_POST['key_id'] ) ) {
|
|
|
|
$this->update_key();
|
|
|
|
}
|
|
|
|
|
2015-05-18 18:46:16 +00:00
|
|
|
// Revoke key
|
|
|
|
if ( isset( $_GET['revoke-key'] ) ) {
|
|
|
|
$this->revoke_key();
|
|
|
|
}
|
|
|
|
|
2015-05-18 18:23:05 +00:00
|
|
|
// Bulk actions
|
|
|
|
if ( isset( $_GET['action'] ) && isset( $_GET['keys'] ) ) {
|
|
|
|
// $this->bulk_actions();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notices.
|
|
|
|
*/
|
|
|
|
public static function notices() {
|
2015-05-18 18:46:16 +00:00
|
|
|
if ( isset( $_GET['status'] ) ) {
|
2015-05-18 18:23:05 +00:00
|
|
|
|
|
|
|
switch ( intval( $_GET['status'] ) ) {
|
|
|
|
case 2 :
|
|
|
|
WC_Admin_Settings::add_message( __( 'API Key generated successfully.', 'woocommerce' ) );
|
|
|
|
break;
|
2015-05-18 18:46:16 +00:00
|
|
|
case 3 :
|
|
|
|
WC_Admin_Settings::add_message( __( 'API Key revoked successfully.', 'woocommerce' ) );
|
|
|
|
break;
|
2015-05-18 18:23:05 +00:00
|
|
|
case -1 :
|
|
|
|
WC_Admin_Settings::add_error( __( 'Description is missing.', 'woocommerce' ) );
|
|
|
|
break;
|
|
|
|
case -2 :
|
|
|
|
WC_Admin_Settings::add_error( __( 'User is missing.', 'woocommerce' ) );
|
|
|
|
break;
|
|
|
|
case -3 :
|
|
|
|
WC_Admin_Settings::add_error( __( 'Description is missing.', 'woocommerce' ) );
|
|
|
|
break;
|
|
|
|
|
|
|
|
default :
|
|
|
|
WC_Admin_Settings::add_message( __( 'API Key updated successfully.', 'woocommerce' ) );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update Key
|
|
|
|
*/
|
|
|
|
private function update_key() {
|
|
|
|
global $wpdb;
|
|
|
|
|
|
|
|
if ( empty( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'woocommerce-settings' ) ) {
|
2015-05-18 18:46:16 +00:00
|
|
|
wp_die( __( 'Action failed. Please refresh the page and retry.', 'woocommerce' ) );
|
2015-05-18 18:23:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! current_user_can( 'manage_woocommerce' ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$url = admin_url( 'admin.php?page=wc-settings&tab=api§ion=keys' );
|
|
|
|
$key_id = absint( $_POST['key_id'] );
|
|
|
|
$status = 1;
|
|
|
|
|
|
|
|
try {
|
|
|
|
if ( empty( $_POST['key_description'] ) ) {
|
|
|
|
throw new Exception( 'Description is missing', -1 );
|
|
|
|
}
|
|
|
|
if ( empty( $_POST['key_user'] ) ) {
|
|
|
|
throw new Exception( 'User is missing', -2 );
|
|
|
|
}
|
|
|
|
if ( empty( $_POST['key_permissions'] ) ) {
|
|
|
|
throw new Exception( 'permissions is missing', -3 );
|
|
|
|
}
|
|
|
|
|
|
|
|
$description = sanitize_text_field( $_POST['key_description'] );
|
|
|
|
$permissions = ( in_array( $_POST['key_permissions'], array( 'read', 'write', 'read_write' ) ) ) ? sanitize_text_field( $_POST['key_permissions'] ) : 'read';
|
|
|
|
$user_id = absint( $_POST['key_user'] );
|
|
|
|
|
|
|
|
if ( 0 < $key_id ) {
|
|
|
|
$wpdb->update(
|
|
|
|
$wpdb->prefix . 'woocommerce_api_keys',
|
|
|
|
array(
|
|
|
|
'user_id' => $user_id,
|
|
|
|
'description' => $description,
|
|
|
|
'permissions' => $permissions
|
|
|
|
),
|
|
|
|
array( 'key_id' => $key_id ),
|
|
|
|
array(
|
|
|
|
'%d',
|
|
|
|
'%s',
|
|
|
|
'%s'
|
|
|
|
),
|
|
|
|
array( '%d' )
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$status = 2;
|
|
|
|
$user = get_userdata( $user_id );
|
|
|
|
$consumer_key = 'ck_' . hash( 'md5', $user->user_login . date( 'U' ) . mt_rand() );
|
|
|
|
$consumer_secret = 'cs_' . hash( 'md5', $user->ID . date( 'U' ) . mt_rand() );
|
|
|
|
|
|
|
|
$wpdb->insert(
|
|
|
|
$wpdb->prefix . 'woocommerce_api_keys',
|
|
|
|
array(
|
|
|
|
'user_id' => $user_id,
|
|
|
|
'description' => $description,
|
|
|
|
'permissions' => $permissions,
|
|
|
|
'consumer_key' => $consumer_key,
|
|
|
|
'consumer_secret' => $consumer_secret
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'%d',
|
|
|
|
'%s',
|
|
|
|
'%s',
|
|
|
|
'%s',
|
|
|
|
'%s'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$key_id = $wpdb->insert_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
wp_redirect( esc_url_raw( add_query_arg( array( 'edit-key' => $key_id, 'status' => $status ), $url ) ) );
|
|
|
|
exit();
|
|
|
|
} catch ( Exception $e ) {
|
|
|
|
wp_redirect( esc_url_raw( add_query_arg( array( 'edit-key' => $key_id, 'status' => $e->getCode() ), $url ) ) );
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
2015-05-18 18:46:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Revoke key
|
|
|
|
*/
|
|
|
|
private function revoke_key() {
|
|
|
|
global $wpdb;
|
|
|
|
|
|
|
|
if ( empty( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'revoke' ) ) {
|
|
|
|
wp_die( __( 'Action failed. Please refresh the page and retry.', 'woocommerce' ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
$key_id = absint( $_GET['revoke-key'] );
|
|
|
|
$wpdb->delete( $wpdb->prefix . 'woocommerce_api_keys', array( 'key_id' => $key_id ), array( '%d' ) );
|
|
|
|
|
|
|
|
wp_redirect( esc_url_raw( add_query_arg( array( 'status' => 3 ), admin_url( 'admin.php?page=wc-settings&tab=api§ion=keys' ) ) ) );
|
|
|
|
exit();
|
|
|
|
}
|
2015-05-16 02:03:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
new WC_Admin_API_Keys();
|