2016-02-17 19:29:09 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* REST API Coupons controller
|
|
|
|
*
|
|
|
|
* Handles requests to the /coupons endpoint.
|
|
|
|
*
|
2018-03-06 18:04:58 +00:00
|
|
|
* @package WooCommerce/API
|
|
|
|
* @since 2.6.0
|
2016-02-17 19:29:09 +00:00
|
|
|
*/
|
|
|
|
|
2018-03-06 18:04:58 +00:00
|
|
|
defined( 'ABSPATH' ) || exit;
|
2016-02-17 19:29:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* REST API Coupons controller class.
|
|
|
|
*
|
|
|
|
* @package WooCommerce/API
|
2017-02-16 22:31:36 +00:00
|
|
|
* @extends WC_REST_CRUD_Controller
|
2016-02-17 19:29:09 +00:00
|
|
|
*/
|
2017-02-17 02:27:40 +00:00
|
|
|
class WC_REST_Coupons_Controller extends WC_REST_Legacy_Coupons_Controller {
|
2016-02-17 19:29:09 +00:00
|
|
|
|
2016-03-07 18:36:17 +00:00
|
|
|
/**
|
|
|
|
* Endpoint namespace.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2017-02-09 17:06:13 +00:00
|
|
|
protected $namespace = 'wc/v2';
|
2016-03-07 18:36:17 +00:00
|
|
|
|
2017-02-16 22:31:36 +00:00
|
|
|
/**
|
|
|
|
* Route base.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $rest_base = 'coupons';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Post type.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $post_type = 'shop_coupon';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register the routes for coupons.
|
|
|
|
*/
|
|
|
|
public function register_routes() {
|
2018-03-05 20:53:06 +00:00
|
|
|
register_rest_route(
|
|
|
|
$this->namespace, '/' . $this->rest_base, array(
|
|
|
|
array(
|
|
|
|
'methods' => WP_REST_Server::READABLE,
|
|
|
|
'callback' => array( $this, 'get_items' ),
|
|
|
|
'permission_callback' => array( $this, 'get_items_permissions_check' ),
|
|
|
|
'args' => $this->get_collection_params(),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'methods' => WP_REST_Server::CREATABLE,
|
|
|
|
'callback' => array( $this, 'create_item' ),
|
|
|
|
'permission_callback' => array( $this, 'create_item_permissions_check' ),
|
|
|
|
'args' => array_merge(
|
|
|
|
$this->get_endpoint_args_for_item_schema( WP_REST_Server::CREATABLE ), array(
|
|
|
|
'code' => array(
|
|
|
|
'description' => __( 'Coupon code.', 'woocommerce' ),
|
|
|
|
'required' => true,
|
|
|
|
'type' => 'string',
|
|
|
|
),
|
|
|
|
)
|
2017-02-16 22:31:36 +00:00
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
),
|
|
|
|
'schema' => array( $this, 'get_public_item_schema' ),
|
|
|
|
)
|
|
|
|
);
|
2017-02-16 22:31:36 +00:00
|
|
|
|
2018-03-05 20:53:06 +00:00
|
|
|
register_rest_route(
|
|
|
|
$this->namespace, '/' . $this->rest_base . '/(?P<id>[\d]+)', array(
|
|
|
|
'args' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Unique identifier for the resource.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
),
|
2017-02-16 22:31:36 +00:00
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
array(
|
|
|
|
'methods' => WP_REST_Server::READABLE,
|
|
|
|
'callback' => array( $this, 'get_item' ),
|
|
|
|
'permission_callback' => array( $this, 'get_item_permissions_check' ),
|
|
|
|
'args' => array(
|
|
|
|
'context' => $this->get_context_param( array( 'default' => 'view' ) ),
|
|
|
|
),
|
2017-02-16 22:31:36 +00:00
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
array(
|
|
|
|
'methods' => WP_REST_Server::EDITABLE,
|
|
|
|
'callback' => array( $this, 'update_item' ),
|
|
|
|
'permission_callback' => array( $this, 'update_item_permissions_check' ),
|
|
|
|
'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'methods' => WP_REST_Server::DELETABLE,
|
|
|
|
'callback' => array( $this, 'delete_item' ),
|
|
|
|
'permission_callback' => array( $this, 'delete_item_permissions_check' ),
|
|
|
|
'args' => array(
|
|
|
|
'force' => array(
|
|
|
|
'default' => false,
|
|
|
|
'type' => 'boolean',
|
|
|
|
'description' => __( 'Whether to bypass trash and force deletion.', 'woocommerce' ),
|
|
|
|
),
|
2017-02-16 22:31:36 +00:00
|
|
|
),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'schema' => array( $this, 'get_public_item_schema' ),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
register_rest_route(
|
|
|
|
$this->namespace, '/' . $this->rest_base . '/batch', array(
|
|
|
|
array(
|
|
|
|
'methods' => WP_REST_Server::EDITABLE,
|
|
|
|
'callback' => array( $this, 'batch_items' ),
|
|
|
|
'permission_callback' => array( $this, 'batch_items_permissions_check' ),
|
|
|
|
'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
|
|
|
|
),
|
|
|
|
'schema' => array( $this, 'get_public_batch_schema' ),
|
|
|
|
)
|
|
|
|
);
|
2017-02-16 22:31:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get object.
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2017-02-16 22:31:36 +00:00
|
|
|
* @param int $id Object ID.
|
|
|
|
* @return WC_Data
|
|
|
|
*/
|
|
|
|
protected function get_object( $id ) {
|
|
|
|
return new WC_Coupon( $id );
|
|
|
|
}
|
|
|
|
|
2017-03-15 15:32:17 +00:00
|
|
|
/**
|
|
|
|
* Get formatted item data.
|
|
|
|
*
|
|
|
|
* @since 3.0.0
|
|
|
|
* @param WC_Data $object WC_Data instance.
|
|
|
|
* @return array
|
|
|
|
*/
|
2017-03-14 21:43:53 +00:00
|
|
|
protected function get_formatted_item_data( $object ) {
|
2017-02-16 22:31:36 +00:00
|
|
|
$data = $object->get_data();
|
2017-01-03 18:21:14 +00:00
|
|
|
|
2016-08-26 14:20:44 +00:00
|
|
|
$format_decimal = array( 'amount', 'minimum_amount', 'maximum_amount' );
|
2017-02-09 21:22:12 +00:00
|
|
|
$format_date = array( 'date_created', 'date_modified', 'date_expires' );
|
2016-08-26 15:44:00 +00:00
|
|
|
$format_null = array( 'usage_limit', 'usage_limit_per_user', 'limit_usage_to_x_items' );
|
2016-08-26 14:20:44 +00:00
|
|
|
|
|
|
|
// Format decimal values.
|
|
|
|
foreach ( $format_decimal as $key ) {
|
2016-08-26 14:24:01 +00:00
|
|
|
$data[ $key ] = wc_format_decimal( $data[ $key ], 2 );
|
2016-08-26 14:20:44 +00:00
|
|
|
}
|
2016-02-22 19:44:47 +00:00
|
|
|
|
2016-08-26 14:20:44 +00:00
|
|
|
// Format date values.
|
|
|
|
foreach ( $format_date as $key ) {
|
2018-03-05 20:53:06 +00:00
|
|
|
$datetime = $data[ $key ];
|
|
|
|
$data[ $key ] = wc_rest_prepare_date_response( $datetime, false );
|
|
|
|
$data[ $key . '_gmt' ] = wc_rest_prepare_date_response( $datetime );
|
2016-08-26 15:44:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Format null values.
|
|
|
|
foreach ( $format_null as $key ) {
|
|
|
|
$data[ $key ] = $data[ $key ] ? $data[ $key ] : null;
|
2016-08-26 14:20:44 +00:00
|
|
|
}
|
2016-02-22 19:44:47 +00:00
|
|
|
|
2017-03-15 16:08:23 +00:00
|
|
|
return array(
|
2017-03-15 16:08:10 +00:00
|
|
|
'id' => $object->get_id(),
|
|
|
|
'code' => $data['code'],
|
|
|
|
'amount' => $data['amount'],
|
|
|
|
'date_created' => $data['date_created'],
|
|
|
|
'date_created_gmt' => $data['date_created_gmt'],
|
|
|
|
'date_modified' => $data['date_modified'],
|
|
|
|
'date_modified_gmt' => $data['date_modified_gmt'],
|
|
|
|
'discount_type' => $data['discount_type'],
|
|
|
|
'description' => $data['description'],
|
|
|
|
'date_expires' => $data['date_expires'],
|
|
|
|
'date_expires_gmt' => $data['date_expires_gmt'],
|
|
|
|
'usage_count' => $data['usage_count'],
|
|
|
|
'individual_use' => $data['individual_use'],
|
|
|
|
'product_ids' => $data['product_ids'],
|
|
|
|
'excluded_product_ids' => $data['excluded_product_ids'],
|
|
|
|
'usage_limit' => $data['usage_limit'],
|
|
|
|
'usage_limit_per_user' => $data['usage_limit_per_user'],
|
|
|
|
'limit_usage_to_x_items' => $data['limit_usage_to_x_items'],
|
|
|
|
'free_shipping' => $data['free_shipping'],
|
|
|
|
'product_categories' => $data['product_categories'],
|
|
|
|
'excluded_product_categories' => $data['excluded_product_categories'],
|
|
|
|
'exclude_sale_items' => $data['exclude_sale_items'],
|
|
|
|
'minimum_amount' => $data['minimum_amount'],
|
|
|
|
'maximum_amount' => $data['maximum_amount'],
|
|
|
|
'email_restrictions' => $data['email_restrictions'],
|
|
|
|
'used_by' => $data['used_by'],
|
|
|
|
'meta_data' => $data['meta_data'],
|
2017-03-14 21:43:53 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare a single coupon output for response.
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2017-03-14 21:43:53 +00:00
|
|
|
* @param WC_Data $object Object data.
|
|
|
|
* @param WP_REST_Request $request Request object.
|
|
|
|
* @return WP_REST_Response
|
|
|
|
*/
|
|
|
|
public function prepare_object_for_response( $object, $request ) {
|
2018-03-05 20:53:06 +00:00
|
|
|
$data = $this->get_formatted_item_data( $object );
|
2016-08-26 14:20:44 +00:00
|
|
|
$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
|
|
|
|
$data = $this->add_additional_fields_to_object( $data, $request );
|
|
|
|
$data = $this->filter_response_by_context( $data, $context );
|
2016-02-22 19:44:47 +00:00
|
|
|
$response = rest_ensure_response( $data );
|
2017-02-16 22:31:36 +00:00
|
|
|
$response->add_links( $this->prepare_links( $object, $request ) );
|
2016-03-15 19:53:51 +00:00
|
|
|
|
2016-02-22 19:44:47 +00:00
|
|
|
/**
|
|
|
|
* Filter the data for a response.
|
|
|
|
*
|
2017-02-16 22:31:36 +00:00
|
|
|
* The dynamic portion of the hook name, $this->post_type,
|
|
|
|
* refers to object type being prepared for the response.
|
2016-02-22 19:44:47 +00:00
|
|
|
*
|
2017-02-16 22:31:36 +00:00
|
|
|
* @param WP_REST_Response $response The response object.
|
|
|
|
* @param WC_Data $object Object data.
|
|
|
|
* @param WP_REST_Request $request Request object.
|
2016-02-22 19:44:47 +00:00
|
|
|
*/
|
2017-02-16 22:31:36 +00:00
|
|
|
return apply_filters( "woocommerce_rest_prepare_{$this->post_type}_object", $response, $object, $request );
|
2016-02-17 19:29:09 +00:00
|
|
|
}
|
2016-02-26 20:24:33 +00:00
|
|
|
|
2017-02-16 23:15:34 +00:00
|
|
|
/**
|
|
|
|
* Prepare objects query.
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2017-02-16 23:15:34 +00:00
|
|
|
* @param WP_REST_Request $request Full details about the request.
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function prepare_objects_query( $request ) {
|
|
|
|
$args = parent::prepare_objects_query( $request );
|
|
|
|
|
|
|
|
if ( ! empty( $request['code'] ) ) {
|
2018-03-05 20:53:06 +00:00
|
|
|
$id = wc_get_coupon_id_by_code( $request['code'] );
|
2017-02-16 23:15:34 +00:00
|
|
|
$args['post__in'] = array( $id );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get only ids.
|
|
|
|
$args['fields'] = 'ids';
|
|
|
|
|
|
|
|
return $args;
|
|
|
|
}
|
|
|
|
|
2016-02-26 20:24:33 +00:00
|
|
|
/**
|
2017-07-17 10:10:52 +00:00
|
|
|
* Only return writable props from schema.
|
2016-02-26 20:24:33 +00:00
|
|
|
*
|
2018-03-06 18:04:58 +00:00
|
|
|
* @param array $schema Schema.
|
2017-02-16 22:31:36 +00:00
|
|
|
* @return bool
|
2016-02-26 20:24:33 +00:00
|
|
|
*/
|
2017-02-16 22:31:36 +00:00
|
|
|
protected function filter_writable_props( $schema ) {
|
|
|
|
return empty( $schema['readonly'] );
|
|
|
|
}
|
2016-08-26 15:44:00 +00:00
|
|
|
|
2017-02-16 22:31:36 +00:00
|
|
|
/**
|
|
|
|
* Prepare a single coupon for create or update.
|
|
|
|
*
|
|
|
|
* @param WP_REST_Request $request Request object.
|
|
|
|
* @param bool $creating If is creating a new object.
|
|
|
|
* @return WP_Error|WC_Data
|
|
|
|
*/
|
|
|
|
protected function prepare_object_for_database( $request, $creating = false ) {
|
2016-08-26 14:42:42 +00:00
|
|
|
$id = isset( $request['id'] ) ? absint( $request['id'] ) : 0;
|
|
|
|
$coupon = new WC_Coupon( $id );
|
|
|
|
$schema = $this->get_item_schema();
|
|
|
|
$data_keys = array_keys( array_filter( $schema['properties'], array( $this, 'filter_writable_props' ) ) );
|
2016-02-26 20:24:33 +00:00
|
|
|
|
2016-03-29 22:11:49 +00:00
|
|
|
// Validate required POST fields.
|
2017-02-16 22:31:36 +00:00
|
|
|
if ( $creating && empty( $request['code'] ) ) {
|
|
|
|
return new WP_Error( 'woocommerce_rest_empty_coupon_code', sprintf( __( 'The coupon code cannot be empty.', 'woocommerce' ), 'code' ), array( 'status' => 400 ) );
|
2016-03-29 22:11:49 +00:00
|
|
|
}
|
|
|
|
|
2017-02-09 21:22:12 +00:00
|
|
|
// Handle all writable props.
|
2016-08-26 14:42:42 +00:00
|
|
|
foreach ( $data_keys as $key ) {
|
|
|
|
$value = $request[ $key ];
|
|
|
|
|
|
|
|
if ( ! is_null( $value ) ) {
|
|
|
|
switch ( $key ) {
|
2018-03-05 20:53:06 +00:00
|
|
|
case 'code':
|
2017-02-22 17:40:24 +00:00
|
|
|
$coupon_code = wc_format_coupon_code( $value );
|
2017-02-16 22:31:36 +00:00
|
|
|
$id = $coupon->get_id() ? $coupon->get_id() : 0;
|
2016-08-30 10:43:53 +00:00
|
|
|
$id_from_code = wc_get_coupon_id_by_code( $coupon_code, $id );
|
2016-08-26 14:42:42 +00:00
|
|
|
|
2016-08-30 10:43:53 +00:00
|
|
|
if ( $id_from_code ) {
|
2016-08-26 14:42:42 +00:00
|
|
|
return new WP_Error( 'woocommerce_rest_coupon_code_already_exists', __( 'The coupon code already exists', 'woocommerce' ), array( 'status' => 400 ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
$coupon->set_code( $coupon_code );
|
|
|
|
break;
|
2018-03-05 20:53:06 +00:00
|
|
|
case 'meta_data':
|
2016-08-26 14:42:42 +00:00
|
|
|
if ( is_array( $value ) ) {
|
|
|
|
foreach ( $value as $meta ) {
|
2017-02-16 03:44:45 +00:00
|
|
|
$coupon->update_meta_data( $meta['key'], $meta['value'], isset( $meta['id'] ) ? $meta['id'] : '' );
|
2016-08-26 14:42:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2018-03-05 20:53:06 +00:00
|
|
|
case 'description':
|
2016-08-26 14:42:42 +00:00
|
|
|
$coupon->set_description( wp_filter_post_kses( $value ) );
|
|
|
|
break;
|
2018-03-05 20:53:06 +00:00
|
|
|
default:
|
2016-08-26 14:42:42 +00:00
|
|
|
if ( is_callable( array( $coupon, "set_{$key}" ) ) ) {
|
|
|
|
$coupon->{"set_{$key}"}( $value );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2016-02-26 20:24:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-16 22:31:36 +00:00
|
|
|
* Filters an object before it is inserted via the REST API.
|
2016-02-26 20:24:33 +00:00
|
|
|
*
|
2017-02-16 22:31:36 +00:00
|
|
|
* The dynamic portion of the hook name, `$this->post_type`,
|
|
|
|
* refers to the object type slug.
|
2016-02-26 20:24:33 +00:00
|
|
|
*
|
2017-02-16 22:31:36 +00:00
|
|
|
* @param WC_Data $coupon Object object.
|
|
|
|
* @param WP_REST_Request $request Request object.
|
|
|
|
* @param bool $creating If is creating a new object.
|
2016-02-26 20:24:33 +00:00
|
|
|
*/
|
2017-02-16 22:31:36 +00:00
|
|
|
return apply_filters( "woocommerce_rest_pre_insert_{$this->post_type}_object", $coupon, $request, $creating );
|
|
|
|
}
|
|
|
|
|
2016-02-26 20:24:33 +00:00
|
|
|
/**
|
2016-03-10 00:34:14 +00:00
|
|
|
* Get the Coupon's schema, conforming to JSON Schema.
|
2016-02-26 20:24:33 +00:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function get_item_schema() {
|
|
|
|
$schema = array(
|
|
|
|
'$schema' => 'http://json-schema.org/draft-04/schema#',
|
|
|
|
'title' => $this->post_type,
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
2018-03-05 20:53:06 +00:00
|
|
|
'id' => array(
|
2016-02-26 20:24:33 +00:00
|
|
|
'description' => __( 'Unique identifier for the object.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'code' => array(
|
2016-02-26 20:24:33 +00:00
|
|
|
'description' => __( 'Coupon code.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'amount' => array(
|
2017-03-20 15:47:51 +00:00
|
|
|
'description' => __( 'The amount of discount. Should always be numeric, even if setting a percentage.', 'woocommerce' ),
|
2017-02-09 21:22:12 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'date_created' => array(
|
2016-02-26 20:24:33 +00:00
|
|
|
'description' => __( "The date the coupon was created, in the site's timezone.", 'woocommerce' ),
|
|
|
|
'type' => 'date-time',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'date_created_gmt' => array(
|
2017-03-14 21:43:53 +00:00
|
|
|
'description' => __( 'The date the coupon was created, as GMT.', 'woocommerce' ),
|
|
|
|
'type' => 'date-time',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'date_modified' => array(
|
2016-02-26 20:24:33 +00:00
|
|
|
'description' => __( "The date the coupon was last modified, in the site's timezone.", 'woocommerce' ),
|
|
|
|
'type' => 'date-time',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'date_modified_gmt' => array(
|
2017-03-14 21:43:53 +00:00
|
|
|
'description' => __( 'The date the coupon was last modified, as GMT.', 'woocommerce' ),
|
|
|
|
'type' => 'date-time',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'discount_type' => array(
|
2016-03-31 19:32:12 +00:00
|
|
|
'description' => __( 'Determines the type of discount that will be applied.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
2016-04-28 21:38:35 +00:00
|
|
|
'default' => 'fixed_cart',
|
2016-03-31 19:32:12 +00:00
|
|
|
'enum' => array_keys( wc_get_coupon_types() ),
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'description' => array(
|
2017-02-09 21:22:12 +00:00
|
|
|
'description' => __( 'Coupon description.', 'woocommerce' ),
|
2016-06-20 20:20:12 +00:00
|
|
|
'type' => 'string',
|
2016-02-26 20:24:33 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'date_expires' => array(
|
2017-03-15 15:10:42 +00:00
|
|
|
'description' => __( "The date the coupon expires, in the site's timezone.", 'woocommerce' ),
|
2016-03-31 19:32:12 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'date_expires_gmt' => array(
|
|
|
|
'description' => __( 'The date the coupon expires, as GMT.', 'woocommerce' ),
|
2017-03-14 21:43:53 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'usage_count' => array(
|
2016-03-31 19:32:12 +00:00
|
|
|
'description' => __( 'Number of times the coupon has been used already.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'individual_use' => array(
|
2017-03-20 15:47:51 +00:00
|
|
|
'description' => __( 'If true, the coupon can only be used individually. Other applied coupons will be removed from the cart.', 'woocommerce' ),
|
2016-02-26 20:24:33 +00:00
|
|
|
'type' => 'boolean',
|
2016-04-28 21:38:35 +00:00
|
|
|
'default' => false,
|
2016-02-26 20:24:33 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'product_ids' => array(
|
|
|
|
'description' => __( 'List of product IDs the coupon can be used on.', 'woocommerce' ),
|
2016-02-26 20:24:33 +00:00
|
|
|
'type' => 'array',
|
2017-01-26 20:33:39 +00:00
|
|
|
'items' => array(
|
2018-03-05 20:53:06 +00:00
|
|
|
'type' => 'integer',
|
2017-01-26 20:33:39 +00:00
|
|
|
),
|
2016-02-26 20:24:33 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'excluded_product_ids' => array(
|
|
|
|
'description' => __( 'List of product IDs the coupon cannot be used on.', 'woocommerce' ),
|
2016-02-26 20:24:33 +00:00
|
|
|
'type' => 'array',
|
2017-01-26 20:33:39 +00:00
|
|
|
'items' => array(
|
2018-03-05 20:53:06 +00:00
|
|
|
'type' => 'integer',
|
2017-01-26 20:33:39 +00:00
|
|
|
),
|
2016-02-26 20:24:33 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'usage_limit' => array(
|
2017-03-20 15:47:51 +00:00
|
|
|
'description' => __( 'How many times the coupon can be used in total.', 'woocommerce' ),
|
2016-02-26 20:24:33 +00:00
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'usage_limit_per_user' => array(
|
2016-04-23 04:32:22 +00:00
|
|
|
'description' => __( 'How many times the coupon can be used per customer.', 'woocommerce' ),
|
2016-02-26 20:24:33 +00:00
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'limit_usage_to_x_items' => array(
|
2016-02-26 20:24:33 +00:00
|
|
|
'description' => __( 'Max number of items in the cart the coupon can be applied to.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'free_shipping' => array(
|
2017-03-20 15:47:51 +00:00
|
|
|
'description' => __( 'If true and if the free shipping method requires a coupon, this coupon will enable free shipping.', 'woocommerce' ),
|
2016-02-26 20:24:33 +00:00
|
|
|
'type' => 'boolean',
|
2016-04-28 21:38:35 +00:00
|
|
|
'default' => false,
|
2016-02-26 20:24:33 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'product_categories' => array(
|
|
|
|
'description' => __( 'List of category IDs the coupon applies to.', 'woocommerce' ),
|
2016-02-26 20:24:33 +00:00
|
|
|
'type' => 'array',
|
2017-01-26 20:33:39 +00:00
|
|
|
'items' => array(
|
2018-03-05 20:53:06 +00:00
|
|
|
'type' => 'integer',
|
2017-01-26 20:33:39 +00:00
|
|
|
),
|
2016-02-26 20:24:33 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2016-03-31 19:32:12 +00:00
|
|
|
'excluded_product_categories' => array(
|
2018-03-05 20:53:06 +00:00
|
|
|
'description' => __( 'List of category IDs the coupon does not apply to.', 'woocommerce' ),
|
2016-02-26 20:24:33 +00:00
|
|
|
'type' => 'array',
|
2017-01-26 20:33:39 +00:00
|
|
|
'items' => array(
|
2018-03-05 20:53:06 +00:00
|
|
|
'type' => 'integer',
|
2017-01-26 20:33:39 +00:00
|
|
|
),
|
2016-02-26 20:24:33 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'exclude_sale_items' => array(
|
2017-03-20 15:47:51 +00:00
|
|
|
'description' => __( 'If true, this coupon will not be applied to items that have sale prices.', 'woocommerce' ),
|
2016-02-26 20:24:33 +00:00
|
|
|
'type' => 'boolean',
|
2016-04-28 21:38:35 +00:00
|
|
|
'default' => false,
|
2016-02-26 20:24:33 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'minimum_amount' => array(
|
2016-02-26 20:24:33 +00:00
|
|
|
'description' => __( 'Minimum order amount that needs to be in the cart before coupon applies.', 'woocommerce' ),
|
2016-06-20 20:20:12 +00:00
|
|
|
'type' => 'string',
|
2016-02-26 20:24:33 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'maximum_amount' => array(
|
2016-02-26 20:24:33 +00:00
|
|
|
'description' => __( 'Maximum order amount allowed when using the coupon.', 'woocommerce' ),
|
2016-06-20 20:20:12 +00:00
|
|
|
'type' => 'string',
|
2016-02-26 20:24:33 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'email_restrictions' => array(
|
2016-02-26 20:24:33 +00:00
|
|
|
'description' => __( 'List of email addresses that can use this coupon.', 'woocommerce' ),
|
|
|
|
'type' => 'array',
|
2017-01-26 20:33:39 +00:00
|
|
|
'items' => array(
|
2018-03-05 20:53:06 +00:00
|
|
|
'type' => 'string',
|
2017-01-26 20:33:39 +00:00
|
|
|
),
|
2016-02-26 20:24:33 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'used_by' => array(
|
2017-03-20 16:01:55 +00:00
|
|
|
'description' => __( 'List of user IDs (or guest email addresses) that have used the coupon.', 'woocommerce' ),
|
2016-03-31 19:32:12 +00:00
|
|
|
'type' => 'array',
|
2017-01-26 20:33:39 +00:00
|
|
|
'items' => array(
|
2018-03-05 20:53:06 +00:00
|
|
|
'type' => 'integer',
|
2017-01-26 20:33:39 +00:00
|
|
|
),
|
2016-02-26 20:24:33 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
2016-03-31 19:32:12 +00:00
|
|
|
'readonly' => true,
|
2016-02-26 20:24:33 +00:00
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'meta_data' => array(
|
2017-02-15 14:28:45 +00:00
|
|
|
'description' => __( 'Meta data.', 'woocommerce' ),
|
2016-12-07 12:20:56 +00:00
|
|
|
'type' => 'array',
|
2016-08-31 14:43:34 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
2016-12-07 14:24:44 +00:00
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
2018-03-05 20:53:06 +00:00
|
|
|
'id' => array(
|
2016-12-07 14:24:44 +00:00
|
|
|
'description' => __( 'Meta ID.', 'woocommerce' ),
|
2016-12-07 18:13:17 +00:00
|
|
|
'type' => 'integer',
|
2016-12-07 14:24:44 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2018-03-05 20:53:06 +00:00
|
|
|
'key' => array(
|
2016-12-07 14:24:44 +00:00
|
|
|
'description' => __( 'Meta key.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'value' => array(
|
|
|
|
'description' => __( 'Meta value.', 'woocommerce' ),
|
2017-11-21 18:15:51 +00:00
|
|
|
'type' => 'mixed',
|
2016-12-07 14:24:44 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2016-08-31 14:43:34 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2016-02-26 20:24:33 +00:00
|
|
|
),
|
|
|
|
);
|
2016-06-30 21:25:39 +00:00
|
|
|
return $this->add_additional_fields_schema( $schema );
|
2016-02-26 20:24:33 +00:00
|
|
|
}
|
2017-02-16 22:31:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the query params for collections of attachments.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function get_collection_params() {
|
|
|
|
$params = parent::get_collection_params();
|
|
|
|
|
|
|
|
$params['code'] = array(
|
|
|
|
'description' => __( 'Limit result set to resources with a specific code.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'sanitize_callback' => 'sanitize_text_field',
|
|
|
|
'validate_callback' => 'rest_validate_request_arg',
|
|
|
|
);
|
|
|
|
|
|
|
|
return $params;
|
|
|
|
}
|
2016-02-17 19:29:09 +00:00
|
|
|
}
|