2013-11-04 06:36:31 +00:00
< ? php
/**
* WooCommerce API Orders Class
*
* Handles requests to the / orders endpoint
*
* @ author WooThemes
* @ category API
* @ package WooCommerce / API
* @ since 2.1
*/
2014-09-20 19:24:20 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
exit ; // Exit if accessed directly
}
2013-11-04 06:36:31 +00:00
2013-11-09 21:20:23 +00:00
class WC_API_Orders extends WC_API_Resource {
2013-11-04 06:36:31 +00:00
/** @var string $base the route base */
protected $base = '/orders' ;
/**
* Register the routes for this class
*
2014-07-13 01:44:49 +00:00
* GET | POST / orders
2013-11-04 06:36:31 +00:00
* GET / orders / count
2014-07-12 22:09:21 +00:00
* GET | PUT | DELETE / orders /< id >
2013-11-04 06:36:31 +00:00
* GET / orders /< id >/ notes
*
* @ since 2.1
* @ param array $routes
* @ return array
*/
2013-11-11 00:29:36 +00:00
public function register_routes ( $routes ) {
2013-11-04 06:36:31 +00:00
2014-07-13 01:44:49 +00:00
# GET|POST /orders
2013-11-04 06:36:31 +00:00
$routes [ $this -> base ] = array (
2013-11-11 00:29:36 +00:00
array ( array ( $this , 'get_orders' ), WC_API_Server :: READABLE ),
2014-07-13 01:44:49 +00:00
array ( array ( $this , 'create_order' ), WC_API_Server :: CREATABLE | WC_API_Server :: ACCEPT_DATA ),
2013-11-04 06:36:31 +00:00
);
# GET /orders/count
2014-08-30 18:26:14 +00:00
$routes [ $this -> base . '/count' ] = array (
2013-11-11 00:29:36 +00:00
array ( array ( $this , 'get_orders_count' ), WC_API_Server :: READABLE ),
2013-11-04 06:36:31 +00:00
);
2014-08-30 18:26:14 +00:00
# GET /orders/statuses
$routes [ $this -> base . '/statuses' ] = array (
array ( array ( $this , 'get_order_statuses' ), WC_API_Server :: READABLE ),
);
2014-07-12 22:09:21 +00:00
# GET|PUT|DELETE /orders/<id>
2013-11-04 06:36:31 +00:00
$routes [ $this -> base . '/(?P<id>\d+)' ] = array (
2013-11-11 00:29:36 +00:00
array ( array ( $this , 'get_order' ), WC_API_Server :: READABLE ),
array ( array ( $this , 'edit_order' ), WC_API_Server :: EDITABLE | WC_API_Server :: ACCEPT_DATA ),
2014-07-12 22:09:21 +00:00
array ( array ( $this , 'delete_order' ), WC_API_Server :: DELETABLE ),
2013-11-04 06:36:31 +00:00
);
2014-07-29 03:39:07 +00:00
# GET|POST /orders/<id>/notes
$routes [ $this -> base . '/(?P<order_id>\d+)/notes' ] = array (
2013-11-11 00:29:36 +00:00
array ( array ( $this , 'get_order_notes' ), WC_API_Server :: READABLE ),
2014-07-29 03:39:07 +00:00
array ( array ( $this , 'create_order_note' ), WC_API_SERVER :: CREATABLE | WC_API_Server :: ACCEPT_DATA ),
);
# GET|PUT|DELETE /orders/<order_id>/notes/<id>
$routes [ $this -> base . '/(?P<order_id>\d+)/notes/(?P<id>\d+)' ] = array (
array ( array ( $this , 'get_order_note' ), WC_API_Server :: READABLE ),
array ( array ( $this , 'edit_order_note' ), WC_API_SERVER :: EDITABLE | WC_API_Server :: ACCEPT_DATA ),
array ( array ( $this , 'delete_order_note' ), WC_API_SERVER :: DELETABLE ),
2013-11-04 06:36:31 +00:00
);
2014-08-15 17:54:19 +00:00
# GET|POST /orders/<order_id>/refunds
2014-08-15 17:09:33 +00:00
$routes [ $this -> base . '/(?P<order_id>\d+)/refunds' ] = array (
array ( array ( $this , 'get_order_refunds' ), WC_API_Server :: READABLE ),
2014-08-15 17:54:19 +00:00
array ( array ( $this , 'create_order_refund' ), WC_API_SERVER :: CREATABLE | WC_API_Server :: ACCEPT_DATA ),
2014-08-15 17:09:33 +00:00
);
2014-08-15 18:38:39 +00:00
# GET|PUT|DELETE /orders/<order_id>/refunds/<id>
2014-08-15 17:40:34 +00:00
$routes [ $this -> base . '/(?P<order_id>\d+)/refunds/(?P<id>\d+)' ] = array (
array ( array ( $this , 'get_order_refund' ), WC_API_Server :: READABLE ),
2014-08-15 18:28:19 +00:00
array ( array ( $this , 'edit_order_refund' ), WC_API_SERVER :: EDITABLE | WC_API_Server :: ACCEPT_DATA ),
2014-08-15 18:38:39 +00:00
array ( array ( $this , 'delete_order_refund' ), WC_API_SERVER :: DELETABLE ),
2014-08-15 17:40:34 +00:00
);
2013-11-04 06:36:31 +00:00
return $routes ;
}
/**
* Get all orders
*
* @ since 2.1
2013-11-11 00:29:36 +00:00
* @ param string $fields
* @ param array $filter
2013-11-04 06:36:31 +00:00
* @ param string $status
2013-11-19 02:06:45 +00:00
* @ param int $page
2013-11-04 06:36:31 +00:00
* @ return array
*/
2013-11-19 02:06:45 +00:00
public function get_orders ( $fields = null , $filter = array (), $status = null , $page = 1 ) {
2013-11-04 06:36:31 +00:00
2013-11-11 00:29:36 +00:00
if ( ! empty ( $status ) )
$filter [ 'status' ] = $status ;
2013-11-19 02:06:45 +00:00
$filter [ 'page' ] = $page ;
2013-11-11 00:29:36 +00:00
$query = $this -> query_orders ( $filter );
2013-11-04 06:36:31 +00:00
$orders = array ();
foreach ( $query -> posts as $order_id ) {
2013-11-18 21:47:38 +00:00
if ( ! $this -> is_readable ( $order_id ) )
continue ;
2014-08-30 19:14:59 +00:00
$orders [] = current ( $this -> get_order ( $order_id , $fields , $filter ) );
2013-11-04 06:36:31 +00:00
}
2013-11-19 02:06:45 +00:00
$this -> server -> add_pagination_headers ( $query );
2013-11-11 00:29:36 +00:00
2013-11-04 06:36:31 +00:00
return array ( 'orders' => $orders );
}
/**
* Get the order for the given ID
*
* @ since 2.1
* @ param int $id the order ID
* @ param array $fields
2014-08-22 22:11:03 +00:00
* @ param array $filter
2013-11-04 06:36:31 +00:00
* @ return array
*/
2014-08-22 22:11:03 +00:00
public function get_order ( $id , $fields = null , $filter = array () ) {
2013-11-04 06:36:31 +00:00
2013-11-11 00:29:36 +00:00
// ensure order ID is valid & user has permission to read
$id = $this -> validate_request ( $id , 'shop_order' , 'read' );
2013-11-04 06:36:31 +00:00
2013-11-11 00:29:36 +00:00
if ( is_wp_error ( $id ) )
return $id ;
2013-11-04 06:36:31 +00:00
2014-08-15 12:29:21 +00:00
$order = wc_get_order ( $id );
2013-11-04 06:36:31 +00:00
2013-11-18 21:47:38 +00:00
$order_post = get_post ( $id );
2013-11-04 06:36:31 +00:00
$order_data = array (
'id' => $order -> id ,
'order_number' => $order -> get_order_number (),
2013-11-18 21:47:38 +00:00
'created_at' => $this -> server -> format_datetime ( $order_post -> post_date_gmt ),
'updated_at' => $this -> server -> format_datetime ( $order_post -> post_modified_gmt ),
'completed_at' => $this -> server -> format_datetime ( $order -> completed_date , true ),
2014-05-30 16:43:21 +00:00
'status' => $order -> get_status (),
2014-07-28 03:33:35 +00:00
'currency' => $order -> get_order_currency (),
2013-11-25 13:34:21 +00:00
'total' => wc_format_decimal ( $order -> get_total (), 2 ),
2014-11-20 00:43:09 +00:00
'subtotal' => wc_format_decimal ( $order -> get_subtotal (), 2 ),
2013-11-18 21:47:38 +00:00
'total_line_items_quantity' => $order -> get_item_count (),
2013-11-25 13:34:21 +00:00
'total_tax' => wc_format_decimal ( $order -> get_total_tax (), 2 ),
'total_shipping' => wc_format_decimal ( $order -> get_total_shipping (), 2 ),
'cart_tax' => wc_format_decimal ( $order -> get_cart_tax (), 2 ),
'shipping_tax' => wc_format_decimal ( $order -> get_shipping_tax (), 2 ),
'total_discount' => wc_format_decimal ( $order -> get_total_discount (), 2 ),
2014-11-25 13:05:03 +00:00
'cart_discount' => wc_format_decimal ( $order -> get_total_discount (), 2 ),
2013-11-04 06:36:31 +00:00
'shipping_methods' => $order -> get_shipping_method (),
'payment_details' => array (
'method_id' => $order -> payment_method ,
'method_title' => $order -> payment_method_title ,
'paid' => isset ( $order -> paid_date ),
),
'billing_address' => array (
'first_name' => $order -> billing_first_name ,
'last_name' => $order -> billing_last_name ,
'company' => $order -> billing_company ,
'address_1' => $order -> billing_address_1 ,
'address_2' => $order -> billing_address_2 ,
'city' => $order -> billing_city ,
'state' => $order -> billing_state ,
'postcode' => $order -> billing_postcode ,
'country' => $order -> billing_country ,
'email' => $order -> billing_email ,
'phone' => $order -> billing_phone ,
),
'shipping_address' => array (
'first_name' => $order -> shipping_first_name ,
'last_name' => $order -> shipping_last_name ,
'company' => $order -> shipping_company ,
'address_1' => $order -> shipping_address_1 ,
'address_2' => $order -> shipping_address_2 ,
'city' => $order -> shipping_city ,
'state' => $order -> shipping_state ,
'postcode' => $order -> shipping_postcode ,
'country' => $order -> shipping_country ,
),
'note' => $order -> customer_note ,
'customer_ip' => $order -> customer_ip_address ,
'customer_user_agent' => $order -> customer_user_agent ,
'customer_id' => $order -> customer_user ,
'view_order_url' => $order -> get_view_order_url (),
2013-11-14 17:42:42 +00:00
'line_items' => array (),
'shipping_lines' => array (),
'tax_lines' => array (),
'fee_lines' => array (),
'coupon_lines' => array (),
2013-11-04 06:36:31 +00:00
);
// add line items
foreach ( $order -> get_items () as $item_id => $item ) {
$product = $order -> get_product_from_item ( $item );
2014-07-28 17:33:03 +00:00
$meta = new WC_Order_Item_Meta ( $item [ 'item_meta' ], $product );
$item_meta = array ();
2014-08-30 20:16:51 +00:00
$hideprefix = ( isset ( $filter [ 'all_item_meta' ] ) && $filter [ 'all_item_meta' ] === 'true' ) ? null : '_' ;
2014-08-22 22:11:03 +00:00
foreach ( $meta -> get_formatted ( $hideprefix ) as $meta_key => $formatted_meta ) {
2014-07-28 17:33:03 +00:00
$item_meta [] = array (
'key' => $meta_key ,
'label' => $formatted_meta [ 'label' ],
'value' => $formatted_meta [ 'value' ],
);
}
2013-11-04 06:36:31 +00:00
$order_data [ 'line_items' ][] = array (
2014-05-22 05:34:39 +00:00
'id' => $item_id ,
'subtotal' => wc_format_decimal ( $order -> get_line_subtotal ( $item ), 2 ),
'subtotal_tax' => wc_format_decimal ( $item [ 'line_subtotal_tax' ], 2 ),
'total' => wc_format_decimal ( $order -> get_line_total ( $item ), 2 ),
'total_tax' => wc_format_decimal ( $order -> get_line_tax ( $item ), 2 ),
'price' => wc_format_decimal ( $order -> get_item_total ( $item ), 2 ),
'quantity' => ( int ) $item [ 'qty' ],
'tax_class' => ( ! empty ( $item [ 'tax_class' ] ) ) ? $item [ 'tax_class' ] : null ,
'name' => $item [ 'name' ],
'product_id' => ( isset ( $product -> variation_id ) ) ? $product -> variation_id : $product -> id ,
'sku' => is_object ( $product ) ? $product -> get_sku () : null ,
2014-07-28 17:33:03 +00:00
'meta' => $item_meta ,
2013-11-04 06:36:31 +00:00
);
}
// add shipping
foreach ( $order -> get_shipping_methods () as $shipping_item_id => $shipping_item ) {
$order_data [ 'shipping_lines' ][] = array (
'id' => $shipping_item_id ,
'method_id' => $shipping_item [ 'method_id' ],
'method_title' => $shipping_item [ 'name' ],
2013-11-25 13:34:21 +00:00
'total' => wc_format_decimal ( $shipping_item [ 'cost' ], 2 ),
2013-11-04 06:36:31 +00:00
);
}
// add taxes
foreach ( $order -> get_tax_totals () as $tax_code => $tax ) {
$order_data [ 'tax_lines' ][] = array (
2014-07-28 03:33:35 +00:00
'id' => $tax -> id ,
'rate_id' => $tax -> rate_id ,
'code' => $tax_code ,
2013-11-04 06:36:31 +00:00
'title' => $tax -> label ,
2013-11-25 13:34:21 +00:00
'total' => wc_format_decimal ( $tax -> amount , 2 ),
2013-11-04 06:36:31 +00:00
'compound' => ( bool ) $tax -> is_compound ,
);
}
// add fees
foreach ( $order -> get_fees () as $fee_item_id => $fee_item ) {
2014-05-02 19:26:30 +00:00
$order_data [ 'fee_lines' ][] = array (
2013-11-04 06:36:31 +00:00
'id' => $fee_item_id ,
'title' => $fee_item [ 'name' ],
'tax_class' => ( ! empty ( $fee_item [ 'tax_class' ] ) ) ? $fee_item [ 'tax_class' ] : null ,
2013-11-25 13:34:21 +00:00
'total' => wc_format_decimal ( $order -> get_line_total ( $fee_item ), 2 ),
'total_tax' => wc_format_decimal ( $order -> get_line_tax ( $fee_item ), 2 ),
2013-11-04 06:36:31 +00:00
);
}
// add coupons
foreach ( $order -> get_items ( 'coupon' ) as $coupon_item_id => $coupon_item ) {
2014-05-02 19:26:30 +00:00
$order_data [ 'coupon_lines' ][] = array (
2013-11-04 06:36:31 +00:00
'id' => $coupon_item_id ,
'code' => $coupon_item [ 'name' ],
2013-11-25 13:34:21 +00:00
'amount' => wc_format_decimal ( $coupon_item [ 'discount_amount' ], 2 ),
2013-11-04 06:36:31 +00:00
);
}
2013-11-22 08:41:32 +00:00
return array ( 'order' => apply_filters ( 'woocommerce_api_order_response' , $order_data , $order , $fields , $this -> server ) );
2013-11-04 06:36:31 +00:00
}
/**
* Get the total number of orders
*
* @ since 2.1
* @ param string $status
2013-11-11 00:29:36 +00:00
* @ param array $filter
2013-11-04 06:36:31 +00:00
* @ return array
*/
2013-11-11 00:29:36 +00:00
public function get_orders_count ( $status = null , $filter = array () ) {
2013-11-04 06:36:31 +00:00
2013-11-11 00:29:36 +00:00
if ( ! empty ( $status ) )
$filter [ 'status' ] = $status ;
2013-11-04 06:36:31 +00:00
2013-11-11 00:29:36 +00:00
$query = $this -> query_orders ( $filter );
2013-11-04 06:36:31 +00:00
2014-08-30 18:26:14 +00:00
if ( ! current_user_can ( 'read_private_shop_orders' ) ) {
2013-11-23 22:11:16 +00:00
return new WP_Error ( 'woocommerce_api_user_cannot_read_orders_count' , __ ( 'You do not have permission to read the orders count' , 'woocommerce' ), array ( 'status' => 401 ) );
2014-08-30 18:26:14 +00:00
}
2013-11-04 06:36:31 +00:00
2013-11-23 21:36:56 +00:00
return array ( 'count' => ( int ) $query -> found_posts );
2013-11-04 06:36:31 +00:00
}
2014-08-30 18:26:14 +00:00
/**
* Get a list of valid order statuses
*
* Note this requires no specific permissions other than being an authenticated
* API user . Order statuses ( particularly custom statuses ) could be considered
* private information which is why it ' s not in the API index .
*
* @ since 2.1
* @ return array
*/
public function get_order_statuses () {
$order_statuses = array ();
foreach ( wc_get_order_statuses () as $slug => $name ) {
$order_statuses [ str_replace ( 'wc-' , '' , $slug ) ] = $name ;
}
return array ( 'order_statuses' => apply_filters ( 'woocommerce_api_order_statuses_response' , $order_statuses , $this ) );
}
2013-11-04 06:36:31 +00:00
/**
2014-07-13 01:44:49 +00:00
* Create an order
2013-11-04 06:36:31 +00:00
*
2014-07-13 01:44:49 +00:00
* @ since 2.2
* @ param array $data raw order data
* @ return array
*/
public function create_order ( $data ) {
2014-07-28 03:35:50 +00:00
$data = isset ( $data [ 'order' ] ) ? $data [ 'order' ] : array ();
try {
// permission check
if ( ! current_user_can ( 'publish_shop_orders' ) ) {
throw new WC_API_Exception ( 'woocommerce_api_user_cannot_create_order' , __ ( 'You do not have permission to create orders' , 'woocommerce' ), 401 );
}
2014-07-28 03:58:01 +00:00
$data = apply_filters ( 'woocommerce_api_create_order_data' , $data , $this );
2014-07-28 03:35:50 +00:00
// default order args, note that status is checked for validity in wc_create_order()
$default_order_args = array (
'status' => isset ( $data [ 'status' ] ) ? $data [ 'status' ] : '' ,
2014-09-15 18:44:11 +00:00
'customer_note' => isset ( $data [ 'note' ] ) ? $data [ 'note' ] : null ,
2014-07-28 03:35:50 +00:00
);
// if creating order for existing customer
if ( ! empty ( $data [ 'customer_id' ] ) ) {
// make sure customer exists
if ( false === get_user_by ( 'id' , $data [ 'customer_id' ] ) ) {
throw new WC_API_Exception ( 'woocommerce_api_invalid_customer_id' , __ ( 'Customer ID is invalid' , 'woocommerce' ), 400 );
}
$default_order_args [ 'customer_id' ] = $data [ 'customer_id' ];
}
// create the pending order
$order = wc_create_order ( $default_order_args );
if ( is_wp_error ( $order ) ) {
throw new WC_API_Exception ( 'woocommerce_api_cannot_create_order' , sprintf ( __ ( 'Cannot create order: %s' , 'woocommerce' ), implode ( ', ' , $order -> get_error_messages () ) ), 400 );
}
// billing/shipping addresses
$this -> set_order_addresses ( $order , $data );
$lines = array (
'line_item' => 'line_items' ,
'shipping' => 'shipping_lines' ,
'fee' => 'fee_lines' ,
'coupon' => 'coupon_lines' ,
);
foreach ( $lines as $line_type => $line ) {
if ( isset ( $data [ $line ] ) && is_array ( $data [ $line ] ) ) {
$set_item = " set_ { $line_type } " ;
foreach ( $data [ $line ] as $item ) {
$this -> $set_item ( $order , $item , 'create' );
}
}
}
// calculate totals and set them
$order -> calculate_totals ();
// payment method (and payment_complete() if `paid` == true)
if ( isset ( $data [ 'payment_details' ] ) && is_array ( $data [ 'payment_details' ] ) ) {
// method ID & title are required
if ( empty ( $data [ 'payment_details' ][ 'method_id' ] ) || empty ( $data [ 'payment_details' ][ 'method_title' ] ) ) {
throw new WC_API_Exception ( 'woocommerce_invalid_payment_details' , __ ( 'Payment method ID and title are required' , 'woocommerce' ), 400 );
}
update_post_meta ( $order -> id , '_payment_method' , $data [ 'payment_details' ][ 'method_id' ] );
update_post_meta ( $order -> id , '_payment_method_title' , $data [ 'payment_details' ][ 'method_title' ] );
// mark as paid if set
if ( isset ( $data [ 'payment_details' ][ 'paid' ] ) && 'true' === $data [ 'payment_details' ][ 'paid' ] ) {
$order -> payment_complete ( isset ( $data [ 'payment_details' ][ 'transaction_id' ] ) ? $data [ 'payment_details' ][ 'transaction_id' ] : '' );
}
}
// set order currency
if ( isset ( $data [ 'currency' ] ) ) {
if ( ! array_key_exists ( $data [ 'currency' ], get_woocommerce_currencies () ) ) {
throw new WC_API_Exception ( 'woocommerce_invalid_order_currency' , __ ( 'Provided order currency is invalid' , 'woocommerce' ), 400 );
}
update_post_meta ( $order -> id , '_order_currency' , $data [ 'currency' ] );
}
// set order number
if ( isset ( $data [ 'order_number' ] ) ) {
update_post_meta ( $order -> id , '_order_number' , $data [ 'order_number' ] );
}
2014-08-30 20:17:52 +00:00
// set order meta
if ( isset ( $data [ 'order_meta' ] ) && is_array ( $data [ 'order_meta' ] ) ) {
$this -> set_order_meta ( $order -> id , $data [ 'order_meta' ] );
}
2014-07-28 03:35:50 +00:00
2014-07-28 03:58:01 +00:00
// HTTP 201 Created
2014-07-28 03:35:50 +00:00
$this -> server -> send_status ( 201 );
2014-07-28 03:58:01 +00:00
wc_delete_shop_order_transients ( $order -> id );
2014-11-28 12:22:22 +00:00
do_action ( 'woocommerce_api_create_order' , $order -> id , $data );
2014-07-28 03:58:01 +00:00
2014-07-28 03:35:50 +00:00
return $this -> get_order ( $order -> id );
} catch ( WC_API_Exception $e ) {
return new WP_Error ( $e -> getErrorCode (), $e -> getMessage (), array ( 'status' => $e -> getCode () ) );
2014-07-13 01:44:49 +00:00
}
2014-07-28 03:35:50 +00:00
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
/**
* Edit an order
*
* @ since 2.2
* @ param int $id the order ID
* @ param array $data
* @ return array
*/
public function edit_order ( $id , $data ) {
$data = isset ( $data [ 'order' ] ) ? $data [ 'order' ] : array ();
try {
$update_totals = false ;
$id = $this -> validate_request ( $id , 'shop_order' , 'edit' );
if ( is_wp_error ( $id ) ) {
return $id ;
}
2014-07-28 03:58:01 +00:00
$data = apply_filters ( 'woocommerce_api_edit_order_data' , $data , $id , $this );
2014-08-15 12:29:21 +00:00
$order = wc_get_order ( $id );
2014-07-28 03:36:32 +00:00
$order_args = array ( 'order_id' => $order -> id );
// customer note
2014-09-15 18:44:11 +00:00
if ( isset ( $data [ 'note' ] ) ) {
$order_args [ 'customer_note' ] = $data [ 'note' ];
2014-07-28 03:36:32 +00:00
}
// order status
if ( ! empty ( $data [ 'status' ] ) ) {
$order -> update_status ( $data [ 'status' ], isset ( $data [ 'status_note' ] ) ? $data [ 'status_note' ] : '' );
}
// customer ID
if ( isset ( $data [ 'customer_id' ] ) && $data [ 'customer_id' ] != $order -> get_user_id () ) {
// make sure customer exists
if ( false === get_user_by ( 'id' , $data [ 'customer_id' ] ) ) {
throw new WC_API_Exception ( 'woocommerce_api_invalid_customer_id' , __ ( 'Customer ID is invalid' , 'woocommerce' ), 400 );
}
update_post_meta ( $order -> id , '_customer_user' , $data [ 'customer_id' ] );
}
// billing/shipping address
$this -> set_order_addresses ( $order , $data );
$lines = array (
'line_item' => 'line_items' ,
'shipping' => 'shipping_lines' ,
'fee' => 'fee_lines' ,
'coupon' => 'coupon_lines' ,
);
foreach ( $lines as $line_type => $line ) {
if ( isset ( $data [ $line ] ) && is_array ( $data [ $line ] ) ) {
$update_totals = true ;
foreach ( $data [ $line ] as $item ) {
// item ID is always required
if ( ! array_key_exists ( 'id' , $item ) ) {
throw new WC_API_Exception ( 'woocommerce_invalid_item_id' , __ ( 'Order item ID is required' , 'woocommerce' ), 400 );
}
// create item
if ( is_null ( $item [ 'id' ] ) ) {
$this -> set_item ( $order , $line_type , $item , 'create' );
2014-11-20 00:43:09 +00:00
} elseif ( $this -> item_is_null ( $item ) ) {
2014-07-28 03:36:32 +00:00
// delete item
wc_delete_order_item ( $item [ 'id' ] );
} else {
// update item
$this -> set_item ( $order , $line_type , $item , 'update' );
}
}
}
}
// payment method (and payment_complete() if `paid` == true and order needs payment)
if ( isset ( $data [ 'payment_details' ] ) && is_array ( $data [ 'payment_details' ] ) ) {
// method ID
if ( isset ( $data [ 'payment_details' ][ 'method_id' ] ) ) {
update_post_meta ( $order -> id , '_payment_method' , $data [ 'payment_details' ][ 'method_id' ] );
}
// method title
if ( isset ( $data [ 'payment_details' ][ 'method_title' ] ) ) {
update_post_meta ( $order -> id , '_payment_method_title' , $data [ 'payment_details' ][ 'method_title' ] );
}
// mark as paid if set
if ( $order -> needs_payment () && isset ( $data [ 'payment_details' ][ 'paid' ] ) && 'true' === $data [ 'payment_details' ][ 'paid' ] ) {
$order -> payment_complete ( isset ( $data [ 'payment_details' ][ 'transaction_id' ] ) ? $data [ 'payment_details' ][ 'transaction_id' ] : '' );
}
}
// set order currency
if ( isset ( $data [ 'currency' ] ) ) {
if ( ! array_key_exists ( $data [ 'currency' ], get_woocommerce_currencies () ) ) {
throw new WC_API_Exception ( 'woocommerce_invalid_order_currency' , __ ( 'Provided order currency is invalid' , 'woocommerce' ), 400 );
}
update_post_meta ( $order -> id , '_order_currency' , $data [ 'currency' ] );
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// set order number
if ( isset ( $data [ 'order_number' ] ) ) {
update_post_meta ( $order -> id , '_order_number' , $data [ 'order_number' ] );
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// if items have changed, recalculate order totals
if ( $update_totals ) {
$order -> calculate_totals ();
2014-07-13 01:44:49 +00:00
}
2014-08-30 20:17:52 +00:00
// update order meta
if ( isset ( $data [ 'order_meta' ] ) && is_array ( $data [ 'order_meta' ] ) ) {
$this -> set_order_meta ( $order -> id , $data [ 'order_meta' ] );
}
2014-07-28 03:36:32 +00:00
// update the order post to set customer note/modified date
wc_update_order ( $order_args );
2014-07-28 03:58:01 +00:00
wc_delete_shop_order_transients ( $order -> id );
2014-11-28 12:22:22 +00:00
do_action ( 'woocommerce_api_edit_order' , $order -> id , $data );
2014-07-28 03:58:01 +00:00
2014-07-28 03:36:32 +00:00
return $this -> get_order ( $id );
} catch ( WC_API_Exception $e ) {
return new WP_Error ( $e -> getErrorCode (), $e -> getMessage (), array ( 'status' => $e -> getCode () ) );
2014-07-13 01:44:49 +00:00
}
2014-07-28 03:36:32 +00:00
}
/**
* Delete an order
*
* @ param int $id the order ID
* @ param bool $force true to permanently delete order , false to move to trash
* @ return array
*/
public function delete_order ( $id , $force = false ) {
$id = $this -> validate_request ( $id , 'shop_order' , 'delete' );
2014-07-28 03:58:01 +00:00
if ( is_wp_error ( $id ) ) {
return $id ;
}
wc_delete_shop_order_transients ( $id );
do_action ( 'woocommerce_api_delete_order' , $id , $this );
2014-07-28 03:36:32 +00:00
return $this -> delete ( $id , 'order' , ( 'true' === $force ) );
}
/**
* Helper method to get order post objects
*
* @ since 2.1
* @ param array $args request arguments for filtering query
* @ return WP_Query
*/
private function query_orders ( $args ) {
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// set base query arguments
$query_args = array (
'fields' => 'ids' ,
2014-08-12 18:08:11 +00:00
'post_type' => 'shop_order' ,
'post_status' => array_keys ( wc_get_order_statuses () )
2014-07-28 03:36:32 +00:00
);
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// add status argument
if ( ! empty ( $args [ 'status' ] ) ) {
2014-08-12 18:08:11 +00:00
$statuses = 'wc-' . str_replace ( ',' , ',wc-' , $args [ 'status' ] );
$statuses = explode ( ',' , $statuses );
2014-07-28 03:36:32 +00:00
$query_args [ 'post_status' ] = $statuses ;
unset ( $args [ 'status' ] );
2014-08-12 18:08:11 +00:00
2014-07-13 01:44:49 +00:00
}
2014-07-28 03:36:32 +00:00
$query_args = $this -> merge_query_args ( $query_args , $args );
return new WP_Query ( $query_args );
}
/**
* Helper method to set / update the billing & shipping addresses for
* an order
*
* @ since 2.1
* @ param \WC_Order $order
* @ param array $data
*/
private function set_order_addresses ( $order , $data ) {
2014-07-13 01:44:49 +00:00
$address_fields = array (
'first_name' ,
'last_name' ,
'company' ,
'email' ,
'phone' ,
'address_1' ,
'address_2' ,
'city' ,
'state' ,
'postcode' ,
'country' ,
);
$billing_address = $shipping_address = array ();
// billing address
if ( isset ( $data [ 'billing_address' ] ) && is_array ( $data [ 'billing_address' ] ) ) {
foreach ( $address_fields as $field ) {
if ( isset ( $data [ 'billing_address' ][ $field ] ) ) {
$billing_address [ $field ] = wc_clean ( $data [ 'billing_address' ][ $field ] );
}
}
unset ( $address_fields [ 'email' ] );
unset ( $address_fields [ 'phone' ] );
}
// shipping address
if ( isset ( $data [ 'shipping_address' ] ) && is_array ( $data [ 'shipping_address' ] ) ) {
foreach ( $address_fields as $field ) {
if ( isset ( $data [ 'shipping_address' ][ $field ] ) ) {
$shipping_address [ $field ] = wc_clean ( $data [ 'shipping_address' ][ $field ] );
}
}
}
$order -> set_address ( $billing_address , 'billing' );
$order -> set_address ( $shipping_address , 'shipping' );
// update user meta
if ( $order -> get_user_id () ) {
2014-07-28 03:36:32 +00:00
foreach ( $billing_address as $key => $value ) {
update_user_meta ( $order -> get_user_id (), 'billing_' . $key , $value );
}
foreach ( $shipping_address as $key => $value ) {
update_user_meta ( $order -> get_user_id (), 'shipping_' . $key , $value );
}
2014-07-13 01:44:49 +00:00
}
2014-07-28 03:36:32 +00:00
}
2014-07-13 01:44:49 +00:00
2014-08-30 20:17:52 +00:00
/**
* Helper method to add / update order meta , with two restrictions :
*
* 1 ) Only non - protected meta ( no leading underscore ) can be set
* 2 ) Meta values must be scalar ( int , string , bool )
*
* @ since 2.2
* @ param int $order_id valid order ID
* @ param array $order_meta order meta in array ( 'meta_key' => 'meta_value' ) format
*/
private function set_order_meta ( $order_id , $order_meta ) {
foreach ( $order_meta as $meta_key => $meta_value ) {
if ( is_string ( $meta_key ) && ! is_protected_meta ( $meta_key ) && is_scalar ( $meta_value ) ) {
update_post_meta ( $order_id , $meta_key , $meta_value );
}
}
}
2014-07-28 03:36:32 +00:00
/**
* Helper method to check if the resource ID associated with the provided item is null
*
* Items can be deleted by setting the resource ID to null
*
* @ since 2.2
* @ param array $item item provided in the request body
* @ return bool true if the item resource ID is null , false otherwise
*/
private function item_is_null ( $item ) {
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
$keys = array ( 'product_id' , 'method_id' , 'title' , 'code' );
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
foreach ( $keys as $key ) {
if ( array_key_exists ( $key , $item ) && is_null ( $item [ $key ] ) ) {
return true ;
}
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
return false ;
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
/**
* Wrapper method to create / update order items
*
* When updating , the item ID provided is checked to ensure it is associated
* with the order .
*
* @ since 2.2
* @ param \WC_Order $order order
* @ param string $item_type
* @ param array $item item provided in the request body
* @ param string $action either 'create' or 'update'
* @ throws WC_API_Exception if item ID is not associated with order
*/
private function set_item ( $order , $item_type , $item , $action ) {
global $wpdb ;
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
$set_method = " set_ { $item_type } " ;
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// verify provided line item ID is associated with order
if ( 'update' === $action ) {
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
$result = $wpdb -> get_row (
$wpdb -> prepare ( " SELECT * FROM { $wpdb -> prefix } woocommerce_order_items WHERE order_item_id = %d AND order_id = %d " ,
absint ( $item [ 'id' ] ),
absint ( $order -> id )
) );
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
if ( is_null ( $result ) ) {
throw new WC_API_Exception ( 'woocommerce_invalid_item_id' , __ ( 'Order item ID provided is not associated with order' , 'woocommerce' ), 400 );
}
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
$this -> $set_method ( $order , $item , $action );
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
/**
* Create or update a line item
*
* @ since 2.2
* @ param \WC_Order $order
* @ param array $item line item data
* @ param string $action 'create' to add line item or 'update' to update it
* @ throws WC_API_Exception invalid data , server error
*/
private function set_line_item ( $order , $item , $action ) {
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
$creating = ( 'create' === $action );
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// product is always required
if ( ! isset ( $item [ 'product_id' ] ) ) {
throw new WC_API_Exception ( 'woocommerce_api_invalid_product_id' , __ ( 'Product ID is required' , 'woocommerce' ), 400 );
}
// when updating, ensure product ID provided matches
if ( 'update' === $action ) {
$item_product_id = wc_get_order_item_meta ( $item [ 'id' ], '_product_id' );
$item_variation_id = wc_get_order_item_meta ( $item [ 'id' ], '_variation_id' );
if ( $item [ 'product_id' ] != $item_product_id && $item [ 'product_id' ] != $item_variation_id ) {
throw new WC_API_Exception ( 'woocommerce_api_invalid_product_id' , __ ( 'Product ID provided does not match this line item' , 'woocommerce' ), 400 );
2014-07-13 01:44:49 +00:00
}
}
2014-08-19 10:09:29 +00:00
$product = wc_get_product ( $item [ 'product_id' ] );
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// must be a valid WC_Product
if ( ! is_object ( $product ) ) {
throw new WC_API_Exception ( 'woocommerce_api_invalid_product' , __ ( 'Product is invalid' , 'woocommerce' ), 400 );
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// quantity must be positive float
if ( isset ( $item [ 'quantity' ] ) && floatval ( $item [ 'quantity' ] ) <= 0 ) {
throw new WC_API_Exception ( 'woocommerce_api_invalid_product_quantity' , __ ( 'Product quantity must be a positive float' , 'woocommerce' ), 400 );
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// quantity is required when creating
if ( $creating && ! isset ( $item [ 'quantity' ] ) ) {
throw new WC_API_Exception ( 'woocommerce_api_invalid_product_quantity' , __ ( 'Product quantity is required' , 'woocommerce' ), 400 );
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
$item_args = array ();
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// quantity
if ( isset ( $item [ 'quantity' ] ) ) {
$item_args [ 'qty' ] = $item [ 'quantity' ];
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// variations must each have a key & value
if ( isset ( $item [ 'variations' ] ) && is_array ( $item [ 'variations' ] ) ) {
foreach ( $item [ 'variations' ] as $key => $value ) {
if ( ! $key || ! $value ) {
throw new WC_API_Exception ( 'woocommerce_api_invalid_product_variation' , __ ( 'The product variation is invalid' , 'woocommerce' ), 400 );
2014-07-13 01:44:49 +00:00
}
}
2014-07-28 03:36:32 +00:00
$item_args [ 'variation' ] = $item [ 'variations' ];
2014-07-13 01:44:49 +00:00
}
2014-07-28 03:36:32 +00:00
// total
if ( isset ( $item [ 'total' ] ) ) {
2014-10-16 10:56:08 +00:00
$item_args [ 'totals' ][ 'total' ] = floatval ( $item [ 'total' ] );
2014-07-28 03:36:32 +00:00
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// total tax
if ( isset ( $item [ 'total_tax' ] ) ) {
2014-10-16 10:56:08 +00:00
$item_args [ 'totals' ][ 'tax' ] = floatval ( $item [ 'total_tax' ] );
2014-07-28 03:36:32 +00:00
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// subtotal
if ( isset ( $item [ 'subtotal' ] ) ) {
2014-10-16 10:56:08 +00:00
$item_args [ 'totals' ][ 'subtotal' ] = floatval ( $item [ 'subtotal' ] );
2014-07-28 03:36:32 +00:00
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// subtotal tax
if ( isset ( $item [ 'subtotal_tax' ] ) ) {
2014-10-16 10:56:08 +00:00
$item_args [ 'totals' ][ 'subtotal_tax' ] = floatval ( $item [ 'subtotal_tax' ] );
2014-07-28 03:36:32 +00:00
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
if ( $creating ) {
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
$item_id = $order -> add_product ( $product , $item_args [ 'qty' ], $item_args );
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
if ( ! $item_id ) {
throw new WC_API_Exception ( 'woocommerce_cannot_create_line_item' , __ ( 'Cannot create line item, try again' , 'woocommerce' ), 500 );
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
} else {
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
$item_id = $order -> update_product ( $item [ 'id' ], $product , $item_args );
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
if ( ! $item_id ) {
throw new WC_API_Exception ( 'woocommerce_cannot_update_line_item' , __ ( 'Cannot update line item, try again' , 'woocommerce' ), 500 );
2014-07-13 01:44:49 +00:00
}
}
2014-07-28 03:36:32 +00:00
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
/**
* Create or update an order shipping method
*
* @ since 2.2
* @ param \WC_Order $order
* @ param array $shipping item data
* @ param string $action 'create' to add shipping or 'update' to update it
* @ throws WC_API_Exception invalid data , server error
*/
private function set_shipping ( $order , $shipping , $action ) {
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// total must be a positive float
if ( isset ( $shipping [ 'total' ] ) && floatval ( $shipping [ 'total' ] ) < 0 ) {
throw new WC_API_Exception ( 'woocommerce_invalid_shipping_total' , __ ( 'Shipping total must be a positive amount' , 'woocommerce' ), 400 );
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
if ( 'create' === $action ) {
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// method ID is required
if ( ! isset ( $shipping [ 'method_id' ] ) ) {
throw new WC_API_Exception ( 'woocommerce_invalid_shipping_item' , __ ( 'Shipping method ID is required' , 'woocommerce' ), 400 );
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
$rate = new WC_Shipping_Rate ( $shipping [ 'method_id' ], isset ( $shipping [ 'method_title' ] ) ? $shipping [ 'method_title' ] : '' , isset ( $shipping [ 'total' ] ) ? floatval ( $shipping [ 'total' ] ) : 0 , array (), $shipping [ 'method_id' ] );
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
$shipping_id = $order -> add_shipping ( $rate );
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
if ( ! $shipping_id ) {
throw new WC_API_Exception ( 'woocommerce_cannot_create_shipping' , __ ( 'Cannot create shipping method, try again' , 'woocommerce' ), 500 );
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
} else {
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
$shipping_args = array ();
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
if ( isset ( $shipping [ 'method_id' ] ) ) {
$shipping_args [ 'method_id' ] = $shipping [ 'method_id' ];
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
if ( isset ( $shipping [ 'method_title' ] ) ) {
$shipping_args [ 'method_title' ] = $shipping [ 'method_title' ];
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
if ( isset ( $shipping [ 'total' ] ) ) {
$shipping_args [ 'cost' ] = floatval ( $shipping [ 'total' ] );
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
$shipping_id = $order -> update_shipping ( $shipping [ 'id' ], $shipping_args );
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
if ( ! $shipping_id ) {
throw new WC_API_Exception ( 'woocommerce_cannot_update_shipping' , __ ( 'Cannot update shipping method, try again' , 'woocommerce' ), 500 );
2014-07-13 01:44:49 +00:00
}
}
2014-07-28 03:36:32 +00:00
}
/**
* Create or update an order fee
*
* @ since 2.2
* @ param \WC_Order $order
* @ param array $fee item data
* @ param string $action 'create' to add fee or 'update' to update it
* @ throws WC_API_Exception invalid data , server error
*/
private function set_fee ( $order , $fee , $action ) {
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
if ( 'create' === $action ) {
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
// fee title is required
if ( ! isset ( $fee [ 'title' ] ) ) {
throw new WC_API_Exception ( 'woocommerce_invalid_fee_item' , __ ( 'Fee title is required' , 'woocommerce' ), 400 );
2014-07-13 01:44:49 +00:00
}
2014-07-28 03:36:32 +00:00
$order_fee = new stdClass ();
$order_fee -> id = sanitize_title ( $fee [ 'title' ] );
$order_fee -> name = $fee [ 'title' ];
$order_fee -> amount = isset ( $fee [ 'total' ] ) ? floatval ( $fee [ 'total' ] ) : 0 ;
// if taxable, tax class and total are required
if ( isset ( $fee [ 'taxable' ] ) && $fee [ 'taxable' ] ) {
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
if ( empty ( $fee [ 'tax_class' ] ) ) {
throw new WC_API_Exception ( 'woocommerce_invalid_fee_item' , __ ( 'Fee tax class is required when fee is taxable' , 'woocommerce' ), 400 );
}
$order_fee -> taxable = true ;
$order_fee -> tax_class = $fee [ 'tax_class' ];
2014-11-14 13:14:48 +00:00
$order_fee -> tax = 0 ;
$order_fee -> tax_data = array ();
if ( isset ( $fee [ 'total_tax' ] ) ) {
$order_fee -> tax = isset ( $fee [ 'total_tax' ] ) ? wc_format_refund_total ( $fee [ 'total_tax' ] ) : 0 ;
}
if ( isset ( $fee [ 'tax_data' ] ) ) {
$order_fee -> tax = wc_format_refund_total ( array_sum ( $fee [ 'tax_data' ] ) );
$order_fee -> tax_data = array_map ( 'wc_format_refund_total' , $fee [ 'tax_data' ] );
}
2014-07-13 01:44:49 +00:00
}
2014-07-28 03:36:32 +00:00
$fee_id = $order -> add_fee ( $order_fee );
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
if ( ! $fee_id ) {
throw new WC_API_Exception ( 'woocommerce_cannot_create_fee' , __ ( 'Cannot create fee, try again' , 'woocommerce' ), 500 );
2014-07-13 01:44:49 +00:00
}
2014-07-28 03:36:32 +00:00
} else {
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
$fee_args = array ();
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
if ( isset ( $fee [ 'title' ] ) ) {
$fee_args [ 'name' ] = $fee [ 'title' ];
}
if ( isset ( $fee [ 'tax_class' ] ) ) {
$fee_args [ 'tax_class' ] = $fee [ 'tax_class' ];
}
if ( isset ( $fee [ 'total' ] ) ) {
$fee_args [ 'line_total' ] = floatval ( $fee [ 'total' ] );
}
if ( isset ( $fee [ 'total_tax' ] ) ) {
$fee_args [ 'line_tax' ] = floatval ( $fee [ 'total_tax' ] );
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
$fee_id = $order -> update_fee ( $fee [ 'id' ], $fee_args );
if ( ! $fee_id ) {
throw new WC_API_Exception ( 'woocommerce_cannot_update_fee' , __ ( 'Cannot update fee, try again' , 'woocommerce' ), 500 );
}
}
2014-07-13 01:44:49 +00:00
}
/**
2014-07-28 03:36:32 +00:00
* Create or update an order coupon
2013-11-23 17:59:21 +00:00
*
2014-07-28 03:36:32 +00:00
* @ since 2.2
* @ param \WC_Order $order
* @ param array $coupon item data
* @ param string $action 'create' to add coupon or 'update' to update it
* @ throws WC_API_Exception invalid data , server error
2013-11-04 06:36:31 +00:00
*/
2014-07-28 03:36:32 +00:00
private function set_coupon ( $order , $coupon , $action ) {
2013-11-11 00:29:36 +00:00
2014-07-28 03:36:32 +00:00
// coupon amount must be positive float
if ( isset ( $coupon [ 'amount' ] ) && floatval ( $coupon [ 'amount' ] ) < 0 ) {
throw new WC_API_Exception ( 'woocommerce_invalid_coupon_total' , __ ( 'Coupon discount total must be a positive amount' , 'woocommerce' ), 400 );
}
2014-07-13 01:44:49 +00:00
2014-07-28 03:36:32 +00:00
if ( 'create' === $action ) {
2013-11-11 00:29:36 +00:00
2014-07-28 03:36:32 +00:00
// coupon code is required
if ( empty ( $coupon [ 'code' ] ) ) {
throw new WC_API_Exception ( 'woocommerce_invalid_coupon_coupon' , __ ( 'Coupon code is required' , 'woocommerce' ), 400 );
}
2013-11-04 06:36:31 +00:00
2014-07-28 03:36:32 +00:00
$coupon_id = $order -> add_coupon ( $coupon [ 'code' ], isset ( $coupon [ 'amount' ] ) ? floatval ( $coupon [ 'amount' ] ) : 0 );
2013-11-23 17:59:21 +00:00
2014-07-28 03:36:32 +00:00
if ( ! $coupon_id ) {
throw new WC_API_Exception ( 'woocommerce_cannot_create_order_coupon' , __ ( 'Cannot create coupon, try again' , 'woocommerce' ), 500 );
}
2013-11-23 17:59:21 +00:00
2014-07-28 03:36:32 +00:00
} else {
2013-11-04 06:36:31 +00:00
2014-07-28 03:36:32 +00:00
$coupon_args = array ();
2013-11-04 06:36:31 +00:00
2014-07-28 03:36:32 +00:00
if ( isset ( $coupon [ 'code' ] ) ) {
$coupon_args [ 'code' ] = $coupon [ 'code' ];
}
2013-11-11 00:29:36 +00:00
2014-07-28 03:36:32 +00:00
if ( isset ( $coupon [ 'amount' ] ) ) {
$coupon_args [ 'discount_amount' ] = floatval ( $coupon [ 'amount' ] );
}
2013-11-04 06:36:31 +00:00
2014-07-28 03:36:32 +00:00
$coupon_id = $order -> update_coupon ( $coupon [ 'id' ], $coupon_args );
if ( ! $coupon_id ) {
throw new WC_API_Exception ( 'woocommerce_cannot_update_order_coupon' , __ ( 'Cannot update coupon, try again' , 'woocommerce' ), 500 );
}
}
2013-11-04 06:36:31 +00:00
}
/**
* Get the admin order notes for an order
2013-11-14 17:48:20 +00:00
*
* @ since 2.1
2014-07-29 03:39:07 +00:00
* @ param string $order_id order ID
* @ param string | null $fields fields to include in response
2013-11-14 17:48:20 +00:00
* @ return array
2013-11-04 06:36:31 +00:00
*/
2014-07-29 03:39:07 +00:00
public function get_order_notes ( $order_id , $fields = null ) {
2013-11-04 06:36:31 +00:00
2013-11-11 00:29:36 +00:00
// ensure ID is valid order ID
2014-07-29 03:39:07 +00:00
$order_id = $this -> validate_request ( $order_id , 'shop_order' , 'read' );
2013-11-04 06:36:31 +00:00
2014-07-29 03:39:07 +00:00
if ( is_wp_error ( $order_id ) ) {
return $order_id ;
2014-07-28 03:36:32 +00:00
}
2013-11-04 06:36:31 +00:00
$args = array (
2014-07-29 03:39:07 +00:00
'post_id' => $order_id ,
2013-11-04 06:36:31 +00:00
'approve' => 'approve' ,
'type' => 'order_note'
);
2014-01-14 03:13:37 +00:00
remove_filter ( 'comments_clauses' , array ( 'WC_Comments' , 'exclude_order_comments' ), 10 , 1 );
2013-11-04 06:36:31 +00:00
$notes = get_comments ( $args );
add_filter ( 'comments_clauses' , array ( 'WC_Comments' , 'exclude_order_comments' ), 10 , 1 );
$order_notes = array ();
foreach ( $notes as $note ) {
2014-08-30 19:02:19 +00:00
$order_notes [] = current ( $this -> get_order_note ( $order_id , $note -> comment_ID , $fields ) );
2014-07-29 03:39:07 +00:00
}
return array ( 'order_notes' => apply_filters ( 'woocommerce_api_order_notes_response' , $order_notes , $order_id , $fields , $notes , $this -> server ) );
}
/**
* Get an order note for the given order ID and ID
*
* @ since 2.2
* @ param string $order_id order ID
* @ param string $id order note ID
* @ param string | null $fields fields to limit response to
* @ return array
*/
public function get_order_note ( $order_id , $id , $fields = null ) {
// validate order ID
$order_id = $this -> validate_request ( $order_id , 'shop_order' , 'read' );
if ( is_wp_error ( $order_id ) ) {
return $order_id ;
}
$id = absint ( $id );
if ( empty ( $id ) ) {
return new WP_Error ( 'woocommerce_api_invalid_order_note_id' , __ ( 'Invalid order note ID' , 'woocommerce' ), array ( 'status' => 400 ) );
}
$note = get_comment ( $id );
2014-08-15 18:28:19 +00:00
if ( is_null ( $note ) ) {
2014-07-29 03:39:07 +00:00
return new WP_Error ( 'woocommerce_api_invalid_order_note_id' , __ ( 'An order note with the provided ID could not be found' , 'woocommerce' ), array ( 'status' => 404 ) );
}
$order_note = array (
'id' => $note -> comment_ID ,
'created_at' => $this -> server -> format_datetime ( $note -> comment_date_gmt ),
'note' => $note -> comment_content ,
'customer_note' => get_comment_meta ( $note -> comment_ID , 'is_customer_note' , true ) ? true : false ,
);
return array ( 'order_note' => apply_filters ( 'woocommerce_api_order_note_response' , $order_note , $id , $fields , $note , $order_id , $this ) );
}
/**
* Create a new order note for the given order
*
* @ since 2.2
* @ param string $order_id order ID
* @ param array $data raw request data
* @ return WP_Error | array error or created note response data
*/
public function create_order_note ( $order_id , $data ) {
$data = isset ( $data [ 'order_note' ] ) ? $data [ 'order_note' ] : array ();
// permission check
if ( ! current_user_can ( 'publish_shop_orders' ) ) {
return new WP_Error ( 'woocommerce_api_user_cannot_create_order_note' , __ ( 'You do not have permission to create order notes' , 'woocommerce' ), array ( 'status' => 401 ) );
}
$order_id = absint ( $order_id );
if ( empty ( $order_id ) ) {
return new WP_Error ( 'woocommerce_api_invalid_order_id' , __ ( 'Order ID is invalid' , 'woocommerce' ), array ( 'status' => 400 ) );
}
2014-08-15 12:29:21 +00:00
$order = wc_get_order ( $order_id );
2014-07-29 03:39:07 +00:00
$data = apply_filters ( 'woocommerce_api_create_order_note_data' , $data , $order_id , $this );
// note content is required
if ( ! isset ( $data [ 'note' ] ) ) {
return new WP_Error ( 'woocommerce_api_invalid_order_note' , __ ( 'Order note is required' , 'woocommerce' ), array ( 'status' => 400 ) );
}
$is_customer_note = ( isset ( $data [ 'customer_note' ] ) && true === $data [ 'customer_note' ] );
// create the note
$note_id = $order -> add_order_note ( $data [ 'note' ], $is_customer_note );
if ( ! $note_id ) {
return new WP_Error ( 'woocommerce_api_cannot_create_order_note' , __ ( 'Cannot create order note, please try again' , 'woocommerce' ), array ( 'status' => 500 ) );
}
// HTTP 201 Created
$this -> server -> send_status ( 201 );
do_action ( 'woocommerce_api_create_order_note' , $note_id , $order_id , $this );
return $this -> get_order_note ( $order -> id , $note_id );
}
/**
* Edit the order note
*
* @ since 2.2
* @ param string $order_id order ID
* @ param string $id note ID
* @ param array $data parsed request data
* @ return WP_Error | array error or edited note response data
*/
public function edit_order_note ( $order_id , $id , $data ) {
$data = isset ( $data [ 'order_note' ] ) ? $data [ 'order_note' ] : array ();
// validate order ID
$order_id = $this -> validate_request ( $order_id , 'shop_order' , 'edit' );
if ( is_wp_error ( $order_id ) ) {
return $order_id ;
}
2014-08-15 12:29:21 +00:00
$order = wc_get_order ( $order_id );
2014-07-29 03:39:07 +00:00
// validate note ID
$id = absint ( $id );
if ( empty ( $id ) ) {
return new WP_Error ( 'woocommerce_api_invalid_order_note_id' , __ ( 'Invalid order note ID' , 'woocommerce' ), array ( 'status' => 400 ) );
}
// ensure note ID is valid
$note = get_comment ( $id );
if ( is_null ( $note ) ) {
return new WP_Error ( 'woocommerce_api_invalid_order_note_id' , __ ( 'An order note with the provided ID could not be found' , 'woocommerce' ), array ( 'status' => 404 ) );
}
// ensure note ID is associated with given order
if ( $note -> comment_post_ID != $order -> id ) {
return new WP_Error ( 'woocommerce_api_invalid_order_note_id' , __ ( 'The order note ID provided is not associated with the order' , 'woocommerce' ), array ( 'status' => 400 ) );
}
$data = apply_filters ( 'woocommerce_api_edit_order_note_data' , $data , $note -> comment_ID , $order -> id , $this );
// note content
if ( isset ( $data [ 'note' ] ) ) {
wp_update_comment (
array (
'comment_ID' => $note -> comment_ID ,
'comment_content' => $data [ 'note' ],
)
2013-11-04 06:36:31 +00:00
);
}
2014-07-29 03:39:07 +00:00
// customer note
if ( isset ( $data [ 'customer_note' ] ) ) {
update_comment_meta ( $note -> comment_ID , 'is_customer_note' , true === $data [ 'customer_note' ] );
}
do_action ( 'woocommerce_api_edit_order_note' , $note -> comment_ID , $order -> id , $this );
return $this -> get_order_note ( $order -> id , $note -> comment_ID );
}
/**
* Delete order note
*
* @ since 2.2
* @ param string $order_id order ID
* @ param string $id note ID
* @ return WP_Error | array error or deleted message
*/
public function delete_order_note ( $order_id , $id ) {
$order_id = $this -> validate_request ( $order_id , 'shop_order' , 'delete' );
if ( is_wp_error ( $order_id ) ) {
return $order_id ;
}
// validate note ID
$id = absint ( $id );
if ( empty ( $id ) ) {
return new WP_Error ( 'woocommerce_api_invalid_order_note_id' , __ ( 'Invalid order note ID' , 'woocommerce' ), array ( 'status' => 400 ) );
}
// ensure note ID is valid
$note = get_comment ( $id );
if ( is_null ( $note ) ) {
return new WP_Error ( 'woocommerce_api_invalid_order_note_id' , __ ( 'An order note with the provided ID could not be found' , 'woocommerce' ), array ( 'status' => 404 ) );
}
// ensure note ID is associated with given order
if ( $note -> comment_post_ID != $order_id ) {
return new WP_Error ( 'woocommerce_api_invalid_order_note_id' , __ ( 'The order note ID provided is not associated with the order' , 'woocommerce' ), array ( 'status' => 400 ) );
}
// force delete since trashed order notes could not be managed through comments list table
$result = wp_delete_comment ( $note -> comment_ID , true );
if ( $result ) {
do_action ( 'woocommerce_api_delete_order_note' , $note -> comment_ID , $order_id , $this );
return array ( 'message' => __ ( 'Permanently deleted order note' , 'woocommerce' ) );
} else {
return new WP_Error ( 'woocommerce_api_cannot_delete_order_note' , __ ( 'This order note cannot be deleted' , 'woocommerce' ), array ( 'status' => 500 ) );
}
2013-11-04 06:36:31 +00:00
}
2014-08-15 17:09:33 +00:00
/**
2014-08-15 17:40:34 +00:00
* Get the order refunds for an order
2014-08-15 17:09:33 +00:00
*
* @ since 2.2
* @ param string $order_id order ID
* @ param string | null $fields fields to include in response
* @ return array
*/
public function get_order_refunds ( $order_id , $fields = null ) {
// Ensure ID is valid order ID
$order_id = $this -> validate_request ( $order_id , 'shop_order' , 'read' );
if ( is_wp_error ( $order_id ) ) {
return $order_id ;
}
2014-08-15 17:40:34 +00:00
$refund_items = get_posts (
array (
'post_type' => 'shop_order_refund' ,
'post_parent' => $order_id ,
'posts_per_page' => - 1 ,
'post_status' => 'any' ,
'fields' => 'ids'
)
);
$order_refunds = array ();
foreach ( $refund_items as $refund_id ) {
2014-08-30 19:02:19 +00:00
$order_refunds [] = current ( $this -> get_order_refund ( $order_id , $refund_id , $fields ) );
2014-08-15 17:40:34 +00:00
}
2014-08-18 13:42:37 +00:00
return array ( 'order_refunds' => apply_filters ( 'woocommerce_api_order_refunds_response' , $order_refunds , $order_id , $fields , $refund_items , $this ) );
2014-08-15 17:40:34 +00:00
}
/**
* Get an order refund for the given order ID and ID
*
* @ since 2.2
* @ param string $order_id order ID
* @ param string | null $fields fields to limit response to
* @ return array
*/
public function get_order_refund ( $order_id , $id , $fields = null ) {
// Validate order ID
$order_id = $this -> validate_request ( $order_id , 'shop_order' , 'read' );
2014-08-15 17:09:33 +00:00
2014-08-15 17:40:34 +00:00
if ( is_wp_error ( $order_id ) ) {
return $order_id ;
}
2014-08-15 17:09:33 +00:00
2014-08-15 17:40:34 +00:00
$id = absint ( $id );
2014-08-15 17:09:33 +00:00
2014-08-15 17:40:34 +00:00
if ( empty ( $id ) ) {
return new WP_Error ( 'woocommerce_api_invalid_order_refund_id' , __ ( 'Invalid order refund ID' , 'woocommerce' ), array ( 'status' => 400 ) );
}
2014-08-15 17:09:33 +00:00
2014-08-15 17:40:34 +00:00
$order = wc_get_order ( $id );
$refund = wc_get_order ( $id );
2014-08-15 17:09:33 +00:00
2014-08-15 17:40:34 +00:00
if ( ! $refund ) {
return new WP_Error ( 'woocommerce_api_invalid_order_refund_id' , __ ( 'An order refund with the provided ID could not be found' , 'woocommerce' ), array ( 'status' => 404 ) );
}
$line_items = array ();
// Add line items
foreach ( $refund -> get_items ( 'line_item' ) as $item_id => $item ) {
$product = $order -> get_product_from_item ( $item );
$meta = new WC_Order_Item_Meta ( $item [ 'item_meta' ], $product );
$item_meta = array ();
foreach ( $meta -> get_formatted () as $meta_key => $formatted_meta ) {
$item_meta [] = array (
'key' => $meta_key ,
'label' => $formatted_meta [ 'label' ],
'value' => $formatted_meta [ 'value' ],
2014-08-15 17:09:33 +00:00
);
}
2014-08-15 17:40:34 +00:00
$line_items [] = array (
'id' => $item_id ,
'subtotal' => wc_format_decimal ( $order -> get_line_subtotal ( $item ), 2 ),
'subtotal_tax' => wc_format_decimal ( $item [ 'line_subtotal_tax' ], 2 ),
'total' => wc_format_decimal ( $order -> get_line_total ( $item ), 2 ),
'total_tax' => wc_format_decimal ( $order -> get_line_tax ( $item ), 2 ),
'price' => wc_format_decimal ( $order -> get_item_total ( $item ), 2 ),
'quantity' => ( int ) $item [ 'qty' ],
'tax_class' => ( ! empty ( $item [ 'tax_class' ] ) ) ? $item [ 'tax_class' ] : null ,
'name' => $item [ 'name' ],
'product_id' => ( isset ( $product -> variation_id ) ) ? $product -> variation_id : $product -> id ,
'sku' => is_object ( $product ) ? $product -> get_sku () : null ,
'meta' => $item_meta ,
2014-08-15 17:09:33 +00:00
);
}
2014-08-15 17:40:34 +00:00
$order_refund = array (
'id' => $refund -> id ,
'date' => $this -> server -> format_datetime ( $refund -> date ),
'amount' => wc_format_decimal ( $refund -> get_refund_amount (), 2 ),
'reason' => $refund -> get_refund_reason (),
'line_items' => $line_items
);
return array ( 'order_refund' => apply_filters ( 'woocommerce_api_order_refund_response' , $order_refund , $id , $fields , $refund , $order_id , $this ) );
2014-08-15 17:09:33 +00:00
}
2014-08-15 17:54:19 +00:00
/**
* Create a new order refund for the given order
*
* @ since 2.2
* @ param string $order_id order ID
* @ param array $data raw request data
2014-08-15 18:58:55 +00:00
* @ param bool $api_refund do refund using a payment gateway API
2014-08-15 17:54:19 +00:00
* @ return WP_Error | array error or created refund response data
*/
2014-08-18 13:47:56 +00:00
public function create_order_refund ( $order_id , $data , $api_refund = true ) {
2014-08-15 17:54:19 +00:00
$data = isset ( $data [ 'order_refund' ] ) ? $data [ 'order_refund' ] : array ();
// Permission check
if ( ! current_user_can ( 'publish_shop_orders' ) ) {
return new WP_Error ( 'woocommerce_api_user_cannot_create_order_refund' , __ ( 'You do not have permission to create order refunds' , 'woocommerce' ), array ( 'status' => 401 ) );
}
$order_id = absint ( $order_id );
if ( empty ( $order_id ) ) {
return new WP_Error ( 'woocommerce_api_invalid_order_id' , __ ( 'Order ID is invalid' , 'woocommerce' ), array ( 'status' => 400 ) );
}
$data = apply_filters ( 'woocommerce_api_create_order_refund_data' , $data , $order_id , $this );
// Refund amount is required
if ( ! isset ( $data [ 'amount' ] ) ) {
2014-08-15 18:28:19 +00:00
return new WP_Error ( 'woocommerce_api_invalid_order_refund' , __ ( 'Refund amount is required' , 'woocommerce' ), array ( 'status' => 400 ) );
2014-08-18 13:47:24 +00:00
} elseif ( 0 > $data [ 'amount' ] ) {
return new WP_Error ( 'woocommerce_api_invalid_order_refund' , __ ( 'Refund amount must be positive' , 'woocommerce' ), array ( 'status' => 400 ) );
2014-08-15 17:54:19 +00:00
}
2014-08-15 17:40:34 +00:00
2014-08-15 17:54:19 +00:00
$data [ 'order_id' ] = $order_id ;
$data [ 'refund_id' ] = 0 ;
// Create the refund
$refund = wc_create_refund ( $data );
if ( ! $refund ) {
2014-08-15 18:28:19 +00:00
return new WP_Error ( 'woocommerce_api_cannot_create_order_refund' , __ ( 'Cannot create order refund, please try again' , 'woocommerce' ), array ( 'status' => 500 ) );
2014-08-15 17:54:19 +00:00
}
2014-08-15 18:58:55 +00:00
// Refund via API
if ( $api_refund ) {
if ( WC () -> payment_gateways () ) {
$payment_gateways = WC () -> payment_gateways -> payment_gateways ();
}
$order = wc_get_order ( $order_id );
if ( isset ( $payment_gateways [ $order -> payment_method ] ) && $payment_gateways [ $order -> payment_method ] -> supports ( 'refunds' ) ) {
$result = $payment_gateways [ $order -> payment_method ] -> process_refund ( $order_id , $refund -> get_refund_amount (), $refund -> get_refund_reason () );
if ( is_wp_error ( $result ) ) {
return $result ;
} elseif ( ! $result ) {
return new WP_Error ( 'woocommerce_api_create_order_refund_api_failed' , __ ( 'An error occurred while attempting to create the refund using the payment gateway API' , 'woocommerce' ), array ( 'status' => 500 ) );
}
}
}
2014-08-15 17:54:19 +00:00
// HTTP 201 Created
$this -> server -> send_status ( 201 );
do_action ( 'woocommerce_api_create_order_refund' , $refund -> id , $order_id , $this );
return $this -> get_order_refund ( $order_id , $refund -> id );
}
2014-08-15 18:28:19 +00:00
/**
* Edit an order refund
*
* @ since 2.2
* @ param string $order_id order ID
* @ param string $id refund ID
* @ param array $data parsed request data
* @ return WP_Error | array error or edited refund response data
*/
public function edit_order_refund ( $order_id , $id , $data ) {
$data = isset ( $data [ 'order_refund' ] ) ? $data [ 'order_refund' ] : array ();
// Validate order ID
$order_id = $this -> validate_request ( $order_id , 'shop_order' , 'edit' );
if ( is_wp_error ( $order_id ) ) {
return $order_id ;
}
// Validate refund ID
$id = absint ( $id );
if ( empty ( $id ) ) {
return new WP_Error ( 'woocommerce_api_invalid_order_refund_id' , __ ( 'Invalid order refund ID' , 'woocommerce' ), array ( 'status' => 400 ) );
}
// Ensure order ID is valid
2014-08-15 18:38:39 +00:00
$refund = get_post ( $id );
2014-08-15 18:28:19 +00:00
if ( ! $refund ) {
return new WP_Error ( 'woocommerce_api_invalid_order_refund_id' , __ ( 'An order refund with the provided ID could not be found' , 'woocommerce' ), array ( 'status' => 404 ) );
}
// Ensure refund ID is associated with given order
2014-08-15 18:38:39 +00:00
if ( $refund -> post_parent != $order_id ) {
2014-08-15 18:28:19 +00:00
return new WP_Error ( 'woocommerce_api_invalid_order_refund_id' , __ ( 'The order refund ID provided is not associated with the order' , 'woocommerce' ), array ( 'status' => 400 ) );
}
2014-08-15 18:38:39 +00:00
$data = apply_filters ( 'woocommerce_api_edit_order_refund_data' , $data , $refund -> ID , $order_id , $this );
2014-08-15 18:28:19 +00:00
// Update reason
if ( isset ( $data [ 'reason' ] ) ) {
2014-08-15 18:38:39 +00:00
$updated_refund = wp_update_post ( array ( 'ID' => $refund -> ID , 'post_excerpt' => $data [ 'reason' ] ) );
2014-08-15 18:28:19 +00:00
if ( is_wp_error ( $updated_refund ) ) {
return $updated_refund ;
}
}
// Update refund amount
2014-08-18 13:47:24 +00:00
if ( isset ( $data [ 'amount' ] ) && 0 < $data [ 'amount' ] ) {
2014-08-15 18:38:39 +00:00
update_post_meta ( $refund -> ID , '_refund_amount' , wc_format_decimal ( $data [ 'amount' ] ) );
2014-08-15 18:28:19 +00:00
}
2014-08-15 18:38:39 +00:00
do_action ( 'woocommerce_api_edit_order_refund' , $refund -> ID , $order_id , $this );
2014-08-15 18:28:19 +00:00
2014-08-15 18:38:39 +00:00
return $this -> get_order_refund ( $order_id , $refund -> ID );
}
/**
* Delete order refund
*
* @ since 2.2
* @ param string $order_id order ID
* @ param string $id refund ID
* @ return WP_Error | array error or deleted message
*/
public function delete_order_refund ( $order_id , $id ) {
$order_id = $this -> validate_request ( $order_id , 'shop_order' , 'delete' );
if ( is_wp_error ( $order_id ) ) {
return $order_id ;
}
// Validate refund ID
$id = absint ( $id );
if ( empty ( $id ) ) {
return new WP_Error ( 'woocommerce_api_invalid_order_refund_id' , __ ( 'Invalid order refund ID' , 'woocommerce' ), array ( 'status' => 400 ) );
}
// Ensure refund ID is valid
$refund = get_post ( $id );
if ( ! $refund ) {
return new WP_Error ( 'woocommerce_api_invalid_order_refund_id' , __ ( 'An order refund with the provided ID could not be found' , 'woocommerce' ), array ( 'status' => 404 ) );
}
// Ensure refund ID is associated with given order
if ( $refund -> post_parent != $order_id ) {
return new WP_Error ( 'woocommerce_api_invalid_order_refund_id' , __ ( 'The order refund ID provided is not associated with the order' , 'woocommerce' ), array ( 'status' => 400 ) );
}
wc_delete_shop_order_transients ( $order_id );
do_action ( 'woocommerce_api_delete_order_refund' , $refund -> ID , $order_id , $this );
return $this -> delete ( $refund -> ID , 'order' , true );
2014-08-15 18:28:19 +00:00
}
2013-11-04 06:36:31 +00:00
}