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
StatisticRestServiceProvider.php
115 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Rest; |
| 4 | |
| 5 | use SureCart\Rest\RestServiceInterface; |
| 6 | use SureCart\Controllers\Rest\StatisticsController; |
| 7 | |
| 8 | /** |
| 9 | * Service provider for Price Rest Requests |
| 10 | */ |
| 11 | class StatisticRestServiceProvider extends RestServiceProvider implements RestServiceInterface { |
| 12 | /** |
| 13 | * Endpoint. |
| 14 | * |
| 15 | * @var string |
| 16 | */ |
| 17 | protected $endpoint = 'stats'; |
| 18 | |
| 19 | /** |
| 20 | * Rest Controller |
| 21 | * |
| 22 | * @var string |
| 23 | */ |
| 24 | protected $controller = StatisticsController::class; |
| 25 | |
| 26 | /** |
| 27 | * Methods allowed for the model. |
| 28 | * |
| 29 | * @var array |
| 30 | */ |
| 31 | protected $methods = [ 'find' ]; |
| 32 | |
| 33 | /** |
| 34 | * Get our sample schema for a post. |
| 35 | * |
| 36 | * @return array The sample schema for a post |
| 37 | */ |
| 38 | public function get_item_schema() { |
| 39 | if ( $this->schema ) { |
| 40 | // Since WordPress 5.3, the schema can be cached in the $schema property. |
| 41 | return $this->schema; |
| 42 | } |
| 43 | |
| 44 | $this->schema = [ |
| 45 | // This tells the spec of JSON Schema we are using which is draft 4. |
| 46 | '$schema' => 'http://json-schema.org/draft-04/schema#', |
| 47 | // The title property marks the identity of the resource. |
| 48 | 'title' => $this->endpoint, |
| 49 | 'type' => 'object', |
| 50 | // In JSON Schema you can specify object properties in the properties attribute. |
| 51 | 'properties' => [ |
| 52 | 'id' => [ |
| 53 | 'description' => esc_html__( 'Unique identifier for the object.', 'surecart' ), |
| 54 | 'type' => 'string', |
| 55 | 'context' => [ 'view', 'edit', 'embed' ], |
| 56 | 'readonly' => true, |
| 57 | ], |
| 58 | ], |
| 59 | ]; |
| 60 | |
| 61 | return $this->schema; |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Get the collection params. |
| 66 | * |
| 67 | * @return array |
| 68 | */ |
| 69 | public function get_collection_params() { |
| 70 | return [ |
| 71 | 'page' => [ |
| 72 | 'description' => esc_html__( 'The page of items you want returned.', 'surecart' ), |
| 73 | 'type' => 'integer', |
| 74 | ], |
| 75 | 'per_page' => [ |
| 76 | 'description' => esc_html__( 'A limit on the number of items to be returned, between 1 and 100.', 'surecart' ), |
| 77 | 'type' => 'integer', |
| 78 | ], |
| 79 | 'currency' => [ |
| 80 | 'description' => esc_html__( "Only return objects that have this currency. If not set, this will fallback to the account's default currency.", 'surecart' ), |
| 81 | 'type' => 'string', |
| 82 | 'context' => [ 'view', 'edit', 'embed' ], |
| 83 | ], |
| 84 | 'end_at' => [ |
| 85 | 'description' => esc_html__( 'The end of the date range to query.', 'surecart' ), |
| 86 | 'type' => 'string', |
| 87 | 'context' => [ 'view', 'edit', 'embed' ], |
| 88 | 'required' => true, |
| 89 | ], |
| 90 | 'interval' => [ |
| 91 | 'description' => esc_html__( 'The interval to group statistics on – one of hour, day, week, month, or year.', 'surecart' ), |
| 92 | 'type' => 'string', |
| 93 | 'context' => [ 'view', 'edit', 'embed' ], |
| 94 | 'required' => true, |
| 95 | ], |
| 96 | 'start' => [ |
| 97 | 'description' => esc_html__( 'The start of the date range to query.', 'surecart' ), |
| 98 | 'type' => 'string', |
| 99 | 'context' => [ 'view', 'edit', 'embed' ], |
| 100 | 'required' => true, |
| 101 | ], |
| 102 | ]; |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * Get file |
| 107 | * |
| 108 | * @param \WP_REST_Request $request Full details about the request. |
| 109 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 110 | */ |
| 111 | public function get_item_permissions_check( $request ) { |
| 112 | return current_user_can( 'manage_sc_shop_settings' ); |
| 113 | } |
| 114 | } |
| 115 |