AbandonedCheckoutProtocolRestServiceProvider.php
3 years ago
AbandonedCheckoutRestServiceProvider.php
2 years ago
AccountRestServiceProvider.php
3 years ago
ActivationRestServiceProvider.php
3 years ago
BalanceTransactionRestServiceProvider.php
3 years ago
BlockPatternsRestServiceProvider.php
3 years ago
BrandRestServiceProvider.php
3 years ago
BumpRestServiceProvider.php
3 years ago
CancellationActRestServiceProvider.php
3 years ago
CancellationReasonRestServiceProvider.php
3 years ago
ChargesRestServiceProvider.php
3 years ago
CheckEmailRestServiceProvider.php
3 years ago
CheckoutRestServiceProvider.php
3 years ago
CouponRestServiceProvider.php
3 years ago
CustomerNotificationProtocolRestServiceProvider.php
3 years ago
CustomerRestServiceProvider.php
3 years ago
DownloadRestServiceProvider.php
3 years ago
DraftCheckoutRestServiceProvider.php
2 years ago
FulfillmentRestServiceProvider.php
3 years ago
IncomingWebhooksRestServiceProvider.php
2 years ago
IntegrationProvidersRestServiceProvider.php
3 years ago
IntegrationsRestServiceProvider.php
3 years ago
InvoicesRestServiceProvider.php
3 years ago
LicenseRestServiceProvider.php
3 years ago
LineItemsRestServiceProvider.php
3 years ago
LoginRestServiceProvider.php
3 years ago
ManualPaymentMethodsRestServiceProvider.php
3 years ago
MediaRestServiceProvider.php
2 years ago
OrderProtocolRestServiceProvider.php
3 years ago
OrderRestServiceProvider.php
3 years ago
PaymentIntentsRestServiceProvider.php
3 years ago
PaymentMethodsRestServiceProvider.php
2 years ago
PeriodRestServiceProvider.php
3 years ago
PortalProtocolRestServiceProvider.php
3 years ago
PriceRestServiceProvider.php
3 years ago
ProcessorRestServiceProvider.php
3 years ago
ProductCollectionsRestServiceProvider.php
2 years ago
ProductGroupsRestServiceProvider.php
3 years ago
ProductMediaRestServiceProvider.php
3 years ago
ProductsRestServiceProvider.php
2 years ago
PromotionRestServiceProvider.php
3 years ago
ProvisionalAccountRestServiceProvider.php
3 years ago
PurchasesRestServiceProvider.php
3 years ago
RefundsRestServiceProvider.php
3 years ago
RegisteredWebhookRestServiceProvider.php
2 years ago
RestServiceInterface.php
3 years ago
RestServiceProvider.php
3 years ago
ReturnItemsRestServiceProvider.php
2 years ago
ReturnReasonsRestServiceProvider.php
2 years ago
ReturnRequestsRestServiceProvider.php
2 years ago
SettingsRestServiceProvider.php
3 years ago
ShippingMethodRestServiceProvider.php
3 years ago
ShippingProfileRestServiceProvider.php
3 years ago
ShippingProtocolRestServiceProvider.php
3 years ago
ShippingRateRestServiceProvider.php
3 years ago
ShippingZoneRestServiceProvider.php
3 years ago
SiteHealthRestServiceProvider.php
2 years ago
StatisticRestServiceProvider.php
3 years ago
SubscriptionProtocolRestServiceProvider.php
3 years ago
SubscriptionRestServiceProvider.php
3 years ago
TaxProtocolRestServiceProvider.php
3 years ago
TaxRegistrationRestServiceProvider.php
3 years ago
TaxZoneRestServiceProvider.php
3 years ago
UploadsRestServiceProvider.php
3 years ago
VariantOptionsRestServiceProvider.php
2 years ago
VariantValuesRestServiceProvider.php
2 years ago
VariantsRestServiceProvider.php
2 years ago
VerificationCodeRestServiceProvider.php
3 years ago
WebhooksRestServiceProvider.php
3 years ago
IntegrationsRestServiceProvider.php
180 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Rest; |
| 4 | |
| 5 | use SureCart\Controllers\Rest\IntegrationProvidersController; |
| 6 | use SureCart\Controllers\Rest\IntegrationsController; |
| 7 | use SureCart\Rest\RestServiceInterface; |
| 8 | |
| 9 | /** |
| 10 | * Service provider for Price Rest Requests |
| 11 | */ |
| 12 | class IntegrationsRestServiceProvider extends RestServiceProvider implements RestServiceInterface { |
| 13 | /** |
| 14 | * Endpoint. |
| 15 | * |
| 16 | * @var string |
| 17 | */ |
| 18 | protected $endpoint = 'integrations'; |
| 19 | |
| 20 | /** |
| 21 | * Rest Controller |
| 22 | * |
| 23 | * @var string |
| 24 | */ |
| 25 | protected $controller = IntegrationsController::class; |
| 26 | |
| 27 | /** |
| 28 | * Methods allowed for the model. |
| 29 | * |
| 30 | * @var array |
| 31 | */ |
| 32 | protected $methods = [ 'index', 'create' ]; |
| 33 | |
| 34 | public function registerRoutes() { |
| 35 | register_rest_route( |
| 36 | "$this->name/v$this->version", |
| 37 | $this->endpoint . '/(?P<id>\d+)', |
| 38 | [ |
| 39 | [ |
| 40 | 'methods' => \WP_REST_Server::READABLE, |
| 41 | 'callback' => $this->callback( $this->controller, 'find' ), |
| 42 | 'permission_callback' => [ $this, 'get_item_permissions_check' ], |
| 43 | ], |
| 44 | [ |
| 45 | 'methods' => \WP_REST_Server::EDITABLE, |
| 46 | 'callback' => $this->callback( $this->controller, 'edit' ), |
| 47 | 'permission_callback' => [ $this, 'update_item_permissions_check' ], |
| 48 | ], |
| 49 | [ |
| 50 | 'methods' => \WP_REST_Server::DELETABLE, |
| 51 | 'callback' => $this->callback( $this->controller, 'delete' ), |
| 52 | 'permission_callback' => [ $this, 'delete_item_permissions_check' ], |
| 53 | ], |
| 54 | ] |
| 55 | ); |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Get our sample schema for a post. |
| 60 | * |
| 61 | * @return array The sample schema for a post |
| 62 | */ |
| 63 | public function get_item_schema() { |
| 64 | if ( $this->schema ) { |
| 65 | // Since WordPress 5.3, the schema can be cached in the $schema property. |
| 66 | return $this->schema; |
| 67 | } |
| 68 | |
| 69 | $this->schema = [ |
| 70 | // This tells the spec of JSON Schema we are using which is draft 4. |
| 71 | '$schema' => 'http://json-schema.org/draft-04/schema#', |
| 72 | // The title property marks the identity of the resource. |
| 73 | 'title' => $this->endpoint, |
| 74 | 'type' => 'object', |
| 75 | // In JSON Schema you can specify object properties in the properties attribute. |
| 76 | 'properties' => [ |
| 77 | 'id' => [ |
| 78 | 'description' => esc_html__( 'Unique identifier for the object.', 'surecart' ), |
| 79 | 'type' => 'string', |
| 80 | 'context' => [ 'view', 'edit', 'embed' ], |
| 81 | 'readonly' => true, |
| 82 | ], |
| 83 | 'model_name' => [ |
| 84 | 'description' => esc_html__( 'The SureCart model name.', 'surecart' ), |
| 85 | 'type' => 'string', |
| 86 | 'context' => [ 'view', 'edit', 'embed' ], |
| 87 | 'required' => true, |
| 88 | ], |
| 89 | ], |
| 90 | ]; |
| 91 | |
| 92 | return $this->schema; |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * Get the collection params. |
| 97 | * |
| 98 | * @return array |
| 99 | */ |
| 100 | public function get_collection_params() { |
| 101 | return [ |
| 102 | 'model_ids' => [ |
| 103 | 'description' => esc_html__( 'The SureCart model id.', 'surecart' ), |
| 104 | 'type' => 'array', |
| 105 | 'items' => [ |
| 106 | 'type' => 'string', |
| 107 | ], |
| 108 | 'default' => [], |
| 109 | ], |
| 110 | 'integration_ids' => [ |
| 111 | 'type' => 'array', |
| 112 | 'items' => [ |
| 113 | 'type' => 'integer', |
| 114 | ], |
| 115 | 'default' => [], |
| 116 | ], |
| 117 | 'page' => [ |
| 118 | 'description' => esc_html__( 'The page of items you want returned.', 'surecart' ), |
| 119 | 'type' => 'integer', |
| 120 | ], |
| 121 | 'per_page' => [ |
| 122 | 'description' => esc_html__( 'A limit on the number of items to be returned, between 1 and 100.', 'surecart' ), |
| 123 | 'type' => 'integer', |
| 124 | 'minimum' => 1, |
| 125 | 'maximum' => 100, |
| 126 | ], |
| 127 | ]; |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Read permissions. |
| 132 | * |
| 133 | * @param \WP_REST_Request $request Full details about the request. |
| 134 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 135 | */ |
| 136 | public function get_item_permissions_check( $request ) { |
| 137 | return current_user_can( 'read_sc_products' ); |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * List permissions. |
| 142 | * |
| 143 | * @param \WP_REST_Request $request Full details about the request. |
| 144 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 145 | */ |
| 146 | public function get_items_permissions_check( $request ) { |
| 147 | return current_user_can( 'read_sc_products' ); |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * Create |
| 152 | * |
| 153 | * @param \WP_REST_Request $request Full details about the request. |
| 154 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 155 | */ |
| 156 | public function create_item_permissions_check( $request ) { |
| 157 | return current_user_can( 'publish_sc_products' ); |
| 158 | } |
| 159 | |
| 160 | /** |
| 161 | * Update |
| 162 | * |
| 163 | * @param \WP_REST_Request $request Full details about the request. |
| 164 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 165 | */ |
| 166 | public function update_item_permissions_check( $request ) { |
| 167 | return current_user_can( 'edit_sc_products' ); |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * Delete. |
| 172 | * |
| 173 | * @param \WP_REST_Request $request Full details about the request. |
| 174 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 175 | */ |
| 176 | public function delete_item_permissions_check( $request ) { |
| 177 | return current_user_can( 'delete_sc_products' ); |
| 178 | } |
| 179 | } |
| 180 |