PluginProbe
SureCart – Ecommerce Made Easy For Selling Physical Products, Digital Downloads, Subscriptions, Donations, & Payments / 3.4.1
SureCart – Ecommerce Made Easy For Selling Physical Products, Digital Downloads, Subscriptions, Donations, & Payments v3.4.1
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 / AffiliationsRestServiceProvider.php
AffiliationsRestServiceProvider.php
148 lines 4.0 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\AffiliationsController;
6
7 /**
8 * Affiliation Requests Rest Service Provider
9 */
10 class AffiliationsRestServiceProvider extends RestServiceProvider implements RestServiceInterface {
11 /**
12 * Endpoint.
13 *
14 * @var string
15 */
16 protected $endpoint = 'affiliations';
17
18 /**
19 * Rest Controller
20 *
21 * @var string
22 */
23 protected $controller = AffiliationsController::class;
24
25 /**
26 * Methods allowed for the model.
27 *
28 * @var array
29 */
30 protected $methods = [ 'index', 'find', 'edit' ];
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+)/activate/',
41 [
42 [
43 'methods' => \WP_REST_Server::EDITABLE,
44 'callback' => $this->callback( $this->controller, 'activate' ),
45 'permission_callback' => [ $this, 'activate_item_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+)/deactivate/',
55 [
56 [
57 'methods' => \WP_REST_Server::EDITABLE,
58 'callback' => $this->callback( $this->controller, 'deactivate' ),
59 'permission_callback' => [ $this, 'deactivate_item_permissions_check' ],
60 ],
61 // Register our schema callback.
62 'schema' => [ $this, 'get_item_schema' ],
63 ]
64 );
65
66 }
67
68 /**
69 * Get our sample schema for a post.
70 *
71 * @return array The sample schema for a post
72 */
73 public function get_item_schema() {
74 if ( $this->schema ) {
75 // Since WordPress 5.3, the schema can be cached in the $schema property.
76 return $this->schema;
77 }
78
79 $this->schema = [
80 // This tells the spec of JSON Schema we are using which is draft 4.
81 '$schema' => 'http://json-schema.org/draft-04/schema#',
82 // The title property marks the identity of the resource.
83 'title' => $this->endpoint,
84 'type' => 'object',
85 // In JSON Schema you can specify object properties in the properties attribute.
86 'properties' => [
87 'id' => [
88 'description' => esc_html__( 'Unique identifier for the object.', 'surecart' ),
89 'type' => 'string',
90 'readonly' => true,
91 ],
92 ],
93 ];
94
95 return $this->schema;
96 }
97
98 /**
99 * Who can list affiliations?
100 *
101 * @param \WP_REST_Request $request Full details about the request.
102 * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise.
103 */
104 public function get_items_permissions_check( $request ) {
105 return current_user_can( 'read_sc_affiliates' );
106 }
107
108 /**
109 * Who can get a specific affiliation?
110 *
111 * @param \WP_REST_Request $request Full details about the request.
112 * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise.
113 */
114 public function get_item_permissions_check( $request ) {
115 return current_user_can( 'read_sc_affiliates' );
116 }
117
118 /**
119 * Who can update a specific affiliation?
120 *
121 * @param \WP_REST_Request $request Full details about the request.
122 * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise.
123 */
124 public function update_item_permissions_check( $request ) {
125 return current_user_can( 'edit_sc_affiliates' );
126 }
127
128 /**
129 * Who can activate an affiliation?
130 *
131 * @param \WP_REST_Request $request Full details about the request.
132 * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise.
133 */
134 public function activate_item_permissions_check( $request ) {
135 return current_user_can( 'edit_sc_affiliates' );
136 }
137
138 /**
139 * Who can deactivate an affiliation?
140 *
141 * @param \WP_REST_Request $request Full details about the request.
142 * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise.
143 */
144 public function deactivate_item_permissions_check( $request ) {
145 return current_user_can( 'edit_sc_affiliates' );
146 }
147 }
148