2018-10-10 23:46:08 +00:00
< ? php
/**
2018-10-10 23:54:26 +00:00
* REST API Admin Notes controller
2018-10-10 23:46:08 +00:00
*
2018-10-10 23:54:26 +00:00
* Handles requests to the admin notes endpoint .
2018-10-10 23:46:08 +00:00
*
* @ package WooCommerce Admin / API
*/
defined ( 'ABSPATH' ) || exit ;
/**
2018-10-10 23:54:26 +00:00
* REST API Admin Notes controller class .
2018-10-10 23:46:08 +00:00
*
* @ package WooCommerce / API
2018-10-10 23:54:26 +00:00
* @ extends WC_REST_CRUD_Controller
2018-10-10 23:46:08 +00:00
*/
class WC_Admin_REST_Admin_Notes_Controller extends WC_REST_CRUD_Controller {
/**
* Endpoint namespace .
*
* @ var string
*/
2019-01-18 02:52:58 +00:00
protected $namespace = 'wc/v4' ;
2018-10-10 23:46:08 +00:00
/**
* Route base .
*
* @ var string
*/
protected $rest_base = 'admin/notes' ;
/**
2018-10-10 23:54:26 +00:00
* Register the routes for admin notes .
2018-10-10 23:46:08 +00:00
*/
public function register_routes () {
register_rest_route (
2018-10-22 16:20:14 +00:00
$this -> namespace ,
'/' . $this -> rest_base ,
array (
2018-10-10 23:46:08 +00:00
array (
'methods' => WP_REST_Server :: READABLE ,
'callback' => array ( $this , 'get_items' ),
'permission_callback' => array ( $this , 'get_items_permissions_check' ),
2019-04-01 02:53:34 +00:00
'args' => $this -> get_collection_params (),
2018-10-10 23:46:08 +00:00
),
'schema' => array ( $this , 'get_public_item_schema' ),
)
);
register_rest_route (
2018-10-22 16:20:14 +00:00
$this -> namespace ,
'/' . $this -> rest_base . '/(?P<id>[\d-]+)' ,
array (
2018-10-10 23:46:08 +00:00
'args' => array (
'id' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'Unique ID for the resource.' , 'woocommerce-admin' ),
2018-10-10 23:46:08 +00:00
'type' => 'integer' ,
),
),
array (
'methods' => WP_REST_Server :: READABLE ,
'callback' => array ( $this , 'get_item' ),
'permission_callback' => array ( $this , 'get_item_permissions_check' ),
),
2019-03-12 13:13:20 +00:00
array (
'methods' => WP_REST_Server :: EDITABLE ,
'callback' => array ( $this , 'update_item' ),
'permission_callback' => array ( $this , 'update_items_permissions_check' ),
),
2018-10-10 23:46:08 +00:00
'schema' => array ( $this , 'get_public_item_schema' ),
)
);
}
/**
* Get a single note .
*
* @ param WP_REST_Request $request Request data .
* @ return WP_REST_Response | WP_Error
*/
public function get_item ( $request ) {
$note = WC_Admin_Notes :: get_note ( $request -> get_param ( 'id' ) );
2018-12-28 01:51:22 +00:00
if ( ! $note ) {
return new WP_Error (
'woocommerce_admin_notes_invalid_id' ,
2019-05-30 16:49:24 +00:00
__ ( 'Sorry, there is no resource with that ID.' , 'woocommerce-admin' ),
2018-12-28 01:51:22 +00:00
array ( 'status' => 404 )
);
}
2018-10-10 23:46:08 +00:00
if ( is_wp_error ( $note ) ) {
return $note ;
}
$data = $note -> get_data ();
$data = $this -> prepare_item_for_response ( $data , $request );
$data = $this -> prepare_response_for_collection ( $data );
return rest_ensure_response ( $data );
}
/**
* Get all notes .
*
* @ param WP_REST_Request $request Request data .
* @ return WP_REST_Response
*/
public function get_items ( $request ) {
2019-04-01 02:53:34 +00:00
$query_args = $this -> prepare_objects_query ( $request );
2019-03-12 13:13:20 +00:00
2019-04-01 02:53:34 +00:00
$notes = WC_Admin_Notes :: get_notes ( 'edit' , $query_args );
2018-10-10 23:46:08 +00:00
$data = array ();
foreach ( ( array ) $notes as $note_obj ) {
$note = $this -> prepare_item_for_response ( $note_obj , $request );
$note = $this -> prepare_response_for_collection ( $note );
$data [] = $note ;
}
2018-10-11 19:25:09 +00:00
$response = rest_ensure_response ( $data );
2019-04-01 02:53:34 +00:00
$response -> header ( 'X-WP-Total' , WC_Admin_Notes :: get_notes_count ( $query_args [ 'type' ], $query_args [ 'status' ] ) );
2018-10-11 19:25:09 +00:00
return $response ;
2018-10-10 23:46:08 +00:00
}
2019-04-01 02:53:34 +00:00
/**
* Prepare objects query .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return array
*/
protected function prepare_objects_query ( $request ) {
$args = array ();
$args [ 'order' ] = $request [ 'order' ];
$args [ 'orderby' ] = $request [ 'orderby' ];
$args [ 'per_page' ] = $request [ 'per_page' ];
$args [ 'page' ] = $request [ 'page' ];
$args [ 'type' ] = isset ( $request [ 'type' ] ) ? $request [ 'type' ] : array ();
$args [ 'status' ] = isset ( $request [ 'status' ] ) ? $request [ 'status' ] : array ();
if ( 'date' === $args [ 'orderby' ] ) {
$args [ 'orderby' ] = 'date_created' ;
}
/**
* Filter the query arguments for a request .
*
* Enables adding extra arguments or setting defaults for a post
* collection request .
*
* @ param array $args Key value array of query var to query value .
* @ param WP_REST_Request $request The request used .
*/
$args = apply_filters ( 'woocommerce_rest_admin_notes_object_query' , $args , $request );
return $args ;
}
2018-10-10 23:46:08 +00:00
/**
2018-10-10 23:54:26 +00:00
* Check whether a given request has permission to read a single note .
2018-10-10 23:46:08 +00:00
*
* @ 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 ( 'system_status' , 'read' ) ) {
2019-03-13 17:14:02 +00:00
return new WP_Error ( 'woocommerce_rest_cannot_view' , __ ( 'Sorry, you cannot list resources.' , 'woocommerce-admin' ), array ( 'status' => rest_authorization_required_code () ) );
2018-10-10 23:46:08 +00:00
}
return true ;
}
/**
* Check whether a given request has permission to read notes .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_Error | boolean
*/
public function get_items_permissions_check ( $request ) {
if ( ! wc_rest_check_manager_permissions ( 'system_status' , 'read' ) ) {
2019-03-13 17:14:02 +00:00
return new WP_Error ( 'woocommerce_rest_cannot_view' , __ ( 'Sorry, you cannot list resources.' , 'woocommerce-admin' ), array ( 'status' => rest_authorization_required_code () ) );
2018-10-10 23:46:08 +00:00
}
return true ;
}
2019-03-12 13:13:20 +00:00
/**
* Update a single note .
*
* @ param WP_REST_Request $request Full details about the request .
* @ return WP_REST_Request | WP_Error
*/
public function update_item ( $request ) {
$note = WC_Admin_Notes :: get_note ( $request -> get_param ( 'id' ) );
if ( ! $note ) {
return new WP_Error (
'woocommerce_admin_notes_invalid_id' ,
2019-05-30 16:49:24 +00:00
__ ( 'Sorry, there is no resource with that ID.' , 'woocommerce-admin' ),
2019-03-12 13:13:20 +00:00
array ( 'status' => 404 )
);
}
// @todo Status is the only field that can be updated at the moment. We should also implement the "date reminder" setting.
$note_changed = false ;
if ( ! is_null ( $request -> get_param ( 'status' ) ) ) {
$note -> set_status ( $request -> get_param ( 'status' ) );
$note_changed = true ;
}
2019-03-18 20:41:35 +00:00
if ( ! is_null ( $request -> get_param ( 'date_reminder' ) ) ) {
$note -> set_date_reminder ( $request -> get_param ( 'date_reminder' ) );
$note_changed = true ;
}
2019-03-12 13:13:20 +00:00
if ( $note_changed ) {
$note -> save ();
}
return $this -> get_item ( $request );
}
/**
* Makes sure the current user has access to WRITE the settings APIs .
*
* @ param WP_REST_Request $request Full data about the request .
* @ return WP_Error | bool
*/
public function update_items_permissions_check ( $request ) {
if ( ! wc_rest_check_manager_permissions ( 'settings' , 'edit' ) ) {
2019-03-13 17:14:02 +00:00
return new WP_Error ( 'woocommerce_rest_cannot_edit' , __ ( 'Sorry, you cannot edit this resource.' , 'woocommerce-admin' ), array ( 'status' => rest_authorization_required_code () ) );
2019-03-12 13:13:20 +00:00
}
return true ;
}
2018-10-25 01:13:44 +00:00
/**
* Prepare a path or query for serialization to the client .
*
* @ param string $query The query , path , or URL to transform .
* @ return string A fully formed URL .
*/
public function prepare_query_for_response ( $query ) {
2019-05-24 17:05:12 +00:00
if ( empty ( $query ) ) {
return $query ;
}
2018-10-25 01:13:44 +00:00
if ( 'https://' === substr ( $query , 0 , 8 ) ) {
return $query ;
}
if ( 'http://' === substr ( $query , 0 , 7 ) ) {
return $query ;
}
if ( '?' === substr ( $query , 0 , 1 ) ) {
return admin_url ( 'admin.php' . $query );
}
return admin_url ( $query );
}
2018-10-10 23:46:08 +00:00
/**
* Prepare a note object for serialization .
*
* @ param array $data Note data .
* @ param WP_REST_Request $request Request object .
* @ return WP_REST_Response $response Response data .
*/
public function prepare_item_for_response ( $data , $request ) {
2018-10-11 16:59:17 +00:00
$context = ! empty ( $request [ 'context' ] ) ? $request [ 'context' ] : 'view' ;
$data = $this -> add_additional_fields_to_object ( $data , $request );
$data [ 'date_created_gmt' ] = wc_rest_prepare_date_response ( $data [ 'date_created' ] );
$data [ 'date_created' ] = wc_rest_prepare_date_response ( $data [ 'date_created' ], false );
$data [ 'date_reminder_gmt' ] = wc_rest_prepare_date_response ( $data [ 'date_reminder' ] );
$data [ 'date_reminder' ] = wc_rest_prepare_date_response ( $data [ 'date_reminder' ], false );
2018-10-12 19:34:42 +00:00
$data [ 'title' ] = stripslashes ( $data [ 'title' ] );
$data [ 'content' ] = stripslashes ( $data [ 'content' ] );
2019-03-16 01:21:30 +00:00
$data [ 'is_snoozable' ] = ( bool ) $data [ 'is_snoozable' ];
2018-10-12 19:34:42 +00:00
foreach ( ( array ) $data [ 'actions' ] as $key => $value ) {
2019-03-12 13:13:20 +00:00
$data [ 'actions' ][ $key ] -> label = stripslashes ( $data [ 'actions' ][ $key ] -> label );
$data [ 'actions' ][ $key ] -> url = $this -> prepare_query_for_response ( $data [ 'actions' ][ $key ] -> query );
$data [ 'actions' ][ $key ] -> status = stripslashes ( $data [ 'actions' ][ $key ] -> status );
2018-10-12 19:34:42 +00:00
}
$data = $this -> filter_response_by_context ( $data , $context );
2018-10-10 23:46:08 +00:00
// Wrap the data in a response object.
$response = rest_ensure_response ( $data );
2018-10-22 16:20:14 +00:00
$response -> add_links (
array (
'self' => array (
'href' => rest_url ( sprintf ( '/%s/%s/%d' , $this -> namespace , $this -> rest_base , $data [ 'id' ] ) ),
),
'collection' => array (
'href' => rest_url ( sprintf ( '%s/%s' , $this -> namespace , $this -> rest_base ) ),
),
)
);
2018-10-10 23:46:08 +00:00
/**
* Filter a note returned from the API .
*
* Allows modification of the note data right before it is returned .
*
* @ param WP_REST_Response $response The response object .
* @ param array $data The original note .
* @ param WP_REST_Request $request Request used to generate the response .
*/
return apply_filters ( 'woocommerce_rest_prepare_admin_note' , $response , $data , $request );
}
2018-10-11 19:40:19 +00:00
2019-03-12 13:13:20 +00:00
/**
* Get the query params for collections .
*
* @ return array
*/
public function get_collection_params () {
2019-04-01 02:53:34 +00:00
$params = array ();
$params [ 'context' ] = $this -> get_context_param ( array ( 'default' => 'view' ) );
$params [ 'order' ] = array (
'description' => __ ( 'Order sort attribute ascending or descending.' , 'woocommerce-admin' ),
2019-03-12 13:13:20 +00:00
'type' => 'string' ,
2019-04-01 02:53:34 +00:00
'default' => 'desc' ,
'enum' => array ( 'asc' , 'desc' ),
2019-03-12 13:13:20 +00:00
'validate_callback' => 'rest_validate_request_arg' ,
);
2019-04-01 02:53:34 +00:00
$params [ 'orderby' ] = array (
'description' => __ ( 'Sort collection by object attribute.' , 'woocommerce-admin' ),
2019-03-12 13:13:20 +00:00
'type' => 'string' ,
2019-04-01 02:53:34 +00:00
'default' => 'date' ,
'enum' => array (
'note_id' ,
'date' ,
'type' ,
'title' ,
'status' ,
),
'validate_callback' => 'rest_validate_request_arg' ,
);
$params [ 'page' ] = array (
'description' => __ ( 'Current page of the collection.' , 'woocommerce-admin' ),
'type' => 'integer' ,
'default' => 1 ,
'sanitize_callback' => 'absint' ,
'validate_callback' => 'rest_validate_request_arg' ,
'minimum' => 1 ,
);
$params [ 'per_page' ] = array (
'description' => __ ( 'Maximum number of items to be returned in result set.' , 'woocommerce-admin' ),
'type' => 'integer' ,
'default' => 10 ,
'minimum' => 1 ,
'maximum' => 100 ,
'sanitize_callback' => 'absint' ,
'validate_callback' => 'rest_validate_request_arg' ,
);
$params [ 'type' ] = array (
'description' => __ ( 'Type of note.' , 'woocommerce-admin' ),
'type' => 'array' ,
'sanitize_callback' => 'wp_parse_slug_list' ,
'validate_callback' => 'rest_validate_request_arg' ,
'items' => array (
'enum' => WC_Admin_Note :: get_allowed_types (),
'type' => 'string' ,
),
);
$params [ 'status' ] = array (
'description' => __ ( 'Status of note.' , 'woocommerce-admin' ),
'type' => 'array' ,
'sanitize_callback' => 'wp_parse_slug_list' ,
2019-03-12 13:13:20 +00:00
'validate_callback' => 'rest_validate_request_arg' ,
2019-04-01 02:53:34 +00:00
'items' => array (
'enum' => WC_Admin_Note :: get_allowed_statuses (),
'type' => 'string' ,
),
2019-03-12 13:13:20 +00:00
);
return $params ;
}
2018-10-11 19:40:19 +00:00
/**
2018-10-22 20:15:44 +00:00
* Get the note ' s schema , conforming to JSON Schema .
2018-10-11 19:40:19 +00:00
*
2018-10-22 20:15:44 +00:00
* @ return array
2018-10-11 19:40:19 +00:00
*/
2018-10-22 20:15:44 +00:00
public function get_item_schema () {
$schema = array (
'$schema' => 'http://json-schema.org/draft-04/schema#' ,
'title' => 'note' ,
'type' => 'object' ,
'properties' => array (
'id' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'ID of the note record.' , 'woocommerce-admin' ),
2018-10-22 20:15:44 +00:00
'type' => 'integer' ,
'context' => array ( 'view' ),
'readonly' => true ,
),
'name' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'Name of the note.' , 'woocommerce-admin' ),
2018-10-22 20:15:44 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'type' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'The type of the note (e.g. error, warning, etc.).' , 'woocommerce-admin' ),
2018-10-22 20:15:44 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'locale' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'Locale used for the note title and content.' , 'woocommerce-admin' ),
2018-10-22 20:15:44 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'title' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'Title of the note.' , 'woocommerce-admin' ),
2018-10-22 20:15:44 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'content' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'Content of the note.' , 'woocommerce-admin' ),
2018-10-22 20:15:44 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'icon' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'Icon (gridicon) for the note.' , 'woocommerce-admin' ),
2018-10-22 20:15:44 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'content_data' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'Content data for the note. JSON string. Available for re-localization.' , 'woocommerce-admin' ),
2018-10-22 20:15:44 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'status' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'The status of the note (e.g. unactioned, actioned).' , 'woocommerce-admin' ),
2018-10-22 20:15:44 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
),
'source' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'Source of the note.' , 'woocommerce-admin' ),
2018-10-22 20:15:44 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'date_created' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'Date the note was created.' , 'woocommerce-admin' ),
2018-10-22 20:15:44 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'date_created_gmt' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'Date the note was created (GMT).' , 'woocommerce-admin' ),
2018-10-22 20:15:44 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
'date_reminder' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'Date after which the user should be reminded of the note, if any.' , 'woocommerce-admin' ),
2018-10-22 20:15:44 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
2019-03-12 13:13:20 +00:00
'readonly' => true , // @todo Allow date_reminder to be updated.
2018-10-22 20:15:44 +00:00
),
'date_reminder_gmt' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'Date after which the user should be reminded of the note, if any (GMT).' , 'woocommerce-admin' ),
2018-10-22 20:15:44 +00:00
'type' => 'string' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
2019-03-16 01:21:30 +00:00
'is_snoozable' => array (
'description' => __ ( 'Whether or a user can request to be reminded about the note.' , 'woocommerce-admin' ),
'type' => 'boolean' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
2018-10-22 20:15:44 +00:00
'actions' => array (
2019-03-13 17:14:02 +00:00
'description' => __ ( 'An array of actions, if any, for the note.' , 'woocommerce-admin' ),
2018-10-22 20:15:44 +00:00
'type' => 'array' ,
'context' => array ( 'view' , 'edit' ),
'readonly' => true ,
),
),
2018-10-11 19:40:19 +00:00
);
2018-10-22 20:15:44 +00:00
return $this -> add_additional_fields_schema ( $schema );
2018-10-11 19:40:19 +00:00
}
2018-10-10 23:46:08 +00:00
}