2016-08-25 18:48:17 +00:00
< ? php
/**
* REST API WC Shipping Methods controller
*
* Handles requests to the / shipping_methods endpoint .
*
* @ author WooThemes
* @ category API
* @ package WooCommerce / API
2017-03-15 16:36:53 +00:00
* @ since 3.0 . 0
2016-08-25 18:48:17 +00:00
*/
if ( ! defined ( 'ABSPATH' ) ) {
exit ;
}
/**
* @ package WooCommerce / API
* @ extends WC_REST_Controller
*/
class WC_REST_Shipping_Methods_Controller extends WC_REST_Controller {
/**
* Endpoint namespace .
*
* @ var string
*/
2017-02-09 17:06:13 +00:00
protected $namespace = 'wc/v2' ;
2016-08-25 18:48:17 +00:00
/**
* Route base .
*
* @ var string
*/
protected $rest_base = 'shipping_methods' ;
/**
* Register the route for / shipping_methods and / shipping_methods /< method >
*/
public function register_routes () {
2016-12-07 14:06:04 +00:00
register_rest_route ( $this -> namespace , '/' . $this -> rest_base , array (
2016-08-25 18:48:17 +00:00
array (
'methods' => WP_REST_Server :: READABLE ,
'callback' => array ( $this , 'get_items' ),
2016-12-07 14:06:04 +00:00
'permission_callback' => array ( $this , 'get_items_permissions_check' ),
2016-08-25 18:48:17 +00:00
'args' => $this -> get_collection_params (),
),
'schema' => array ( $this , 'get_public_item_schema' ),
) );
2016-12-07 14:06:04 +00:00
register_rest_route ( $this -> namespace , '/' . $this -> rest_base . '/(?P<id>[\w-]+)' , array (
2017-01-26 19:22:57 +00:00
'args' => array (
'id' => array (
'description' => __ ( 'Unique identifier for the resource.' , 'woocommerce' ),
'type' => 'string' ,
),
),
2016-08-25 18:48:17 +00:00
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' ) ),
),
),
'schema' => array ( $this , 'get_public_item_schema' ),
) );
}
2016-12-07 14:06:04 +00:00
/**
2016-08-31 21:16:52 +00:00
* Check whether a given request has permission to view shipping methods .
2016-08-25 18:48:17 +00:00
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_Error | boolean
*/
public function get_items_permissions_check ( $request ) {
2016-12-07 14:06:04 +00:00
if ( ! wc_rest_check_manager_permissions ( 'shipping_methods' , 'read' ) ) {
return new WP_Error ( 'woocommerce_rest_cannot_view' , __ ( 'Sorry, you cannot list resources.' , 'woocommerce' ), array ( 'status' => rest_authorization_required_code () ) );
2016-08-25 18:48:17 +00:00
}
return true ;
}
2016-12-07 14:06:04 +00:00
/**
2016-08-25 18:48:17 +00:00
* Check if a given request has access to read a shipping method .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_Error | boolean
*/
public function get_item_permissions_check ( $request ) {
if ( ! wc_rest_check_manager_permissions ( 'shipping_methods' , 'read' ) ) {
return new WP_Error ( 'woocommerce_rest_cannot_view' , __ ( 'Sorry, you cannot view this resource.' , 'woocommerce' ), array ( 'status' => rest_authorization_required_code () ) );
}
return true ;
}
2016-12-07 14:06:04 +00:00
/**
2016-08-25 18:48:17 +00:00
* Get shipping methods .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_Error | WP_REST_Response
*/
public function get_items ( $request ) {
2016-08-26 11:57:30 +00:00
$wc_shipping = WC_Shipping :: instance ();
$response = array ();
foreach ( $wc_shipping -> get_shipping_methods () as $id => $shipping_method ) {
$method = $this -> prepare_item_for_response ( $shipping_method , $request );
2016-08-25 18:48:17 +00:00
$method = $this -> prepare_response_for_collection ( $method );
$response [] = $method ;
2016-08-26 11:57:30 +00:00
}
return rest_ensure_response ( $response );
2016-08-25 18:48:17 +00:00
}
2016-12-07 14:06:04 +00:00
/**
* Get a single Shipping Method .
*
* @ param WP_REST_Request $request
* @ return WP_REST_Response | WP_Error
*/
public function get_item ( $request ) {
$wc_shipping = WC_Shipping :: instance ();
$methods = $wc_shipping -> get_shipping_methods ();
if ( empty ( $methods [ $request [ 'id' ] ] ) ) {
return new WP_Error ( 'woocommerce_rest_shipping_method_invalid' , __ ( 'Resource does not exist.' , 'woocommerce' ), array ( 'status' => 404 ) );
}
$method = $methods [ $request [ 'id' ] ];
$response = $this -> prepare_item_for_response ( $method , $request );
return rest_ensure_response ( $response );
}
/**
* Prepare a shipping method for response .
*
* @ param WC_Shipping_Method $method Shipping method object .
* @ param WP_REST_Request $request Request object .
* @ return WP_REST_Response $response Response data .
*/
public function prepare_item_for_response ( $method , $request ) {
$data = array (
'id' => $method -> id ,
'title' => $method -> method_title ,
'description' => $method -> method_description ,
);
$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 ( $method , $request ) );
/**
* Filter shipping methods object returned from the REST API .
*
* @ param WP_REST_Response $response The response object .
* @ param WC_Shipping_Method $method Shipping method object used to create response .
* @ param WP_REST_Request $request Request object .
*/
return apply_filters ( 'woocommerce_rest_prepare_shipping_method' , $response , $method , $request );
}
/**
2016-08-25 18:48:17 +00:00
* Prepare links for the request .
*
2016-08-31 21:16:52 +00:00
* @ param WC_Shipping_Method $method Shipping method object .
* @ param WP_REST_Request $request Request object .
* @ return array
2016-08-25 18:48:17 +00:00
*/
protected function prepare_links ( $method , $request ) {
$links = array (
'self' => array (
'href' => rest_url ( sprintf ( '/%s/%s/%s' , $this -> namespace , $this -> rest_base , $method -> id ) ),
),
'collection' => array (
'href' => rest_url ( sprintf ( '/%s/%s' , $this -> namespace , $this -> rest_base ) ),
),
);
return $links ;
}
2016-12-07 14:06:04 +00:00
/**
2016-08-25 18:48:17 +00:00
* Get the shipping method schema , conforming to JSON Schema .
*
* @ return array
*/
public function get_item_schema () {
$schema = array (
'$schema' => 'http://json-schema.org/draft-04/schema#' ,
'title' => 'shipping_method' ,
'type' => 'object' ,
'properties' => array (
2016-12-07 14:06:04 +00:00
'id' => array (
'description' => __ ( 'Method ID.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' ),
2017-03-23 20:59:50 +00:00
'readonly' => true ,
2016-12-07 14:06:04 +00:00
),
'title' => array (
'description' => __ ( 'Shipping method title.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' ),
2017-03-23 20:59:50 +00:00
'readonly' => true ,
2016-12-07 14:06:04 +00:00
),
'description' => array (
'description' => __ ( 'Shipping method description.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' ),
2017-03-23 20:59:50 +00:00
'readonly' => true ,
2016-12-07 14:06:04 +00:00
),
2016-08-25 18:48:17 +00:00
),
);
return $this -> add_additional_fields_schema ( $schema );
}
/**
* Get any query params needed .
*
* @ return array
*/
public function get_collection_params () {
return array (
'context' => $this -> get_context_param ( array ( 'default' => 'view' ) ),
);
}
}