2014-07-12 21:49:43 +00:00
< ? php
/**
* WooCommerce API Coupons Class
*
* Handles requests to the / coupons endpoint
*
* @ author WooThemes
* @ category API
* @ package WooCommerce / API
* @ since 2.1
* @ version 2.1
*/
2014-09-20 19:27:54 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
exit ; // Exit if accessed directly
}
2014-07-12 21:49:43 +00:00
class WC_API_Coupons extends WC_API_Resource {
/** @var string $base the route base */
protected $base = '/coupons' ;
/**
* Register the routes for this class
*
* GET / coupons
* GET / coupons / count
* GET / coupons /< id >
*
* @ since 2.1
* @ param array $routes
* @ return array
*/
public function register_routes ( $routes ) {
# GET /coupons
$routes [ $this -> base ] = array (
array ( array ( $this , 'get_coupons' ), WC_API_Server :: READABLE ),
);
# GET /coupons/count
2016-08-27 03:11:30 +00:00
$routes [ $this -> base . '/count' ] = array (
2014-07-12 21:49:43 +00:00
array ( array ( $this , 'get_coupons_count' ), WC_API_Server :: READABLE ),
);
# GET /coupons/<id>
$routes [ $this -> base . '/(?P<id>\d+)' ] = array (
array ( array ( $this , 'get_coupon' ), WC_API_Server :: READABLE ),
);
# GET /coupons/code/<code>, note that coupon codes can contain spaces, dashes and underscores
$routes [ $this -> base . '/code/(?P<code>\w[\w\s\-]*)' ] = array (
array ( array ( $this , 'get_coupon_by_code' ), WC_API_Server :: READABLE ),
);
return $routes ;
}
/**
* Get all coupons
*
* @ since 2.1
* @ param string $fields
* @ param array $filter
* @ param int $page
* @ return array
*/
public function get_coupons ( $fields = null , $filter = array (), $page = 1 ) {
$filter [ 'page' ] = $page ;
$query = $this -> query_coupons ( $filter );
$coupons = array ();
2016-08-27 04:23:02 +00:00
foreach ( $query -> posts as $coupon_id ) {
2014-07-12 21:49:43 +00:00
2017-03-07 20:24:24 +00:00
if ( ! $this -> is_readable ( $coupon_id ) ) {
2014-07-12 21:49:43 +00:00
continue ;
2017-03-07 20:24:24 +00:00
}
2014-07-12 21:49:43 +00:00
$coupons [] = current ( $this -> get_coupon ( $coupon_id , $fields ) );
}
$this -> server -> add_pagination_headers ( $query );
return array ( 'coupons' => $coupons );
}
/**
* Get the coupon for the given ID
*
* @ since 2.1
2017-05-12 08:52:26 +00:00
*
2014-07-12 21:49:43 +00:00
* @ param int $id the coupon ID
* @ param string $fields fields to include in response
2017-05-12 08:52:26 +00:00
*
2014-07-12 21:49:43 +00:00
* @ return array | WP_Error
2017-05-12 08:52:26 +00:00
* @ throws WC_API_Exception
2014-07-12 21:49:43 +00:00
*/
public function get_coupon ( $id , $fields = null ) {
$id = $this -> validate_request ( $id , 'shop_coupon' , 'read' );
2016-11-18 18:51:45 +00:00
if ( is_wp_error ( $id ) ) {
2014-07-12 21:49:43 +00:00
return $id ;
2016-11-18 18:51:45 +00:00
}
2014-07-12 21:49:43 +00:00
2016-11-18 18:51:45 +00:00
$coupon = new WC_Coupon ( $id );
2014-07-12 21:49:43 +00:00
2016-11-18 18:51:45 +00:00
if ( 0 === $coupon -> get_id () ) {
throw new WC_API_Exception ( 'woocommerce_api_invalid_coupon_id' , __ ( 'Invalid coupon ID' , 'woocommerce' ), 404 );
2016-08-23 23:00:30 +00:00
}
2014-07-12 21:49:43 +00:00
$coupon_data = array (
2016-02-23 16:01:40 +00:00
'id' => $coupon -> get_id (),
'code' => $coupon -> get_code (),
'type' => $coupon -> get_discount_type (),
2017-03-14 23:00:15 +00:00
'created_at' => $this -> server -> format_datetime ( $coupon -> get_date_created () ? $coupon -> get_date_created () -> getTimestamp () : 0 ), // API gives UTC times.
'updated_at' => $this -> server -> format_datetime ( $coupon -> get_date_modified () ? $coupon -> get_date_modified () -> getTimestamp () : 0 ), // API gives UTC times.
2016-02-23 16:01:40 +00:00
'amount' => wc_format_decimal ( $coupon -> get_amount (), 2 ),
2016-02-25 16:36:39 +00:00
'individual_use' => $coupon -> get_individual_use (),
2016-02-23 16:01:40 +00:00
'product_ids' => array_map ( 'absint' , ( array ) $coupon -> get_product_ids () ),
'exclude_product_ids' => array_map ( 'absint' , ( array ) $coupon -> get_excluded_product_ids () ),
2016-08-15 18:28:07 +00:00
'usage_limit' => $coupon -> get_usage_limit () ? $coupon -> get_usage_limit () : null ,
'usage_limit_per_user' => $coupon -> get_usage_limit_per_user () ? $coupon -> get_usage_limit_per_user () : null ,
2016-02-23 16:01:40 +00:00
'limit_usage_to_x_items' => ( int ) $coupon -> get_limit_usage_to_x_items (),
'usage_count' => ( int ) $coupon -> get_usage_count (),
2017-03-14 23:00:15 +00:00
'expiry_date' => $this -> server -> format_datetime ( $coupon -> get_date_expires () ? $coupon -> get_date_expires () -> getTimestamp () : 0 ), // API gives UTC times.
2016-02-25 16:36:39 +00:00
'enable_free_shipping' => $coupon -> get_free_shipping (),
2016-02-23 16:01:40 +00:00
'product_category_ids' => array_map ( 'absint' , ( array ) $coupon -> get_product_categories () ),
'exclude_product_category_ids' => array_map ( 'absint' , ( array ) $coupon -> get_excluded_product_categories () ),
2016-02-25 16:36:39 +00:00
'exclude_sale_items' => $coupon -> get_exclude_sale_items (),
2016-02-23 16:01:40 +00:00
'minimum_amount' => wc_format_decimal ( $coupon -> get_minimum_amount (), 2 ),
'customer_emails' => $coupon -> get_email_restrictions (),
2014-07-12 21:49:43 +00:00
);
return array ( 'coupon' => apply_filters ( 'woocommerce_api_coupon_response' , $coupon_data , $coupon , $fields , $this -> server ) );
}
/**
* Get the total number of coupons
*
* @ since 2.1
2017-05-15 11:50:52 +00:00
*
2014-07-12 21:49:43 +00:00
* @ param array $filter
2017-05-15 11:50:52 +00:00
*
* @ return array | WP_Error
2014-07-12 21:49:43 +00:00
*/
public function get_coupons_count ( $filter = array () ) {
$query = $this -> query_coupons ( $filter );
2017-03-07 20:24:24 +00:00
if ( ! current_user_can ( 'read_private_shop_coupons' ) ) {
2014-07-12 21:49:43 +00:00
return new WP_Error ( 'woocommerce_api_user_cannot_read_coupons_count' , __ ( 'You do not have permission to read the coupons count' , 'woocommerce' ), array ( 'status' => 401 ) );
2017-03-07 20:24:24 +00:00
}
2014-07-12 21:49:43 +00:00
return array ( 'count' => ( int ) $query -> found_posts );
}
/**
* Get the coupon for the given code
*
* @ since 2.1
* @ param string $code the coupon code
* @ param string $fields fields to include in response
* @ return int | WP_Error
*/
public function get_coupon_by_code ( $code , $fields = null ) {
global $wpdb ;
2016-03-07 13:07:59 +00:00
$id = $wpdb -> get_var ( $wpdb -> prepare ( " SELECT id FROM $wpdb->posts WHERE post_title = %s AND post_type = 'shop_coupon' AND post_status = 'publish' ORDER BY post_date DESC LIMIT 1; " , $code ) );
2014-07-12 21:49:43 +00:00
2017-03-07 20:24:24 +00:00
if ( is_null ( $id ) ) {
2014-07-12 21:49:43 +00:00
return new WP_Error ( 'woocommerce_api_invalid_coupon_code' , __ ( 'Invalid coupon code' , 'woocommerce' ), array ( 'status' => 404 ) );
2017-03-07 20:24:24 +00:00
}
2014-07-12 21:49:43 +00:00
return $this -> get_coupon ( $id , $fields );
}
/**
* Create a coupon
*
* @ param array $data
* @ return array
*/
public function create_coupon ( $data ) {
return array ();
}
/**
* Edit a coupon
*
* @ param int $id the coupon ID
* @ param array $data
2017-05-15 11:50:52 +00:00
* @ return array | WP_Error
2014-07-12 21:49:43 +00:00
*/
public function edit_coupon ( $id , $data ) {
$id = $this -> validate_request ( $id , 'shop_coupon' , 'edit' );
2017-03-07 20:24:24 +00:00
if ( is_wp_error ( $id ) ) {
2014-07-12 21:49:43 +00:00
return $id ;
2017-03-07 20:24:24 +00:00
}
2014-07-12 21:49:43 +00:00
return $this -> get_coupon ( $id );
}
/**
* Delete a coupon
*
* @ param int $id the coupon ID
* @ param bool $force true to permanently delete coupon , false to move to trash
2017-05-15 11:50:52 +00:00
* @ return array | WP_Error
2014-07-12 21:49:43 +00:00
*/
public function delete_coupon ( $id , $force = false ) {
$id = $this -> validate_request ( $id , 'shop_coupon' , 'delete' );
2017-03-07 20:24:24 +00:00
if ( is_wp_error ( $id ) ) {
2014-07-12 21:49:43 +00:00
return $id ;
2017-03-07 20:24:24 +00:00
}
2014-07-12 21:49:43 +00:00
return $this -> delete ( $id , 'shop_coupon' , ( 'true' === $force ) );
}
/**
* Helper method to get coupon post objects
*
* @ since 2.1
* @ param array $args request arguments for filtering query
* @ return WP_Query
*/
private function query_coupons ( $args ) {
// set base query arguments
$query_args = array (
'fields' => 'ids' ,
'post_type' => 'shop_coupon' ,
'post_status' => 'publish' ,
);
$query_args = $this -> merge_query_args ( $query_args , $args );
return new WP_Query ( $query_args );
}
}