2019-05-10 16:56:07 +00:00
< ? php
/**
* REST API Webhooks controller
*
* Handles requests to the / webhooks endpoint .
*
2019-06-21 09:40:39 +00:00
* @ package Automattic / WooCommerce / RestApi
2019-05-10 16:56:07 +00:00
* @ since 2.6 . 0
*/
defined ( 'ABSPATH' ) || exit ;
/**
* REST API Webhooks controller class .
*
2019-06-21 09:40:39 +00:00
* @ package Automattic / WooCommerce / RestApi
2019-05-10 16:56:07 +00:00
* @ extends WC_REST_Webhooks_V1_Controller
*/
class WC_REST_Webhooks_V2_Controller extends WC_REST_Webhooks_V1_Controller {
/**
* Endpoint namespace .
*
* @ var string
*/
protected $namespace = 'wc/v2' ;
/**
* Prepare a single webhook output for response .
*
* @ param int $id Webhook ID .
* @ param WP_REST_Request $request Request object .
* @ return WP_REST_Response $response
*/
public function prepare_item_for_response ( $id , $request ) {
$webhook = wc_get_webhook ( $id );
if ( empty ( $webhook ) || is_null ( $webhook ) ) {
2019-06-24 12:01:21 +00:00
return new WP_Error ( " woocommerce_rest_ { $this -> post_type } _invalid_id " , __ ( 'ID is invalid.' , 'woocommerce-rest-api' ), array ( 'status' => 400 ) );
2019-05-10 16:56:07 +00:00
}
$data = array (
'id' => $webhook -> get_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 (),
'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 () ),
);
$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 ( $webhook -> get_id (), $request ) );
/**
* 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 );
}
/**
* Get the default REST API version .
*
* @ since 3.0 . 0
* @ return string
*/
protected function get_default_api_version () {
return 'wp_api_v2' ;
}
/**
* 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 (
'id' => array (
2019-06-24 12:01:21 +00:00
'description' => __ ( 'Unique identifier for the resource.' , 'woocommerce-rest-api' ),
2019-05-10 16:56:07 +00:00
'type' => 'integer' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'name' => array (
2019-06-24 12:01:21 +00:00
'description' => __ ( 'A friendly name for the webhook.' , 'woocommerce-rest-api' ),
2019-05-10 16:56:07 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'status' => array (
2019-06-24 12:01:21 +00:00
'description' => __ ( 'Webhook status.' , 'woocommerce-rest-api' ),
2019-05-10 16:56:07 +00:00
'type' => 'string' ,
'default' => 'active' ,
'enum' => array_keys ( wc_get_webhook_statuses () ),
'context' => array ( 'view' , 'edit' ),
),
'topic' => array (
2019-06-24 12:01:21 +00:00
'description' => __ ( 'Webhook topic.' , 'woocommerce-rest-api' ),
2019-05-10 16:56:07 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'resource' => array (
2019-06-24 12:01:21 +00:00
'description' => __ ( 'Webhook resource.' , 'woocommerce-rest-api' ),
2019-05-10 16:56:07 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'event' => array (
2019-06-24 12:01:21 +00:00
'description' => __ ( 'Webhook event.' , 'woocommerce-rest-api' ),
2019-05-10 16:56:07 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'hooks' => array (
2019-06-24 12:01:21 +00:00
'description' => __ ( 'WooCommerce action names associated with the webhook.' , 'woocommerce-rest-api' ),
2019-05-10 16:56:07 +00:00
'type' => 'array' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
'items' => array (
'type' => 'string' ,
),
),
'delivery_url' => array (
2019-06-24 12:01:21 +00:00
'description' => __ ( 'The URL where the webhook payload is delivered.' , 'woocommerce-rest-api' ),
2019-05-10 16:56:07 +00:00
'type' => 'string' ,
'format' => 'uri' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'secret' => array (
2019-06-24 12:01:21 +00:00
'description' => __ ( " Secret key used to generate a hash of the delivered webhook and provided in the request headers. This will default to a MD5 hash from the current user's ID|username if not provided. " , 'woocommerce-rest-api' ),
2019-05-10 16:56:07 +00:00
'type' => 'string' ,
'context' => array ( 'edit' ),
),
'date_created' => array (
2019-06-24 12:01:21 +00:00
'description' => __ ( " The date the webhook was created, in the site's timezone. " , 'woocommerce-rest-api' ),
2019-05-10 16:56:07 +00:00
'type' => 'date-time' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'date_created_gmt' => array (
2019-06-24 12:01:21 +00:00
'description' => __ ( 'The date the webhook was created, as GMT.' , 'woocommerce-rest-api' ),
2019-05-10 16:56:07 +00:00
'type' => 'date-time' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'date_modified' => array (
2019-06-24 12:01:21 +00:00
'description' => __ ( " The date the webhook was last modified, in the site's timezone. " , 'woocommerce-rest-api' ),
2019-05-10 16:56:07 +00:00
'type' => 'date-time' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'date_modified_gmt' => array (
2019-06-24 12:01:21 +00:00
'description' => __ ( 'The date the webhook was last modified, as GMT.' , 'woocommerce-rest-api' ),
2019-05-10 16:56:07 +00:00
'type' => 'date-time' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
),
);
return $this -> add_additional_fields_schema ( $schema );
}
}