First pass at Product's orders endpoint #7285

This commit is contained in:
Chris Klosowski 2015-03-26 13:53:20 -07:00
parent 79760fa5ea
commit 8455d5cbd1
1 changed files with 41 additions and 0 deletions

View File

@ -56,6 +56,11 @@ class WC_API_Products extends WC_API_Resource {
array( array( $this, 'get_product_reviews' ), WC_API_Server::READABLE ),
);
# GET /products/<id>/orders
$routes[ $this->base . '/(?P<id>\d+)/orders' ] = array(
array( array( $this, 'get_product_orders' ), WC_API_Server::READABLE ),
);
# GET /products/categories
$routes[ $this->base . '/categories' ] = array(
array( array( $this, 'get_product_categories' ), WC_API_Server::READABLE ),
@ -412,6 +417,42 @@ class WC_API_Products extends WC_API_Resource {
return array( 'product_reviews' => apply_filters( 'woocommerce_api_product_reviews_response', $reviews, $id, $fields, $comments, $this->server ) );
}
/**
* Get the orders for a product
*
* @since 2.1
* @param int $id the product ID to get orders for
* @param string $fields fields to include in response
* @return array
*/
public function get_product_orders( $id, $fields = null, $status = null, $page = 1 ) {
$id = $this->validate_request( $id, 'product', 'read' );
if ( is_wp_error( $id ) ) {
return $id;
}
global $wpdb;
$sql = "SELECT order_id FROM {$wpdb->prefix}woocommerce_order_items WHERE order_item_id IN ( SELECT order_item_id FROM {$wpdb->prefix}woocommerce_order_itemmeta WHERE meta_key = '_product_id' AND meta_value = $id ) AND order_item_type = 'line_item'";
$order_ids = $wpdb->get_col( $sql );
$orders = array();
if ( ! empty( $order_ids ) ) {
$order_args = array(
'in' => implode( ',', $order_ids )
);
$orders_api = new WC_API_Orders( $this->server );
$orders = $orders_api->get_orders( $fields, $order_args, null, $page );
}
return array( 'product_orders' => apply_filters( 'woocommerce_api_product_orders_response', $orders, $id, $fields, $this->server ) );
}
/**
* Get a listing of product categories
*