Admin
2 years ago
Assets
2 years ago
Pages
3 years ago
PostTypes
3 years ago
Shortcodes
2 years ago
Sitemap
3 years ago
Templates
2 years ago
Users
3 years ago
ActionsService.php
3 years ago
CompatibilityService.php
2 years ago
HealthService.php
2 years ago
PluginService.php
3 years ago
PluginServiceProvider.php
2 years ago
RecaptchaValidationService.php
2 years ago
ThemeService.php
3 years ago
ThemeServiceProvider.php
3 years ago
TranslationsServiceProvider.php
3 years ago
HealthService.php
192 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\WordPress; |
| 4 | |
| 5 | use SureCart\Models\Account; |
| 6 | use SureCart\Models\ApiToken; |
| 7 | use SureCart\Models\IncomingWebhook; |
| 8 | use SureCart\Models\RegisteredWebhook; |
| 9 | use SureCart\Support\Server; |
| 10 | |
| 11 | class HealthService { |
| 12 | /** |
| 13 | * Bootstrap the service. |
| 14 | * |
| 15 | * @return void |
| 16 | */ |
| 17 | public function bootstrap() { |
| 18 | add_filter( 'debug_information', [ $this, 'debugInfo' ] ); |
| 19 | add_filter( 'site_status_tests', [ $this, 'tests' ] ); |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * Add debug information. |
| 24 | * |
| 25 | * @param array $debug_info Debug List. |
| 26 | * |
| 27 | * @return array |
| 28 | */ |
| 29 | public function debugInfo( $debug_info ) { |
| 30 | $total_failed = IncomingWebhook::whereNull( 'processed_at' )->andWhere( 'created_at', '<', ( new \DateTime() )->modify( '-30 minutes' )->format( 'Y-m-d H:i:s' ) )->count(); |
| 31 | $debug_info['surecart'] = array( |
| 32 | 'label' => __( 'SureCart', 'surecart' ), |
| 33 | 'fields' => array( |
| 34 | 'api' => array( |
| 35 | 'label' => __( 'API Connectivity', 'surecart' ), |
| 36 | 'value' => (bool) ApiToken::get() ? __( 'Connected', 'surecart' ) : __( 'Not connected', 'surecart' ), |
| 37 | 'private' => false, |
| 38 | ), |
| 39 | 'store_id' => array( |
| 40 | 'label' => __( 'Store ID', 'surecart' ), |
| 41 | 'value' => \SureCart::account()->id, |
| 42 | 'private' => false, |
| 43 | ), |
| 44 | 'url' => array( |
| 45 | 'label' => __( 'Store URL', 'surecart' ), |
| 46 | 'value' => \SureCart::account()->url, |
| 47 | 'private' => false, |
| 48 | ), |
| 49 | 'webhooks_processing' => array( |
| 50 | 'label' => __( 'Webhooks Processing', 'surecart' ), |
| 51 | 'value' => ! empty( $total_failed ) ? sprintf( __( '%d Unprocessed webhooks', 'surecart' ), $total_failed ) : __( 'Working', 'surecart' ), |
| 52 | 'private' => false, |
| 53 | ), |
| 54 | ), |
| 55 | ); |
| 56 | return $debug_info; |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Register tests for the Status Page |
| 61 | * |
| 62 | * @param array $tests List of tests. |
| 63 | * |
| 64 | * @return array |
| 65 | */ |
| 66 | public function tests( $tests ) { |
| 67 | $tests['async']['surecart_api_test'] = array( |
| 68 | 'label' => __( 'SureCart', 'surecart' ) . ' ' . __( 'API connectivity', 'surecart' ), |
| 69 | 'test' => rest_url( 'surecart/v1/site-health/api-connectivity' ), |
| 70 | 'has_rest' => true, |
| 71 | 'async_direct_test' => [ $this, 'apiTest' ], |
| 72 | ); |
| 73 | |
| 74 | $is_localhost = ( new Server( get_home_url() ) )->isLocalHost(); |
| 75 | if ( ! $is_localhost ) { |
| 76 | $tests['direct']['surecart_webhook_test'] = array( |
| 77 | 'label' => __( 'SureCart', 'neve' ) . ' ' . __( 'Webhooks Processing', 'surecart' ), |
| 78 | 'test' => [ $this, 'webhooksProcessingTest' ], |
| 79 | ); |
| 80 | $tests['async']['surecart_webhooks_test'] = array( |
| 81 | 'label' => __( 'SureCart', 'surecart' ) . ' ' . __( 'Webhooks Connection', 'surecart' ), |
| 82 | 'test' => rest_url( 'surecart/v1/site-health/webhooks' ), |
| 83 | 'has_rest' => true, |
| 84 | 'async_direct_test' => [ $this, 'webhooksTest' ], |
| 85 | ); |
| 86 | } |
| 87 | |
| 88 | return $tests; |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Neve API test pretty response |
| 93 | * |
| 94 | * @return array |
| 95 | */ |
| 96 | public function apiTest() { |
| 97 | $account = Account::find(); |
| 98 | |
| 99 | return array( |
| 100 | 'label' => __( 'SureCart', 'surecart' ) . ' ' . __( 'API connectivity', 'surecart' ), |
| 101 | 'status' => $account->id ? 'good' : 'critical', |
| 102 | 'badge' => array( |
| 103 | 'label' => __( 'SureCart', 'surecart' ), |
| 104 | 'color' => $account->id ? 'blue' : 'red', |
| 105 | ), |
| 106 | 'description' => sprintf( |
| 107 | '<p>%s</p>', |
| 108 | $account->id ? __( 'API for is reachable.', 'surecart' ) : __( 'API for is not reachable.', 'surecart' ) |
| 109 | ), |
| 110 | 'actions' => '', |
| 111 | 'test' => 'surecart_api_test', |
| 112 | ); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Check that webhooks are processing normally. |
| 117 | * |
| 118 | * @return array |
| 119 | */ |
| 120 | public function webhooksProcessingTest() { |
| 121 | $total_failed = IncomingWebhook::whereNull( 'processed_at' )->andWhere( 'created_at', '<', ( new \DateTime() )->modify( '-30 minutes' )->format( 'Y-m-d H:i:s' ) )->count(); |
| 122 | $has_errors = ! empty( $total_failed ); |
| 123 | |
| 124 | return array( |
| 125 | 'label' => $has_errors ? __( 'SureCart Webhooks Processing Error', 'surecart' ) : __( 'SureCart Webhooks Processing', 'surecart' ), |
| 126 | 'status' => $has_errors ? 'critical' : 'good', |
| 127 | 'badge' => array( |
| 128 | 'label' => __( 'SureCart', 'surecart' ), |
| 129 | 'color' => $has_errors ? 'red' : 'blue', |
| 130 | ), |
| 131 | 'description' => sprintf( |
| 132 | '<p>%s</p>', |
| 133 | $has_errors ? sprintf( __( '%d of your webhooks failed to process on your site. Please check your error logs to make sure errors did not occur in webhook processing.', 'surecart' ), (int) $total_failed ) : __( 'Webhook processing is working normally.', 'surecart' ) |
| 134 | ), |
| 135 | 'actions' => $has_errors ? sprintf( |
| 136 | '<a href="%s" class="button" target="_blank">%s</a>', |
| 137 | esc_url( admin_url( 'admin.php?page=sc-settings&tab=connection' ) ), |
| 138 | __( 'Troubleshoot Connection', 'surecart' ) |
| 139 | ) : '', |
| 140 | 'test' => 'surecart_webhooks_processing_test', |
| 141 | ); |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * Neve API test pretty response |
| 146 | * |
| 147 | * @return array |
| 148 | */ |
| 149 | public function webhooksTest() { |
| 150 | // clear account cache. |
| 151 | \SureCart::account()->clearCache(); |
| 152 | |
| 153 | $webhook = RegisteredWebhook::get(); |
| 154 | |
| 155 | // Defaults. |
| 156 | $description = __( 'Webhooks are working normally.', 'surecart' ); |
| 157 | $label = __( 'SureCart', 'surecart' ) . ' ' . __( 'Webhooks', 'surecart' ); |
| 158 | $status = 'good'; |
| 159 | |
| 160 | if ( empty( $webhook->enabled ) ) { |
| 161 | $status = 'critical'; |
| 162 | $label = __( 'SureCart', 'surecart' ) . ' ' . __( 'webhook is disabled.', 'surecart' ); |
| 163 | $description = __( 'The SureCart webhook is currently disabled which can cause issues with integrations. This can happen automatically due to repeated errors, or could have been disabled manually. Please re-enable the webhook and troubleshoot the issue if integrations are important to your store.', 'surecart' ); |
| 164 | } elseif ( ! empty( $webhook->erroring_grace_period_ends_at ) ) { |
| 165 | $status = 'critical'; |
| 166 | $label = __( 'SureCart', 'surecart' ) . ' ' . __( 'webhook connection is being monitored for errors.', 'surecart' ); |
| 167 | $description = __( 'The SureCart webhook has received repeated errors.', 'surecart' ); |
| 168 | $description .= ' ' . $webhook->erroring_grace_period_ends_at > time() ? sprintf( wp_kses( 'These errors will automatically attempt to be retried, however, we will disable this in <strong>%s</strong> if it continues to fail.', 'surecart' ), human_time_diff( $webhook->erroring_grace_period_ends_at ) ) : sprintf( wp_kses( 'It was automatically disabled %s ago.', 'surecart' ), human_time_diff( $webhook->erroring_grace_period_ends_at ) ); |
| 169 | $description .= ' ' . __( 'Please troubleshoot the issue if integrations are important to your store.', 'surecart' ); |
| 170 | } |
| 171 | |
| 172 | return array( |
| 173 | 'label' => $label, |
| 174 | 'status' => $status, |
| 175 | 'badge' => array( |
| 176 | 'label' => __( 'SureCart', 'surecart' ), |
| 177 | 'color' => 'critical' === $status ? 'red' : 'blue', |
| 178 | ), |
| 179 | 'description' => sprintf( |
| 180 | '<p>%s</p>', |
| 181 | $description |
| 182 | ), |
| 183 | 'actions' => 'critical' === $status ? sprintf( |
| 184 | '<a href="%s" class="button" target="_blank">%s</a>', |
| 185 | esc_url( untrailingslashit( SURECART_APP_URL ) . '/developer' ), |
| 186 | __( 'Troubleshoot Connection', 'surecart' ) |
| 187 | ) : '', |
| 188 | 'test' => 'surecart_webhooks_test', |
| 189 | ); |
| 190 | } |
| 191 | } |
| 192 |