AbandonedCheckoutProtocolRestServiceProvider.php
3 years ago
AbandonedCheckoutRestServiceProvider.php
3 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
CustomerLinksRestServiceProvider.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
3 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
ProductGroupsRestServiceProvider.php
3 years ago
ProductMediaRestServiceProvider.php
3 years ago
ProductsRestServiceProvider.php
3 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
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
VerificationCodeRestServiceProvider.php
3 years ago
WebhooksRestServiceProvider.php
3 years ago
DraftCheckoutRestServiceProvider.php
176 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Rest; |
| 4 | |
| 5 | use SureCart\Rest\RestServiceInterface; |
| 6 | use SureCart\Controllers\Rest\DraftCheckoutsController; |
| 7 | |
| 8 | /** |
| 9 | * Service provider for Price Rest Requests |
| 10 | */ |
| 11 | class DraftCheckoutRestServiceProvider extends RestServiceProvider implements RestServiceInterface { |
| 12 | /** |
| 13 | * Endpoint. |
| 14 | * |
| 15 | * @var string |
| 16 | */ |
| 17 | protected $endpoint = 'draft-checkouts'; |
| 18 | |
| 19 | /** |
| 20 | * Rest Controller |
| 21 | * |
| 22 | * @var string |
| 23 | */ |
| 24 | protected $controller = DraftCheckoutsController::class; |
| 25 | |
| 26 | /** |
| 27 | * Methods allowed for the model. |
| 28 | * |
| 29 | * @var array |
| 30 | */ |
| 31 | protected $methods = [ 'index', 'create', 'find', 'edit' ]; |
| 32 | |
| 33 | /** |
| 34 | * Register Additional 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+)/finalize/', |
| 42 | [ |
| 43 | [ |
| 44 | 'methods' => \WP_REST_Server::EDITABLE, |
| 45 | 'callback' => $this->callback( $this->controller, 'finalize' ), |
| 46 | 'permission_callback' => [ $this, 'update_item_permissions_check' ], |
| 47 | ], |
| 48 | // Register our schema callback. |
| 49 | 'schema' => [ $this, 'get_item_schema' ], |
| 50 | ] |
| 51 | ); |
| 52 | |
| 53 | register_rest_route( |
| 54 | "$this->name/v$this->version", |
| 55 | $this->endpoint . '/(?P<id>\S+)/manually_pay/', |
| 56 | [ |
| 57 | [ |
| 58 | 'methods' => \WP_REST_Server::EDITABLE, |
| 59 | 'callback' => $this->callback( $this->controller, 'manuallyPay' ), |
| 60 | 'permission_callback' => [ $this, 'update_item_permissions_check' ], |
| 61 | ], |
| 62 | // Register our schema callback. |
| 63 | 'schema' => [ $this, 'get_item_schema' ], |
| 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 | 'context' => [ 'view', 'edit', 'embed' ], |
| 91 | 'readonly' => true, |
| 92 | ], |
| 93 | 'currency' => [ |
| 94 | 'description' => esc_html__( 'The currency for the session.', 'surecart' ), |
| 95 | 'type' => 'string', |
| 96 | ], |
| 97 | 'metadata' => [ |
| 98 | 'description' => esc_html__( 'Metadata for the order.', 'surecart' ), |
| 99 | 'type' => 'object', |
| 100 | // 'context' => [ 'edit' ], |
| 101 | ], |
| 102 | 'customer_id' => [ |
| 103 | 'description' => esc_html__( 'The customer id for the order.', 'surecart' ), |
| 104 | 'type' => 'string', |
| 105 | 'context' => [ 'edit' ], |
| 106 | ], |
| 107 | 'customer' => [ |
| 108 | 'description' => esc_html__( 'The customer for the session.', 'surecart' ), |
| 109 | 'type' => 'object', |
| 110 | 'context' => [ 'edit' ], |
| 111 | ], |
| 112 | 'line_items' => [ |
| 113 | 'description' => esc_html__( 'The line items for the session.', 'surecart' ), |
| 114 | 'type' => 'object', |
| 115 | ], |
| 116 | 'discount' => [ |
| 117 | 'description' => esc_html__( 'The discount for the session.', 'surecart' ), |
| 118 | 'type' => 'object', |
| 119 | ], |
| 120 | ], |
| 121 | ]; |
| 122 | |
| 123 | return $this->schema; |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Read checkout. |
| 128 | * |
| 129 | * @param \WP_REST_Request $request Full details about the request. |
| 130 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 131 | */ |
| 132 | public function get_item_permissions_check( $request ) { |
| 133 | return current_user_can( 'read_sc_checkouts' ); |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * List checkouts. |
| 138 | * |
| 139 | * @param \WP_REST_Request $request Full details about the request. |
| 140 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 141 | */ |
| 142 | public function get_items_permissions_check( $request ) { |
| 143 | return current_user_can( 'read_sc_checkouts' ); |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * Create checkout. |
| 148 | * |
| 149 | * @param \WP_REST_Request $request Full details about the request. |
| 150 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 151 | */ |
| 152 | public function create_item_permissions_check( $request ) { |
| 153 | return $this->update_item_permissions_check( $request ); |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * Update checkout. |
| 158 | * |
| 159 | * @param \WP_REST_Request $request Full details about the request. |
| 160 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 161 | */ |
| 162 | public function update_item_permissions_check( $request ) { |
| 163 | return current_user_can( 'edit_sc_checkouts' ); |
| 164 | } |
| 165 | |
| 166 | /** |
| 167 | * Nobody can delete. |
| 168 | * |
| 169 | * @param \WP_REST_Request $request Full details about the request. |
| 170 | * @return false |
| 171 | */ |
| 172 | public function delete_item_permissions_check( $request ) { |
| 173 | return $this->update_item_permissions_check( $request ); |
| 174 | } |
| 175 | } |
| 176 |