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
SiteHealthRestServiceProvider.php
82 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Rest; |
| 4 | |
| 5 | use SureCart\Controllers\Rest\SiteHealthController; |
| 6 | use SureCart\Rest\RestServiceInterface; |
| 7 | |
| 8 | /** |
| 9 | * Service provider for Shipping Zone Rest Requests |
| 10 | */ |
| 11 | class SiteHealthRestServiceProvider extends RestServiceProvider implements RestServiceInterface { |
| 12 | /** |
| 13 | * Endpoint. |
| 14 | * |
| 15 | * @var string |
| 16 | */ |
| 17 | protected $endpoint = 'site-health'; |
| 18 | |
| 19 | /** |
| 20 | * Methods allowed for the model. |
| 21 | * |
| 22 | * @var array |
| 23 | */ |
| 24 | protected $methods = []; |
| 25 | |
| 26 | /** |
| 27 | * Register routes required to work. |
| 28 | * |
| 29 | * @return void |
| 30 | */ |
| 31 | public function registerRoutes() { |
| 32 | register_rest_route( |
| 33 | "$this->name/v$this->version", |
| 34 | $this->endpoint . '/api-connectivity/', |
| 35 | [ |
| 36 | [ |
| 37 | 'methods' => \WP_REST_Server::READABLE, |
| 38 | 'callback' => [ \SureCart::healthCheck(), 'apiTest' ], |
| 39 | 'permission_callback' => function() { |
| 40 | return $this->permission( 'surecart_api_connectivity' ); |
| 41 | }, |
| 42 | ], |
| 43 | ] |
| 44 | ); |
| 45 | register_rest_route( |
| 46 | "$this->name/v$this->version", |
| 47 | $this->endpoint . '/webhooks/', |
| 48 | [ |
| 49 | [ |
| 50 | 'methods' => \WP_REST_Server::READABLE, |
| 51 | 'callback' => [ \SureCart::healthCheck(), 'webhooksTest' ], |
| 52 | 'permission_callback' => function() { |
| 53 | return $this->permission( 'surecart_webhooks' ); |
| 54 | }, |
| 55 | ], |
| 56 | ] |
| 57 | ); |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * Retrieve permissions. |
| 62 | * |
| 63 | * @param \WP_REST_Request $request Full details about the request. |
| 64 | * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise. |
| 65 | */ |
| 66 | public function permission( $check ) { |
| 67 | $default_capability = 'view_site_health_checks'; |
| 68 | |
| 69 | /** |
| 70 | * Filters the capability needed to run a given Site Health check. |
| 71 | * |
| 72 | * @since 5.6.0 |
| 73 | * |
| 74 | * @param string $default_capability The default capability required for this check. |
| 75 | * @param string $check The Site Health check being performed. |
| 76 | */ |
| 77 | $capability = apply_filters( "site_health_test_rest_capability_{$check}", $default_capability, $check ); |
| 78 | |
| 79 | return current_user_can( $capability ); |
| 80 | } |
| 81 | } |
| 82 |