PluginProbe
SureCart – Ecommerce Made Easy For Selling Physical Products, Digital Downloads, Subscriptions, Donations, & Payments / 4.3.2
SureCart – Ecommerce Made Easy For Selling Physical Products, Digital Downloads, Subscriptions, Donations, & Payments v4.3.2
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 / PeriodRestServiceProvider.php
PeriodRestServiceProvider.php
126 lines 3.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\PeriodsController;
6 use SureCart\Rest\RestServiceInterface;
7
8 /**
9 * Service provider for Invoice Rest Requests
10 */
11 class PeriodRestServiceProvider extends RestServiceProvider implements RestServiceInterface {
12 /**
13 * Endpoint.
14 *
15 * @var string
16 */
17 protected $endpoint = 'periods';
18
19 /**
20 * Rest Controller
21 *
22 * @var string
23 */
24 protected $controller = PeriodsController::class;
25
26 /**
27 * Methods allowed for the model.
28 *
29 * @var array
30 */
31 protected $methods = [ 'index', 'find','edit' ];
32
33 /**
34 * Register REST Routes
35 *
36 * @return void
37 */
38 public function registerRoutes() {
39 register_rest_route(
40 "$this->name/v$this->version",
41 $this->endpoint . '/(?P<id>\S+)/retry_payment/',
42 [
43 [
44 'methods' => \WP_REST_Server::EDITABLE,
45 'callback' => $this->callback( $this->controller, 'retryPayment' ),
46 'permission_callback' => [ $this, 'retry_payment_permissions_check' ],
47 ],
48 // Register our schema callback.
49 'schema' => [ $this, 'get_item_schema' ],
50 ]
51 );
52 }
53
54
55 /**
56 * Get our sample schema for a post.
57 *
58 * @return array The sample schema for a post
59 */
60 public function get_item_schema() {
61 if ( $this->schema ) {
62 // Since WordPress 5.3, the schema can be cached in the $schema property.
63 return $this->schema;
64 }
65
66 $this->schema = [
67 // This tells the spec of JSON Schema we are using which is draft 4.
68 '$schema' => 'http://json-schema.org/draft-04/schema#',
69 // The title property marks the identity of the resource.
70 'title' => $this->endpoint,
71 'type' => 'object',
72 // In JSON Schema you can specify object properties in the properties attribute.
73 'properties' => [
74 'id' => [
75 'description' => esc_html__( 'Unique identifier for the object.', 'surecart' ),
76 'type' => 'string',
77 'context' => [ 'view', 'edit', 'embed' ],
78 'readonly' => true,
79 ],
80 ],
81 ];
82
83 return $this->schema;
84 }
85
86 /**
87 * Get permissions.
88 *
89 * @param \WP_REST_Request $request Full details about the request.
90 * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise.
91 */
92 public function get_item_permissions_check( $request ) {
93 return current_user_can( 'read_sc_subscriptions' );
94 }
95
96 /**
97 * List 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 get_items_permissions_check( $request ) {
103 return current_user_can( 'read_sc_subscriptions', $request->get_params() );
104 }
105
106 /**
107 * Retry payment permissions
108 *
109 * @param \WP_REST_Request $request Full details about the request.
110 * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise.
111 */
112 public function retry_payment_permissions_check( $request ) {
113 return current_user_can( 'edit_sc_subscription', $request->get_params() );
114 }
115
116 /**
117 * Check update permissions.
118 *
119 * @param \WP_REST_Request $request Full details about the request.
120 * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise.
121 */
122 public function update_item_permissions_check( $request ) {
123 return current_user_can( 'edit_sc_subscriptions',$request->get_params() );
124 }
125 }
126