2016-03-12 08:15:30 +00:00
< ? php
/**
* REST API Webhooks controller
*
* Handles requests to the / webhooks endpoint .
*
* @ author WooThemes
* @ category API
* @ package WooCommerce / API
* @ since 2.6 . 0
*/
if ( ! defined ( 'ABSPATH' ) ) {
exit ;
}
/**
* REST API Webhooks controller class .
*
* @ package WooCommerce / API
2016-03-15 19:56:55 +00:00
* @ extends WC_REST_Posts_Controller
2016-03-12 08:15:30 +00:00
*/
2016-03-15 19:56:55 +00:00
class WC_REST_Webhooks_Controller extends WC_REST_Posts_Controller {
2016-03-12 08:15:30 +00:00
/**
* Endpoint namespace .
*
* @ var string
*/
public $namespace = 'wc/v1' ;
/**
* Route base .
*
* @ var string
*/
protected $rest_base = 'webhooks' ;
2016-03-15 19:56:55 +00:00
/**
* Post type .
*
* @ var string
*/
protected $post_type = 'shop_webhook' ;
2016-03-12 08:15:30 +00:00
/**
* Register the routes for webhooks .
*/
public function register_routes () {
2016-03-15 19:37:10 +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-03-12 08:15:30 +00:00
2016-03-15 19:37:10 +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-03-15 19:38:50 +00:00
/**
* Check whether a given request has permission to read webhooks .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_Error | boolean
*/
public function get_items_permissions_check ( $request ) {
if ( ! current_user_can ( 'manage_woocommerce' ) ) {
return new WP_Error ( 'woocommerce_rest_cannot_view' , __ ( 'Sorry, you cannot list webhooks.' , 'woocommerce' ), array ( 'status' => rest_authorization_required_code () ) );
}
return true ;
}
/**
* Check if a given request has access create webhooks .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return boolean
*/
public function create_item_permissions_check ( $request ) {
if ( ! current_user_can ( 'manage_woocommerce' ) ) {
return new WP_Error ( 'woocommerce_rest_cannot_create' , __ ( 'Sorry, you are not allowed to create resource.' , 'woocommerce' ), array ( 'status' => rest_authorization_required_code () ) );
}
return true ;
}
/**
* Check if a given request has access to read a webhook .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_Error | boolean
*/
public function get_item_permissions_check ( $request ) {
if ( ! current_user_can ( 'manage_woocommerce' ) ) {
return new WP_Error ( 'woocommerce_rest_cannot_view' , __ ( 'Sorry, you cannot view this resource.' , 'woocommerce' ), array ( 'status' => rest_authorization_required_code () ) );
}
return true ;
}
/**
* Check if a given request has access update a webhook .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return boolean
*/
public function update_item_permissions_check ( $request ) {
if ( ! current_user_can ( 'manage_woocommerce' ) ) {
return new WP_Error ( 'woocommerce_rest_cannot_edit' , __ ( 'Sorry, you are not allowed to edit resource.' , 'woocommerce' ), array ( 'status' => rest_authorization_required_code () ) );
}
return true ;
}
/**
* Check if a given request has access delete a webhook .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return boolean
*/
public function delete_item_permissions_check ( $request ) {
if ( ! current_user_can ( 'manage_woocommerce' ) ) {
return new WP_Error ( 'woocommerce_rest_cannot_delete' , __ ( 'Sorry, you are not allowed to delete this resource.' , 'woocommerce' ), array ( 'status' => rest_authorization_required_code () ) );
}
return true ;
}
2016-03-15 19:56:55 +00:00
/**
* Prepare a single webhook output for response .
*
* @ param WP_Post $webhook Webhook object .
* @ param WP_REST_Request $request Request object .
* @ return WP_REST_Response $response Response data .
*/
public function prepare_item_for_response ( $post , $request ) {
$id = ( int ) $post -> ID ;
$webhook = new WC_Webhook ( $id );
$data = array (
'id' => $webhook -> id ,
'name' => $webhook -> get_name (),
'status' => $webhook -> get_status (),
'topic' => $webhook -> get_topic (),
'resource' => $webhook -> get_resource (),
'event' => $webhook -> get_event (),
'hooks' => $webhook -> get_hooks (),
'delivery_url' => $webhook -> get_delivery_url (),
'created_at' => wc_rest_api_prepare_date_response ( $webhook -> get_post_data () -> post_date_gmt ),
'updated_at' => wc_rest_api_prepare_date_response ( $webhook -> get_post_data () -> post_modified_gmt ),
);
$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 ( $post ) );
/**
* Filter webhook object returned from the REST API .
*
* @ param WP_REST_Response $response The response object .
* @ param WC_Webhook $webhook Webhook object used to create response .
* @ param WP_REST_Request $request Request object .
*/
return apply_filters ( 'woocommerce_rest_prepare_webhook' , $response , $webhook , $request );
}
2016-03-15 19:37:10 +00:00
/**
* Get the Webhook ' s schema , conforming to JSON Schema .
*
* @ return array
*/
public function get_item_schema () {
$schema = array (
'$schema' => 'http://json-schema.org/draft-04/schema#' ,
2016-03-15 19:38:50 +00:00
'title' => 'webhook' ,
2016-03-15 19:37:10 +00:00
'type' => 'object' ,
'properties' => array (
'id' => array (
'description' => __ ( 'Unique identifier for the resource.' , 'woocommerce' ),
'type' => 'integer' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'name' => array (
'description' => __ ( 'A friendly name for the webhook.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'status' => array (
'description' => __ ( 'Webhook status.' , 'woocommerce' ),
'type' => 'string' ,
'default' => 'active' ,
'enum' => array ( 'active' , 'paused' , 'disabled' ),
'context' => array ( 'view' , 'edit' ),
'arg_options' => array (
'sanitize_callback' => 'wc_is_webhook_valid_topic' ,
),
),
'topic' => array (
'description' => __ ( 'Webhook topic.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'resource' => array (
'description' => __ ( 'Webhook resource.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'event' => array (
'description' => __ ( 'Webhook event.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'hooks' => array (
'description' => __ ( 'WooCommerce action names associated with the webhook.' , 'woocommerce' ),
'type' => 'array' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'delivery_url' => array (
'description' => __ ( 'The URL where the webhook payload is delivered.' , 'woocommerce' ),
'type' => 'string' ,
'format' => 'uri' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'secret' => array (
'description' => __ ( " Secret key used to generate a hash of the delivered webhook and provided in the request headers. This will default to the current API user's consumer secret if not provided. " , 'woocommerce' ),
'type' => 'string' ,
'format' => 'uri' ,
'context' => array ( 'edit' ),
'writeonly' => true ,
),
'created_at' => array (
'description' => __ ( " The date the webhook was created, in the site's timezone. " , 'woocommerce' ),
'type' => 'date-time' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'updated_at' => array (
'description' => __ ( " The date the webhook was last modified, in the site's timezone. " , 'woocommerce' ),
'type' => 'date-time' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
),
);
return $this -> add_additional_fields_schema ( $schema );
2016-03-12 08:15:30 +00:00
}
}