2019-05-10 16:56:07 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* REST API Setting Options controller
|
|
|
|
*
|
|
|
|
* Handles requests to the /settings/$group/$setting endpoints.
|
|
|
|
*
|
2020-09-17 14:56:08 +00:00
|
|
|
* @package WooCommerce\RestApi
|
2019-05-10 16:56:07 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* REST API Setting Options controller class.
|
|
|
|
*
|
2020-09-17 14:56:08 +00:00
|
|
|
* @package WooCommerce\RestApi
|
2019-05-10 16:56:07 +00:00
|
|
|
* @extends WC_REST_Setting_Options_V2_Controller
|
|
|
|
*/
|
|
|
|
class WC_REST_Setting_Options_Controller extends WC_REST_Setting_Options_V2_Controller {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Endpoint namespace.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $namespace = 'wc/v3';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get setting data.
|
|
|
|
*
|
|
|
|
* @param string $group_id Group ID.
|
|
|
|
* @param string $setting_id Setting ID.
|
|
|
|
* @return stdClass|WP_Error
|
|
|
|
*/
|
|
|
|
public function get_setting( $group_id, $setting_id ) {
|
|
|
|
$setting = parent::get_setting( $group_id, $setting_id );
|
|
|
|
if ( is_wp_error( $setting ) ) {
|
|
|
|
return $setting;
|
|
|
|
}
|
|
|
|
$setting['group_id'] = $group_id;
|
|
|
|
return $setting;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback for allowed keys for each setting response.
|
|
|
|
*
|
|
|
|
* @param string $key Key to check.
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function allowed_setting_keys( $key ) {
|
|
|
|
return in_array(
|
|
|
|
$key, array(
|
|
|
|
'id',
|
|
|
|
'group_id',
|
|
|
|
'label',
|
|
|
|
'description',
|
|
|
|
'default',
|
|
|
|
'tip',
|
|
|
|
'placeholder',
|
|
|
|
'type',
|
|
|
|
'options',
|
|
|
|
'value',
|
|
|
|
'option_key',
|
|
|
|
), true
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all settings in a group.
|
|
|
|
*
|
|
|
|
* @param string $group_id Group ID.
|
|
|
|
* @return array|WP_Error
|
|
|
|
*/
|
|
|
|
public function get_group_settings( $group_id ) {
|
|
|
|
if ( empty( $group_id ) ) {
|
2020-08-06 12:48:18 +00:00
|
|
|
return new WP_Error( 'rest_setting_setting_group_invalid', __( 'Invalid setting group.', 'woocommerce' ), array( 'status' => 404 ) );
|
2019-05-10 16:56:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$settings = apply_filters( 'woocommerce_settings-' . $group_id, array() ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
|
|
|
|
|
|
|
if ( empty( $settings ) ) {
|
2020-08-06 12:48:18 +00:00
|
|
|
return new WP_Error( 'rest_setting_setting_group_invalid', __( 'Invalid setting group.', 'woocommerce' ), array( 'status' => 404 ) );
|
2019-05-10 16:56:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$filtered_settings = array();
|
|
|
|
foreach ( $settings as $setting ) {
|
|
|
|
$option_key = $setting['option_key'];
|
|
|
|
$setting = $this->filter_setting( $setting );
|
|
|
|
$default = isset( $setting['default'] ) ? $setting['default'] : '';
|
|
|
|
// Get the option value.
|
|
|
|
if ( is_array( $option_key ) ) {
|
|
|
|
$option = get_option( $option_key[0] );
|
|
|
|
$setting['value'] = isset( $option[ $option_key[1] ] ) ? $option[ $option_key[1] ] : $default;
|
|
|
|
} else {
|
|
|
|
$admin_setting_value = WC_Admin_Settings::get_option( $option_key, $default );
|
|
|
|
$setting['value'] = $admin_setting_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( 'multi_select_countries' === $setting['type'] ) {
|
|
|
|
$setting['options'] = WC()->countries->get_countries();
|
|
|
|
$setting['type'] = 'multiselect';
|
|
|
|
} elseif ( 'single_select_country' === $setting['type'] ) {
|
|
|
|
$setting['type'] = 'select';
|
|
|
|
$setting['options'] = $this->get_countries_and_states();
|
|
|
|
} elseif ( 'single_select_page' === $setting['type'] ) {
|
|
|
|
$pages = get_pages(
|
|
|
|
array(
|
|
|
|
'sort_column' => 'menu_order',
|
|
|
|
'sort_order' => 'ASC',
|
|
|
|
'hierarchical' => 0,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$options = array();
|
|
|
|
foreach ( $pages as $page ) {
|
|
|
|
$options[ $page->ID ] = ! empty( $page->post_title ) ? $page->post_title : '#' . $page->ID;
|
|
|
|
}
|
|
|
|
$setting['type'] = 'select';
|
|
|
|
$setting['options'] = $options;
|
|
|
|
}
|
|
|
|
|
|
|
|
$filtered_settings[] = $setting;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $filtered_settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a list of countries and states for use in the base location setting.
|
|
|
|
*
|
|
|
|
* @since 3.0.7
|
|
|
|
* @return array Array of states and countries.
|
|
|
|
*/
|
|
|
|
private function get_countries_and_states() {
|
|
|
|
$countries = WC()->countries->get_countries();
|
|
|
|
if ( ! $countries ) {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
$output = array();
|
|
|
|
foreach ( $countries as $key => $value ) {
|
|
|
|
$states = WC()->countries->get_states( $key );
|
|
|
|
|
|
|
|
if ( $states ) {
|
|
|
|
foreach ( $states as $state_key => $state_value ) {
|
|
|
|
$output[ $key . ':' . $state_key ] = $value . ' - ' . $state_value;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$output[ $key ] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the settings schema, conforming to JSON Schema.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function get_item_schema() {
|
|
|
|
$schema = array(
|
|
|
|
'$schema' => 'http://json-schema.org/draft-04/schema#',
|
|
|
|
'title' => 'setting',
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
2020-08-06 12:48:18 +00:00
|
|
|
'description' => __( 'A unique identifier for the setting.', 'woocommerce' ),
|
2019-05-10 16:56:07 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'arg_options' => array(
|
|
|
|
'sanitize_callback' => 'sanitize_title',
|
|
|
|
),
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'group_id' => array(
|
2020-08-06 12:48:18 +00:00
|
|
|
'description' => __( 'An identifier for the group this setting belongs to.', 'woocommerce' ),
|
2019-05-10 16:56:07 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'arg_options' => array(
|
|
|
|
'sanitize_callback' => 'sanitize_title',
|
|
|
|
),
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'label' => array(
|
2020-08-06 12:48:18 +00:00
|
|
|
'description' => __( 'A human readable label for the setting used in interfaces.', 'woocommerce' ),
|
2019-05-10 16:56:07 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'arg_options' => array(
|
|
|
|
'sanitize_callback' => 'sanitize_text_field',
|
|
|
|
),
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'description' => array(
|
2020-08-06 12:48:18 +00:00
|
|
|
'description' => __( 'A human readable description for the setting used in interfaces.', 'woocommerce' ),
|
2019-05-10 16:56:07 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'arg_options' => array(
|
|
|
|
'sanitize_callback' => 'sanitize_text_field',
|
|
|
|
),
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'value' => array(
|
2020-08-06 12:48:18 +00:00
|
|
|
'description' => __( 'Setting value.', 'woocommerce' ),
|
2020-08-12 14:01:40 +00:00
|
|
|
'type' => 'mixed',
|
2019-05-10 16:56:07 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'default' => array(
|
2020-08-06 12:48:18 +00:00
|
|
|
'description' => __( 'Default value for the setting.', 'woocommerce' ),
|
2020-08-12 14:01:40 +00:00
|
|
|
'type' => 'mixed',
|
2019-05-10 16:56:07 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'tip' => array(
|
2020-08-06 12:48:18 +00:00
|
|
|
'description' => __( 'Additional help text shown to the user about the setting.', 'woocommerce' ),
|
2019-05-10 16:56:07 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'arg_options' => array(
|
|
|
|
'sanitize_callback' => 'sanitize_text_field',
|
|
|
|
),
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'placeholder' => array(
|
2020-08-06 12:48:18 +00:00
|
|
|
'description' => __( 'Placeholder text to be displayed in text inputs.', 'woocommerce' ),
|
2019-05-10 16:56:07 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'arg_options' => array(
|
|
|
|
'sanitize_callback' => 'sanitize_text_field',
|
|
|
|
),
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'type' => array(
|
2020-08-06 12:48:18 +00:00
|
|
|
'description' => __( 'Type of setting.', 'woocommerce' ),
|
2019-05-10 16:56:07 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'arg_options' => array(
|
|
|
|
'sanitize_callback' => 'sanitize_text_field',
|
|
|
|
),
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'enum' => array( 'text', 'email', 'number', 'color', 'password', 'textarea', 'select', 'multiselect', 'radio', 'image_width', 'checkbox' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'options' => array(
|
2020-08-06 12:48:18 +00:00
|
|
|
'description' => __( 'Array of options (key value pairs) for inputs such as select, multiselect, and radio buttons.', 'woocommerce' ),
|
2019-05-10 16:56:07 +00:00
|
|
|
'type' => 'object',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->add_additional_fields_schema( $schema );
|
|
|
|
}
|
|
|
|
}
|