PluginProbe
SureCart – Ecommerce Made Easy For Selling Physical Products, Digital Downloads, Subscriptions, Donations, & Payments / 1.2.5
SureCart – Ecommerce Made Easy For Selling Physical Products, Digital Downloads, Subscriptions, Donations, & Payments v1.2.5
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 / WebhooksRestServiceProvider.php
WebhooksRestServiceProvider.php
97 lines 2.5 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\WebhookController;
6 use SureCart\Rest\RestServiceInterface;
7
8 /**
9 * Service provider for Webhooks Rest Requests
10 */
11 class WebhooksRestServiceProvider extends RestServiceProvider implements RestServiceInterface {
12 /**
13 * Endpoint.
14 *
15 * @var string
16 */
17 protected $endpoint = 'webhooks';
18
19 /**
20 * Rest Controller
21 *
22 * @var string
23 */
24 protected $controller = WebhookController::class;
25
26 /**
27 * Get our sample schema for a post.
28 *
29 * @return array The sample schema for a post
30 */
31 public function get_item_schema() {
32 if ( $this->schema ) {
33 // Since WordPress 5.3, the schema can be cached in the $schema property.
34 return $this->schema;
35 }
36
37 $this->schema = [
38 // This tells the spec of JSON Schema we are using which is draft 4.
39 '$schema' => 'http://json-schema.org/draft-04/schema#',
40 // The title property marks the identity of the resource.
41 'title' => $this->endpoint,
42 'type' => 'object',
43 // In JSON Schema you can specify object properties in the properties attribute.
44 'properties' => [
45 'id' => [
46 'description' => esc_html__( 'Unique identifier for the object.', 'surecart' ),
47 'type' => 'string',
48 'context' => [ 'view', 'edit', 'embed' ],
49 'readonly' => true,
50 ],
51 ],
52 ];
53
54 return $this->schema;
55 }
56
57 /**
58 * Anyone can get a specific subscription
59 *
60 * @param \WP_REST_Request $request Full details about the request.
61 * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise.
62 */
63 public function get_item_permissions_check( $request ) {
64 return current_user_can( 'read_sc_webhooks' );
65 }
66
67 /**
68 * Need priveleges to read checkout sessions.
69 *
70 * @param \WP_REST_Request $request Full details about the request.
71 * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise.
72 */
73 public function get_items_permissions_check( $request ) {
74 return current_user_can( 'read_sc_webhooks' );
75 }
76
77 /**
78 * Anyone can update.
79 *
80 * @param \WP_REST_Request $request Full details about the request.
81 * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise.
82 */
83 public function update_item_permissions_check( $request ) {
84 return current_user_can( 'edit_sc_webhooks' );
85 }
86
87 /**
88 * Nobody can delete.
89 *
90 * @param \WP_REST_Request $request Full details about the request.
91 * @return false
92 */
93 public function delete_item_permissions_check( $request ) {
94 return current_user_can( 'edit_sc_webhooks' );
95 }
96 }
97