| 1 |
<?php |
| 2 |
|
| 3 |
namespace SureCart\Rest; |
| 4 |
|
| 5 |
use SureCart\Controllers\Rest\ShippingMethodController; |
| 6 |
use SureCart\Rest\RestServiceInterface; |
| 7 |
|
| 8 |
/** |
| 9 |
* Service provider for Shipping Method Rest Requests |
| 10 |
*/ |
| 11 |
class ShippingMethodRestServiceProvider extends RestServiceProvider implements RestServiceInterface { |
| 12 |
/** |
| 13 |
* Endpoint. |
| 14 |
* |
| 15 |
* @var string |
| 16 |
*/ |
| 17 |
protected $endpoint = 'shipping_methods'; |
| 18 |
|
| 19 |
/** |
| 20 |
* Rest Controller |
| 21 |
* |
| 22 |
* @var string |
| 23 |
*/ |
| 24 |
protected $controller = ShippingMethodController::class; |
| 25 |
|
| 26 |
/** |
| 27 |
* Methods allowed for the model. |
| 28 |
* |
| 29 |
* @var array |
| 30 |
*/ |
| 31 |
protected $methods = [ 'index', 'find', 'edit', 'create', 'delete' ]; |
| 32 |
|
| 33 |
|
| 34 |
/** |
| 35 |
* Get our sample schema for a post. |
| 36 |
* |
| 37 |
* @return array The sample schema for a post |
| 38 |
*/ |
| 39 |
public function get_item_schema() { |
| 40 |
if ( $this->schema ) { |
| 41 |
// Since WordPress 5.3, the schema can be cached in the $schema property. |
| 42 |
return $this->schema; |
| 43 |
} |
| 44 |
|
| 45 |
$this->schema = [ |
| 46 |
// This tells the spec of JSON Schema we are using which is draft 4. |
| 47 |
'$schema' => 'http://json-schema.org/draft-04/schema#', |
| 48 |
// The title property marks the identity of the resource. |
| 49 |
'title' => $this->endpoint, |
| 50 |
'type' => 'object', |
| 51 |
// In JSON Schema you can specify object properties in the properties attribute. |
| 52 |
'properties' => [ |
| 53 |
'id' => [ |
| 54 |
'description' => esc_html__( 'Unique identifier for the object.', 'surecart' ), |
| 55 |
'type' => 'string', |
| 56 |
'context' => [ 'view', 'edit', 'embed' ], |
| 57 |
'readonly' => true, |
| 58 |
], |
| 59 |
], |
| 60 |
]; |
| 61 |
|
| 62 |
return $this->schema; |
| 63 |
} |
| 64 |
|
| 65 |
/** |
| 66 |
* Retrieve permissions. |
| 67 |
* |
| 68 |
* @param \WP_REST_Request $request Full details about the request. |
| 69 |
* @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 70 |
*/ |
| 71 |
public function get_item_permissions_check( $request ) { |
| 72 |
return current_user_can( 'manage_sc_shop_settings' ); |
| 73 |
} |
| 74 |
|
| 75 |
/** |
| 76 |
* List permissions. |
| 77 |
* |
| 78 |
* @param \WP_REST_Request $request Full details about the request. |
| 79 |
* @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 80 |
*/ |
| 81 |
public function get_items_permissions_check( $request ) { |
| 82 |
return current_user_can( 'manage_sc_shop_settings', $request->get_params() ); |
| 83 |
} |
| 84 |
|
| 85 |
/** |
| 86 |
* Create permissions |
| 87 |
* |
| 88 |
* @param \WP_REST_Request $request Full details about the request. |
| 89 |
* @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 90 |
*/ |
| 91 |
public function create_item_permissions_check( $request ) { |
| 92 |
return current_user_can( 'manage_sc_shop_settings' ); |
| 93 |
} |
| 94 |
|
| 95 |
|
| 96 |
/** |
| 97 |
* Update permissions. |
| 98 |
* |
| 99 |
* @param \WP_REST_Request $request Full details about the request. |
| 100 |
* @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 101 |
*/ |
| 102 |
public function update_item_permissions_check( $request ) { |
| 103 |
return current_user_can( 'manage_sc_shop_settings', $request->get_params() ); |
| 104 |
} |
| 105 |
|
| 106 |
/** |
| 107 |
* Delete shipping method |
| 108 |
* |
| 109 |
* @param \WP_REST_Request $request Full details about the request. |
| 110 |
* @return true|\WP_Error True if the request has access to delete items, WP_Error object otherwise. |
| 111 |
*/ |
| 112 |
public function delete_item_permissions_check( $request ) { |
| 113 |
return current_user_can( 'manage_sc_shop_settings' ); |
| 114 |
} |
| 115 |
|
| 116 |
} |
| 117 |
|