AbandonedCheckoutProtocolRestServiceProvider.php
3 years ago
AbandonedCheckoutRestServiceProvider.php
2 years ago
AccountRestServiceProvider.php
4 years ago
ActivationRestServiceProvider.php
1 year ago
AffiliationProductsRestServiceProvider.php
2 years ago
AffiliationProtocolRestServiceProvider.php
2 years ago
AffiliationRequestsRestServiceProvider.php
2 years ago
AffiliationsRestServiceProvider.php
11 months ago
AutoFeeProtocolRestServiceProvider.php
5 months ago
AutoFeeRestServiceProvider.php
5 months ago
BalanceTransactionRestServiceProvider.php
3 years ago
BatchesRestServiceProvider.php
1 week ago
BlockPatternsRestServiceProvider.php
3 years ago
BrandRestServiceProvider.php
5 days ago
BumpRestServiceProvider.php
5 days ago
BundleItemsRestServiceProvider.php
5 days ago
CancellationActRestServiceProvider.php
1 year ago
CancellationReasonRestServiceProvider.php
1 year ago
ChargesRestServiceProvider.php
4 years ago
CheckEmailRestServiceProvider.php
3 years ago
CheckoutRestServiceProvider.php
1 year ago
ClicksRestServiceProvider.php
2 years ago
CouponRestServiceProvider.php
4 years ago
CustomerNotificationProtocolRestServiceProvider.php
4 years ago
CustomerPortalProtocolRestServiceProvider.php
1 year ago
CustomerRestServiceProvider.php
1 month ago
DisplayCurrencyRestServiceProvider.php
1 year ago
DisputesRestServiceProvider.php
9 months ago
DownloadRestServiceProvider.php
3 months ago
DraftCheckoutRestServiceProvider.php
1 year ago
ExportsRestServiceProvider.php
2 years ago
FulfillmentRestServiceProvider.php
3 years ago
ImportRowsRestServiceProvider.php
2 months ago
IncomingWebhooksRestServiceProvider.php
2 years ago
IntegrationProvidersRestServiceProvider.php
4 years ago
IntegrationsCatalogRestServiceProvider.php
1 year ago
IntegrationsRestServiceProvider.php
4 years ago
InvoicesRestServiceProvider.php
1 year ago
LicenseRestServiceProvider.php
1 year ago
LineItemsRestServiceProvider.php
1 year ago
LoginRestServiceProvider.php
1 month ago
ManualPaymentMethodsRestServiceProvider.php
3 years ago
MediaRestServiceProvider.php
1 year ago
OrderProtocolRestServiceProvider.php
1 year ago
OrderRestServiceProvider.php
1 year ago
ParcelTemplateRestServiceProvider.php
4 months ago
PaymentIntentsRestServiceProvider.php
4 years ago
PaymentMethodsRestServiceProvider.php
2 years ago
PayoutGroupsRestServiceProvider.php
2 years ago
PayoutsRestServiceProvider.php
5 months ago
PeriodRestServiceProvider.php
3 years ago
PluginInstallerRestServiceProvider.php
1 week ago
PriceRestServiceProvider.php
5 days ago
ProcessorRestServiceProvider.php
3 years ago
ProductCollectionsRestServiceProvider.php
5 days ago
ProductGroupsRestServiceProvider.php
5 days ago
ProductMediaRestServiceProvider.php
5 days ago
ProductsRestServiceProvider.php
5 days ago
PromotionRestServiceProvider.php
4 years ago
ProvisionalAccountRestServiceProvider.php
3 years ago
PurchasesRestServiceProvider.php
4 years ago
ReferralItemsRestServiceProvider.php
2 years ago
ReferralsRestServiceProvider.php
2 years ago
RefundsRestServiceProvider.php
4 years ago
RegisteredWebhookRestServiceProvider.php
2 years ago
RestServiceInterface.php
4 years ago
RestServiceProvider.php
5 days ago
ReturnItemsRestServiceProvider.php
2 years ago
ReturnReasonsRestServiceProvider.php
2 years ago
ReturnRequestsRestServiceProvider.php
2 years ago
ReviewProtocolRestServiceProvider.php
5 months ago
ReviewsRestServiceProvider.php
1 week ago
RuleSchemaRestServiceProvider.php
5 months ago
SettingsRestServiceProvider.php
1 year ago
ShippingMethodRestServiceProvider.php
3 years ago
ShippingProfileRestServiceProvider.php
3 years ago
ShippingProtocolRestServiceProvider.php
1 year ago
ShippingRateRestServiceProvider.php
3 years ago
ShippingZoneRestServiceProvider.php
3 years ago
SiteHealthRestServiceProvider.php
2 years ago
StatisticRestServiceProvider.php
3 years ago
SubscriptionProtocolRestServiceProvider.php
5 months ago
SubscriptionRestServiceProvider.php
2 years ago
SwapRestServiceProvider.php
1 year ago
TaxOverrideRestServiceProvider.php
1 year ago
TaxProtocolRestServiceProvider.php
1 year ago
TaxRegistrationRestServiceProvider.php
1 year ago
TaxZoneRestServiceProvider.php
1 year ago
UploadsRestServiceProvider.php
4 years ago
UpsellFunnelRestServiceProvider.php
1 year ago
UpsellRestServiceProvider.php
5 days ago
VariantOptionsRestServiceProvider.php
5 days ago
VariantValuesRestServiceProvider.php
5 days ago
VariantsRestServiceProvider.php
5 days ago
VerificationCodeRestServiceProvider.php
3 years ago
WebhooksRestServiceProvider.php
4 years ago
ProductGroupsRestServiceProvider.php
143 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Rest; |
| 4 | |
| 5 | use SureCart\Rest\RestServiceInterface; |
| 6 | use SureCart\Controllers\Rest\ProductGroupsController; |
| 7 | |
| 8 | /** |
| 9 | * Service provider for Price Rest Requests |
| 10 | */ |
| 11 | class ProductGroupsRestServiceProvider extends RestServiceProvider implements RestServiceInterface { |
| 12 | |
| 13 | /** |
| 14 | * Endpoint. |
| 15 | * |
| 16 | * @var string |
| 17 | */ |
| 18 | protected $endpoint = 'product_groups'; |
| 19 | |
| 20 | /** |
| 21 | * Rest Controller |
| 22 | * |
| 23 | * @var string |
| 24 | */ |
| 25 | protected $controller = ProductGroupsController::class; |
| 26 | |
| 27 | /** |
| 28 | * Filter index list items by schema context. |
| 29 | * |
| 30 | * @var boolean |
| 31 | */ |
| 32 | protected $filters_list_items = true; |
| 33 | |
| 34 | /** |
| 35 | * Get our sample schema for a post. |
| 36 | * |
| 37 | * @return array The sample schema for a post |
| 38 | */ |
| 39 | public function get_item_schema() { |
| 40 | if ( $this->schema ) { |
| 41 | // Since WordPress 5.3, the schema can be cached in the $schema property. |
| 42 | return $this->schema; |
| 43 | } |
| 44 | |
| 45 | $this->schema = [ |
| 46 | // This tells the spec of JSON Schema we are using which is draft 4. |
| 47 | '$schema' => 'http://json-schema.org/draft-04/schema#', |
| 48 | // The title property marks the identity of the resource. |
| 49 | 'title' => $this->endpoint, |
| 50 | 'type' => 'object', |
| 51 | // In JSON Schema you can specify object properties in the properties attribute. |
| 52 | 'properties' => [ |
| 53 | 'id' => [ |
| 54 | 'description' => esc_html__( 'Unique identifier for the object.', 'surecart' ), |
| 55 | 'type' => 'string', |
| 56 | 'context' => array( 'view', 'edit', 'embed' ), |
| 57 | 'readonly' => true, |
| 58 | ], |
| 59 | 'content' => array( |
| 60 | 'description' => esc_html__( 'The content for the object.', 'surecart' ), |
| 61 | 'type' => 'string', |
| 62 | ), |
| 63 | 'metadata' => [ |
| 64 | 'description' => esc_html__( 'Set of key-value pairs for custom data.', 'surecart' ), |
| 65 | 'type' => 'object', |
| 66 | 'context' => [ 'edit' ], |
| 67 | ], |
| 68 | 'archived_at' => [ |
| 69 | 'description' => esc_html__( 'Archived at timestamp.', 'surecart' ), |
| 70 | 'type' => 'integer', |
| 71 | 'context' => [ 'edit' ], |
| 72 | ], |
| 73 | ], |
| 74 | ]; |
| 75 | |
| 76 | return $this->schema; |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * You can get a specific product group if you have the id. |
| 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 | $check = $this->forbidEditContextWithout( $request, 'edit_sc_products' ); |
| 87 | if ( is_wp_error( $check ) ) { |
| 88 | return $check; |
| 89 | } |
| 90 | |
| 91 | return true; |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * You can list product groups if you have the ids. |
| 96 | * |
| 97 | * @param \WP_REST_Request $request Full details about the request. |
| 98 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 99 | */ |
| 100 | public function get_items_permissions_check( $request ) { |
| 101 | $check = $this->forbidEditContextWithout( $request, 'edit_sc_products' ); |
| 102 | if ( is_wp_error( $check ) ) { |
| 103 | return $check; |
| 104 | } |
| 105 | |
| 106 | if ( ! empty( $request['ids'] ) && true !== $request['archived'] ) { |
| 107 | return true; |
| 108 | } |
| 109 | |
| 110 | return current_user_can( 'read_sc_products' ); |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Create model. |
| 115 | * |
| 116 | * @param \WP_REST_Request $request Full details about the request. |
| 117 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 118 | */ |
| 119 | public function create_item_permissions_check( $request ) { |
| 120 | return current_user_can( 'edit_sc_products' ); |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Update model. |
| 125 | * |
| 126 | * @param \WP_REST_Request $request Full details about the request. |
| 127 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 128 | */ |
| 129 | public function update_item_permissions_check( $request ) { |
| 130 | return current_user_can( 'edit_sc_products' ); |
| 131 | } |
| 132 | |
| 133 | /** |
| 134 | * Delete model. |
| 135 | * |
| 136 | * @param \WP_REST_Request $request Full details about the request. |
| 137 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 138 | */ |
| 139 | public function delete_item_permissions_check( $request ) { |
| 140 | return current_user_can( 'edit_sc_products' ); |
| 141 | } |
| 142 | } |
| 143 |