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
ProcessorRestServiceProvider.php
129 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Rest; |
| 4 | |
| 5 | use SureCart\Controllers\Rest\ProcessorController; |
| 6 | use SureCart\Rest\RestServiceInterface; |
| 7 | |
| 8 | /** |
| 9 | * Service provider for Price Rest Requests |
| 10 | */ |
| 11 | class ProcessorRestServiceProvider extends RestServiceProvider implements RestServiceInterface { |
| 12 | |
| 13 | /** |
| 14 | * Endpoint. |
| 15 | * |
| 16 | * @var string |
| 17 | */ |
| 18 | protected $endpoint = 'processors'; |
| 19 | |
| 20 | /** |
| 21 | * Rest Controller |
| 22 | * |
| 23 | * @var string |
| 24 | */ |
| 25 | protected $controller = ProcessorController::class; |
| 26 | |
| 27 | /** |
| 28 | * Register Additional REST Routes |
| 29 | * |
| 30 | * @return void |
| 31 | */ |
| 32 | public function registerRoutes() { |
| 33 | register_rest_route( |
| 34 | "$this->name/v$this->version", |
| 35 | $this->endpoint . '/(?P<id>\S+)/payment_method_types/', |
| 36 | [ |
| 37 | [ |
| 38 | 'methods' => \WP_REST_Server::READABLE, |
| 39 | 'callback' => $this->callback( $this->controller, 'paymentMethodTypes' ), |
| 40 | 'permission_callback' => [ $this, 'get_items_permissions_check' ], |
| 41 | ], |
| 42 | // Register our schema callback. |
| 43 | 'schema' => [ $this, 'get_item_schema' ], |
| 44 | ] |
| 45 | ); |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Get our sample schema for a post. |
| 50 | * |
| 51 | * @return array The sample schema for a post |
| 52 | */ |
| 53 | public function get_item_schema() { |
| 54 | if ( $this->schema ) { |
| 55 | // Since WordPress 5.3, the schema can be cached in the $schema property. |
| 56 | return $this->schema; |
| 57 | } |
| 58 | |
| 59 | $this->schema = [ |
| 60 | // This tells the spec of JSON Schema we are using which is draft 4. |
| 61 | '$schema' => 'http://json-schema.org/draft-04/schema#', |
| 62 | // The title property marks the identity of the resource. |
| 63 | 'title' => $this->endpoint, |
| 64 | 'type' => 'object', |
| 65 | // In JSON Schema you can specify object properties in the properties attribute. |
| 66 | 'properties' => [ |
| 67 | 'id' => [ |
| 68 | 'description' => esc_html__( 'Unique identifier for the object.', 'surecart' ), |
| 69 | 'type' => 'string', |
| 70 | 'context' => [ 'view', 'edit', 'embed' ], |
| 71 | 'readonly' => true, |
| 72 | ], |
| 73 | ], |
| 74 | ]; |
| 75 | |
| 76 | return $this->schema; |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Read permissions. |
| 81 | * |
| 82 | * @param \WP_REST_Request $request Full details about the request. |
| 83 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 84 | */ |
| 85 | public function get_item_permissions_check( $request ) { |
| 86 | return true; |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * List permissions. |
| 91 | * |
| 92 | * @param \WP_REST_Request $request Full details about the request. |
| 93 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 94 | */ |
| 95 | public function get_items_permissions_check( $request ) { |
| 96 | return true; |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Create permissions. |
| 101 | * |
| 102 | * @param \WP_REST_Request $request Full details about the request. |
| 103 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 104 | */ |
| 105 | public function create_item_permissions_check( $request ) { |
| 106 | return current_user_can( 'edit_sc_payment_methods' ); |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Update permissions. |
| 111 | * |
| 112 | * @param \WP_REST_Request $request Full details about the request. |
| 113 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 114 | */ |
| 115 | public function update_item_permissions_check( $request ) { |
| 116 | return current_user_can( 'edit_sc_payment_methods' ); |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * Delete permissions. |
| 121 | * |
| 122 | * @param \WP_REST_Request $request Full details about the request. |
| 123 | * @return false |
| 124 | */ |
| 125 | public function delete_item_permissions_check( $request ) { |
| 126 | return current_user_can( 'edit_sc_payment_methods' ); |
| 127 | } |
| 128 | } |
| 129 |