PluginProbe
SureCart – Ecommerce Made Easy For Selling Physical Products, Digital Downloads, Subscriptions, Donations, & Payments / 4.2.1
SureCart – Ecommerce Made Easy For Selling Physical Products, Digital Downloads, Subscriptions, Donations, & Payments v4.2.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 / CheckEmailRestServiceProvider.php
CheckEmailRestServiceProvider.php
84 lines 1.8 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\Rest\RestServiceInterface;
6 use SureCart\Controllers\Rest\CheckEmailController;
7
8 /**
9 * Service provider for Price Rest Requests
10 */
11 class CheckEmailRestServiceProvider extends RestServiceProvider implements RestServiceInterface {
12 /**
13 * Endpoint.
14 *
15 * @var string
16 */
17 protected $endpoint = 'check_email';
18
19 /**
20 * Methods allowed for the model.
21 *
22 * @var array
23 */
24 protected $methods = [];
25
26 /**
27 * Register REST Routes
28 *
29 * @return void
30 */
31 public function registerRoutes() {
32 register_rest_route(
33 "$this->name/v$this->version",
34 "$this->endpoint",
35 [
36 [
37 'methods' => \WP_REST_Server::EDITABLE,
38 'callback' => $this->callback( CheckEmailController::class, 'checkEmail' ),
39 'permission_callback' => [ $this, 'check_email_permissions_check' ],
40 ],
41 'schema' => [ $this, 'get_item_schema' ],
42 ]
43 );
44 }
45
46 /**
47 * Get our sample schema for a post.
48 *
49 * @return array The sample schema for a post
50 */
51 public function get_item_schema() {
52 if ( $this->schema ) {
53 // Since WordPress 5.3, the schema can be cached in the $schema property.
54 return $this->schema;
55 }
56
57 $this->schema = [
58 // This tells the spec of JSON Schema we are using which is draft 4.
59 '$schema' => 'http://json-schema.org/draft-04/schema#',
60 // The title property marks the identity of the resource.
61 'title' => $this->endpoint,
62 'type' => 'object',
63 // In JSON Schema you can specify object properties in the properties attribute.
64 'properties' => [
65 'login' => [
66 'description' => esc_html__( 'Login', 'surecart' ),
67 'type' => 'string',
68 ],
69 ],
70 ];
71
72 return $this->schema;
73 }
74
75 /**
76 * Anyone can check email.
77 *
78 * @return true
79 */
80 public function check_email_permissions_check( $request ) {
81 return true;
82 }
83 }
84