PluginProbe
SureCart – Ecommerce Made Easy For Selling Physical Products, Digital Downloads, Subscriptions, Donations, & Payments / 4.3.3
SureCart – Ecommerce Made Easy For Selling Physical Products, Digital Downloads, Subscriptions, Donations, & Payments v4.3.3
4.7.2 4.7.1 4.7.0 4.6.6 4.6.5 4.6.4 4.6.3 4.6.2 4.6.1 4.6.0 4.5.1 4.5.0 4.4.2 4.4.1 4.4.0 4.3.3 4.3.2 4.3.1 4.3.0 4.2.3 4.2.2 4.2.1 1.0.3 1.0.4 1.0.5 All 281 releases
surecart / app / src / Rest / AutoFeeProtocolRestServiceProvider.php
AutoFeeProtocolRestServiceProvider.php
141 lines 4.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace SureCart\Rest;
4
5 use SureCart\Controllers\Rest\AutoFeeProtocolController;
6 use SureCart\Rest\RestServiceInterface;
7
8 /**
9 * Service provider for Price Rest Requests
10 */
11 class AutoFeeProtocolRestServiceProvider extends RestServiceProvider implements RestServiceInterface {
12 /**
13 * Endpoint.
14 *
15 * @var string
16 */
17 protected $endpoint = 'auto_fee_protocol';
18
19 /**
20 * Rest Controller
21 *
22 * @var string
23 */
24 protected $controller = AutoFeeProtocolController::class;
25
26 /**
27 * Methods allowed for the model.
28 *
29 * @var array
30 */
31 protected $methods = [ 'find', 'edit' ];
32
33 /**
34 * Get our sample schema for a post.
35 *
36 * @return array The sample schema for a post
37 */
38 public function get_item_schema() {
39 if ( $this->schema ) {
40 // Since WordPress 5.3, the schema can be cached in the $schema property.
41 return $this->schema;
42 }
43
44 $this->schema = [
45 // This tells the spec of JSON Schema we are using which is draft 4.
46 '$schema' => 'http://json-schema.org/draft-04/schema#',
47 // The title property marks the identity of the resource.
48 'title' => $this->endpoint,
49 'type' => 'object',
50 // In JSON Schema you can specify object properties in the properties attribute.
51 'properties' => [
52 'id' => array(
53 'description' => esc_html__( 'Unique identifier for the object.', 'surecart' ),
54 'type' => 'string',
55 'context' => array( 'view', 'edit', 'embed' ),
56 'readonly' => true,
57 ),
58 'negative_checkout_fee_selection_strategy' => [
59 'description' => esc_html__( 'Negative Checkout Fee Selection Strategy.', 'surecart' ),
60 'type' => 'string',
61 'context' => [ 'view', 'edit', 'embed' ],
62 ],
63 'negative_line_item_fee_selection_strategy' => [
64 'description' => esc_html__( 'Negative Line Item Fee Selection Strategy.', 'surecart' ),
65 'type' => 'string',
66 'context' => [ 'view', 'edit', 'embed' ],
67 ],
68 'negative_shipping_fee_selection_strategy' => [
69 'description' => esc_html__( 'Negative Shipping Fee Selection Strategy.', 'surecart' ),
70 'type' => 'string',
71 'context' => [ 'view', 'edit', 'embed' ],
72 ],
73 'positive_checkout_fee_selection_strategy' => [
74 'description' => esc_html__( 'Positive Checkout Fee Selection Strategy.', 'surecart' ),
75 'type' => 'string',
76 'context' => [ 'view', 'edit', 'embed' ],
77 ],
78 'positive_line_item_fee_selection_strategy' => [
79 'description' => esc_html__( 'Positive Line Item Fee Selection Strategy.', 'surecart' ),
80 'type' => 'string',
81 'context' => [ 'view', 'edit', 'embed' ],
82 ],
83 'positive_shipping_fee_selection_strategy' => [
84 'description' => esc_html__( 'Positive Shipping Fee Selection Strategy.', 'surecart' ),
85 'type' => 'string',
86 'context' => [ 'view', 'edit', 'embed' ],
87 ],
88 ],
89 ];
90
91 return $this->schema;
92 }
93
94 /**
95 * Register REST Routes
96 *
97 * @return void
98 */
99 public function registerRoutes() {
100 register_rest_route(
101 "$this->name/v$this->version",
102 "$this->endpoint",
103 array_filter(
104 [
105 [
106 'methods' => \WP_REST_Server::READABLE,
107 'callback' => $this->callback( $this->controller, 'find' ),
108 'permission_callback' => [ $this, 'get_item_permissions_check' ],
109 'args' => $this->get_collection_params(),
110 ],
111 [
112 'methods' => \WP_REST_Server::EDITABLE,
113 'callback' => $this->callback( $this->controller, 'edit' ),
114 'permission_callback' => [ $this, 'update_item_permissions_check' ],
115 ],
116 'schema' => [ $this, 'get_item_schema' ],
117 ]
118 )
119 );
120 }
121 /**
122 * Get item
123 *
124 * @param \WP_REST_Request $request Full details about the request.
125 * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise.
126 */
127 public function get_item_permissions_check( $request ) {
128 return current_user_can( 'edit_sc_prices' );
129 }
130
131 /**
132 * Need priveleges to update.
133 *
134 * @param \WP_REST_Request $request Full details about the request.
135 * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise.
136 */
137 public function update_item_permissions_check( $request ) {
138 return current_user_can( 'edit_sc_prices' );
139 }
140 }
141