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
2017-02-16 20:05:06 +00:00
* @ extends WC_REST_Webhooks_V1_Controller
2016-03-12 08:15:30 +00:00
*/
2017-02-11 14:51:41 +00:00
class WC_REST_Webhooks_Controller extends WC_REST_Webhooks_V1_Controller {
2016-03-12 08:15:30 +00:00
/**
* Endpoint namespace .
*
* @ var string
*/
2017-02-09 17:06:13 +00:00
protected $namespace = 'wc/v2' ;
2017-03-22 21:36:15 +00:00
/**
* Prepare a single webhook output for response .
*
2017-11-29 20:08:08 +00:00
* @ param int $id Webhook ID .
* @ param WP_REST_Request $request Request object .
* @ return WP_REST_Response $response
2017-03-22 21:36:15 +00:00
*/
2017-11-29 20:08:08 +00:00
public function prepare_item_for_response ( $id , $request ) {
2017-12-01 13:57:29 +00:00
$webhook = wc_get_webhook ( $id );
2017-03-22 21:36:15 +00:00
$data = array (
2017-11-29 20:08:08 +00:00
'id' => $webhook -> get_id (),
2017-03-22 21:36:15 +00:00
'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 (),
2017-11-29 20:08:08 +00:00
'date_created' => wc_rest_prepare_date_response ( $webhook -> get_date_created (), false ),
'date_created_gmt' => wc_rest_prepare_date_response ( $webhook -> get_date_created () ),
'date_modified' => wc_rest_prepare_date_response ( $webhook -> get_date_modified (), false ),
'date_modified_gmt' => wc_rest_prepare_date_response ( $webhook -> get_date_modified () ),
2017-03-22 21:36:15 +00:00
);
$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 );
2017-11-29 20:08:08 +00:00
$response -> add_links ( $this -> prepare_links ( $webhook -> get_id (), $request ) );
2017-03-22 21:36:15 +00:00
/**
* 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_ { $this -> post_type } " , $response , $webhook , $request );
}
2017-04-02 06:07:09 +00:00
/**
* Get the default REST API version .
*
* @ since 3.0 . 0
* @ return string
*/
protected function get_default_api_version () {
return 'wp_api_v2' ;
}
2017-03-22 21:36:15 +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#' ,
'title' => 'webhook' ,
'type' => 'object' ,
'properties' => array (
2017-11-29 20:08:08 +00:00
'id' => array (
2017-03-22 21:36:15 +00:00
'description' => __ ( 'Unique identifier for the resource.' , 'woocommerce' ),
'type' => 'integer' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
2017-11-29 20:08:08 +00:00
'name' => array (
2017-03-22 21:36:15 +00:00
'description' => __ ( 'A friendly name for the webhook.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
2017-11-29 20:08:08 +00:00
'status' => array (
2017-03-22 21:36:15 +00:00
'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' ,
),
),
2017-11-29 20:08:08 +00:00
'topic' => array (
2017-03-22 21:36:15 +00:00
'description' => __ ( 'Webhook topic.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
2017-11-29 20:08:08 +00:00
'resource' => array (
2017-03-22 21:36:15 +00:00
'description' => __ ( 'Webhook resource.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
2017-11-29 20:08:08 +00:00
'event' => array (
2017-03-22 21:36:15 +00:00
'description' => __ ( 'Webhook event.' , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
2017-11-29 20:08:08 +00:00
'hooks' => array (
2017-03-22 21:36:15 +00:00
'description' => __ ( 'WooCommerce action names associated with the webhook.' , 'woocommerce' ),
'type' => 'array' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
'items' => array (
2017-11-29 20:08:08 +00:00
'type' => 'string' ,
2017-03-22 21:36:15 +00:00
),
),
2017-11-29 20:08:08 +00:00
'delivery_url' => array (
2017-03-22 21:36:15 +00:00
'description' => __ ( 'The URL where the webhook payload is delivered.' , 'woocommerce' ),
'type' => 'string' ,
'format' => 'uri' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
2017-11-29 20:08:08 +00:00
'secret' => array (
2017-03-22 21:36:15 +00:00
'description' => __ ( " Secret key used to generate a hash of the delivered webhook and provided in the request headers. This will default is a MD5 hash from the current user's ID|username if not provided. " , 'woocommerce' ),
'type' => 'string' ,
'context' => array ( 'edit' ),
),
2017-11-29 20:08:08 +00:00
'date_created' => array (
2017-03-22 21:36:15 +00:00
'description' => __ ( " The date the webhook was created, in the site's timezone. " , 'woocommerce' ),
'type' => 'date-time' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
2017-11-29 20:08:08 +00:00
'date_created_gmt' => array (
2017-03-22 21:36:15 +00:00
'description' => __ ( 'The date the webhook was created, as GMT.' , 'woocommerce' ),
'type' => 'date-time' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
2017-11-29 20:08:08 +00:00
'date_modified' => array (
2017-03-22 21:36:15 +00:00
'description' => __ ( " The date the webhook was last modified, in the site's timezone. " , 'woocommerce' ),
'type' => 'date-time' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'date_modified_gmt' => array (
'description' => __ ( 'The date the webhook was last modified, as GMT.' , '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
}