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
PromotionRestServiceProvider.php
106 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Rest; |
| 4 | |
| 5 | use SureCart\Rest\RestServiceInterface; |
| 6 | use SureCart\Controllers\Rest\PromotionsController; |
| 7 | |
| 8 | /** |
| 9 | * Service provider for Price Rest Requests |
| 10 | */ |
| 11 | class PromotionRestServiceProvider extends RestServiceProvider implements RestServiceInterface { |
| 12 | /** |
| 13 | * Endpoint. |
| 14 | * |
| 15 | * @var string |
| 16 | */ |
| 17 | protected $endpoint = 'promotions'; |
| 18 | |
| 19 | /** |
| 20 | * Rest Controller |
| 21 | * |
| 22 | * @var string |
| 23 | */ |
| 24 | protected $controller = PromotionsController::class; |
| 25 | |
| 26 | /** |
| 27 | * Get our sample schema for a post. |
| 28 | * |
| 29 | * @return array The sample schema for a post |
| 30 | */ |
| 31 | public function get_item_schema() { |
| 32 | if ( $this->schema ) { |
| 33 | // Since WordPress 5.3, the schema can be cached in the $schema property. |
| 34 | return $this->schema; |
| 35 | } |
| 36 | |
| 37 | $this->schema = [ |
| 38 | // This tells the spec of JSON Schema we are using which is draft 4. |
| 39 | '$schema' => 'http://json-schema.org/draft-04/schema#', |
| 40 | // The title property marks the identity of the resource. |
| 41 | 'title' => $this->endpoint, |
| 42 | 'type' => 'object', |
| 43 | // In JSON Schema you can specify object properties in the properties attribute. |
| 44 | 'properties' => [ |
| 45 | 'id' => [ |
| 46 | 'description' => esc_html__( 'Unique identifier for the object.', 'surecart' ), |
| 47 | 'type' => 'string', |
| 48 | 'readonly' => true, |
| 49 | ], |
| 50 | ], |
| 51 | ]; |
| 52 | |
| 53 | return $this->schema; |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Promotions are "private" |
| 58 | * |
| 59 | * @param \WP_REST_Request $request Full details about the request. |
| 60 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 61 | */ |
| 62 | public function get_item_permissions_check( $request ) { |
| 63 | return current_user_can( 'read_sc_promotions' ); |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * Get items |
| 68 | * |
| 69 | * @param \WP_REST_Request $request Full details about the request. |
| 70 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 71 | */ |
| 72 | public function get_items_permissions_check( $request ) { |
| 73 | return current_user_can( 'read_sc_promotions' ); |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Create model. |
| 78 | * |
| 79 | * @param \WP_REST_Request $request Full details about the request. |
| 80 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 81 | */ |
| 82 | public function create_item_permissions_check( $request ) { |
| 83 | return current_user_can( 'publish_sc_promotions' ); |
| 84 | } |
| 85 | |
| 86 | /** |
| 87 | * Update model. |
| 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 update_item_permissions_check( $request ) { |
| 93 | return current_user_can( 'edit_sc_promotions' ); |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Delete model. |
| 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 delete_item_permissions_check( $request ) { |
| 103 | return current_user_can( 'delete_sc_promotions' ); |
| 104 | } |
| 105 | } |
| 106 |