PluginProbe
SureCart – Ecommerce Made Easy For Selling Physical Products, Digital Downloads, Subscriptions, Donations, & Payments / 4.2.3
SureCart – Ecommerce Made Easy For Selling Physical Products, Digital Downloads, Subscriptions, Donations, & Payments v4.2.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 / ReferralsRestServiceProvider.php
ReferralsRestServiceProvider.php
191 lines 5.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\ReferralsController;
6
7 /**
8 * Service provider for the referrals REST Requests
9 */
10 class ReferralsRestServiceProvider extends RestServiceProvider implements RestServiceInterface {
11 /**
12 * Endpoint
13 *
14 * @var string
15 */
16 protected $endpoint = 'referrals';
17
18 /**
19 * Rest Controller
20 *
21 * @var string
22 */
23 protected $controller = ReferralsController::class;
24
25 /**
26 * Methods allowed for the model
27 *
28 * @var array
29 */
30 protected $methods = [ 'index', 'find', 'edit', 'create', 'delete' ];
31
32 /**
33 * Register REST Routes
34 *
35 * @return void
36 */
37 public function registerRoutes() {
38 register_rest_route(
39 "$this->name/v$this->version",
40 $this->endpoint . '/(?P<id>\S+)/approve/',
41 [
42 [
43 'methods' => \WP_REST_Server::EDITABLE,
44 'callback' => $this->callback( $this->controller, 'approve' ),
45 'permission_callback' => [ $this, 'approve_permissions_check' ],
46 ],
47 // Register our schema callback.
48 'schema' => [ $this, 'get_item_schema' ],
49 ]
50 );
51
52 register_rest_route(
53 "$this->name/v$this->version",
54 $this->endpoint . '/(?P<id>\S+)/deny/',
55 [
56 [
57 'methods' => \WP_REST_Server::EDITABLE,
58 'callback' => $this->callback( $this->controller, 'deny' ),
59 'permission_callback' => [ $this, 'deny_permissions_check' ],
60 ],
61 // Register our schema callback.
62 'schema' => [ $this, 'get_item_schema' ],
63 ]
64 );
65
66 register_rest_route(
67 "$this->name/v$this->version",
68 $this->endpoint . '/(?P<id>\S+)/make_reviewing/',
69 [
70 [
71 'methods' => \WP_REST_Server::EDITABLE,
72 'callback' => $this->callback( $this->controller, 'make_reviewing' ),
73 'permission_callback' => [ $this, 'make_reviewing_permissions_check' ],
74 ],
75 // Register our schema callback.
76 'schema' => [ $this, 'get_item_schema' ],
77 ]
78 );
79 }
80
81 /**
82 * Get our sample schema for a post
83 *
84 * @return array The sample schema for a post
85 */
86 public function get_item_schema() {
87 if ( $this->schema ) {
88 // Since WordPress 5.3, the schema can be cached in the $schema property.
89 return $this->schema;
90 }
91
92 $this->schema = [
93 // This tells the spec of JSON Schema we are using which is draft 4.
94 '$schema' => 'http://json-schema.org/draft-04/schema#',
95 // The title property marks the identity of the resource.
96 'title' => $this->endpoint,
97 'type' => 'object',
98 // In JSON Schema you can specify object properties in the properties attribute.
99 'properties' => [
100 'id' => [
101 'description' => esc_html__( 'Unique identifier for the object.', 'surecart' ),
102 'type' => 'string',
103 'readonly' => true,
104 ],
105 ],
106 ];
107
108 return $this->schema;
109 }
110
111 /**
112 * Who can list referrals?
113 *
114 * @param \WP_REST_Request $request Full details about the request.
115 * @return true|\WP_Error True if the request has access to list items, WP_Error object otherwise.
116 */
117 public function get_items_permissions_check( $request ) {
118 return current_user_can( 'read_sc_affiliates' );
119 }
120
121 /**
122 * Who can get a specific referral?
123 *
124 * @param \WP_REST_Request $request Full details about the request.
125 * @return true|\WP_Error True if the request has access to get an item, WP_Error object otherwise.
126 */
127 public function get_item_permissions_check( $request ) {
128 return current_user_can( 'read_sc_affiliates' );
129 }
130
131 /**
132 * Who can create a referral?
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 create_item_permissions_check( $request ) {
138 return current_user_can( 'publish_sc_affiliates' );
139 }
140
141 /**
142 * Who can update a referral?
143 *
144 * @param \WP_REST_Request $request Full details about the request.
145 * @return true|\WP_Error True if the request has access to update an item, WP_Error object otherwise.
146 */
147 public function update_item_permissions_check( $request ) {
148 return current_user_can( 'edit_sc_affiliates' );
149 }
150
151 /**
152 * Who can delete a referral?
153 *
154 * @param \WP_REST_Request $request Full details about the request.
155 * @return true|\WP_Error True if the request has access to delete an item, WP_Error object otherwise.
156 */
157 public function delete_item_permissions_check( $request ) {
158 return current_user_can( 'delete_sc_affiliates' );
159 }
160
161 /**
162 * Who can approve a referral?
163 *
164 * @param \WP_REST_Request $request Full details about the request.
165 * @return true|\WP_Error True if the request has access to approve an item, WP_Error object otherwise.
166 */
167 public function approve_permissions_check( $request ) {
168 return current_user_can( 'edit_sc_affiliates' );
169 }
170
171 /**
172 * Who can deny a referral?
173 *
174 * @param \WP_REST_Request $request Full details about the request.
175 * @return true|\WP_Error True if the request has access to deny an item, WP_Error object otherwise.
176 */
177 public function deny_permissions_check( $request ) {
178 return current_user_can( 'edit_sc_affiliates' );
179 }
180
181 /**
182 * Who can make a referral reviewing?
183 *
184 * @param \WP_REST_Request $request Full details about the request.
185 * @return true|\WP_Error True if the request has access to make a referral reviewing, WP_Error object otherwise.
186 */
187 public function make_reviewing_permissions_check( $request ) {
188 return current_user_can( 'edit_sc_affiliates' );
189 }
190 }
191