2016-02-17 19:29:09 +00:00
< ? php
/**
* REST API Taxes controller
*
* Handles requests to the / taxes endpoint .
*
* @ author WooThemes
* @ category API
* @ package WooCommerce / API
* @ since 2.6 . 0
*/
if ( ! defined ( 'ABSPATH' ) ) {
exit ;
}
/**
* REST API Taxes controller class .
*
* @ package WooCommerce / API
2016-05-09 21:16:48 +00:00
* @ extends WC_REST_Controller
2016-02-17 19:29:09 +00:00
*/
2016-05-09 21:16:48 +00:00
class WC_REST_Taxes_Controller extends WC_REST_Controller {
2016-02-17 19:29:09 +00:00
2016-03-07 18:36:17 +00:00
/**
* Endpoint namespace .
*
* @ var string
*/
2016-03-31 18:25:31 +00:00
protected $namespace = 'wc/v1' ;
2016-03-07 18:36:17 +00:00
2016-02-17 19:29:09 +00:00
/**
* Route base .
*
* @ var string
*/
2016-02-22 18:49:38 +00:00
protected $rest_base = 'taxes' ;
2016-02-17 19:29:09 +00:00
/**
2016-03-09 07:47:52 +00:00
* Register the routes for taxes .
2016-02-17 19:29:09 +00:00
*/
public function register_routes () {
2016-03-08 22:51:36 +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' => $this -> get_endpoint_args_for_item_schema ( WP_REST_Server :: CREATABLE ),
),
'schema' => array ( $this , 'get_public_item_schema' ),
) );
2016-02-17 19:29:09 +00:00
2016-03-08 22:51:36 +00:00
register_rest_route ( $this -> namespace , '/' . $this -> rest_base . '/(?P<id>[\d]+)' , array (
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' ) ),
),
),
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 ,
'description' => __ ( 'Required to be true, as resource does not support trashing.' , 'woocommerce' ),
),
),
),
'schema' => array ( $this , 'get_public_item_schema' ),
) );
2016-05-04 20:14:23 +00:00
2016-05-09 21:16:48 +00:00
register_rest_route ( $this -> namespace , '/' . $this -> rest_base . '/batch' , array (
2016-05-04 20:14:23 +00:00
array (
'methods' => WP_REST_Server :: EDITABLE ,
2016-05-09 21:16:48 +00:00
'callback' => array ( $this , 'batch_items' ),
'permission_callback' => array ( $this , 'batch_items_permissions_check' ),
2016-05-04 20:14:23 +00:00
'args' => $this -> get_endpoint_args_for_item_schema ( WP_REST_Server :: EDITABLE ),
),
2016-05-09 21:16:48 +00:00
'schema' => array ( $this , 'get_public_batch_schema' ),
2016-05-04 20:14:23 +00:00
) );
2016-03-08 22:51:36 +00:00
}
2016-03-09 04:51:36 +00:00
/**
* Check whether a given request has permission to read taxes .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_Error | boolean
*/
public function get_items_permissions_check ( $request ) {
2016-03-30 17:33:33 +00:00
if ( ! wc_rest_check_manager_permissions ( 'settings' , 'read' ) ) {
2016-06-05 22:43:23 +00:00
return new WP_Error ( 'woocommerce_rest_cannot_view' , __ ( 'Sorry, you cannot list resources.' , 'woocommerce' ), array ( 'status' => rest_authorization_required_code () ) );
2016-03-09 04:51:36 +00:00
}
return true ;
}
2016-03-09 05:21:44 +00:00
/**
* Check if a given request has access create taxes .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return boolean
*/
public function create_item_permissions_check ( $request ) {
2016-03-30 17:33:33 +00:00
if ( ! wc_rest_check_manager_permissions ( 'settings' , 'create' ) ) {
2016-03-31 19:03:59 +00:00
return new WP_Error ( 'woocommerce_rest_cannot_create' , __ ( 'Sorry, you are not allowed to create resources.' , 'woocommerce' ), array ( 'status' => rest_authorization_required_code () ) );
2016-03-09 05:21:44 +00:00
}
return true ;
}
2016-03-09 04:12:21 +00:00
/**
* Check if a given request has access to read a tax .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_Error | boolean
*/
public function get_item_permissions_check ( $request ) {
2016-03-30 17:33:33 +00:00
if ( ! wc_rest_check_manager_permissions ( 'settings' , 'read' ) ) {
2016-03-09 07:56:35 +00:00
return new WP_Error ( 'woocommerce_rest_cannot_view' , __ ( 'Sorry, you cannot view this resource.' , 'woocommerce' ), array ( 'status' => rest_authorization_required_code () ) );
2016-03-09 04:12:21 +00:00
}
return true ;
}
2016-03-09 06:34:41 +00:00
/**
2016-03-09 07:38:21 +00:00
* Check if a given request has access update a tax .
2016-03-09 06:34:41 +00:00
*
* @ param WP_REST_Request $request Full details about the request .
* @ return boolean
*/
public function update_item_permissions_check ( $request ) {
2016-03-30 17:33:33 +00:00
if ( ! wc_rest_check_manager_permissions ( 'settings' , 'edit' ) ) {
2016-03-31 19:03:59 +00:00
return new WP_Error ( 'woocommerce_rest_cannot_edit' , __ ( 'Sorry, you are not allowed to edit this resource.' , 'woocommerce' ), array ( 'status' => rest_authorization_required_code () ) );
2016-03-09 06:34:41 +00:00
}
return true ;
}
2016-03-09 07:38:21 +00:00
/**
* Check if a given request has access delete a tax .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return boolean
*/
public function delete_item_permissions_check ( $request ) {
2016-03-30 17:33:33 +00:00
if ( ! wc_rest_check_manager_permissions ( 'settings' , 'delete' ) ) {
2016-03-09 07:56:35 +00:00
return new WP_Error ( 'woocommerce_rest_cannot_delete' , __ ( 'Sorry, you are not allowed to delete this resource.' , 'woocommerce' ), array ( 'status' => rest_authorization_required_code () ) );
2016-03-09 07:38:21 +00:00
}
return true ;
}
2016-05-09 21:16:48 +00:00
/**
* Check if a given request has access batch create , update and delete items .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return boolean
*/
public function batch_items_permissions_check ( $request ) {
if ( ! wc_rest_check_manager_permissions ( 'settings' , 'batch' ) ) {
2016-08-08 21:52:46 +00:00
return new WP_Error ( 'woocommerce_rest_cannot_batch' , __ ( 'Sorry, you are not allowed to batch manipulate this resource.' , 'woocommerce' ), array ( 'status' => rest_authorization_required_code () ) );
2016-05-09 21:16:48 +00:00
}
return true ;
}
2016-03-09 04:51:36 +00:00
/**
2016-03-09 05:21:44 +00:00
* Get all taxes .
2016-03-09 04:51:36 +00:00
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_Error | WP_REST_Response
*/
public function get_items ( $request ) {
global $wpdb ;
$prepared_args = array ();
$prepared_args [ 'exclude' ] = $request [ 'exclude' ];
$prepared_args [ 'include' ] = $request [ 'include' ];
$prepared_args [ 'order' ] = $request [ 'order' ];
$prepared_args [ 'number' ] = $request [ 'per_page' ];
if ( ! empty ( $request [ 'offset' ] ) ) {
$prepared_args [ 'offset' ] = $request [ 'offset' ];
} else {
$prepared_args [ 'offset' ] = ( $request [ 'page' ] - 1 ) * $prepared_args [ 'number' ];
}
$orderby_possibles = array (
'id' => 'tax_rate_id' ,
'order' => 'tax_rate_order' ,
);
$prepared_args [ 'orderby' ] = $orderby_possibles [ $request [ 'orderby' ] ];
$prepared_args [ 'class' ] = $request [ 'class' ];
/**
* Filter arguments , before passing to $wpdb -> get_results (), when querying taxes via the REST API .
*
* @ param array $prepared_args Array of arguments for $wpdb -> get_results () .
* @ param WP_REST_Request $request The current request .
*/
$prepared_args = apply_filters ( 'woocommerce_rest_tax_query' , $prepared_args , $request );
$query = "
SELECT *
FROM { $wpdb -> prefix } woocommerce_tax_rates
WHERE 1 = 1
" ;
// Filter by tax class.
if ( ! empty ( $prepared_args [ 'class' ] ) ) {
$class = 'standard' !== $prepared_args [ 'class' ] ? sanitize_title ( $prepared_args [ 'class' ] ) : '' ;
$query .= " AND tax_rate_class = ' $class ' " ;
}
// Order tax rates.
$order_by = sprintf ( ' ORDER BY %s' , sanitize_key ( $prepared_args [ 'orderby' ] ) );
// Pagination.
$pagination = sprintf ( ' LIMIT %d, %d' , $prepared_args [ 'offset' ], $prepared_args [ 'number' ] );
// Query taxes.
$results = $wpdb -> get_results ( $query . $order_by . $pagination );
$taxes = array ();
foreach ( $results as $tax ) {
$data = $this -> prepare_item_for_response ( $tax , $request );
$taxes [] = $this -> prepare_response_for_collection ( $data );
}
$response = rest_ensure_response ( $taxes );
// Store pagation values for headers then unset for count query.
$per_page = ( int ) $prepared_args [ 'number' ];
$page = ceil ( ( ( ( int ) $prepared_args [ 'offset' ] ) / $per_page ) + 1 );
// Query only for ids.
$wpdb -> get_results ( str_replace ( 'SELECT *' , 'SELECT tax_rate_id' , $query ) );
// Calcule totals.
$total_taxes = ( int ) $wpdb -> num_rows ;
$response -> header ( 'X-WP-Total' , ( int ) $total_taxes );
$max_pages = ceil ( $total_taxes / $per_page );
$response -> header ( 'X-WP-TotalPages' , ( int ) $max_pages );
$base = add_query_arg ( $request -> get_query_params (), rest_url ( sprintf ( '/%s/%s' , $this -> namespace , $this -> rest_base ) ) );
if ( $page > 1 ) {
$prev_page = $page - 1 ;
if ( $prev_page > $max_pages ) {
$prev_page = $max_pages ;
}
$prev_link = add_query_arg ( 'page' , $prev_page , $base );
$response -> link_header ( 'prev' , $prev_link );
}
if ( $max_pages > $page ) {
$next_page = $page + 1 ;
$next_link = add_query_arg ( 'page' , $next_page , $base );
$response -> link_header ( 'next' , $next_link );
}
return $response ;
}
2016-03-09 05:21:44 +00:00
/**
2016-05-05 10:19:35 +00:00
* Take tax data from the request and return the updated or newly created rate .
2016-05-05 15:28:53 +00:00
*
2016-05-05 10:19:35 +00:00
* @ todo Replace with CRUD in 2.7 . 0
2016-05-05 15:28:53 +00:00
* @ param WP_REST_Request $request Full details about the request .
2016-05-05 16:56:32 +00:00
* @ param stdClass | null $current Existing tax object .
2016-05-05 15:28:53 +00:00
* @ return stdClass
2016-03-09 05:21:44 +00:00
*/
2016-05-05 16:56:32 +00:00
protected function create_or_update_tax ( $request , $current = null ) {
2016-05-05 10:19:35 +00:00
$id = absint ( isset ( $request [ 'id' ] ) ? $request [ 'id' ] : 0 );
$data = array ();
2016-05-05 15:28:53 +00:00
$fields = array (
2016-05-05 10:19:35 +00:00
'tax_rate_country' ,
'tax_rate_state' ,
'tax_rate' ,
'tax_rate_name' ,
'tax_rate_priority' ,
'tax_rate_compound' ,
'tax_rate_shipping' ,
'tax_rate_order' ,
'tax_rate_class' ,
2016-03-09 05:21:44 +00:00
);
2016-05-05 12:44:48 +00:00
foreach ( $fields as $field ) {
2016-05-05 15:28:53 +00:00
// Keys via API differ from the stored names returned by _get_tax_rate.
2016-05-05 12:44:48 +00:00
$key = 'tax_rate' === $field ? 'rate' : str_replace ( 'tax_rate_' , '' , $field );
2016-05-05 10:19:35 +00:00
// Remove data that was not posted.
if ( ! isset ( $request [ $key ] ) ) {
continue ;
}
// Test new data against current data.
2016-05-05 16:56:32 +00:00
if ( $current && $current -> $field === $request [ $key ] ) {
2016-05-05 10:19:35 +00:00
continue ;
}
2016-05-05 15:28:53 +00:00
// Add to data array.
2016-05-05 10:19:35 +00:00
switch ( $key ) {
case 'tax_rate_priority' :
case 'tax_rate_compound' :
case 'tax_rate_shipping' :
case 'tax_rate_order' :
2016-05-05 12:44:48 +00:00
$data [ $field ] = absint ( $request [ $key ] );
2016-05-05 10:19:35 +00:00
break ;
case 'tax_rate_class' :
2016-05-05 12:44:48 +00:00
$data [ $field ] = 'standard' !== $request [ 'tax_rate_class' ] ? $request [ 'tax_rate_class' ] : '' ;
2016-05-05 10:19:35 +00:00
break ;
default :
2016-05-05 12:44:48 +00:00
$data [ $field ] = wc_clean ( $request [ $key ] );
2016-05-05 10:19:35 +00:00
break ;
}
}
if ( $id ) {
WC_Tax :: _update_tax_rate ( $id , $data );
} else {
$id = WC_Tax :: _insert_tax_rate ( $data );
}
2016-03-09 05:21:44 +00:00
// Add locales.
if ( ! empty ( $request [ 'postcode' ] ) ) {
WC_Tax :: _update_tax_rate_postcodes ( $id , wc_clean ( $request [ 'postcode' ] ) );
}
if ( ! empty ( $request [ 'city' ] ) ) {
WC_Tax :: _update_tax_rate_cities ( $id , wc_clean ( $request [ 'city' ] ) );
}
2016-05-05 10:19:35 +00:00
return WC_Tax :: _get_tax_rate ( $id , OBJECT );
}
/**
* Create a single tax .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_Error | WP_REST_Response
*/
public function create_item ( $request ) {
if ( ! empty ( $request [ 'id' ] ) ) {
return new WP_Error ( 'woocommerce_rest_tax_exists' , __ ( 'Cannot create existing resource.' , 'woocommerce' ), array ( 'status' => 400 ) );
}
$tax = $this -> create_or_update_tax ( $request );
2016-03-09 05:21:44 +00:00
$this -> update_additional_fields_for_object ( $tax , $request );
/**
* Fires after a tax is created or updated via the REST API .
*
* @ param stdClass $tax Data used to create the tax .
* @ param WP_REST_Request $request Request object .
* @ param boolean $creating True when creating tax , false when updating tax .
*/
do_action ( 'woocommerce_rest_insert_tax' , $tax , $request , true );
$request -> set_param ( 'context' , 'edit' );
$response = $this -> prepare_item_for_response ( $tax , $request );
$response = rest_ensure_response ( $response );
$response -> set_status ( 201 );
2016-05-05 16:34:28 +00:00
$response -> header ( 'Location' , rest_url ( sprintf ( '/%s/%s/%d' , $this -> namespace , $this -> rest_base , $tax -> tax_rate_id ) ) );
2016-03-09 05:21:44 +00:00
return $response ;
}
2016-03-09 04:12:21 +00:00
/**
* Get a single tax .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_Error | WP_REST_Response
*/
public function get_item ( $request ) {
2016-05-05 15:28:53 +00:00
$id = ( int ) $request [ 'id' ];
2016-03-09 04:12:21 +00:00
$tax_obj = WC_Tax :: _get_tax_rate ( $id , OBJECT );
if ( empty ( $id ) || empty ( $tax_obj ) ) {
2016-07-26 13:47:04 +00:00
return new WP_Error ( 'woocommerce_rest_invalid_id' , __ ( 'Invalid resource ID.' , 'woocommerce' ), array ( 'status' => 404 ) );
2016-03-09 04:12:21 +00:00
}
2016-05-05 15:28:53 +00:00
$tax = $this -> prepare_item_for_response ( $tax_obj , $request );
2016-03-09 04:12:21 +00:00
$response = rest_ensure_response ( $tax );
return $response ;
}
2016-03-09 06:34:41 +00:00
/**
* Update a single tax .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_Error | WP_REST_Response
*/
public function update_item ( $request ) {
2016-05-05 16:56:32 +00:00
$id = ( int ) $request [ 'id' ];
2016-05-05 16:58:28 +00:00
$tax_obj = WC_Tax :: _get_tax_rate ( $id , OBJECT );
if ( empty ( $id ) || empty ( $tax_obj ) ) {
2016-07-26 13:47:04 +00:00
return new WP_Error ( 'woocommerce_rest_invalid_id' , __ ( 'Invalid resource ID.' , 'woocommerce' ), array ( 'status' => 404 ) );
2016-05-05 16:56:32 +00:00
}
2016-05-05 16:58:28 +00:00
$tax = $this -> create_or_update_tax ( $request , $tax_obj );
2016-03-09 06:34:41 +00:00
$this -> update_additional_fields_for_object ( $tax , $request );
/**
* Fires after a tax is created or updated via the REST API .
*
* @ param stdClass $tax Data used to create the tax .
* @ param WP_REST_Request $request Request object .
* @ param boolean $creating True when creating tax , false when updating tax .
*/
do_action ( 'woocommerce_rest_insert_tax' , $tax , $request , false );
$request -> set_param ( 'context' , 'edit' );
$response = $this -> prepare_item_for_response ( $tax , $request );
$response = rest_ensure_response ( $response );
return $response ;
}
2016-03-09 07:38:21 +00:00
/**
* Delete a single tax .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_Error | WP_REST_Response
*/
public function delete_item ( $request ) {
global $wpdb ;
$id = ( int ) $request [ 'id' ];
$force = isset ( $request [ 'force' ] ) ? ( bool ) $request [ 'force' ] : false ;
// We don't support trashing for this type, error out.
if ( ! $force ) {
return new WP_Error ( 'woocommerce_rest_trash_not_supported' , __ ( 'Taxes do not support trashing.' , 'woocommerce' ), array ( 'status' => 501 ) );
}
$tax = WC_Tax :: _get_tax_rate ( $id , OBJECT );
if ( empty ( $id ) || empty ( $tax ) ) {
2016-07-26 13:47:04 +00:00
return new WP_Error ( 'woocommerce_rest_invalid_id' , __ ( 'Invalid resource ID.' , 'woocommerce' ), array ( 'status' => 400 ) );
2016-03-09 07:38:21 +00:00
}
$request -> set_param ( 'context' , 'edit' );
$response = $this -> prepare_item_for_response ( $tax , $request );
WC_Tax :: _delete_tax_rate ( $id );
if ( 0 === $wpdb -> rows_affected ) {
return new WP_Error ( 'woocommerce_rest_cannot_delete' , __ ( 'The resource cannot be deleted.' , 'woocommerce' ), array ( 'status' => 500 ) );
}
/**
* Fires after a tax is deleted via the REST API .
*
* @ param stdClass $tax The tax data .
* @ param WP_REST_Response $response The response returned from the API .
* @ param WP_REST_Request $request The request sent to the API .
*/
do_action ( 'woocommerce_rest_delete_tax' , $tax , $response , $request );
return $response ;
}
2016-03-09 04:12:21 +00:00
/**
* Prepare a single tax output for response .
*
* @ param stdClass $tax Tax object .
* @ param WP_REST_Request $request Request object .
* @ return WP_REST_Response $response Response data .
*/
public function prepare_item_for_response ( $tax , $request ) {
global $wpdb ;
$id = ( int ) $tax -> tax_rate_id ;
$data = array (
'id' => $id ,
'country' => $tax -> tax_rate_country ,
'state' => $tax -> tax_rate_state ,
'postcode' => '' ,
'city' => '' ,
'rate' => $tax -> tax_rate ,
'name' => $tax -> tax_rate_name ,
'priority' => ( int ) $tax -> tax_rate_priority ,
'compound' => ( bool ) $tax -> tax_rate_compound ,
'shipping' => ( bool ) $tax -> tax_rate_shipping ,
'order' => ( int ) $tax -> tax_rate_order ,
'class' => $tax -> tax_rate_class ? $tax -> tax_rate_class : 'standard' ,
);
// Get locales from a tax rate.
$locales = $wpdb -> get_results ( $wpdb -> prepare ( "
SELECT location_code , location_type
FROM { $wpdb -> prefix } woocommerce_tax_rate_locations
WHERE tax_rate_id = % d
" , $id ) );
if ( ! is_wp_error ( $tax ) && ! is_null ( $tax ) ) {
foreach ( $locales as $locale ) {
$data [ $locale -> location_type ] = $locale -> location_code ;
}
}
$context = ! empty ( $request [ 'context' ] ) ? $request [ 'context' ] : 'view' ;
$data = $this -> add_additional_fields_to_object ( $data , $request );
$data = $this -> filter_response_by_context ( $data , $context );
// Wrap the data in a response object.
$response = rest_ensure_response ( $data );
$response -> add_links ( $this -> prepare_links ( $tax ) );
/**
* Filter tax object returned from the REST API .
*
* @ param WP_REST_Response $response The response object .
* @ param stdClass $tax Tax object used to create response .
* @ param WP_REST_Request $request Request object .
*/
return apply_filters ( 'woocommerce_rest_prepare_tax' , $response , $tax , $request );
}
/**
* Prepare links for the request .
*
* @ param stdClass $tax Tax object .
2016-03-09 07:56:35 +00:00
* @ return array Links for the given tax .
2016-03-09 04:12:21 +00:00
*/
protected function prepare_links ( $tax ) {
$links = array (
'self' => array (
'href' => rest_url ( sprintf ( '/%s/%s/%d' , $this -> namespace , $this -> rest_base , $tax -> tax_rate_id ) ),
),
'collection' => array (
'href' => rest_url ( sprintf ( '/%s/%s' , $this -> namespace , $this -> rest_base ) ),
),
);
return $links ;
}
2016-03-08 22:51:36 +00:00
/**
2016-03-15 19:37:10 +00:00
* Get the Taxes schema , conforming to JSON Schema .
2016-03-08 22:51:36 +00:00
*
* @ return array
*/
public function get_item_schema () {
$schema = array (
'$schema' => 'http://json-schema.org/draft-04/schema#' ,
2016-03-09 04:12:21 +00:00
'title' => 'tax' ,
2016-03-08 22:51:36 +00:00
'type' => 'object' ,
'properties' => array (
'id' => array (
'description' => __ ( 'Unique identifier for the resource.' , 'woocommerce' ),
'type' => 'integer' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'country' => array (
'description' => __ ( 'Country ISO 3166 code.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'state' => array (
'description' => __ ( 'State code.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'postcode' => array (
'description' => __ ( 'Postcode/ZIP.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'city' => array (
'description' => __ ( 'City name.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'rate' => array (
'description' => __ ( 'Tax rate.' , 'woocommerce' ),
2016-06-20 20:20:12 +00:00
'type' => 'string' ,
2016-03-08 22:51:36 +00:00
'context' => array ( 'view' , 'edit' ),
),
'name' => array (
'description' => __ ( 'Tax rate name.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'priority' => array (
2016-04-04 19:17:41 +00:00
'description' => __ ( 'Tax priority.' , 'woocommerce' ),
2016-03-08 22:51:36 +00:00
'type' => 'integer' ,
'default' => 1 ,
'context' => array ( 'view' , 'edit' ),
),
'compound' => array (
'description' => __ ( 'Whether or not this is a compound rate.' , 'woocommerce' ),
'type' => 'boolean' ,
'default' => false ,
'context' => array ( 'view' , 'edit' ),
),
'shipping' => array (
'description' => __ ( 'Whether or not this tax rate also gets applied to shipping.' , 'woocommerce' ),
'type' => 'boolean' ,
'default' => true ,
'context' => array ( 'view' , 'edit' ),
),
'order' => array (
'description' => __ ( 'Indicates the order that will appear in queries.' , 'woocommerce' ),
'type' => 'integer' ,
'context' => array ( 'view' , 'edit' ),
),
'class' => array (
'description' => __ ( 'Tax class.' , 'woocommerce' ),
'type' => 'string' ,
'default' => 'standard' ,
'enum' => array_merge ( array ( 'standard' ), array_map ( 'sanitize_title' , WC_Tax :: get_tax_classes () ) ),
'context' => array ( 'view' , 'edit' ),
),
),
);
return $this -> add_additional_fields_schema ( $schema );
2016-02-17 19:29:09 +00:00
}
2016-03-09 04:12:21 +00:00
/**
* Get the query params for collections .
*
* @ return array
*/
public function get_collection_params () {
2016-03-09 04:51:36 +00:00
$params = parent :: get_collection_params ();
2016-03-09 04:12:21 +00:00
2016-03-09 04:51:36 +00:00
$params [ 'context' ][ 'default' ] = 'view' ;
2016-03-09 04:12:21 +00:00
2016-03-09 04:51:36 +00:00
$params [ 'exclude' ] = array (
2016-07-26 13:47:04 +00:00
'description' => __ ( 'Ensure result set excludes specific IDs.' , 'woocommerce' ),
2016-03-09 04:12:21 +00:00
'type' => 'array' ,
'default' => array (),
'sanitize_callback' => 'wp_parse_id_list' ,
);
2016-03-09 04:51:36 +00:00
$params [ 'include' ] = array (
2016-07-26 13:47:04 +00:00
'description' => __ ( 'Limit result set to specific IDs.' , 'woocommerce' ),
2016-03-09 04:12:21 +00:00
'type' => 'array' ,
'default' => array (),
'sanitize_callback' => 'wp_parse_id_list' ,
);
2016-03-09 04:51:36 +00:00
$params [ 'offset' ] = array (
2016-03-09 04:12:21 +00:00
'description' => __ ( 'Offset the result set by a specific number of items.' , 'woocommerce' ),
'type' => 'integer' ,
'sanitize_callback' => 'absint' ,
'validate_callback' => 'rest_validate_request_arg' ,
);
2016-03-09 04:51:36 +00:00
$params [ 'order' ] = array (
2016-03-09 04:12:21 +00:00
'default' => 'asc' ,
'description' => __ ( 'Order sort attribute ascending or descending.' , 'woocommerce' ),
'enum' => array ( 'asc' , 'desc' ),
'sanitize_callback' => 'sanitize_key' ,
'type' => 'string' ,
'validate_callback' => 'rest_validate_request_arg' ,
);
2016-03-09 04:51:36 +00:00
$params [ 'orderby' ] = array (
'default' => 'order' ,
2016-03-09 04:12:21 +00:00
'description' => __ ( 'Sort collection by object attribute.' , 'woocommerce' ),
'enum' => array (
'id' ,
2016-03-09 04:51:36 +00:00
'order' ,
2016-03-09 04:12:21 +00:00
),
'sanitize_callback' => 'sanitize_key' ,
'type' => 'string' ,
'validate_callback' => 'rest_validate_request_arg' ,
);
2016-03-09 04:51:36 +00:00
$params [ 'class' ] = array (
2016-03-09 04:12:21 +00:00
'description' => __ ( 'Sort by tax class.' , 'woocommerce' ),
'enum' => array_merge ( array ( 'standard' ), array_map ( 'sanitize_title' , WC_Tax :: get_tax_classes () ) ),
2016-03-09 04:51:36 +00:00
'sanitize_callback' => 'sanitize_title' ,
2016-03-09 04:12:21 +00:00
'type' => 'string' ,
'validate_callback' => 'rest_validate_request_arg' ,
);
2016-03-09 04:51:36 +00:00
return $params ;
2016-03-09 04:12:21 +00:00
}
2016-02-17 19:29:09 +00:00
}