[REST API] Improved order of items in Orders endpoint schema

This commit is contained in:
Claudio Sanches 2017-03-10 17:20:27 -03:00
parent cf1ae98011
commit 4ea40d997b
1 changed files with 143 additions and 92 deletions

View File

@ -184,6 +184,94 @@ class WC_REST_Orders_Controller extends WC_REST_Legacy_Orders_Controller {
return $data; return $data;
} }
/**
* Get formatted item data.
*
* @since 2.7.0
* @param WC_Data $object WC_Data instance.
* @return array
*/
protected function get_formatted_item_data( $object ) {
$item = $object->get_data();
$format_decimal = array( 'discount_total', 'discount_tax', 'shipping_total', 'shipping_tax', 'shipping_total', 'shipping_tax', 'cart_tax', 'total', 'total_tax' );
$format_date = array( 'date_created', 'date_modified', 'date_completed', 'date_paid' );
$format_line_items = array( 'line_items', 'tax_lines', 'shipping_lines', 'fee_lines', 'coupon_lines' );
// Format decimal values.
foreach ( $format_decimal as $key ) {
$item[ $key ] = wc_format_decimal( $item[ $key ], $this->request['dp'] );
}
// Format date values.
foreach ( $format_date as $key ) {
$datetime = $item[ $key ];
$item[ $key ] = wc_rest_prepare_date_response( $datetime, false );
$item[ $key . '_gmt' ] = wc_rest_prepare_date_response( $datetime );
}
// Format the order status.
$item['status'] = 'wc-' === substr( $item['status'], 0, 3 ) ? substr( $item['status'], 3 ) : $item['status'];
// Format line items.
foreach ( $format_line_items as $key ) {
$item[ $key ] = array_values( array_map( array( $this, 'get_order_item_data' ), $item[ $key ] ) );
}
// Refunds.
$item['refunds'] = array();
foreach ( $object->get_refunds() as $refund ) {
$item['refunds'][] = array(
'id' => $refund->get_id(),
'refund' => $refund->get_reason() ? $refund->get_reason() : '',
'total' => '-' . wc_format_decimal( $refund->get_amount(), $this->request['dp'] ),
);
}
return array(
'id' => $object->get_id(),
'parent_id' => $item['parent_id'],
'number' => $item['number'],
'order_key' => $item['order_key'],
'created_via' => $item['created_via'],
'version' => $item['version'],
'status' => $item['status'],
'currency' => $item['currency'],
'date_created' => $item['date_created'],
'date_created_gmt' => $item['date_created_gmt'],
'date_modified' => $item['date_modified'],
'date_modified_gmt' => $item['date_modified_gmt'],
'discount_total' => $item['discount_total'],
'discount_tax' => $item['discount_tax'],
'shipping_total' => $item['shipping_total'],
'shipping_tax' => $item['shipping_tax'],
'cart_tax' => $item['cart_tax'],
'total' => $item['total'],
'total_tax' => $item['total_tax'],
'prices_include_tax' => $item['prices_include_tax'],
'customer_id' => $item['customer_id'],
'customer_ip_address' => $item['customer_ip_address'],
'customer_user_agent' => $item['customer_user_agent'],
'customer_note' => $item['customer_note'],
'billing' => $item['billing'],
'shipping' => $item['shipping'],
'payment_method' => $item['payment_method'],
'payment_method_title' => $item['payment_method_title'],
'transaction_id' => $item['transaction_id'],
'date_paid' => $item['date_paid'],
'date_paid_gmt' => $item['date_paid_gmt'],
'date_completed' => $item['date_completed'],
'date_completed_gmt' => $item['date_completed_gmt'],
'cart_hash' => $item['cart_hash'],
'meta_data' => $item['meta_data'],
'line_items' => $item['line_items'],
'tax_lines' => $item['tax_lines'],
'shipping_lines' => $item['shipping_lines'],
'fee_lines' => $item['fee_lines'],
'coupon_lines' => $item['coupon_lines'],
'refunds' => $item['refunds'],
);
}
/** /**
* Prepare a single order output for response. * Prepare a single order output for response.
* *
@ -194,44 +282,7 @@ class WC_REST_Orders_Controller extends WC_REST_Legacy_Orders_Controller {
*/ */
public function prepare_object_for_response( $object, $request ) { public function prepare_object_for_response( $object, $request ) {
$this->request = $request; $this->request = $request;
$data = $object->get_data(); $data = $this->get_formatted_item_data( $object );
$format_decimal = array( 'discount_total', 'discount_tax', 'shipping_total', 'shipping_tax', 'shipping_total', 'shipping_tax', 'cart_tax', 'total', 'total_tax' );
$format_date = array( 'date_created', 'date_modified', 'date_completed', 'date_paid' );
$format_line_items = array( 'line_items', 'tax_lines', 'shipping_lines', 'fee_lines', 'coupon_lines' );
// Format decimal values.
foreach ( $format_decimal as $key ) {
$data[ $key ] = wc_format_decimal( $data[ $key ], $this->request['dp'] );
}
// Format date values.
foreach ( $format_date as $key ) {
$datetime = $data[ $key ];
$data[ $key ] = wc_rest_prepare_date_response( $datetime, false );
$data[ $key . '_gmt' ] = wc_rest_prepare_date_response( $datetime );
}
// Format the order status.
$data['status'] = 'wc-' === substr( $data['status'], 0, 3 ) ? substr( $data['status'], 3 ) : $data['status'];
// Format line items.
foreach ( $format_line_items as $key ) {
$data[ $key ] = array_values( array_map( array( $this, 'get_order_item_data' ), $data[ $key ] ) );
}
// Refunds.
$data['refunds'] = array();
foreach ( $object->get_refunds() as $refund ) {
$data['refunds'][] = array(
'id' => $refund->get_id(),
'refund' => $refund->get_reason() ? $refund->get_reason() : '',
'total' => '-' . wc_format_decimal( $refund->get_amount(), $this->request['dp'] ),
);
}
ksort( $data );
$data = array_merge( array( 'id' => $object->get_id() ), $data );
$context = ! empty( $request['context'] ) ? $request['context'] : 'view'; $context = ! empty( $request['context'] ) ? $request['context'] : 'view';
$data = $this->add_additional_fields_to_object( $data, $request ); $data = $this->add_additional_fields_to_object( $data, $request );
$data = $this->filter_response_by_context( $data, $context ); $data = $this->filter_response_by_context( $data, $context );
@ -749,6 +800,30 @@ class WC_REST_Orders_Controller extends WC_REST_Legacy_Orders_Controller {
'type' => 'integer', 'type' => 'integer',
'context' => array( 'view', 'edit' ), 'context' => array( 'view', 'edit' ),
), ),
'number' => array(
'description' => __( 'Order number.', 'woocommerce' ),
'type' => 'string',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'order_key' => array(
'description' => __( 'Order key.', 'woocommerce' ),
'type' => 'string',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'created_via' => array(
'description' => __( 'Shows where the order was created.', 'woocommerce' ),
'type' => 'string',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'version' => array(
'description' => __( 'Version of WooCommerce when the order was made.', 'woocommerce' ),
'type' => 'integer',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'status' => array( 'status' => array(
'description' => __( 'Order status.', 'woocommerce' ), 'description' => __( 'Order status.', 'woocommerce' ),
'type' => 'string', 'type' => 'string',
@ -763,18 +838,6 @@ class WC_REST_Orders_Controller extends WC_REST_Legacy_Orders_Controller {
'enum' => array_keys( get_woocommerce_currencies() ), 'enum' => array_keys( get_woocommerce_currencies() ),
'context' => array( 'view', 'edit' ), 'context' => array( 'view', 'edit' ),
), ),
'version' => array(
'description' => __( 'Version of WooCommerce when the order was made.', 'woocommerce' ),
'type' => 'integer',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'prices_include_tax' => array(
'description' => __( 'True the prices included tax during checkout.', 'woocommerce' ),
'type' => 'boolean',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'date_created' => array( 'date_created' => array(
'description' => __( "The date the order was created, in the site's timezone.", 'woocommerce' ), 'description' => __( "The date the order was created, in the site's timezone.", 'woocommerce' ),
'type' => 'date-time', 'type' => 'date-time',
@ -841,18 +904,35 @@ class WC_REST_Orders_Controller extends WC_REST_Legacy_Orders_Controller {
'context' => array( 'view', 'edit' ), 'context' => array( 'view', 'edit' ),
'readonly' => true, 'readonly' => true,
), ),
'prices_include_tax' => array(
'description' => __( 'True the prices included tax during checkout.', 'woocommerce' ),
'type' => 'boolean',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'customer_id' => array( 'customer_id' => array(
'description' => __( 'User ID who owns the order. 0 for guests.', 'woocommerce' ), 'description' => __( 'User ID who owns the order. 0 for guests.', 'woocommerce' ),
'type' => 'integer', 'type' => 'integer',
'default' => 0, 'default' => 0,
'context' => array( 'view', 'edit' ), 'context' => array( 'view', 'edit' ),
), ),
'order_key' => array( 'customer_ip_address' => array(
'description' => __( 'Order key.', 'woocommerce' ), 'description' => __( "Customer's IP address.", 'woocommerce' ),
'type' => 'string', 'type' => 'string',
'context' => array( 'view', 'edit' ), 'context' => array( 'view', 'edit' ),
'readonly' => true, 'readonly' => true,
), ),
'customer_user_agent' => array(
'description' => __( 'User agent of the customer.', 'woocommerce' ),
'type' => 'string',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'customer_note' => array(
'description' => __( 'Note left by customer during checkout.', 'woocommerce' ),
'type' => 'string',
'context' => array( 'view', 'edit' ),
),
'billing' => array( 'billing' => array(
'description' => __( 'Billing address.', 'woocommerce' ), 'description' => __( 'Billing address.', 'woocommerce' ),
'type' => 'object', 'type' => 'object',
@ -983,29 +1063,18 @@ class WC_REST_Orders_Controller extends WC_REST_Legacy_Orders_Controller {
'type' => 'string', 'type' => 'string',
'context' => array( 'view', 'edit' ), 'context' => array( 'view', 'edit' ),
), ),
'customer_ip_address' => array( 'date_paid' => array(
'description' => __( "Customer's IP address.", 'woocommerce' ), 'description' => __( "The date the order has been paid, in the site's timezone.", 'woocommerce' ),
'type' => 'string', 'type' => 'date-time',
'context' => array( 'view', 'edit' ), 'context' => array( 'view', 'edit' ),
'readonly' => true, 'readonly' => true,
), ),
'customer_user_agent' => array( 'date_paid_gmt' => array(
'description' => __( 'User agent of the customer.', 'woocommerce' ), 'description' => __( "The date the order has been paid, as GMT.", 'woocommerce' ),
'type' => 'string', 'type' => 'date-time',
'context' => array( 'view', 'edit' ), 'context' => array( 'view', 'edit' ),
'readonly' => true, 'readonly' => true,
), ),
'created_via' => array(
'description' => __( 'Shows where the order was created.', 'woocommerce' ),
'type' => 'string',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'customer_note' => array(
'description' => __( 'Note left by customer during checkout.', 'woocommerce' ),
'type' => 'string',
'context' => array( 'view', 'edit' ),
),
'date_completed' => array( 'date_completed' => array(
'description' => __( "The date the order was completed, in the site's timezone.", 'woocommerce' ), 'description' => __( "The date the order was completed, in the site's timezone.", 'woocommerce' ),
'type' => 'date-time', 'type' => 'date-time',
@ -1018,30 +1087,12 @@ class WC_REST_Orders_Controller extends WC_REST_Legacy_Orders_Controller {
'context' => array( 'view', 'edit' ), 'context' => array( 'view', 'edit' ),
'readonly' => true, 'readonly' => true,
), ),
'date_paid' => array(
'description' => __( "The date the order has been paid, in the site's timezone.", 'woocommerce' ),
'type' => 'date-time',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'date_paid_gmt' => array(
'description' => __( "The date the order has been paid, as GMT.", 'woocommerce' ),
'type' => 'date-time',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'cart_hash' => array( 'cart_hash' => array(
'description' => __( 'MD5 hash of cart items to ensure orders are not modified.', 'woocommerce' ), 'description' => __( 'MD5 hash of cart items to ensure orders are not modified.', 'woocommerce' ),
'type' => 'string', 'type' => 'string',
'context' => array( 'view', 'edit' ), 'context' => array( 'view', 'edit' ),
'readonly' => true, 'readonly' => true,
), ),
'number' => array(
'description' => __( 'Order number.', 'woocommerce' ),
'type' => 'string',
'context' => array( 'view', 'edit' ),
'readonly' => true,
),
'meta_data' => array( 'meta_data' => array(
'description' => __( 'Meta data.', 'woocommerce' ), 'description' => __( 'Meta data.', 'woocommerce' ),
'type' => 'array', 'type' => 'array',