@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if ( ! defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -72,9 +72,9 @@ discard block |
||
72 | 72 | public function __construct() { |
73 | 73 | $this->retry_interval = 1; |
74 | 74 | $this->id = 'stripe_sepa'; |
75 | - $this->method_title = __( 'Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe' ); |
|
75 | + $this->method_title = __('Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe'); |
|
76 | 76 | /* translators: link */ |
77 | - $this->method_description = sprintf( __( 'All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=stripe' ) ); |
|
77 | + $this->method_description = sprintf(__('All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe'), admin_url('admin.php?page=wc-settings&tab=checkout§ion=stripe')); |
|
78 | 78 | $this->has_fields = true; |
79 | 79 | $this->supports = array( |
80 | 80 | 'products', |
@@ -100,28 +100,28 @@ discard block |
||
100 | 100 | // Load the settings. |
101 | 101 | $this->init_settings(); |
102 | 102 | |
103 | - $main_settings = get_option( 'woocommerce_stripe_settings' ); |
|
104 | - $this->title = $this->get_option( 'title' ); |
|
105 | - $this->description = $this->get_option( 'description' ); |
|
106 | - $this->enabled = $this->get_option( 'enabled' ); |
|
107 | - $this->testmode = ( ! empty( $main_settings['testmode'] ) && 'yes' === $main_settings['testmode'] ) ? true : false; |
|
108 | - $this->saved_cards = ( ! empty( $main_settings['saved_cards'] ) && 'yes' === $main_settings['saved_cards'] ) ? true : false; |
|
109 | - $this->publishable_key = ! empty( $main_settings['publishable_key'] ) ? $main_settings['publishable_key'] : ''; |
|
110 | - $this->secret_key = ! empty( $main_settings['secret_key'] ) ? $main_settings['secret_key'] : ''; |
|
111 | - $this->statement_descriptor = ! empty( $main_settings['statement_descriptor'] ) ? $main_settings['statement_descriptor'] : ''; |
|
112 | - |
|
113 | - if ( $this->testmode ) { |
|
114 | - $this->publishable_key = ! empty( $main_settings['test_publishable_key'] ) ? $main_settings['test_publishable_key'] : ''; |
|
115 | - $this->secret_key = ! empty( $main_settings['test_secret_key'] ) ? $main_settings['test_secret_key'] : ''; |
|
103 | + $main_settings = get_option('woocommerce_stripe_settings'); |
|
104 | + $this->title = $this->get_option('title'); |
|
105 | + $this->description = $this->get_option('description'); |
|
106 | + $this->enabled = $this->get_option('enabled'); |
|
107 | + $this->testmode = ( ! empty($main_settings['testmode']) && 'yes' === $main_settings['testmode']) ? true : false; |
|
108 | + $this->saved_cards = ( ! empty($main_settings['saved_cards']) && 'yes' === $main_settings['saved_cards']) ? true : false; |
|
109 | + $this->publishable_key = ! empty($main_settings['publishable_key']) ? $main_settings['publishable_key'] : ''; |
|
110 | + $this->secret_key = ! empty($main_settings['secret_key']) ? $main_settings['secret_key'] : ''; |
|
111 | + $this->statement_descriptor = ! empty($main_settings['statement_descriptor']) ? $main_settings['statement_descriptor'] : ''; |
|
112 | + |
|
113 | + if ($this->testmode) { |
|
114 | + $this->publishable_key = ! empty($main_settings['test_publishable_key']) ? $main_settings['test_publishable_key'] : ''; |
|
115 | + $this->secret_key = ! empty($main_settings['test_secret_key']) ? $main_settings['test_secret_key'] : ''; |
|
116 | 116 | } |
117 | 117 | |
118 | - add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); |
|
119 | - add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) ); |
|
118 | + add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options')); |
|
119 | + add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); |
|
120 | 120 | |
121 | - if ( WC_Stripe_Helper::is_pre_orders_exists() ) { |
|
121 | + if (WC_Stripe_Helper::is_pre_orders_exists()) { |
|
122 | 122 | $this->pre_orders = new WC_Stripe_Pre_Orders_Compat(); |
123 | 123 | |
124 | - add_action( 'wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array( $this->pre_orders, 'process_pre_order_release_payment' ) ); |
|
124 | + add_action('wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array($this->pre_orders, 'process_pre_order_release_payment')); |
|
125 | 125 | } |
126 | 126 | } |
127 | 127 | |
@@ -149,11 +149,11 @@ discard block |
||
149 | 149 | * @return bool |
150 | 150 | */ |
151 | 151 | public function is_available() { |
152 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
152 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
153 | 153 | return false; |
154 | 154 | } |
155 | 155 | |
156 | - if ( is_add_payment_method_page() && ! $this->saved_cards ) { |
|
156 | + if (is_add_payment_method_page() && ! $this->saved_cards) { |
|
157 | 157 | return false; |
158 | 158 | } |
159 | 159 | |
@@ -172,9 +172,9 @@ discard block |
||
172 | 172 | |
173 | 173 | $icons_str = ''; |
174 | 174 | |
175 | - $icons_str .= isset( $icons['sepa'] ) ? $icons['sepa'] : ''; |
|
175 | + $icons_str .= isset($icons['sepa']) ? $icons['sepa'] : ''; |
|
176 | 176 | |
177 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
177 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
178 | 178 | } |
179 | 179 | |
180 | 180 | /** |
@@ -185,19 +185,19 @@ discard block |
||
185 | 185 | * @access public |
186 | 186 | */ |
187 | 187 | public function payment_scripts() { |
188 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
188 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
189 | 189 | return; |
190 | 190 | } |
191 | 191 | |
192 | - wp_enqueue_style( 'stripe_styles' ); |
|
193 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
192 | + wp_enqueue_style('stripe_styles'); |
|
193 | + wp_enqueue_script('woocommerce_stripe'); |
|
194 | 194 | } |
195 | 195 | |
196 | 196 | /** |
197 | 197 | * Initialize Gateway Settings Form Fields. |
198 | 198 | */ |
199 | 199 | public function init_form_fields() { |
200 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-sepa-settings.php' ); |
|
200 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-sepa-settings.php'); |
|
201 | 201 | } |
202 | 202 | |
203 | 203 | /** |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | */ |
210 | 210 | public function mandate_display() { |
211 | 211 | /* translators: statement descriptor */ |
212 | - printf( __( 'By providing your IBAN and confirming this payment, you are authorizing %s and Stripe, our payment service provider, to send instructions to your bank to debit your account and your bank to debit your account in accordance with those instructions. You are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed within 8 weeks starting from the date on which your account was debited.', 'woocommerce-gateway-stripe' ), WC_Stripe_Helper::clean_statement_descriptor( $this->statement_descriptor ) ); |
|
212 | + printf(__('By providing your IBAN and confirming this payment, you are authorizing %s and Stripe, our payment service provider, to send instructions to your bank to debit your account and your bank to debit your account in accordance with those instructions. You are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed within 8 weeks starting from the date on which your account was debited.', 'woocommerce-gateway-stripe'), WC_Stripe_Helper::clean_statement_descriptor($this->statement_descriptor)); |
|
213 | 213 | } |
214 | 214 | |
215 | 215 | /** |
@@ -220,12 +220,12 @@ discard block |
||
220 | 220 | */ |
221 | 221 | public function form() { |
222 | 222 | ?> |
223 | - <fieldset id="wc-<?php echo esc_attr( $this->id ); ?>-form" class="wc-payment-form"> |
|
224 | - <?php do_action( 'woocommerce_credit_card_form_start', $this->id ); ?> |
|
223 | + <fieldset id="wc-<?php echo esc_attr($this->id); ?>-form" class="wc-payment-form"> |
|
224 | + <?php do_action('woocommerce_credit_card_form_start', $this->id); ?> |
|
225 | 225 | <p class="wc-stripe-sepa-mandate" style="margin-bottom:40px;"><?php $this->mandate_display(); ?></p> |
226 | 226 | <p class="form-row form-row-wide"> |
227 | 227 | <label for="stripe-iban-element"> |
228 | - <?php esc_html_e( 'IBAN.', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span> |
|
228 | + <?php esc_html_e('IBAN.', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span> |
|
229 | 229 | </label> |
230 | 230 | <div id="stripe-iban-element" class="wc-stripe-iban-element-field"> |
231 | 231 | <!-- A Stripe Element will be inserted here. --> |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | <!-- Used to display form errors --> |
236 | 236 | <div class="stripe-source-errors" role="alert"></div> |
237 | 237 | <br /> |
238 | - <?php do_action( 'woocommerce_credit_card_form_end', $this->id ); ?> |
|
238 | + <?php do_action('woocommerce_credit_card_form_end', $this->id); ?> |
|
239 | 239 | <div class="clear"></div> |
240 | 240 | </fieldset> |
241 | 241 | <?php |
@@ -246,45 +246,45 @@ discard block |
||
246 | 246 | */ |
247 | 247 | public function payment_fields() { |
248 | 248 | $total = WC()->cart->total; |
249 | - $display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards; |
|
249 | + $display_tokenization = $this->supports('tokenization') && is_checkout() && $this->saved_cards; |
|
250 | 250 | $description = $this->get_description(); |
251 | - $description = ! empty( $description ) ? $description : ''; |
|
251 | + $description = ! empty($description) ? $description : ''; |
|
252 | 252 | |
253 | 253 | // If paying from order, we need to get total from order not cart. |
254 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
255 | - $order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) ); |
|
254 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
255 | + $order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key']))); |
|
256 | 256 | $total = $order->get_total(); |
257 | 257 | } |
258 | 258 | |
259 | - if ( is_add_payment_method_page() ) { |
|
259 | + if (is_add_payment_method_page()) { |
|
260 | 260 | $total = ''; |
261 | 261 | } |
262 | 262 | |
263 | 263 | echo '<div |
264 | 264 | id="stripe-sepa_debit-payment-data" |
265 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
266 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
265 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
266 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
267 | 267 | |
268 | - if ( $this->testmode ) { |
|
269 | - $description .= ' ' . __( 'TEST MODE ENABLED. In test mode, you can use IBAN number DE89370400440532013000.', 'woocommerce-gateway-stripe' ); |
|
268 | + if ($this->testmode) { |
|
269 | + $description .= ' ' . __('TEST MODE ENABLED. In test mode, you can use IBAN number DE89370400440532013000.', 'woocommerce-gateway-stripe'); |
|
270 | 270 | } |
271 | 271 | |
272 | - $description = trim( $description ); |
|
272 | + $description = trim($description); |
|
273 | 273 | |
274 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); |
|
274 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); |
|
275 | 275 | |
276 | - if ( $display_tokenization ) { |
|
276 | + if ($display_tokenization) { |
|
277 | 277 | $this->tokenization_script(); |
278 | 278 | $this->saved_payment_methods(); |
279 | 279 | } |
280 | 280 | |
281 | 281 | $this->form(); |
282 | 282 | |
283 | - if ( apply_filters( 'wc_stripe_display_save_payment_method_checkbox', $display_tokenization ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) ) { |
|
283 | + if (apply_filters('wc_stripe_display_save_payment_method_checkbox', $display_tokenization) && ! is_add_payment_method_page() && ! isset($_GET['change_payment_method'])) { |
|
284 | 284 | $this->save_payment_method_checkbox(); |
285 | 285 | } |
286 | 286 | |
287 | - do_action( 'wc_stripe_sepa_payment_fields', $this->id ); |
|
287 | + do_action('wc_stripe_sepa_payment_fields', $this->id); |
|
288 | 288 | |
289 | 289 | echo '</div>'; |
290 | 290 | } |
@@ -300,99 +300,99 @@ discard block |
||
300 | 300 | * |
301 | 301 | * @return array|void |
302 | 302 | */ |
303 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
303 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
304 | 304 | try { |
305 | - $order = wc_get_order( $order_id ); |
|
305 | + $order = wc_get_order($order_id); |
|
306 | 306 | |
307 | - if ( $this->maybe_process_pre_orders( $order_id ) ) { |
|
308 | - return $this->pre_orders->process_pre_order( $order_id ); |
|
307 | + if ($this->maybe_process_pre_orders($order_id)) { |
|
308 | + return $this->pre_orders->process_pre_order($order_id); |
|
309 | 309 | } |
310 | 310 | |
311 | 311 | // This comes from the create account checkbox in the checkout page. |
312 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
312 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
313 | 313 | |
314 | - if ( $create_account ) { |
|
315 | - $new_customer_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->customer_user : $order->get_customer_id(); |
|
316 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
314 | + if ($create_account) { |
|
315 | + $new_customer_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->customer_user : $order->get_customer_id(); |
|
316 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
317 | 317 | $new_stripe_customer->create_customer(); |
318 | 318 | } |
319 | 319 | |
320 | - $prepared_source = $this->prepare_source( get_current_user_id(), $force_save_source ); |
|
320 | + $prepared_source = $this->prepare_source(get_current_user_id(), $force_save_source); |
|
321 | 321 | |
322 | - $this->save_source_to_order( $order, $prepared_source ); |
|
322 | + $this->save_source_to_order($order, $prepared_source); |
|
323 | 323 | |
324 | 324 | // Result from Stripe API request. |
325 | 325 | $response = null; |
326 | 326 | |
327 | - if ( $order->get_total() > 0 ) { |
|
327 | + if ($order->get_total() > 0) { |
|
328 | 328 | // This will throw exception if not valid. |
329 | - $this->validate_minimum_order_amount( $order ); |
|
329 | + $this->validate_minimum_order_amount($order); |
|
330 | 330 | |
331 | - WC_Stripe_Logger::log( "Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}" ); |
|
331 | + WC_Stripe_Logger::log("Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}"); |
|
332 | 332 | |
333 | 333 | // Make the request. |
334 | - $response = WC_Stripe_API::request( $this->generate_payment_request( $order, $prepared_source ) ); |
|
334 | + $response = WC_Stripe_API::request($this->generate_payment_request($order, $prepared_source)); |
|
335 | 335 | |
336 | - if ( ! empty( $response->error ) ) { |
|
336 | + if ( ! empty($response->error)) { |
|
337 | 337 | // Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without. |
338 | - if ( $this->is_no_such_customer_error( $response->error ) ) { |
|
339 | - if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
340 | - delete_user_option( $order->customer_user, '_stripe_customer_id' ); |
|
341 | - delete_post_meta( $order_id, '_stripe_customer_id' ); |
|
338 | + if ($this->is_no_such_customer_error($response->error)) { |
|
339 | + if (WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
340 | + delete_user_option($order->customer_user, '_stripe_customer_id'); |
|
341 | + delete_post_meta($order_id, '_stripe_customer_id'); |
|
342 | 342 | } else { |
343 | - delete_user_option( $order->get_customer_id(), '_stripe_customer_id' ); |
|
344 | - $order->delete_meta_data( '_stripe_customer_id' ); |
|
343 | + delete_user_option($order->get_customer_id(), '_stripe_customer_id'); |
|
344 | + $order->delete_meta_data('_stripe_customer_id'); |
|
345 | 345 | $order->save(); |
346 | 346 | } |
347 | 347 | } |
348 | 348 | |
349 | - if ( $this->is_no_such_token_error( $response->error ) && $prepared_source->token_id ) { |
|
349 | + if ($this->is_no_such_token_error($response->error) && $prepared_source->token_id) { |
|
350 | 350 | // Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message. |
351 | - $wc_token = WC_Payment_Tokens::get( $prepared_source->token_id ); |
|
351 | + $wc_token = WC_Payment_Tokens::get($prepared_source->token_id); |
|
352 | 352 | $wc_token->delete(); |
353 | - $localized_message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' ); |
|
354 | - $order->add_order_note( $localized_message ); |
|
355 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
353 | + $localized_message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe'); |
|
354 | + $order->add_order_note($localized_message); |
|
355 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
356 | 356 | } |
357 | 357 | |
358 | 358 | // We want to retry. |
359 | - if ( $this->is_retryable_error( $response->error ) ) { |
|
360 | - if ( $retry ) { |
|
359 | + if ($this->is_retryable_error($response->error)) { |
|
360 | + if ($retry) { |
|
361 | 361 | // Don't do anymore retries after this. |
362 | - if ( 5 <= $this->retry_interval ) { |
|
362 | + if (5 <= $this->retry_interval) { |
|
363 | 363 | |
364 | - return $this->process_payment( $order_id, false, $force_save_source ); |
|
364 | + return $this->process_payment($order_id, false, $force_save_source); |
|
365 | 365 | } |
366 | 366 | |
367 | - sleep( $this->retry_interval ); |
|
367 | + sleep($this->retry_interval); |
|
368 | 368 | |
369 | 369 | $this->retry_interval++; |
370 | 370 | |
371 | - return $this->process_payment( $order_id, true, $force_save_source ); |
|
371 | + return $this->process_payment($order_id, true, $force_save_source); |
|
372 | 372 | } else { |
373 | - $localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' ); |
|
374 | - $order->add_order_note( $localized_message ); |
|
375 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
373 | + $localized_message = __('Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe'); |
|
374 | + $order->add_order_note($localized_message); |
|
375 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
376 | 376 | } |
377 | 377 | } |
378 | 378 | |
379 | 379 | $localized_messages = WC_Stripe_Helper::get_localized_messages(); |
380 | 380 | |
381 | - if ( 'card_error' === $response->error->type ) { |
|
382 | - $localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message; |
|
381 | + if ('card_error' === $response->error->type) { |
|
382 | + $localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message; |
|
383 | 383 | } else { |
384 | - $localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message; |
|
384 | + $localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message; |
|
385 | 385 | } |
386 | 386 | |
387 | - $order->add_order_note( $localized_message ); |
|
387 | + $order->add_order_note($localized_message); |
|
388 | 388 | |
389 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
389 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
390 | 390 | } |
391 | 391 | |
392 | - do_action( 'wc_gateway_stripe_process_payment', $response, $order ); |
|
392 | + do_action('wc_gateway_stripe_process_payment', $response, $order); |
|
393 | 393 | |
394 | 394 | // Process valid response. |
395 | - $this->process_response( $response, $order ); |
|
395 | + $this->process_response($response, $order); |
|
396 | 396 | } else { |
397 | 397 | $order->payment_complete(); |
398 | 398 | } |
@@ -403,17 +403,17 @@ discard block |
||
403 | 403 | // Return thank you page redirect. |
404 | 404 | return array( |
405 | 405 | 'result' => 'success', |
406 | - 'redirect' => $this->get_return_url( $order ), |
|
406 | + 'redirect' => $this->get_return_url($order), |
|
407 | 407 | ); |
408 | 408 | |
409 | - } catch ( WC_Stripe_Exception $e ) { |
|
410 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
411 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
409 | + } catch (WC_Stripe_Exception $e) { |
|
410 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
411 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
412 | 412 | |
413 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
413 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
414 | 414 | |
415 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
416 | - $this->send_failed_order_email( $order_id ); |
|
415 | + if ($order->has_status(array('pending', 'failed'))) { |
|
416 | + $this->send_failed_order_email($order_id); |
|
417 | 417 | } |
418 | 418 | |
419 | 419 | return array( |
@@ -1096,7 +1096,7 @@ |
||
1096 | 1096 | * |
1097 | 1097 | * @since 4.2.0 |
1098 | 1098 | * @param WC_Order $order The order which should be checked. |
1099 | - * @param object $intent The intent, associated with the order. |
|
1099 | + * @param stdClass $intent The intent, associated with the order. |
|
1100 | 1100 | */ |
1101 | 1101 | public function failed_sca_auth( $order, $intent ) { |
1102 | 1102 | // If the order has already failed, do not repeat the same message. |
@@ -895,7 +895,7 @@ |
||
895 | 895 | } |
896 | 896 | |
897 | 897 | if ( 'requires_payment_method' === $intent->status && isset( $intent->last_payment_error ) |
898 | - && 'authentication_required' === $intent->last_payment_error->code ) { |
|
898 | + && 'authentication_required' === $intent->last_payment_error->code ) { |
|
899 | 899 | $level3_data = $this->get_level3_data_from_order( $order ); |
900 | 900 | $intent = WC_Stripe_API::request_with_level3_data( |
901 | 901 | array( |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if ( ! defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -85,9 +85,9 @@ discard block |
||
85 | 85 | public function __construct() { |
86 | 86 | $this->retry_interval = 1; |
87 | 87 | $this->id = 'stripe'; |
88 | - $this->method_title = __( 'Stripe', 'woocommerce-gateway-stripe' ); |
|
88 | + $this->method_title = __('Stripe', 'woocommerce-gateway-stripe'); |
|
89 | 89 | /* translators: 1) link to Stripe register page 2) link to Stripe api keys page */ |
90 | - $this->method_description = sprintf( __( 'Stripe works by adding payment fields on the checkout and then sending the details to Stripe for verification. <a href="%1$s" target="_blank">Sign up</a> for a Stripe account, and <a href="%2$s" target="_blank">get your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), 'https://dashboard.stripe.com/register', 'https://dashboard.stripe.com/account/apikeys' ); |
|
90 | + $this->method_description = sprintf(__('Stripe works by adding payment fields on the checkout and then sending the details to Stripe for verification. <a href="%1$s" target="_blank">Sign up</a> for a Stripe account, and <a href="%2$s" target="_blank">get your Stripe account keys</a>.', 'woocommerce-gateway-stripe'), 'https://dashboard.stripe.com/register', 'https://dashboard.stripe.com/account/apikeys'); |
|
91 | 91 | $this->has_fields = true; |
92 | 92 | $this->supports = array( |
93 | 93 | 'products', |
@@ -114,37 +114,37 @@ discard block |
||
114 | 114 | $this->init_settings(); |
115 | 115 | |
116 | 116 | // Get setting values. |
117 | - $this->title = $this->get_option( 'title' ); |
|
118 | - $this->description = $this->get_option( 'description' ); |
|
119 | - $this->enabled = $this->get_option( 'enabled' ); |
|
120 | - $this->testmode = 'yes' === $this->get_option( 'testmode' ); |
|
121 | - $this->inline_cc_form = 'yes' === $this->get_option( 'inline_cc_form' ); |
|
122 | - $this->capture = 'yes' === $this->get_option( 'capture', 'yes' ); |
|
123 | - $this->statement_descriptor = WC_Stripe_Helper::clean_statement_descriptor( $this->get_option( 'statement_descriptor' ) ); |
|
124 | - $this->saved_cards = 'yes' === $this->get_option( 'saved_cards' ); |
|
125 | - $this->secret_key = $this->testmode ? $this->get_option( 'test_secret_key' ) : $this->get_option( 'secret_key' ); |
|
126 | - $this->publishable_key = $this->testmode ? $this->get_option( 'test_publishable_key' ) : $this->get_option( 'publishable_key' ); |
|
127 | - $this->payment_request = 'yes' === $this->get_option( 'payment_request', 'yes' ); |
|
128 | - |
|
129 | - WC_Stripe_API::set_secret_key( $this->secret_key ); |
|
117 | + $this->title = $this->get_option('title'); |
|
118 | + $this->description = $this->get_option('description'); |
|
119 | + $this->enabled = $this->get_option('enabled'); |
|
120 | + $this->testmode = 'yes' === $this->get_option('testmode'); |
|
121 | + $this->inline_cc_form = 'yes' === $this->get_option('inline_cc_form'); |
|
122 | + $this->capture = 'yes' === $this->get_option('capture', 'yes'); |
|
123 | + $this->statement_descriptor = WC_Stripe_Helper::clean_statement_descriptor($this->get_option('statement_descriptor')); |
|
124 | + $this->saved_cards = 'yes' === $this->get_option('saved_cards'); |
|
125 | + $this->secret_key = $this->testmode ? $this->get_option('test_secret_key') : $this->get_option('secret_key'); |
|
126 | + $this->publishable_key = $this->testmode ? $this->get_option('test_publishable_key') : $this->get_option('publishable_key'); |
|
127 | + $this->payment_request = 'yes' === $this->get_option('payment_request', 'yes'); |
|
128 | + |
|
129 | + WC_Stripe_API::set_secret_key($this->secret_key); |
|
130 | 130 | |
131 | 131 | // Hooks. |
132 | - add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) ); |
|
133 | - add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) ); |
|
134 | - add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); |
|
135 | - add_action( 'woocommerce_admin_order_totals_after_total', array( $this, 'display_order_fee' ) ); |
|
136 | - add_action( 'woocommerce_admin_order_totals_after_total', array( $this, 'display_order_payout' ), 20 ); |
|
137 | - add_action( 'woocommerce_customer_save_address', array( $this, 'show_update_card_notice' ), 10, 2 ); |
|
138 | - add_filter( 'woocommerce_available_payment_gateways', array( $this, 'prepare_order_pay_page' ) ); |
|
139 | - add_action( 'woocommerce_account_view-order_endpoint', array( $this, 'check_intent_status_on_order_page' ), 1 ); |
|
140 | - add_filter( 'woocommerce_payment_successful_result', array( $this, 'modify_successful_payment_result' ), 99999, 2 ); |
|
141 | - add_action( 'set_logged_in_cookie', array( $this, 'set_cookie_on_current_request' ) ); |
|
142 | - add_filter( 'woocommerce_get_checkout_payment_url', array( $this, 'get_checkout_payment_url' ), 10, 2 ); |
|
143 | - |
|
144 | - if ( WC_Stripe_Helper::is_pre_orders_exists() ) { |
|
132 | + add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); |
|
133 | + add_action('admin_enqueue_scripts', array($this, 'admin_scripts')); |
|
134 | + add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options')); |
|
135 | + add_action('woocommerce_admin_order_totals_after_total', array($this, 'display_order_fee')); |
|
136 | + add_action('woocommerce_admin_order_totals_after_total', array($this, 'display_order_payout'), 20); |
|
137 | + add_action('woocommerce_customer_save_address', array($this, 'show_update_card_notice'), 10, 2); |
|
138 | + add_filter('woocommerce_available_payment_gateways', array($this, 'prepare_order_pay_page')); |
|
139 | + add_action('woocommerce_account_view-order_endpoint', array($this, 'check_intent_status_on_order_page'), 1); |
|
140 | + add_filter('woocommerce_payment_successful_result', array($this, 'modify_successful_payment_result'), 99999, 2); |
|
141 | + add_action('set_logged_in_cookie', array($this, 'set_cookie_on_current_request')); |
|
142 | + add_filter('woocommerce_get_checkout_payment_url', array($this, 'get_checkout_payment_url'), 10, 2); |
|
143 | + |
|
144 | + if (WC_Stripe_Helper::is_pre_orders_exists()) { |
|
145 | 145 | $this->pre_orders = new WC_Stripe_Pre_Orders_Compat(); |
146 | 146 | |
147 | - add_action( 'wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array( $this->pre_orders, 'process_pre_order_release_payment' ) ); |
|
147 | + add_action('wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array($this->pre_orders, 'process_pre_order_release_payment')); |
|
148 | 148 | } |
149 | 149 | } |
150 | 150 | |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | * @return bool |
156 | 156 | */ |
157 | 157 | public function are_keys_set() { |
158 | - if ( empty( $this->secret_key ) || empty( $this->publishable_key ) ) { |
|
158 | + if (empty($this->secret_key) || empty($this->publishable_key)) { |
|
159 | 159 | return false; |
160 | 160 | } |
161 | 161 | |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | * @since 4.0.2 |
169 | 169 | */ |
170 | 170 | public function is_available() { |
171 | - if ( is_add_payment_method_page() && ! $this->saved_cards ) { |
|
171 | + if (is_add_payment_method_page() && ! $this->saved_cards) { |
|
172 | 172 | return false; |
173 | 173 | } |
174 | 174 | |
@@ -182,13 +182,13 @@ discard block |
||
182 | 182 | * @param int $user_id The ID of the current user. |
183 | 183 | * @param string $load_address The address to load. |
184 | 184 | */ |
185 | - public function show_update_card_notice( $user_id, $load_address ) { |
|
186 | - if ( ! $this->saved_cards || ! WC_Stripe_Payment_Tokens::customer_has_saved_methods( $user_id ) || 'billing' !== $load_address ) { |
|
185 | + public function show_update_card_notice($user_id, $load_address) { |
|
186 | + if ( ! $this->saved_cards || ! WC_Stripe_Payment_Tokens::customer_has_saved_methods($user_id) || 'billing' !== $load_address) { |
|
187 | 187 | return; |
188 | 188 | } |
189 | 189 | |
190 | 190 | /* translators: 1) Opening anchor tag 2) closing anchor tag */ |
191 | - wc_add_notice( sprintf( __( 'If your billing address has been changed for saved payment methods, be sure to remove any %1$ssaved payment methods%2$s on file and re-add them.', 'woocommerce-gateway-stripe' ), '<a href="' . esc_url( wc_get_endpoint_url( 'payment-methods' ) ) . '" class="wc-stripe-update-card-notice" style="text-decoration:underline;">', '</a>' ), 'notice' ); |
|
191 | + wc_add_notice(sprintf(__('If your billing address has been changed for saved payment methods, be sure to remove any %1$ssaved payment methods%2$s on file and re-add them.', 'woocommerce-gateway-stripe'), '<a href="' . esc_url(wc_get_endpoint_url('payment-methods')) . '" class="wc-stripe-update-card-notice" style="text-decoration:underline;">', '</a>'), 'notice'); |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | /** |
@@ -203,24 +203,24 @@ discard block |
||
203 | 203 | |
204 | 204 | $icons_str = ''; |
205 | 205 | |
206 | - $icons_str .= isset( $icons['visa'] ) ? $icons['visa'] : ''; |
|
207 | - $icons_str .= isset( $icons['amex'] ) ? $icons['amex'] : ''; |
|
208 | - $icons_str .= isset( $icons['mastercard'] ) ? $icons['mastercard'] : ''; |
|
206 | + $icons_str .= isset($icons['visa']) ? $icons['visa'] : ''; |
|
207 | + $icons_str .= isset($icons['amex']) ? $icons['amex'] : ''; |
|
208 | + $icons_str .= isset($icons['mastercard']) ? $icons['mastercard'] : ''; |
|
209 | 209 | |
210 | - if ( 'USD' === get_woocommerce_currency() ) { |
|
211 | - $icons_str .= isset( $icons['discover'] ) ? $icons['discover'] : ''; |
|
212 | - $icons_str .= isset( $icons['jcb'] ) ? $icons['jcb'] : ''; |
|
213 | - $icons_str .= isset( $icons['diners'] ) ? $icons['diners'] : ''; |
|
210 | + if ('USD' === get_woocommerce_currency()) { |
|
211 | + $icons_str .= isset($icons['discover']) ? $icons['discover'] : ''; |
|
212 | + $icons_str .= isset($icons['jcb']) ? $icons['jcb'] : ''; |
|
213 | + $icons_str .= isset($icons['diners']) ? $icons['diners'] : ''; |
|
214 | 214 | } |
215 | 215 | |
216 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
216 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
217 | 217 | } |
218 | 218 | |
219 | 219 | /** |
220 | 220 | * Initialise Gateway Settings Form Fields |
221 | 221 | */ |
222 | 222 | public function init_form_fields() { |
223 | - $this->form_fields = require( dirname( __FILE__ ) . '/admin/stripe-settings.php' ); |
|
223 | + $this->form_fields = require(dirname(__FILE__) . '/admin/stripe-settings.php'); |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | /** |
@@ -228,27 +228,27 @@ discard block |
||
228 | 228 | */ |
229 | 229 | public function payment_fields() { |
230 | 230 | $user = wp_get_current_user(); |
231 | - $display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards; |
|
231 | + $display_tokenization = $this->supports('tokenization') && is_checkout() && $this->saved_cards; |
|
232 | 232 | $total = WC()->cart->total; |
233 | 233 | $user_email = ''; |
234 | 234 | $description = $this->get_description(); |
235 | - $description = ! empty( $description ) ? $description : ''; |
|
235 | + $description = ! empty($description) ? $description : ''; |
|
236 | 236 | $firstname = ''; |
237 | 237 | $lastname = ''; |
238 | 238 | |
239 | 239 | // If paying from order, we need to get total from order not cart. |
240 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { // wpcs: csrf ok. |
|
241 | - $order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) ); // wpcs: csrf ok, sanitization ok. |
|
240 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { // wpcs: csrf ok. |
|
241 | + $order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key']))); // wpcs: csrf ok, sanitization ok. |
|
242 | 242 | $total = $order->get_total(); |
243 | - $user_email = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_email : $order->get_billing_email(); |
|
243 | + $user_email = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_email : $order->get_billing_email(); |
|
244 | 244 | } else { |
245 | - if ( $user->ID ) { |
|
246 | - $user_email = get_user_meta( $user->ID, 'billing_email', true ); |
|
245 | + if ($user->ID) { |
|
246 | + $user_email = get_user_meta($user->ID, 'billing_email', true); |
|
247 | 247 | $user_email = $user_email ? $user_email : $user->user_email; |
248 | 248 | } |
249 | 249 | } |
250 | 250 | |
251 | - if ( is_add_payment_method_page() ) { |
|
251 | + if (is_add_payment_method_page()) { |
|
252 | 252 | $firstname = $user->user_firstname; |
253 | 253 | $lastname = $user->user_lastname; |
254 | 254 | } |
@@ -257,33 +257,33 @@ discard block |
||
257 | 257 | |
258 | 258 | echo '<div |
259 | 259 | id="stripe-payment-data" |
260 | - data-email="' . esc_attr( $user_email ) . '" |
|
261 | - data-full-name="' . esc_attr( $firstname . ' ' . $lastname ) . '" |
|
262 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '" |
|
260 | + data-email="' . esc_attr($user_email) . '" |
|
261 | + data-full-name="' . esc_attr($firstname . ' ' . $lastname) . '" |
|
262 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '" |
|
263 | 263 | >'; |
264 | 264 | |
265 | - if ( $this->testmode ) { |
|
265 | + if ($this->testmode) { |
|
266 | 266 | /* translators: link to Stripe testing page */ |
267 | - $description .= ' ' . sprintf( __( 'TEST MODE ENABLED. In test mode, you can use the card number 4242424242424242 with any CVC and a valid expiration date or check the <a href="%s" target="_blank">Testing Stripe documentation</a> for more card numbers.', 'woocommerce-gateway-stripe' ), 'https://stripe.com/docs/testing' ); |
|
267 | + $description .= ' ' . sprintf(__('TEST MODE ENABLED. In test mode, you can use the card number 4242424242424242 with any CVC and a valid expiration date or check the <a href="%s" target="_blank">Testing Stripe documentation</a> for more card numbers.', 'woocommerce-gateway-stripe'), 'https://stripe.com/docs/testing'); |
|
268 | 268 | } |
269 | 269 | |
270 | - $description = trim( $description ); |
|
270 | + $description = trim($description); |
|
271 | 271 | |
272 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); // wpcs: xss ok. |
|
272 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); // wpcs: xss ok. |
|
273 | 273 | |
274 | - if ( $display_tokenization ) { |
|
274 | + if ($display_tokenization) { |
|
275 | 275 | $this->tokenization_script(); |
276 | 276 | $this->saved_payment_methods(); |
277 | 277 | } |
278 | 278 | |
279 | 279 | $this->elements_form(); |
280 | 280 | |
281 | - if ( apply_filters( 'wc_stripe_display_save_payment_method_checkbox', $display_tokenization ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) ) { // wpcs: csrf ok. |
|
281 | + if (apply_filters('wc_stripe_display_save_payment_method_checkbox', $display_tokenization) && ! is_add_payment_method_page() && ! isset($_GET['change_payment_method'])) { // wpcs: csrf ok. |
|
282 | 282 | |
283 | 283 | $this->save_payment_method_checkbox(); |
284 | 284 | } |
285 | 285 | |
286 | - do_action( 'wc_stripe_cards_payment_fields', $this->id ); |
|
286 | + do_action('wc_stripe_cards_payment_fields', $this->id); |
|
287 | 287 | |
288 | 288 | echo '</div>'; |
289 | 289 | |
@@ -298,12 +298,12 @@ discard block |
||
298 | 298 | */ |
299 | 299 | public function elements_form() { |
300 | 300 | ?> |
301 | - <fieldset id="wc-<?php echo esc_attr( $this->id ); ?>-cc-form" class="wc-credit-card-form wc-payment-form" style="background:transparent;"> |
|
302 | - <?php do_action( 'woocommerce_credit_card_form_start', $this->id ); ?> |
|
301 | + <fieldset id="wc-<?php echo esc_attr($this->id); ?>-cc-form" class="wc-credit-card-form wc-payment-form" style="background:transparent;"> |
|
302 | + <?php do_action('woocommerce_credit_card_form_start', $this->id); ?> |
|
303 | 303 | |
304 | - <?php if ( $this->inline_cc_form ) { ?> |
|
304 | + <?php if ($this->inline_cc_form) { ?> |
|
305 | 305 | <label for="card-element"> |
306 | - <?php esc_html_e( 'Credit or debit card', 'woocommerce-gateway-stripe' ); ?> |
|
306 | + <?php esc_html_e('Credit or debit card', 'woocommerce-gateway-stripe'); ?> |
|
307 | 307 | </label> |
308 | 308 | |
309 | 309 | <div id="stripe-card-element" class="wc-stripe-elements-field"> |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | </div> |
312 | 312 | <?php } else { ?> |
313 | 313 | <div class="form-row form-row-wide"> |
314 | - <label for="stripe-card-element"><?php esc_html_e( 'Card Number', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label> |
|
314 | + <label for="stripe-card-element"><?php esc_html_e('Card Number', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label> |
|
315 | 315 | <div class="stripe-card-group"> |
316 | 316 | <div id="stripe-card-element" class="wc-stripe-elements-field"> |
317 | 317 | <!-- a Stripe Element will be inserted here. --> |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | </div> |
323 | 323 | |
324 | 324 | <div class="form-row form-row-first"> |
325 | - <label for="stripe-exp-element"><?php esc_html_e( 'Expiry Date', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label> |
|
325 | + <label for="stripe-exp-element"><?php esc_html_e('Expiry Date', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label> |
|
326 | 326 | |
327 | 327 | <div id="stripe-exp-element" class="wc-stripe-elements-field"> |
328 | 328 | <!-- a Stripe Element will be inserted here. --> |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | </div> |
331 | 331 | |
332 | 332 | <div class="form-row form-row-last"> |
333 | - <label for="stripe-cvc-element"><?php esc_html_e( 'Card Code (CVC)', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label> |
|
333 | + <label for="stripe-cvc-element"><?php esc_html_e('Card Code (CVC)', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label> |
|
334 | 334 | <div id="stripe-cvc-element" class="wc-stripe-elements-field"> |
335 | 335 | <!-- a Stripe Element will be inserted here. --> |
336 | 336 | </div> |
@@ -341,7 +341,7 @@ discard block |
||
341 | 341 | <!-- Used to display form errors --> |
342 | 342 | <div class="stripe-source-errors" role="alert"></div> |
343 | 343 | <br /> |
344 | - <?php do_action( 'woocommerce_credit_card_form_end', $this->id ); ?> |
|
344 | + <?php do_action('woocommerce_credit_card_form_end', $this->id); ?> |
|
345 | 345 | <div class="clear"></div> |
346 | 346 | </fieldset> |
347 | 347 | <?php |
@@ -354,13 +354,13 @@ discard block |
||
354 | 354 | * @version 3.1.0 |
355 | 355 | */ |
356 | 356 | public function admin_scripts() { |
357 | - if ( 'woocommerce_page_wc-settings' !== get_current_screen()->id ) { |
|
357 | + if ('woocommerce_page_wc-settings' !== get_current_screen()->id) { |
|
358 | 358 | return; |
359 | 359 | } |
360 | 360 | |
361 | - $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; |
|
361 | + $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min'; |
|
362 | 362 | |
363 | - wp_enqueue_script( 'woocommerce_stripe_admin', plugins_url( 'assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array(), WC_STRIPE_VERSION, true ); |
|
363 | + wp_enqueue_script('woocommerce_stripe_admin', plugins_url('assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array(), WC_STRIPE_VERSION, true); |
|
364 | 364 | } |
365 | 365 | |
366 | 366 | /** |
@@ -376,102 +376,102 @@ discard block |
||
376 | 376 | ! is_product() |
377 | 377 | && ! is_cart() |
378 | 378 | && ! is_checkout() |
379 | - && ! isset( $_GET['pay_for_order'] ) // wpcs: csrf ok. |
|
379 | + && ! isset($_GET['pay_for_order']) // wpcs: csrf ok. |
|
380 | 380 | && ! is_add_payment_method_page() |
381 | - && ! isset( $_GET['change_payment_method'] ) // wpcs: csrf ok. |
|
382 | - && ! ( ! empty( get_query_var( 'view-subscription' ) ) && is_callable( 'WCS_Early_Renewal_Manager::is_early_renewal_via_modal_enabled' ) && WCS_Early_Renewal_Manager::is_early_renewal_via_modal_enabled() ) |
|
383 | - || ( is_order_received_page() ) |
|
381 | + && ! isset($_GET['change_payment_method']) // wpcs: csrf ok. |
|
382 | + && ! ( ! empty(get_query_var('view-subscription')) && is_callable('WCS_Early_Renewal_Manager::is_early_renewal_via_modal_enabled') && WCS_Early_Renewal_Manager::is_early_renewal_via_modal_enabled()) |
|
383 | + || (is_order_received_page()) |
|
384 | 384 | ) { |
385 | 385 | return; |
386 | 386 | } |
387 | 387 | |
388 | 388 | // If Stripe is not enabled bail. |
389 | - if ( 'no' === $this->enabled ) { |
|
389 | + if ('no' === $this->enabled) { |
|
390 | 390 | return; |
391 | 391 | } |
392 | 392 | |
393 | 393 | // If keys are not set bail. |
394 | - if ( ! $this->are_keys_set() ) { |
|
395 | - WC_Stripe_Logger::log( 'Keys are not set correctly.' ); |
|
394 | + if ( ! $this->are_keys_set()) { |
|
395 | + WC_Stripe_Logger::log('Keys are not set correctly.'); |
|
396 | 396 | return; |
397 | 397 | } |
398 | 398 | |
399 | 399 | // If no SSL bail. |
400 | - if ( ! $this->testmode && ! is_ssl() ) { |
|
401 | - WC_Stripe_Logger::log( 'Stripe live mode requires SSL.' ); |
|
400 | + if ( ! $this->testmode && ! is_ssl()) { |
|
401 | + WC_Stripe_Logger::log('Stripe live mode requires SSL.'); |
|
402 | 402 | return; |
403 | 403 | } |
404 | 404 | |
405 | 405 | $current_theme = wp_get_theme(); |
406 | 406 | |
407 | - $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; |
|
407 | + $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min'; |
|
408 | 408 | |
409 | - wp_register_style( 'stripe_styles', plugins_url( 'assets/css/stripe-styles.css', WC_STRIPE_MAIN_FILE ), array(), WC_STRIPE_VERSION ); |
|
410 | - wp_enqueue_style( 'stripe_styles' ); |
|
409 | + wp_register_style('stripe_styles', plugins_url('assets/css/stripe-styles.css', WC_STRIPE_MAIN_FILE), array(), WC_STRIPE_VERSION); |
|
410 | + wp_enqueue_style('stripe_styles'); |
|
411 | 411 | |
412 | - wp_register_script( 'stripe', 'https://js.stripe.com/v3/', '', '3.0', true ); |
|
413 | - wp_register_script( 'woocommerce_stripe', plugins_url( 'assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array( 'jquery-payment', 'stripe' ), WC_STRIPE_VERSION, true ); |
|
412 | + wp_register_script('stripe', 'https://js.stripe.com/v3/', '', '3.0', true); |
|
413 | + wp_register_script('woocommerce_stripe', plugins_url('assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array('jquery-payment', 'stripe'), WC_STRIPE_VERSION, true); |
|
414 | 414 | |
415 | 415 | $stripe_params = array( |
416 | 416 | 'key' => $this->publishable_key, |
417 | - 'i18n_terms' => __( 'Please accept the terms and conditions first', 'woocommerce-gateway-stripe' ), |
|
418 | - 'i18n_required_fields' => __( 'Please fill in required checkout fields first', 'woocommerce-gateway-stripe' ), |
|
417 | + 'i18n_terms' => __('Please accept the terms and conditions first', 'woocommerce-gateway-stripe'), |
|
418 | + 'i18n_required_fields' => __('Please fill in required checkout fields first', 'woocommerce-gateway-stripe'), |
|
419 | 419 | ); |
420 | 420 | |
421 | 421 | // If we're on the pay page we need to pass stripe.js the address of the order. |
422 | - if ( isset( $_GET['pay_for_order'] ) && 'true' === $_GET['pay_for_order'] ) { // wpcs: csrf ok. |
|
423 | - $order_id = wc_get_order_id_by_order_key( urldecode( $_GET['key'] ) ); // wpcs: csrf ok, sanitization ok, xss ok. |
|
424 | - $order = wc_get_order( $order_id ); |
|
425 | - |
|
426 | - if ( is_a( $order, 'WC_Order' ) ) { |
|
427 | - $stripe_params['billing_first_name'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_first_name : $order->get_billing_first_name(); |
|
428 | - $stripe_params['billing_last_name'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_last_name : $order->get_billing_last_name(); |
|
429 | - $stripe_params['billing_address_1'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_address_1 : $order->get_billing_address_1(); |
|
430 | - $stripe_params['billing_address_2'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_address_2 : $order->get_billing_address_2(); |
|
431 | - $stripe_params['billing_state'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_state : $order->get_billing_state(); |
|
432 | - $stripe_params['billing_city'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_city : $order->get_billing_city(); |
|
433 | - $stripe_params['billing_postcode'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_postcode : $order->get_billing_postcode(); |
|
434 | - $stripe_params['billing_country'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_country : $order->get_billing_country(); |
|
422 | + if (isset($_GET['pay_for_order']) && 'true' === $_GET['pay_for_order']) { // wpcs: csrf ok. |
|
423 | + $order_id = wc_get_order_id_by_order_key(urldecode($_GET['key'])); // wpcs: csrf ok, sanitization ok, xss ok. |
|
424 | + $order = wc_get_order($order_id); |
|
425 | + |
|
426 | + if (is_a($order, 'WC_Order')) { |
|
427 | + $stripe_params['billing_first_name'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_first_name : $order->get_billing_first_name(); |
|
428 | + $stripe_params['billing_last_name'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_last_name : $order->get_billing_last_name(); |
|
429 | + $stripe_params['billing_address_1'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_address_1 : $order->get_billing_address_1(); |
|
430 | + $stripe_params['billing_address_2'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_address_2 : $order->get_billing_address_2(); |
|
431 | + $stripe_params['billing_state'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_state : $order->get_billing_state(); |
|
432 | + $stripe_params['billing_city'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_city : $order->get_billing_city(); |
|
433 | + $stripe_params['billing_postcode'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_postcode : $order->get_billing_postcode(); |
|
434 | + $stripe_params['billing_country'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_country : $order->get_billing_country(); |
|
435 | 435 | } |
436 | 436 | } |
437 | 437 | |
438 | 438 | $sepa_elements_options = apply_filters( |
439 | 439 | 'wc_stripe_sepa_elements_options', |
440 | 440 | array( |
441 | - 'supportedCountries' => array( 'SEPA' ), |
|
441 | + 'supportedCountries' => array('SEPA'), |
|
442 | 442 | 'placeholderCountry' => WC()->countries->get_base_country(), |
443 | - 'style' => array( 'base' => array( 'fontSize' => '15px' ) ), |
|
443 | + 'style' => array('base' => array('fontSize' => '15px')), |
|
444 | 444 | ) |
445 | 445 | ); |
446 | 446 | |
447 | - $stripe_params['no_prepaid_card_msg'] = __( 'Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charged. Please try with alternative payment method.', 'woocommerce-gateway-stripe' ); |
|
448 | - $stripe_params['no_sepa_owner_msg'] = __( 'Please enter your IBAN account name.', 'woocommerce-gateway-stripe' ); |
|
449 | - $stripe_params['no_sepa_iban_msg'] = __( 'Please enter your IBAN account number.', 'woocommerce-gateway-stripe' ); |
|
450 | - $stripe_params['payment_intent_error'] = __( 'We couldn\'t initiate the payment. Please try again.', 'woocommerce-gateway-stripe' ); |
|
451 | - $stripe_params['sepa_mandate_notification'] = apply_filters( 'wc_stripe_sepa_mandate_notification', 'email' ); |
|
452 | - $stripe_params['allow_prepaid_card'] = apply_filters( 'wc_stripe_allow_prepaid_card', true ) ? 'yes' : 'no'; |
|
447 | + $stripe_params['no_prepaid_card_msg'] = __('Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charged. Please try with alternative payment method.', 'woocommerce-gateway-stripe'); |
|
448 | + $stripe_params['no_sepa_owner_msg'] = __('Please enter your IBAN account name.', 'woocommerce-gateway-stripe'); |
|
449 | + $stripe_params['no_sepa_iban_msg'] = __('Please enter your IBAN account number.', 'woocommerce-gateway-stripe'); |
|
450 | + $stripe_params['payment_intent_error'] = __('We couldn\'t initiate the payment. Please try again.', 'woocommerce-gateway-stripe'); |
|
451 | + $stripe_params['sepa_mandate_notification'] = apply_filters('wc_stripe_sepa_mandate_notification', 'email'); |
|
452 | + $stripe_params['allow_prepaid_card'] = apply_filters('wc_stripe_allow_prepaid_card', true) ? 'yes' : 'no'; |
|
453 | 453 | $stripe_params['inline_cc_form'] = $this->inline_cc_form ? 'yes' : 'no'; |
454 | - $stripe_params['is_checkout'] = ( is_checkout() && empty( $_GET['pay_for_order'] ) ) ? 'yes' : 'no'; // wpcs: csrf ok. |
|
454 | + $stripe_params['is_checkout'] = (is_checkout() && empty($_GET['pay_for_order'])) ? 'yes' : 'no'; // wpcs: csrf ok. |
|
455 | 455 | $stripe_params['return_url'] = $this->get_stripe_return_url(); |
456 | - $stripe_params['ajaxurl'] = WC_AJAX::get_endpoint( '%%endpoint%%' ); |
|
457 | - $stripe_params['stripe_nonce'] = wp_create_nonce( '_wc_stripe_nonce' ); |
|
456 | + $stripe_params['ajaxurl'] = WC_AJAX::get_endpoint('%%endpoint%%'); |
|
457 | + $stripe_params['stripe_nonce'] = wp_create_nonce('_wc_stripe_nonce'); |
|
458 | 458 | $stripe_params['statement_descriptor'] = $this->statement_descriptor; |
459 | - $stripe_params['elements_options'] = apply_filters( 'wc_stripe_elements_options', array() ); |
|
459 | + $stripe_params['elements_options'] = apply_filters('wc_stripe_elements_options', array()); |
|
460 | 460 | $stripe_params['sepa_elements_options'] = $sepa_elements_options; |
461 | - $stripe_params['invalid_owner_name'] = __( 'Billing First Name and Last Name are required.', 'woocommerce-gateway-stripe' ); |
|
462 | - $stripe_params['is_change_payment_page'] = isset( $_GET['change_payment_method'] ) ? 'yes' : 'no'; // wpcs: csrf ok. |
|
463 | - $stripe_params['is_add_payment_page'] = is_wc_endpoint_url( 'add-payment-method' ) ? 'yes' : 'no'; |
|
464 | - $stripe_params['is_pay_for_order_page'] = is_wc_endpoint_url( 'order-pay' ) ? 'yes' : 'no'; |
|
465 | - $stripe_params['elements_styling'] = apply_filters( 'wc_stripe_elements_styling', false ); |
|
466 | - $stripe_params['elements_classes'] = apply_filters( 'wc_stripe_elements_classes', false ); |
|
461 | + $stripe_params['invalid_owner_name'] = __('Billing First Name and Last Name are required.', 'woocommerce-gateway-stripe'); |
|
462 | + $stripe_params['is_change_payment_page'] = isset($_GET['change_payment_method']) ? 'yes' : 'no'; // wpcs: csrf ok. |
|
463 | + $stripe_params['is_add_payment_page'] = is_wc_endpoint_url('add-payment-method') ? 'yes' : 'no'; |
|
464 | + $stripe_params['is_pay_for_order_page'] = is_wc_endpoint_url('order-pay') ? 'yes' : 'no'; |
|
465 | + $stripe_params['elements_styling'] = apply_filters('wc_stripe_elements_styling', false); |
|
466 | + $stripe_params['elements_classes'] = apply_filters('wc_stripe_elements_classes', false); |
|
467 | 467 | |
468 | 468 | // Merge localized messages to be use in JS. |
469 | - $stripe_params = array_merge( $stripe_params, WC_Stripe_Helper::get_localized_messages() ); |
|
469 | + $stripe_params = array_merge($stripe_params, WC_Stripe_Helper::get_localized_messages()); |
|
470 | 470 | |
471 | - wp_localize_script( 'woocommerce_stripe', 'wc_stripe_params', apply_filters( 'wc_stripe_params', $stripe_params ) ); |
|
471 | + wp_localize_script('woocommerce_stripe', 'wc_stripe_params', apply_filters('wc_stripe_params', $stripe_params)); |
|
472 | 472 | |
473 | 473 | $this->tokenization_script(); |
474 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
474 | + wp_enqueue_script('woocommerce_stripe'); |
|
475 | 475 | } |
476 | 476 | |
477 | 477 | /** |
@@ -482,14 +482,14 @@ discard block |
||
482 | 482 | * @param object $prepared_source The object with source details. |
483 | 483 | * @throws WC_Stripe_Exception An exception if the card is prepaid, but prepaid cards are not allowed. |
484 | 484 | */ |
485 | - public function maybe_disallow_prepaid_card( $prepared_source ) { |
|
485 | + public function maybe_disallow_prepaid_card($prepared_source) { |
|
486 | 486 | // Check if we don't allow prepaid credit cards. |
487 | - if ( apply_filters( 'wc_stripe_allow_prepaid_card', true ) || ! $this->is_prepaid_card( $prepared_source->source_object ) ) { |
|
487 | + if (apply_filters('wc_stripe_allow_prepaid_card', true) || ! $this->is_prepaid_card($prepared_source->source_object)) { |
|
488 | 488 | return; |
489 | 489 | } |
490 | 490 | |
491 | - $localized_message = __( 'Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charged. Please try with alternative payment method.', 'woocommerce-gateway-stripe' ); |
|
492 | - throw new WC_Stripe_Exception( print_r( $prepared_source->source_object, true ), $localized_message ); |
|
491 | + $localized_message = __('Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charged. Please try with alternative payment method.', 'woocommerce-gateway-stripe'); |
|
492 | + throw new WC_Stripe_Exception(print_r($prepared_source->source_object, true), $localized_message); |
|
493 | 493 | } |
494 | 494 | |
495 | 495 | /** |
@@ -499,10 +499,10 @@ discard block |
||
499 | 499 | * @param object $prepared_source The source that should be verified. |
500 | 500 | * @throws WC_Stripe_Exception An exception if the source ID is missing. |
501 | 501 | */ |
502 | - public function check_source( $prepared_source ) { |
|
503 | - if ( empty( $prepared_source->source ) ) { |
|
504 | - $localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' ); |
|
505 | - throw new WC_Stripe_Exception( print_r( $prepared_source, true ), $localized_message ); |
|
502 | + public function check_source($prepared_source) { |
|
503 | + if (empty($prepared_source->source)) { |
|
504 | + $localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe'); |
|
505 | + throw new WC_Stripe_Exception(print_r($prepared_source, true), $localized_message); |
|
506 | 506 | } |
507 | 507 | } |
508 | 508 | |
@@ -514,17 +514,17 @@ discard block |
||
514 | 514 | * @param WC_Order $order The order those payment is being processed. |
515 | 515 | * @return bool A flag that indicates that the customer does not exist and should be removed. |
516 | 516 | */ |
517 | - public function maybe_remove_non_existent_customer( $error, $order ) { |
|
518 | - if ( ! $this->is_no_such_customer_error( $error ) ) { |
|
517 | + public function maybe_remove_non_existent_customer($error, $order) { |
|
518 | + if ( ! $this->is_no_such_customer_error($error)) { |
|
519 | 519 | return false; |
520 | 520 | } |
521 | 521 | |
522 | - if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
523 | - delete_user_option( $order->customer_user, '_stripe_customer_id' ); |
|
524 | - delete_post_meta( $order->get_id(), '_stripe_customer_id' ); |
|
522 | + if (WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
523 | + delete_user_option($order->customer_user, '_stripe_customer_id'); |
|
524 | + delete_post_meta($order->get_id(), '_stripe_customer_id'); |
|
525 | 525 | } else { |
526 | - delete_user_option( $order->get_customer_id(), '_stripe_customer_id' ); |
|
527 | - $order->delete_meta_data( '_stripe_customer_id' ); |
|
526 | + delete_user_option($order->get_customer_id(), '_stripe_customer_id'); |
|
527 | + $order->delete_meta_data('_stripe_customer_id'); |
|
528 | 528 | $order->save(); |
529 | 529 | } |
530 | 530 | |
@@ -540,15 +540,15 @@ discard block |
||
540 | 540 | * @param boolean $force_save_source Whether the payment source must be saved, like when dealing with a Subscription setup. |
541 | 541 | * @return array Redirection data for `process_payment`. |
542 | 542 | */ |
543 | - public function complete_free_order( $order, $prepared_source, $force_save_source ) { |
|
544 | - if ( $force_save_source ) { |
|
545 | - $intent_secret = $this->setup_intent( $order, $prepared_source ); |
|
543 | + public function complete_free_order($order, $prepared_source, $force_save_source) { |
|
544 | + if ($force_save_source) { |
|
545 | + $intent_secret = $this->setup_intent($order, $prepared_source); |
|
546 | 546 | |
547 | - if ( ! empty( $intent_secret ) ) { |
|
547 | + if ( ! empty($intent_secret)) { |
|
548 | 548 | // `get_return_url()` must be called immediately before returning a value. |
549 | 549 | return array( |
550 | 550 | 'result' => 'success', |
551 | - 'redirect' => $this->get_return_url( $order ), |
|
551 | + 'redirect' => $this->get_return_url($order), |
|
552 | 552 | 'setup_intent_secret' => $intent_secret, |
553 | 553 | ); |
554 | 554 | } |
@@ -562,7 +562,7 @@ discard block |
||
562 | 562 | // Return thank you page redirect. |
563 | 563 | return array( |
564 | 564 | 'result' => 'success', |
565 | - 'redirect' => $this->get_return_url( $order ), |
|
565 | + 'redirect' => $this->get_return_url($order), |
|
566 | 566 | ); |
567 | 567 | } |
568 | 568 | |
@@ -580,81 +580,81 @@ discard block |
||
580 | 580 | * @throws Exception If payment will not be accepted. |
581 | 581 | * @return array|void |
582 | 582 | */ |
583 | - public function process_payment( $order_id, $retry = true, $force_save_source = false, $previous_error = false, $use_order_source = false ) { |
|
583 | + public function process_payment($order_id, $retry = true, $force_save_source = false, $previous_error = false, $use_order_source = false) { |
|
584 | 584 | try { |
585 | - $order = wc_get_order( $order_id ); |
|
585 | + $order = wc_get_order($order_id); |
|
586 | 586 | |
587 | 587 | // ToDo: `process_pre_order` saves the source to the order for a later payment. |
588 | 588 | // This might not work well with PaymentIntents. |
589 | - if ( $this->maybe_process_pre_orders( $order_id ) ) { |
|
590 | - return $this->pre_orders->process_pre_order( $order_id ); |
|
589 | + if ($this->maybe_process_pre_orders($order_id)) { |
|
590 | + return $this->pre_orders->process_pre_order($order_id); |
|
591 | 591 | } |
592 | 592 | |
593 | 593 | // Check whether there is an existing intent. |
594 | - $intent = $this->get_intent_from_order( $order ); |
|
595 | - if ( isset( $intent->object ) && 'setup_intent' === $intent->object ) { |
|
594 | + $intent = $this->get_intent_from_order($order); |
|
595 | + if (isset($intent->object) && 'setup_intent' === $intent->object) { |
|
596 | 596 | $intent = false; // This function can only deal with *payment* intents |
597 | 597 | } |
598 | 598 | |
599 | 599 | $stripe_customer_id = null; |
600 | - if ( $intent && ! empty( $intent->customer ) ) { |
|
600 | + if ($intent && ! empty($intent->customer)) { |
|
601 | 601 | $stripe_customer_id = $intent->customer; |
602 | 602 | } |
603 | 603 | |
604 | 604 | // For some payments the source should already be present in the order. |
605 | - if ( $use_order_source ) { |
|
606 | - $prepared_source = $this->prepare_order_source( $order ); |
|
605 | + if ($use_order_source) { |
|
606 | + $prepared_source = $this->prepare_order_source($order); |
|
607 | 607 | } else { |
608 | - $prepared_source = $this->prepare_source( get_current_user_id(), $force_save_source, $stripe_customer_id ); |
|
608 | + $prepared_source = $this->prepare_source(get_current_user_id(), $force_save_source, $stripe_customer_id); |
|
609 | 609 | } |
610 | 610 | |
611 | - $this->maybe_disallow_prepaid_card( $prepared_source ); |
|
612 | - $this->check_source( $prepared_source ); |
|
613 | - $this->save_source_to_order( $order, $prepared_source ); |
|
611 | + $this->maybe_disallow_prepaid_card($prepared_source); |
|
612 | + $this->check_source($prepared_source); |
|
613 | + $this->save_source_to_order($order, $prepared_source); |
|
614 | 614 | |
615 | - if ( 0 >= $order->get_total() ) { |
|
616 | - return $this->complete_free_order( $order, $prepared_source, $force_save_source ); |
|
615 | + if (0 >= $order->get_total()) { |
|
616 | + return $this->complete_free_order($order, $prepared_source, $force_save_source); |
|
617 | 617 | } |
618 | 618 | |
619 | 619 | // This will throw exception if not valid. |
620 | - $this->validate_minimum_order_amount( $order ); |
|
620 | + $this->validate_minimum_order_amount($order); |
|
621 | 621 | |
622 | - WC_Stripe_Logger::log( "Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}" ); |
|
622 | + WC_Stripe_Logger::log("Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}"); |
|
623 | 623 | |
624 | - if ( $intent ) { |
|
625 | - $intent = $this->update_existing_intent( $intent, $order, $prepared_source ); |
|
624 | + if ($intent) { |
|
625 | + $intent = $this->update_existing_intent($intent, $order, $prepared_source); |
|
626 | 626 | } else { |
627 | - $intent = $this->create_intent( $order, $prepared_source ); |
|
627 | + $intent = $this->create_intent($order, $prepared_source); |
|
628 | 628 | } |
629 | 629 | |
630 | 630 | // Confirm the intent after locking the order to make sure webhooks will not interfere. |
631 | - if ( empty( $intent->error ) ) { |
|
632 | - $this->lock_order_payment( $order, $intent ); |
|
633 | - $intent = $this->confirm_intent( $intent, $order, $prepared_source ); |
|
631 | + if (empty($intent->error)) { |
|
632 | + $this->lock_order_payment($order, $intent); |
|
633 | + $intent = $this->confirm_intent($intent, $order, $prepared_source); |
|
634 | 634 | } |
635 | 635 | |
636 | - if ( ! empty( $intent->error ) ) { |
|
637 | - $this->maybe_remove_non_existent_customer( $intent->error, $order ); |
|
636 | + if ( ! empty($intent->error)) { |
|
637 | + $this->maybe_remove_non_existent_customer($intent->error, $order); |
|
638 | 638 | |
639 | 639 | // We want to retry. |
640 | - if ( $this->is_retryable_error( $intent->error ) ) { |
|
641 | - return $this->retry_after_error( $intent, $order, $retry, $force_save_source, $previous_error, $use_order_source ); |
|
640 | + if ($this->is_retryable_error($intent->error)) { |
|
641 | + return $this->retry_after_error($intent, $order, $retry, $force_save_source, $previous_error, $use_order_source); |
|
642 | 642 | } |
643 | 643 | |
644 | - $this->unlock_order_payment( $order ); |
|
645 | - $this->throw_localized_message( $intent, $order ); |
|
644 | + $this->unlock_order_payment($order); |
|
645 | + $this->throw_localized_message($intent, $order); |
|
646 | 646 | } |
647 | 647 | |
648 | - if ( ! empty( $intent ) ) { |
|
648 | + if ( ! empty($intent)) { |
|
649 | 649 | // Use the last charge within the intent to proceed. |
650 | - $response = end( $intent->charges->data ); |
|
650 | + $response = end($intent->charges->data); |
|
651 | 651 | |
652 | 652 | // If the intent requires a 3DS flow, redirect to it. |
653 | - if ( 'requires_action' === $intent->status ) { |
|
654 | - $this->unlock_order_payment( $order ); |
|
653 | + if ('requires_action' === $intent->status) { |
|
654 | + $this->unlock_order_payment($order); |
|
655 | 655 | |
656 | - if ( is_wc_endpoint_url( 'order-pay' ) ) { |
|
657 | - $redirect_url = add_query_arg( 'wc-stripe-confirmation', 1, $order->get_checkout_payment_url( false ) ); |
|
656 | + if (is_wc_endpoint_url('order-pay')) { |
|
657 | + $redirect_url = add_query_arg('wc-stripe-confirmation', 1, $order->get_checkout_payment_url(false)); |
|
658 | 658 | |
659 | 659 | return array( |
660 | 660 | 'result' => 'success', |
@@ -669,7 +669,7 @@ discard block |
||
669 | 669 | |
670 | 670 | return array( |
671 | 671 | 'result' => 'success', |
672 | - 'redirect' => $this->get_return_url( $order ), |
|
672 | + 'redirect' => $this->get_return_url($order), |
|
673 | 673 | 'payment_intent_secret' => $intent->client_secret, |
674 | 674 | ); |
675 | 675 | } |
@@ -677,30 +677,30 @@ discard block |
||
677 | 677 | } |
678 | 678 | |
679 | 679 | // Process valid response. |
680 | - $this->process_response( $response, $order ); |
|
680 | + $this->process_response($response, $order); |
|
681 | 681 | |
682 | 682 | // Remove cart. |
683 | - if ( isset( WC()->cart ) ) { |
|
683 | + if (isset(WC()->cart)) { |
|
684 | 684 | WC()->cart->empty_cart(); |
685 | 685 | } |
686 | 686 | |
687 | 687 | // Unlock the order. |
688 | - $this->unlock_order_payment( $order ); |
|
688 | + $this->unlock_order_payment($order); |
|
689 | 689 | |
690 | 690 | // Return thank you page redirect. |
691 | 691 | return array( |
692 | 692 | 'result' => 'success', |
693 | - 'redirect' => $this->get_return_url( $order ), |
|
693 | + 'redirect' => $this->get_return_url($order), |
|
694 | 694 | ); |
695 | 695 | |
696 | - } catch ( WC_Stripe_Exception $e ) { |
|
697 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
698 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
696 | + } catch (WC_Stripe_Exception $e) { |
|
697 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
698 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
699 | 699 | |
700 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
700 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
701 | 701 | |
702 | 702 | /* translators: error message */ |
703 | - $order->update_status( 'failed' ); |
|
703 | + $order->update_status('failed'); |
|
704 | 704 | |
705 | 705 | return array( |
706 | 706 | 'result' => 'fail', |
@@ -716,17 +716,17 @@ discard block |
||
716 | 716 | * |
717 | 717 | * @param int $order_id The ID of the order. |
718 | 718 | */ |
719 | - public function display_order_fee( $order_id ) { |
|
720 | - if ( apply_filters( 'wc_stripe_hide_display_order_fee', false, $order_id ) ) { |
|
719 | + public function display_order_fee($order_id) { |
|
720 | + if (apply_filters('wc_stripe_hide_display_order_fee', false, $order_id)) { |
|
721 | 721 | return; |
722 | 722 | } |
723 | 723 | |
724 | - $order = wc_get_order( $order_id ); |
|
724 | + $order = wc_get_order($order_id); |
|
725 | 725 | |
726 | - $fee = WC_Stripe_Helper::get_stripe_fee( $order ); |
|
727 | - $currency = WC_Stripe_Helper::get_stripe_currency( $order ); |
|
726 | + $fee = WC_Stripe_Helper::get_stripe_fee($order); |
|
727 | + $currency = WC_Stripe_Helper::get_stripe_currency($order); |
|
728 | 728 | |
729 | - if ( ! $fee || ! $currency ) { |
|
729 | + if ( ! $fee || ! $currency) { |
|
730 | 730 | return; |
731 | 731 | } |
732 | 732 | |
@@ -734,12 +734,12 @@ discard block |
||
734 | 734 | |
735 | 735 | <tr> |
736 | 736 | <td class="label stripe-fee"> |
737 | - <?php echo wc_help_tip( __( 'This represents the fee Stripe collects for the transaction.', 'woocommerce-gateway-stripe' ) ); // wpcs: xss ok. ?> |
|
738 | - <?php esc_html_e( 'Stripe Fee:', 'woocommerce-gateway-stripe' ); ?> |
|
737 | + <?php echo wc_help_tip(__('This represents the fee Stripe collects for the transaction.', 'woocommerce-gateway-stripe')); // wpcs: xss ok. ?> |
|
738 | + <?php esc_html_e('Stripe Fee:', 'woocommerce-gateway-stripe'); ?> |
|
739 | 739 | </td> |
740 | 740 | <td width="1%"></td> |
741 | 741 | <td class="total"> |
742 | - - <?php echo wc_price( $fee, array( 'currency' => $currency ) ); // wpcs: xss ok. ?> |
|
742 | + - <?php echo wc_price($fee, array('currency' => $currency)); // wpcs: xss ok. ?> |
|
743 | 743 | </td> |
744 | 744 | </tr> |
745 | 745 | |
@@ -753,17 +753,17 @@ discard block |
||
753 | 753 | * |
754 | 754 | * @param int $order_id The ID of the order. |
755 | 755 | */ |
756 | - public function display_order_payout( $order_id ) { |
|
757 | - if ( apply_filters( 'wc_stripe_hide_display_order_payout', false, $order_id ) ) { |
|
756 | + public function display_order_payout($order_id) { |
|
757 | + if (apply_filters('wc_stripe_hide_display_order_payout', false, $order_id)) { |
|
758 | 758 | return; |
759 | 759 | } |
760 | 760 | |
761 | - $order = wc_get_order( $order_id ); |
|
761 | + $order = wc_get_order($order_id); |
|
762 | 762 | |
763 | - $net = WC_Stripe_Helper::get_stripe_net( $order ); |
|
764 | - $currency = WC_Stripe_Helper::get_stripe_currency( $order ); |
|
763 | + $net = WC_Stripe_Helper::get_stripe_net($order); |
|
764 | + $currency = WC_Stripe_Helper::get_stripe_currency($order); |
|
765 | 765 | |
766 | - if ( ! $net || ! $currency ) { |
|
766 | + if ( ! $net || ! $currency) { |
|
767 | 767 | return; |
768 | 768 | } |
769 | 769 | |
@@ -771,12 +771,12 @@ discard block |
||
771 | 771 | |
772 | 772 | <tr> |
773 | 773 | <td class="label stripe-payout"> |
774 | - <?php echo wc_help_tip( __( 'This represents the net total that will be credited to your Stripe bank account. This may be in the currency that is set in your Stripe account.', 'woocommerce-gateway-stripe' ) ); // wpcs: xss ok. ?> |
|
775 | - <?php esc_html_e( 'Stripe Payout:', 'woocommerce-gateway-stripe' ); ?> |
|
774 | + <?php echo wc_help_tip(__('This represents the net total that will be credited to your Stripe bank account. This may be in the currency that is set in your Stripe account.', 'woocommerce-gateway-stripe')); // wpcs: xss ok. ?> |
|
775 | + <?php esc_html_e('Stripe Payout:', 'woocommerce-gateway-stripe'); ?> |
|
776 | 776 | </td> |
777 | 777 | <td width="1%"></td> |
778 | 778 | <td class="total"> |
779 | - <?php echo wc_price( $net, array( 'currency' => $currency ) ); // wpcs: xss ok. ?> |
|
779 | + <?php echo wc_price($net, array('currency' => $currency)); // wpcs: xss ok. ?> |
|
780 | 780 | </td> |
781 | 781 | </tr> |
782 | 782 | |
@@ -792,13 +792,13 @@ discard block |
||
792 | 792 | * |
793 | 793 | * @return string The localized error message. |
794 | 794 | */ |
795 | - public function get_localized_error_message_from_response( $response ) { |
|
795 | + public function get_localized_error_message_from_response($response) { |
|
796 | 796 | $localized_messages = WC_Stripe_Helper::get_localized_messages(); |
797 | 797 | |
798 | - if ( 'card_error' === $response->error->type ) { |
|
799 | - $localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message; |
|
798 | + if ('card_error' === $response->error->type) { |
|
799 | + $localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message; |
|
800 | 800 | } else { |
801 | - $localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message; |
|
801 | + $localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message; |
|
802 | 802 | } |
803 | 803 | |
804 | 804 | return $localized_message; |
@@ -812,12 +812,12 @@ discard block |
||
812 | 812 | * @param WC_Order $order The order to add a note to. |
813 | 813 | * @throws WC_Stripe_Exception An exception with the right message. |
814 | 814 | */ |
815 | - public function throw_localized_message( $response, $order ) { |
|
816 | - $localized_message = $this->get_localized_error_message_from_response( $response ); |
|
815 | + public function throw_localized_message($response, $order) { |
|
816 | + $localized_message = $this->get_localized_error_message_from_response($response); |
|
817 | 817 | |
818 | - $order->add_order_note( $localized_message ); |
|
818 | + $order->add_order_note($localized_message); |
|
819 | 819 | |
820 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
820 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
821 | 821 | } |
822 | 822 | |
823 | 823 | /** |
@@ -833,22 +833,22 @@ discard block |
||
833 | 833 | * @throws WC_Stripe_Exception If the payment is not accepted. |
834 | 834 | * @return array|void |
835 | 835 | */ |
836 | - public function retry_after_error( $response, $order, $retry, $force_save_source, $previous_error, $use_order_source ) { |
|
837 | - if ( ! $retry ) { |
|
838 | - $localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' ); |
|
839 | - $order->add_order_note( $localized_message ); |
|
840 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions. |
|
836 | + public function retry_after_error($response, $order, $retry, $force_save_source, $previous_error, $use_order_source) { |
|
837 | + if ( ! $retry) { |
|
838 | + $localized_message = __('Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe'); |
|
839 | + $order->add_order_note($localized_message); |
|
840 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); // phpcs:ignore WordPress.PHP.DevelopmentFunctions. |
|
841 | 841 | } |
842 | 842 | |
843 | 843 | // Don't do anymore retries after this. |
844 | - if ( 5 <= $this->retry_interval ) { |
|
845 | - return $this->process_payment( $order->get_id(), false, $force_save_source, $response->error, $previous_error ); |
|
844 | + if (5 <= $this->retry_interval) { |
|
845 | + return $this->process_payment($order->get_id(), false, $force_save_source, $response->error, $previous_error); |
|
846 | 846 | } |
847 | 847 | |
848 | - sleep( $this->retry_interval ); |
|
848 | + sleep($this->retry_interval); |
|
849 | 849 | $this->retry_interval++; |
850 | 850 | |
851 | - return $this->process_payment( $order->get_id(), true, $force_save_source, $response->error, $previous_error, $use_order_source ); |
|
851 | + return $this->process_payment($order->get_id(), true, $force_save_source, $response->error, $previous_error, $use_order_source); |
|
852 | 852 | } |
853 | 853 | |
854 | 854 | /** |
@@ -859,23 +859,23 @@ discard block |
||
859 | 859 | * @param WC_Payment_Gateway[] $gateways A list of all available gateways. |
860 | 860 | * @return WC_Payment_Gateway[] Either the same list or an empty one in the right conditions. |
861 | 861 | */ |
862 | - public function prepare_order_pay_page( $gateways ) { |
|
863 | - if ( ! is_wc_endpoint_url( 'order-pay' ) || ! isset( $_GET['wc-stripe-confirmation'] ) ) { // wpcs: csrf ok. |
|
862 | + public function prepare_order_pay_page($gateways) { |
|
863 | + if ( ! is_wc_endpoint_url('order-pay') || ! isset($_GET['wc-stripe-confirmation'])) { // wpcs: csrf ok. |
|
864 | 864 | return $gateways; |
865 | 865 | } |
866 | 866 | |
867 | 867 | try { |
868 | 868 | $this->prepare_intent_for_order_pay_page(); |
869 | - } catch ( WC_Stripe_Exception $e ) { |
|
869 | + } catch (WC_Stripe_Exception $e) { |
|
870 | 870 | // Just show the full order pay page if there was a problem preparing the Payment Intent |
871 | 871 | return $gateways; |
872 | 872 | } |
873 | 873 | |
874 | - add_filter( 'woocommerce_checkout_show_terms', '__return_false' ); |
|
875 | - add_filter( 'woocommerce_pay_order_button_html', '__return_false' ); |
|
876 | - add_filter( 'woocommerce_available_payment_gateways', '__return_empty_array' ); |
|
877 | - add_filter( 'woocommerce_no_available_payment_methods_message', array( $this, 'change_no_available_methods_message' ) ); |
|
878 | - add_action( 'woocommerce_pay_order_after_submit', array( $this, 'render_payment_intent_inputs' ) ); |
|
874 | + add_filter('woocommerce_checkout_show_terms', '__return_false'); |
|
875 | + add_filter('woocommerce_pay_order_button_html', '__return_false'); |
|
876 | + add_filter('woocommerce_available_payment_gateways', '__return_empty_array'); |
|
877 | + add_filter('woocommerce_no_available_payment_methods_message', array($this, 'change_no_available_methods_message')); |
|
878 | + add_action('woocommerce_pay_order_after_submit', array($this, 'render_payment_intent_inputs')); |
|
879 | 879 | |
880 | 880 | return array(); |
881 | 881 | } |
@@ -888,7 +888,7 @@ discard block |
||
888 | 888 | * @return string the new message. |
889 | 889 | */ |
890 | 890 | public function change_no_available_methods_message() { |
891 | - return wpautop( __( "Almost there!\n\nYour order has already been created, the only thing that still needs to be done is for you to authorize the payment with your bank.", 'woocommerce-gateway-stripe' ) ); |
|
891 | + return wpautop(__("Almost there!\n\nYour order has already been created, the only thing that still needs to be done is for you to authorize the payment with your bank.", 'woocommerce-gateway-stripe')); |
|
892 | 892 | } |
893 | 893 | |
894 | 894 | /** |
@@ -899,19 +899,19 @@ discard block |
||
899 | 899 | * @throws WC_Stripe_Exception |
900 | 900 | * @since 4.3 |
901 | 901 | */ |
902 | - public function prepare_intent_for_order_pay_page( $order = null ) { |
|
903 | - if ( ! isset( $order ) || empty( $order ) ) { |
|
904 | - $order = wc_get_order( absint( get_query_var( 'order-pay' ) ) ); |
|
902 | + public function prepare_intent_for_order_pay_page($order = null) { |
|
903 | + if ( ! isset($order) || empty($order)) { |
|
904 | + $order = wc_get_order(absint(get_query_var('order-pay'))); |
|
905 | 905 | } |
906 | - $intent = $this->get_intent_from_order( $order ); |
|
906 | + $intent = $this->get_intent_from_order($order); |
|
907 | 907 | |
908 | - if ( ! $intent ) { |
|
909 | - throw new WC_Stripe_Exception( 'Payment Intent not found', __( 'Payment Intent not found for order #' . $order->get_id(), 'woocommerce-gateway-stripe' ) ); |
|
908 | + if ( ! $intent) { |
|
909 | + throw new WC_Stripe_Exception('Payment Intent not found', __('Payment Intent not found for order #' . $order->get_id(), 'woocommerce-gateway-stripe')); |
|
910 | 910 | } |
911 | 911 | |
912 | - if ( 'requires_payment_method' === $intent->status && isset( $intent->last_payment_error ) |
|
913 | - && 'authentication_required' === $intent->last_payment_error->code ) { |
|
914 | - $level3_data = $this->get_level3_data_from_order( $order ); |
|
912 | + if ('requires_payment_method' === $intent->status && isset($intent->last_payment_error) |
|
913 | + && 'authentication_required' === $intent->last_payment_error->code) { |
|
914 | + $level3_data = $this->get_level3_data_from_order($order); |
|
915 | 915 | $intent = WC_Stripe_API::request_with_level3_data( |
916 | 916 | array( |
917 | 917 | 'payment_method' => $intent->last_payment_error->source->id, |
@@ -921,8 +921,8 @@ discard block |
||
921 | 921 | $order |
922 | 922 | ); |
923 | 923 | |
924 | - if ( isset( $intent->error ) ) { |
|
925 | - throw new WC_Stripe_Exception( print_r( $intent, true ), $intent->error->message ); |
|
924 | + if (isset($intent->error)) { |
|
925 | + throw new WC_Stripe_Exception(print_r($intent, true), $intent->error->message); |
|
926 | 926 | } |
927 | 927 | } |
928 | 928 | |
@@ -937,26 +937,26 @@ discard block |
||
937 | 937 | * @throws WC_Stripe_Exception |
938 | 938 | * @since 4.2 |
939 | 939 | */ |
940 | - public function render_payment_intent_inputs( $order = null ) { |
|
941 | - if ( ! isset( $order ) || empty( $order ) ) { |
|
942 | - $order = wc_get_order( absint( get_query_var( 'order-pay' ) ) ); |
|
940 | + public function render_payment_intent_inputs($order = null) { |
|
941 | + if ( ! isset($order) || empty($order)) { |
|
942 | + $order = wc_get_order(absint(get_query_var('order-pay'))); |
|
943 | 943 | } |
944 | - if ( ! isset( $this->order_pay_intent ) ) { |
|
945 | - $this->prepare_intent_for_order_pay_page( $order ); |
|
944 | + if ( ! isset($this->order_pay_intent)) { |
|
945 | + $this->prepare_intent_for_order_pay_page($order); |
|
946 | 946 | } |
947 | 947 | |
948 | 948 | $verification_url = add_query_arg( |
949 | 949 | array( |
950 | 950 | 'order' => $order->get_id(), |
951 | - 'nonce' => wp_create_nonce( 'wc_stripe_confirm_pi' ), |
|
952 | - 'redirect_to' => rawurlencode( $this->get_return_url( $order ) ), |
|
951 | + 'nonce' => wp_create_nonce('wc_stripe_confirm_pi'), |
|
952 | + 'redirect_to' => rawurlencode($this->get_return_url($order)), |
|
953 | 953 | 'is_pay_for_order' => true, |
954 | 954 | ), |
955 | - WC_AJAX::get_endpoint( 'wc_stripe_verify_intent' ) |
|
955 | + WC_AJAX::get_endpoint('wc_stripe_verify_intent') |
|
956 | 956 | ); |
957 | 957 | |
958 | - echo '<input type="hidden" id="stripe-intent-id" value="' . esc_attr( $this->order_pay_intent->client_secret ) . '" />'; |
|
959 | - echo '<input type="hidden" id="stripe-intent-return" value="' . esc_attr( $verification_url ) . '" />'; |
|
958 | + echo '<input type="hidden" id="stripe-intent-id" value="' . esc_attr($this->order_pay_intent->client_secret) . '" />'; |
|
959 | + echo '<input type="hidden" id="stripe-intent-return" value="' . esc_attr($verification_url) . '" />'; |
|
960 | 960 | } |
961 | 961 | |
962 | 962 | /** |
@@ -966,11 +966,11 @@ discard block |
||
966 | 966 | * @param WC_Payment_Token $token Payment Token. |
967 | 967 | * @return string Generated payment method HTML |
968 | 968 | */ |
969 | - public function get_saved_payment_method_option_html( $token ) { |
|
970 | - $html = parent::get_saved_payment_method_option_html( $token ); |
|
969 | + public function get_saved_payment_method_option_html($token) { |
|
970 | + $html = parent::get_saved_payment_method_option_html($token); |
|
971 | 971 | $error_wrapper = '<div class="stripe-source-errors" role="alert"></div>'; |
972 | 972 | |
973 | - return preg_replace( '~</(\w+)>\s*$~', "$error_wrapper</$1>", $html ); |
|
973 | + return preg_replace('~</(\w+)>\s*$~', "$error_wrapper</$1>", $html); |
|
974 | 974 | } |
975 | 975 | |
976 | 976 | /** |
@@ -980,18 +980,18 @@ discard block |
||
980 | 980 | * @since 4.2.0 |
981 | 981 | * @param int $order_id The ID that will be used for the thank you page. |
982 | 982 | */ |
983 | - public function check_intent_status_on_order_page( $order_id ) { |
|
984 | - if ( empty( $order_id ) || absint( $order_id ) <= 0 ) { |
|
983 | + public function check_intent_status_on_order_page($order_id) { |
|
984 | + if (empty($order_id) || absint($order_id) <= 0) { |
|
985 | 985 | return; |
986 | 986 | } |
987 | 987 | |
988 | - $order = wc_get_order( absint( $order_id ) ); |
|
988 | + $order = wc_get_order(absint($order_id)); |
|
989 | 989 | |
990 | - if ( ! $order ) { |
|
990 | + if ( ! $order) { |
|
991 | 991 | return; |
992 | 992 | } |
993 | 993 | |
994 | - $this->verify_intent_after_checkout( $order ); |
|
994 | + $this->verify_intent_after_checkout($order); |
|
995 | 995 | } |
996 | 996 | |
997 | 997 | /** |
@@ -1005,8 +1005,8 @@ discard block |
||
1005 | 1005 | * @param int $order_id The ID of the order which is being paid for. |
1006 | 1006 | * @return array |
1007 | 1007 | */ |
1008 | - public function modify_successful_payment_result( $result, $order_id ) { |
|
1009 | - if ( ! isset( $result['payment_intent_secret'] ) && ! isset( $result['setup_intent_secret'] ) ) { |
|
1008 | + public function modify_successful_payment_result($result, $order_id) { |
|
1009 | + if ( ! isset($result['payment_intent_secret']) && ! isset($result['setup_intent_secret'])) { |
|
1010 | 1010 | // Only redirects with intents need to be modified. |
1011 | 1011 | return $result; |
1012 | 1012 | } |
@@ -1015,16 +1015,16 @@ discard block |
||
1015 | 1015 | $verification_url = add_query_arg( |
1016 | 1016 | array( |
1017 | 1017 | 'order' => $order_id, |
1018 | - 'nonce' => wp_create_nonce( 'wc_stripe_confirm_pi' ), |
|
1019 | - 'redirect_to' => rawurlencode( $result['redirect'] ), |
|
1018 | + 'nonce' => wp_create_nonce('wc_stripe_confirm_pi'), |
|
1019 | + 'redirect_to' => rawurlencode($result['redirect']), |
|
1020 | 1020 | ), |
1021 | - WC_AJAX::get_endpoint( 'wc_stripe_verify_intent' ) |
|
1021 | + WC_AJAX::get_endpoint('wc_stripe_verify_intent') |
|
1022 | 1022 | ); |
1023 | 1023 | |
1024 | - if ( isset( $result['payment_intent_secret'] ) ) { |
|
1025 | - $redirect = sprintf( '#confirm-pi-%s:%s', $result['payment_intent_secret'], rawurlencode( $verification_url ) ); |
|
1026 | - } else if ( isset( $result['setup_intent_secret'] ) ) { |
|
1027 | - $redirect = sprintf( '#confirm-si-%s:%s', $result['setup_intent_secret'], rawurlencode( $verification_url ) ); |
|
1024 | + if (isset($result['payment_intent_secret'])) { |
|
1025 | + $redirect = sprintf('#confirm-pi-%s:%s', $result['payment_intent_secret'], rawurlencode($verification_url)); |
|
1026 | + } else if (isset($result['setup_intent_secret'])) { |
|
1027 | + $redirect = sprintf('#confirm-si-%s:%s', $result['setup_intent_secret'], rawurlencode($verification_url)); |
|
1028 | 1028 | } |
1029 | 1029 | |
1030 | 1030 | return array( |
@@ -1036,8 +1036,8 @@ discard block |
||
1036 | 1036 | /** |
1037 | 1037 | * Proceed with current request using new login session (to ensure consistent nonce). |
1038 | 1038 | */ |
1039 | - public function set_cookie_on_current_request( $cookie ) { |
|
1040 | - $_COOKIE[ LOGGED_IN_COOKIE ] = $cookie; |
|
1039 | + public function set_cookie_on_current_request($cookie) { |
|
1040 | + $_COOKIE[LOGGED_IN_COOKIE] = $cookie; |
|
1041 | 1041 | } |
1042 | 1042 | |
1043 | 1043 | /** |
@@ -1047,48 +1047,48 @@ discard block |
||
1047 | 1047 | * @since 4.2.0 |
1048 | 1048 | * @param WC_Order $order The order which is in a transitional state. |
1049 | 1049 | */ |
1050 | - public function verify_intent_after_checkout( $order ) { |
|
1051 | - $payment_method = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->payment_method : $order->get_payment_method(); |
|
1052 | - if ( $payment_method !== $this->id ) { |
|
1050 | + public function verify_intent_after_checkout($order) { |
|
1051 | + $payment_method = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->payment_method : $order->get_payment_method(); |
|
1052 | + if ($payment_method !== $this->id) { |
|
1053 | 1053 | // If this is not the payment method, an intent would not be available. |
1054 | 1054 | return; |
1055 | 1055 | } |
1056 | 1056 | |
1057 | - $intent = $this->get_intent_from_order( $order ); |
|
1058 | - if ( ! $intent ) { |
|
1057 | + $intent = $this->get_intent_from_order($order); |
|
1058 | + if ( ! $intent) { |
|
1059 | 1059 | // No intent, redirect to the order received page for further actions. |
1060 | 1060 | return; |
1061 | 1061 | } |
1062 | 1062 | |
1063 | 1063 | // A webhook might have modified or locked the order while the intent was retreived. This ensures we are reading the right status. |
1064 | - clean_post_cache( $order->get_id() ); |
|
1065 | - $order = wc_get_order( $order->get_id() ); |
|
1064 | + clean_post_cache($order->get_id()); |
|
1065 | + $order = wc_get_order($order->get_id()); |
|
1066 | 1066 | |
1067 | - if ( ! $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
1067 | + if ( ! $order->has_status(array('pending', 'failed'))) { |
|
1068 | 1068 | // If payment has already been completed, this function is redundant. |
1069 | 1069 | return; |
1070 | 1070 | } |
1071 | 1071 | |
1072 | - if ( $this->lock_order_payment( $order, $intent ) ) { |
|
1072 | + if ($this->lock_order_payment($order, $intent)) { |
|
1073 | 1073 | return; |
1074 | 1074 | } |
1075 | 1075 | |
1076 | - if ( 'setup_intent' === $intent->object && 'succeeded' === $intent->status ) { |
|
1076 | + if ('setup_intent' === $intent->object && 'succeeded' === $intent->status) { |
|
1077 | 1077 | WC()->cart->empty_cart(); |
1078 | - if ( WC_Stripe_Helper::is_pre_orders_exists() && WC_Pre_Orders_Order::order_contains_pre_order( $order ) ) { |
|
1079 | - WC_Pre_Orders_Order::mark_order_as_pre_ordered( $order ); |
|
1078 | + if (WC_Stripe_Helper::is_pre_orders_exists() && WC_Pre_Orders_Order::order_contains_pre_order($order)) { |
|
1079 | + WC_Pre_Orders_Order::mark_order_as_pre_ordered($order); |
|
1080 | 1080 | } else { |
1081 | 1081 | $order->payment_complete(); |
1082 | 1082 | } |
1083 | - } else if ( 'succeeded' === $intent->status || 'requires_capture' === $intent->status ) { |
|
1083 | + } else if ('succeeded' === $intent->status || 'requires_capture' === $intent->status) { |
|
1084 | 1084 | // Proceed with the payment completion. |
1085 | - $this->handle_intent_verification_success( $order, $intent ); |
|
1086 | - } else if ( 'requires_payment_method' === $intent->status ) { |
|
1085 | + $this->handle_intent_verification_success($order, $intent); |
|
1086 | + } else if ('requires_payment_method' === $intent->status) { |
|
1087 | 1087 | // `requires_payment_method` means that SCA got denied for the current payment method. |
1088 | - $this->handle_intent_verification_failure( $order, $intent ); |
|
1088 | + $this->handle_intent_verification_failure($order, $intent); |
|
1089 | 1089 | } |
1090 | 1090 | |
1091 | - $this->unlock_order_payment( $order ); |
|
1091 | + $this->unlock_order_payment($order); |
|
1092 | 1092 | } |
1093 | 1093 | |
1094 | 1094 | /** |
@@ -1098,8 +1098,8 @@ discard block |
||
1098 | 1098 | * @param WC_Order $order The order whose verification succeeded. |
1099 | 1099 | * @param stdClass $intent The Payment Intent object. |
1100 | 1100 | */ |
1101 | - protected function handle_intent_verification_success( $order, $intent ) { |
|
1102 | - $this->process_response( end( $intent->charges->data ), $order ); |
|
1101 | + protected function handle_intent_verification_success($order, $intent) { |
|
1102 | + $this->process_response(end($intent->charges->data), $order); |
|
1103 | 1103 | } |
1104 | 1104 | |
1105 | 1105 | /** |
@@ -1109,8 +1109,8 @@ discard block |
||
1109 | 1109 | * @param WC_Order $order The order whose verification failed. |
1110 | 1110 | * @param stdClass $intent The Payment Intent object. |
1111 | 1111 | */ |
1112 | - protected function handle_intent_verification_failure( $order, $intent ) { |
|
1113 | - $this->failed_sca_auth( $order, $intent ); |
|
1112 | + protected function handle_intent_verification_failure($order, $intent) { |
|
1113 | + $this->failed_sca_auth($order, $intent); |
|
1114 | 1114 | } |
1115 | 1115 | |
1116 | 1116 | /** |
@@ -1120,18 +1120,18 @@ discard block |
||
1120 | 1120 | * @param WC_Order $order The order which should be checked. |
1121 | 1121 | * @param object $intent The intent, associated with the order. |
1122 | 1122 | */ |
1123 | - public function failed_sca_auth( $order, $intent ) { |
|
1123 | + public function failed_sca_auth($order, $intent) { |
|
1124 | 1124 | // If the order has already failed, do not repeat the same message. |
1125 | - if ( $order->has_status( 'failed' ) ) { |
|
1125 | + if ($order->has_status('failed')) { |
|
1126 | 1126 | return; |
1127 | 1127 | } |
1128 | 1128 | |
1129 | 1129 | // Load the right message and update the status. |
1130 | - $status_message = isset( $intent->last_payment_error ) |
|
1130 | + $status_message = isset($intent->last_payment_error) |
|
1131 | 1131 | /* translators: 1) The error message that was received from Stripe. */ |
1132 | - ? sprintf( __( 'Stripe SCA authentication failed. Reason: %s', 'woocommerce-gateway-stripe' ), $intent->last_payment_error->message ) |
|
1133 | - : __( 'Stripe SCA authentication failed.', 'woocommerce-gateway-stripe' ); |
|
1134 | - $order->update_status( 'failed', $status_message ); |
|
1132 | + ? sprintf(__('Stripe SCA authentication failed. Reason: %s', 'woocommerce-gateway-stripe'), $intent->last_payment_error->message) |
|
1133 | + : __('Stripe SCA authentication failed.', 'woocommerce-gateway-stripe'); |
|
1134 | + $order->update_status('failed', $status_message); |
|
1135 | 1135 | } |
1136 | 1136 | |
1137 | 1137 | /** |
@@ -1142,10 +1142,10 @@ discard block |
||
1142 | 1142 | * |
1143 | 1143 | * @return string Checkout URL for the given order. |
1144 | 1144 | */ |
1145 | - public function get_checkout_payment_url( $pay_url, $order ) { |
|
1145 | + public function get_checkout_payment_url($pay_url, $order) { |
|
1146 | 1146 | global $wp; |
1147 | - if ( isset( $_GET['wc-stripe-confirmation'] ) && isset( $wp->query_vars['order-pay'] ) && $wp->query_vars['order-pay'] == $order->get_id() ) { |
|
1148 | - $pay_url = add_query_arg( 'wc-stripe-confirmation', 1, $pay_url ); |
|
1147 | + if (isset($_GET['wc-stripe-confirmation']) && isset($wp->query_vars['order-pay']) && $wp->query_vars['order-pay'] == $order->get_id()) { |
|
1148 | + $pay_url = add_query_arg('wc-stripe-confirmation', 1, $pay_url); |
|
1149 | 1149 | } |
1150 | 1150 | return $pay_url; |
1151 | 1151 | } |
@@ -1155,32 +1155,32 @@ discard block |
||
1155 | 1155 | */ |
1156 | 1156 | public function process_admin_options() { |
1157 | 1157 | // Load all old values before the new settings get saved. |
1158 | - $old_publishable_key = $this->get_option( 'publishable_key' ); |
|
1159 | - $old_secret_key = $this->get_option( 'secret_key' ); |
|
1160 | - $old_test_publishable_key = $this->get_option( 'test_publishable_key' ); |
|
1161 | - $old_test_secret_key = $this->get_option( 'test_secret_key' ); |
|
1158 | + $old_publishable_key = $this->get_option('publishable_key'); |
|
1159 | + $old_secret_key = $this->get_option('secret_key'); |
|
1160 | + $old_test_publishable_key = $this->get_option('test_publishable_key'); |
|
1161 | + $old_test_secret_key = $this->get_option('test_secret_key'); |
|
1162 | 1162 | |
1163 | 1163 | parent::process_admin_options(); |
1164 | 1164 | |
1165 | 1165 | // Load all old values after the new settings have been saved. |
1166 | - $new_publishable_key = $this->get_option( 'publishable_key' ); |
|
1167 | - $new_secret_key = $this->get_option( 'secret_key' ); |
|
1168 | - $new_test_publishable_key = $this->get_option( 'test_publishable_key' ); |
|
1169 | - $new_test_secret_key = $this->get_option( 'test_secret_key' ); |
|
1166 | + $new_publishable_key = $this->get_option('publishable_key'); |
|
1167 | + $new_secret_key = $this->get_option('secret_key'); |
|
1168 | + $new_test_publishable_key = $this->get_option('test_publishable_key'); |
|
1169 | + $new_test_secret_key = $this->get_option('test_secret_key'); |
|
1170 | 1170 | |
1171 | 1171 | // Checks whether a value has transitioned from a non-empty value to a new one. |
1172 | - $has_changed = function( $old_value, $new_value ) { |
|
1173 | - return ! empty( $old_value ) && ( $old_value !== $new_value ); |
|
1172 | + $has_changed = function($old_value, $new_value) { |
|
1173 | + return ! empty($old_value) && ($old_value !== $new_value); |
|
1174 | 1174 | }; |
1175 | 1175 | |
1176 | 1176 | // Look for updates. |
1177 | 1177 | if ( |
1178 | - $has_changed( $old_publishable_key, $new_publishable_key ) |
|
1179 | - || $has_changed( $old_secret_key, $new_secret_key ) |
|
1180 | - || $has_changed( $old_test_publishable_key, $new_test_publishable_key ) |
|
1181 | - || $has_changed( $old_test_secret_key, $new_test_secret_key ) |
|
1178 | + $has_changed($old_publishable_key, $new_publishable_key) |
|
1179 | + || $has_changed($old_secret_key, $new_secret_key) |
|
1180 | + || $has_changed($old_test_publishable_key, $new_test_publishable_key) |
|
1181 | + || $has_changed($old_test_secret_key, $new_test_secret_key) |
|
1182 | 1182 | ) { |
1183 | - update_option( 'wc_stripe_show_changed_keys_notice', 'yes' ); |
|
1183 | + update_option('wc_stripe_show_changed_keys_notice', 'yes'); |
|
1184 | 1184 | } |
1185 | 1185 | } |
1186 | 1186 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if ( ! defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -23,11 +23,11 @@ discard block |
||
23 | 23 | |
24 | 24 | $this->retry_interval = 1; |
25 | 25 | |
26 | - add_action( 'wp', array( $this, 'maybe_process_redirect_order' ) ); |
|
27 | - add_action( 'woocommerce_order_status_processing', array( $this, 'capture_payment' ) ); |
|
28 | - add_action( 'woocommerce_order_status_completed', array( $this, 'capture_payment' ) ); |
|
29 | - add_action( 'woocommerce_order_status_cancelled', array( $this, 'cancel_payment' ) ); |
|
30 | - add_action( 'woocommerce_order_status_refunded', array( $this, 'cancel_payment' ) ); |
|
26 | + add_action('wp', array($this, 'maybe_process_redirect_order')); |
|
27 | + add_action('woocommerce_order_status_processing', array($this, 'capture_payment')); |
|
28 | + add_action('woocommerce_order_status_completed', array($this, 'capture_payment')); |
|
29 | + add_action('woocommerce_order_status_cancelled', array($this, 'cancel_payment')); |
|
30 | + add_action('woocommerce_order_status_refunded', array($this, 'cancel_payment')); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
@@ -51,25 +51,25 @@ discard block |
||
51 | 51 | * @param bool $retry |
52 | 52 | * @param mix $previous_error Any error message from previous request. |
53 | 53 | */ |
54 | - public function process_redirect_payment( $order_id, $retry = true, $previous_error = false ) { |
|
54 | + public function process_redirect_payment($order_id, $retry = true, $previous_error = false) { |
|
55 | 55 | try { |
56 | - $source = wc_clean( $_GET['source'] ); |
|
56 | + $source = wc_clean($_GET['source']); |
|
57 | 57 | |
58 | - if ( empty( $source ) ) { |
|
58 | + if (empty($source)) { |
|
59 | 59 | return; |
60 | 60 | } |
61 | 61 | |
62 | - if ( empty( $order_id ) ) { |
|
62 | + if (empty($order_id)) { |
|
63 | 63 | return; |
64 | 64 | } |
65 | 65 | |
66 | - $order = wc_get_order( $order_id ); |
|
66 | + $order = wc_get_order($order_id); |
|
67 | 67 | |
68 | - if ( ! is_object( $order ) ) { |
|
68 | + if ( ! is_object($order)) { |
|
69 | 69 | return; |
70 | 70 | } |
71 | 71 | |
72 | - if ( $order->has_status( array( 'processing', 'completed', 'on-hold' ) ) ) { |
|
72 | + if ($order->has_status(array('processing', 'completed', 'on-hold'))) { |
|
73 | 73 | return; |
74 | 74 | } |
75 | 75 | |
@@ -77,124 +77,124 @@ discard block |
||
77 | 77 | $response = null; |
78 | 78 | |
79 | 79 | // This will throw exception if not valid. |
80 | - $this->validate_minimum_order_amount( $order ); |
|
80 | + $this->validate_minimum_order_amount($order); |
|
81 | 81 | |
82 | - WC_Stripe_Logger::log( "Info: (Redirect) Begin processing payment for order $order_id for the amount of {$order->get_total()}" ); |
|
82 | + WC_Stripe_Logger::log("Info: (Redirect) Begin processing payment for order $order_id for the amount of {$order->get_total()}"); |
|
83 | 83 | |
84 | 84 | /** |
85 | 85 | * First check if the source is chargeable at this time. If not, |
86 | 86 | * webhook will take care of it later. |
87 | 87 | */ |
88 | - $source_info = WC_Stripe_API::retrieve( 'sources/' . $source ); |
|
88 | + $source_info = WC_Stripe_API::retrieve('sources/' . $source); |
|
89 | 89 | |
90 | - if ( ! empty( $source_info->error ) ) { |
|
91 | - throw new WC_Stripe_Exception( print_r( $source_info, true ), $source_info->error->message ); |
|
90 | + if ( ! empty($source_info->error)) { |
|
91 | + throw new WC_Stripe_Exception(print_r($source_info, true), $source_info->error->message); |
|
92 | 92 | } |
93 | 93 | |
94 | - if ( 'failed' === $source_info->status || 'canceled' === $source_info->status ) { |
|
95 | - throw new WC_Stripe_Exception( print_r( $source_info, true ), __( 'Unable to process this payment, please try again or use alternative method.', 'woocommerce-gateway-stripe' ) ); |
|
94 | + if ('failed' === $source_info->status || 'canceled' === $source_info->status) { |
|
95 | + throw new WC_Stripe_Exception(print_r($source_info, true), __('Unable to process this payment, please try again or use alternative method.', 'woocommerce-gateway-stripe')); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | // If already consumed, then ignore request. |
99 | - if ( 'consumed' === $source_info->status ) { |
|
99 | + if ('consumed' === $source_info->status) { |
|
100 | 100 | return; |
101 | 101 | } |
102 | 102 | |
103 | 103 | // If not chargeable, then ignore request. |
104 | - if ( 'chargeable' !== $source_info->status ) { |
|
104 | + if ('chargeable' !== $source_info->status) { |
|
105 | 105 | return; |
106 | 106 | } |
107 | 107 | |
108 | 108 | // Prep source object. |
109 | 109 | $source_object = new stdClass(); |
110 | 110 | $source_object->token_id = ''; |
111 | - $source_object->customer = $this->get_stripe_customer_id( $order ); |
|
111 | + $source_object->customer = $this->get_stripe_customer_id($order); |
|
112 | 112 | $source_object->source = $source_info->id; |
113 | 113 | $source_object->status = 'chargeable'; |
114 | 114 | |
115 | 115 | /* If we're doing a retry and source is chargeable, we need to pass |
116 | 116 | * a different idempotency key and retry for success. |
117 | 117 | */ |
118 | - if ( $this->need_update_idempotency_key( $source_object, $previous_error ) ) { |
|
119 | - add_filter( 'wc_stripe_idempotency_key', array( $this, 'change_idempotency_key' ), 10, 2 ); |
|
118 | + if ($this->need_update_idempotency_key($source_object, $previous_error)) { |
|
119 | + add_filter('wc_stripe_idempotency_key', array($this, 'change_idempotency_key'), 10, 2); |
|
120 | 120 | } |
121 | 121 | |
122 | 122 | // Make the request. |
123 | - $response = WC_Stripe_API::request( $this->generate_payment_request( $order, $source_object ), 'charges', 'POST', true ); |
|
123 | + $response = WC_Stripe_API::request($this->generate_payment_request($order, $source_object), 'charges', 'POST', true); |
|
124 | 124 | $headers = $response['headers']; |
125 | 125 | $response = $response['body']; |
126 | 126 | |
127 | - if ( ! empty( $response->error ) ) { |
|
127 | + if ( ! empty($response->error)) { |
|
128 | 128 | // Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without. |
129 | - if ( $this->is_no_such_customer_error( $response->error ) ) { |
|
130 | - if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
131 | - delete_user_option( $order->customer_user, '_stripe_customer_id' ); |
|
132 | - delete_post_meta( $order_id, '_stripe_customer_id' ); |
|
129 | + if ($this->is_no_such_customer_error($response->error)) { |
|
130 | + if (WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
131 | + delete_user_option($order->customer_user, '_stripe_customer_id'); |
|
132 | + delete_post_meta($order_id, '_stripe_customer_id'); |
|
133 | 133 | } else { |
134 | - delete_user_option( $order->get_customer_id(), '_stripe_customer_id' ); |
|
135 | - $order->delete_meta_data( '_stripe_customer_id' ); |
|
134 | + delete_user_option($order->get_customer_id(), '_stripe_customer_id'); |
|
135 | + $order->delete_meta_data('_stripe_customer_id'); |
|
136 | 136 | $order->save(); |
137 | 137 | } |
138 | 138 | } |
139 | 139 | |
140 | - if ( $this->is_no_such_token_error( $response->error ) && $prepared_source->token_id ) { |
|
140 | + if ($this->is_no_such_token_error($response->error) && $prepared_source->token_id) { |
|
141 | 141 | // Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message. |
142 | - $wc_token = WC_Payment_Tokens::get( $prepared_source->token_id ); |
|
142 | + $wc_token = WC_Payment_Tokens::get($prepared_source->token_id); |
|
143 | 143 | $wc_token->delete(); |
144 | - $localized_message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' ); |
|
145 | - $order->add_order_note( $localized_message ); |
|
146 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
144 | + $localized_message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe'); |
|
145 | + $order->add_order_note($localized_message); |
|
146 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | // We want to retry. |
150 | - if ( $this->is_retryable_error( $response->error ) ) { |
|
151 | - if ( $retry ) { |
|
150 | + if ($this->is_retryable_error($response->error)) { |
|
151 | + if ($retry) { |
|
152 | 152 | // Don't do anymore retries after this. |
153 | - if ( 5 <= $this->retry_interval ) { |
|
154 | - return $this->process_redirect_payment( $order_id, false, $response->error ); |
|
153 | + if (5 <= $this->retry_interval) { |
|
154 | + return $this->process_redirect_payment($order_id, false, $response->error); |
|
155 | 155 | } |
156 | 156 | |
157 | - sleep( $this->retry_interval ); |
|
157 | + sleep($this->retry_interval); |
|
158 | 158 | |
159 | 159 | $this->retry_interval++; |
160 | - return $this->process_redirect_payment( $order_id, true, $response->error ); |
|
160 | + return $this->process_redirect_payment($order_id, true, $response->error); |
|
161 | 161 | } else { |
162 | - $localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' ); |
|
163 | - $order->add_order_note( $localized_message ); |
|
164 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
162 | + $localized_message = __('Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe'); |
|
163 | + $order->add_order_note($localized_message); |
|
164 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
165 | 165 | } |
166 | 166 | } |
167 | 167 | |
168 | 168 | $localized_messages = WC_Stripe_Helper::get_localized_messages(); |
169 | 169 | |
170 | - if ( 'card_error' === $response->error->type ) { |
|
171 | - $message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message; |
|
170 | + if ('card_error' === $response->error->type) { |
|
171 | + $message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message; |
|
172 | 172 | } else { |
173 | - $message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message; |
|
173 | + $message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message; |
|
174 | 174 | } |
175 | 175 | |
176 | - throw new WC_Stripe_Exception( print_r( $response, true ), $message ); |
|
176 | + throw new WC_Stripe_Exception(print_r($response, true), $message); |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | // To prevent double processing the order on WC side. |
180 | - if ( ! $this->is_original_request( $headers ) ) { |
|
180 | + if ( ! $this->is_original_request($headers)) { |
|
181 | 181 | return; |
182 | 182 | } |
183 | 183 | |
184 | - do_action( 'wc_gateway_stripe_process_redirect_payment', $response, $order ); |
|
184 | + do_action('wc_gateway_stripe_process_redirect_payment', $response, $order); |
|
185 | 185 | |
186 | - $this->process_response( $response, $order ); |
|
186 | + $this->process_response($response, $order); |
|
187 | 187 | |
188 | - } catch ( WC_Stripe_Exception $e ) { |
|
189 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
188 | + } catch (WC_Stripe_Exception $e) { |
|
189 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
190 | 190 | |
191 | - do_action( 'wc_gateway_stripe_process_redirect_payment_error', $e, $order ); |
|
191 | + do_action('wc_gateway_stripe_process_redirect_payment_error', $e, $order); |
|
192 | 192 | |
193 | 193 | /* translators: error message */ |
194 | - $order->update_status( 'failed', sprintf( __( 'Stripe payment failed: %s', 'woocommerce-gateway-stripe' ), $e->getLocalizedMessage() ) ); |
|
194 | + $order->update_status('failed', sprintf(__('Stripe payment failed: %s', 'woocommerce-gateway-stripe'), $e->getLocalizedMessage())); |
|
195 | 195 | |
196 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
197 | - wp_safe_redirect( wc_get_checkout_url() ); |
|
196 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
197 | + wp_safe_redirect(wc_get_checkout_url()); |
|
198 | 198 | exit; |
199 | 199 | } |
200 | 200 | } |
@@ -206,13 +206,13 @@ discard block |
||
206 | 206 | * @version 4.0.0 |
207 | 207 | */ |
208 | 208 | public function maybe_process_redirect_order() { |
209 | - if ( ! is_order_received_page() || empty( $_GET['client_secret'] ) || empty( $_GET['source'] ) ) { |
|
209 | + if ( ! is_order_received_page() || empty($_GET['client_secret']) || empty($_GET['source'])) { |
|
210 | 210 | return; |
211 | 211 | } |
212 | 212 | |
213 | - $order_id = wc_clean( $_GET['order_id'] ); |
|
213 | + $order_id = wc_clean($_GET['order_id']); |
|
214 | 214 | |
215 | - $this->process_redirect_payment( $order_id ); |
|
215 | + $this->process_redirect_payment($order_id); |
|
216 | 216 | } |
217 | 217 | |
218 | 218 | /** |
@@ -222,32 +222,32 @@ discard block |
||
222 | 222 | * @version 4.0.0 |
223 | 223 | * @param int $order_id |
224 | 224 | */ |
225 | - public function capture_payment( $order_id ) { |
|
226 | - $order = wc_get_order( $order_id ); |
|
225 | + public function capture_payment($order_id) { |
|
226 | + $order = wc_get_order($order_id); |
|
227 | 227 | |
228 | - if ( 'stripe' === ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->payment_method : $order->get_payment_method() ) ) { |
|
229 | - $charge = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? get_post_meta( $order_id, '_transaction_id', true ) : $order->get_transaction_id(); |
|
230 | - $captured = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? get_post_meta( $order_id, '_stripe_charge_captured', true ) : $order->get_meta( '_stripe_charge_captured', true ); |
|
228 | + if ('stripe' === (WC_Stripe_Helper::is_wc_lt('3.0') ? $order->payment_method : $order->get_payment_method())) { |
|
229 | + $charge = WC_Stripe_Helper::is_wc_lt('3.0') ? get_post_meta($order_id, '_transaction_id', true) : $order->get_transaction_id(); |
|
230 | + $captured = WC_Stripe_Helper::is_wc_lt('3.0') ? get_post_meta($order_id, '_stripe_charge_captured', true) : $order->get_meta('_stripe_charge_captured', true); |
|
231 | 231 | $is_stripe_captured = false; |
232 | 232 | |
233 | - if ( $charge && 'no' === $captured ) { |
|
233 | + if ($charge && 'no' === $captured) { |
|
234 | 234 | $order_total = $order->get_total(); |
235 | 235 | |
236 | - if ( 0 < $order->get_total_refunded() ) { |
|
236 | + if (0 < $order->get_total_refunded()) { |
|
237 | 237 | $order_total = $order_total - $order->get_total_refunded(); |
238 | 238 | } |
239 | 239 | |
240 | - $intent = $this->get_intent_from_order( $order ); |
|
241 | - if ( $intent ) { |
|
240 | + $intent = $this->get_intent_from_order($order); |
|
241 | + if ($intent) { |
|
242 | 242 | // If the order has a Payment Intent, then the Intent itself must be captured, not the Charge |
243 | - if ( ! empty( $intent->error ) ) { |
|
243 | + if ( ! empty($intent->error)) { |
|
244 | 244 | /* translators: error message */ |
245 | - $order->add_order_note( sprintf( __( 'Unable to capture charge! %s', 'woocommerce-gateway-stripe' ), $intent->error->message ) ); |
|
246 | - } elseif ( 'requires_capture' === $intent->status ) { |
|
247 | - $level3_data = $this->get_level3_data_from_order( $order ); |
|
245 | + $order->add_order_note(sprintf(__('Unable to capture charge! %s', 'woocommerce-gateway-stripe'), $intent->error->message)); |
|
246 | + } elseif ('requires_capture' === $intent->status) { |
|
247 | + $level3_data = $this->get_level3_data_from_order($order); |
|
248 | 248 | $result = WC_Stripe_API::request_with_level3_data( |
249 | 249 | array( |
250 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $order_total ), |
|
250 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($order_total), |
|
251 | 251 | 'expand[]' => 'charges.data.balance_transaction', |
252 | 252 | ), |
253 | 253 | 'payment_intents/' . $intent->id . '/capture', |
@@ -255,30 +255,30 @@ discard block |
||
255 | 255 | $order |
256 | 256 | ); |
257 | 257 | |
258 | - if ( ! empty( $result->error ) ) { |
|
258 | + if ( ! empty($result->error)) { |
|
259 | 259 | /* translators: error message */ |
260 | - $order->update_status( 'failed', sprintf( __( 'Unable to capture charge! %s', 'woocommerce-gateway-stripe' ), $result->error->message ) ); |
|
260 | + $order->update_status('failed', sprintf(__('Unable to capture charge! %s', 'woocommerce-gateway-stripe'), $result->error->message)); |
|
261 | 261 | } else { |
262 | 262 | $is_stripe_captured = true; |
263 | - $result = end( $result->charges->data ); |
|
263 | + $result = end($result->charges->data); |
|
264 | 264 | } |
265 | - } elseif ( 'succeeded' === $intent->status ) { |
|
265 | + } elseif ('succeeded' === $intent->status) { |
|
266 | 266 | $is_stripe_captured = true; |
267 | 267 | } |
268 | 268 | } else { |
269 | 269 | // The order doesn't have a Payment Intent, fall back to capturing the Charge directly |
270 | 270 | |
271 | 271 | // First retrieve charge to see if it has been captured. |
272 | - $result = WC_Stripe_API::retrieve( 'charges/' . $charge ); |
|
272 | + $result = WC_Stripe_API::retrieve('charges/' . $charge); |
|
273 | 273 | |
274 | - if ( ! empty( $result->error ) ) { |
|
274 | + if ( ! empty($result->error)) { |
|
275 | 275 | /* translators: error message */ |
276 | - $order->add_order_note( sprintf( __( 'Unable to capture charge! %s', 'woocommerce-gateway-stripe' ), $result->error->message ) ); |
|
277 | - } elseif ( false === $result->captured ) { |
|
278 | - $level3_data = $this->get_level3_data_from_order( $order ); |
|
276 | + $order->add_order_note(sprintf(__('Unable to capture charge! %s', 'woocommerce-gateway-stripe'), $result->error->message)); |
|
277 | + } elseif (false === $result->captured) { |
|
278 | + $level3_data = $this->get_level3_data_from_order($order); |
|
279 | 279 | $result = WC_Stripe_API::request_with_level3_data( |
280 | 280 | array( |
281 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $order_total ), |
|
281 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($order_total), |
|
282 | 282 | 'expand[]' => 'balance_transaction', |
283 | 283 | ), |
284 | 284 | 'charges/' . $charge . '/capture', |
@@ -286,34 +286,34 @@ discard block |
||
286 | 286 | $order |
287 | 287 | ); |
288 | 288 | |
289 | - if ( ! empty( $result->error ) ) { |
|
289 | + if ( ! empty($result->error)) { |
|
290 | 290 | /* translators: error message */ |
291 | - $order->update_status( 'failed', sprintf( __( 'Unable to capture charge! %s', 'woocommerce-gateway-stripe' ), $result->error->message ) ); |
|
291 | + $order->update_status('failed', sprintf(__('Unable to capture charge! %s', 'woocommerce-gateway-stripe'), $result->error->message)); |
|
292 | 292 | } else { |
293 | 293 | $is_stripe_captured = true; |
294 | 294 | } |
295 | - } elseif ( true === $result->captured ) { |
|
295 | + } elseif (true === $result->captured) { |
|
296 | 296 | $is_stripe_captured = true; |
297 | 297 | } |
298 | 298 | } |
299 | 299 | |
300 | - if ( $is_stripe_captured ) { |
|
300 | + if ($is_stripe_captured) { |
|
301 | 301 | /* translators: transaction id */ |
302 | - $order->add_order_note( sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $result->id ) ); |
|
303 | - WC_Stripe_Helper::is_wc_lt( '3.0' ) ? update_post_meta( $order_id, '_stripe_charge_captured', 'yes' ) : $order->update_meta_data( '_stripe_charge_captured', 'yes' ); |
|
302 | + $order->add_order_note(sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $result->id)); |
|
303 | + WC_Stripe_Helper::is_wc_lt('3.0') ? update_post_meta($order_id, '_stripe_charge_captured', 'yes') : $order->update_meta_data('_stripe_charge_captured', 'yes'); |
|
304 | 304 | |
305 | 305 | // Store other data such as fees |
306 | - WC_Stripe_Helper::is_wc_lt( '3.0' ) ? update_post_meta( $order_id, '_transaction_id', $result->id ) : $order->set_transaction_id( $result->id ); |
|
306 | + WC_Stripe_Helper::is_wc_lt('3.0') ? update_post_meta($order_id, '_transaction_id', $result->id) : $order->set_transaction_id($result->id); |
|
307 | 307 | |
308 | - if ( is_callable( array( $order, 'save' ) ) ) { |
|
308 | + if (is_callable(array($order, 'save'))) { |
|
309 | 309 | $order->save(); |
310 | 310 | } |
311 | 311 | |
312 | - $this->update_fees( $order, $result->balance_transaction->id ); |
|
312 | + $this->update_fees($order, $result->balance_transaction->id); |
|
313 | 313 | } |
314 | 314 | |
315 | 315 | // This hook fires when admin manually changes order status to processing or completed. |
316 | - do_action( 'woocommerce_stripe_process_manual_capture', $order, $result ); |
|
316 | + do_action('woocommerce_stripe_process_manual_capture', $order, $result); |
|
317 | 317 | } |
318 | 318 | } |
319 | 319 | } |
@@ -325,19 +325,19 @@ discard block |
||
325 | 325 | * @version 4.2.2 |
326 | 326 | * @param int $order_id |
327 | 327 | */ |
328 | - public function cancel_payment( $order_id ) { |
|
329 | - $order = wc_get_order( $order_id ); |
|
330 | - |
|
331 | - if ( 'stripe' === ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->payment_method : $order->get_payment_method() ) ) { |
|
332 | - $captured = WC_Stripe_Helper::is_wc_lt( '3.0' ) |
|
333 | - ? get_post_meta( $order_id, '_stripe_charge_captured', true ) |
|
334 | - : $order->get_meta( '_stripe_charge_captured', true ); |
|
335 | - if ( 'no' === $captured ) { |
|
336 | - $this->process_refund( $order_id ); |
|
328 | + public function cancel_payment($order_id) { |
|
329 | + $order = wc_get_order($order_id); |
|
330 | + |
|
331 | + if ('stripe' === (WC_Stripe_Helper::is_wc_lt('3.0') ? $order->payment_method : $order->get_payment_method())) { |
|
332 | + $captured = WC_Stripe_Helper::is_wc_lt('3.0') |
|
333 | + ? get_post_meta($order_id, '_stripe_charge_captured', true) |
|
334 | + : $order->get_meta('_stripe_charge_captured', true); |
|
335 | + if ('no' === $captured) { |
|
336 | + $this->process_refund($order_id); |
|
337 | 337 | } |
338 | 338 | |
339 | 339 | // This hook fires when admin manually changes order status to cancel. |
340 | - do_action( 'woocommerce_stripe_process_manual_cancel', $order ); |
|
340 | + do_action('woocommerce_stripe_process_manual_cancel', $order); |
|
341 | 341 | } |
342 | 342 | } |
343 | 343 | } |
@@ -7,26 +7,26 @@ discard block |
||
7 | 7 | class WC_Stripe_level3_Data_Test extends WP_UnitTestCase { |
8 | 8 | public function test_data_for_mutli_item_order() { |
9 | 9 | // Skip this test because of the complexity of creating products in WC pre-3.0. |
10 | - if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
10 | + if (WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
11 | 11 | // Dummy assertion. |
12 | - $this->assertEquals( WC_Stripe_Helper::is_wc_lt( '3.0' ), true ); |
|
12 | + $this->assertEquals(WC_Stripe_Helper::is_wc_lt('3.0'), true); |
|
13 | 13 | return; |
14 | 14 | } |
15 | 15 | |
16 | 16 | $store_postcode = '90210'; |
17 | - update_option( 'woocommerce_store_postcode', $store_postcode ); |
|
17 | + update_option('woocommerce_store_postcode', $store_postcode); |
|
18 | 18 | |
19 | 19 | // Arrange: Create a couple of products to use. |
20 | 20 | $variation_product = WC_Helper_Product::create_variation_product(); |
21 | 21 | $variation_ids = $variation_product->get_children(); |
22 | 22 | |
23 | - $product_1 = wc_get_product ( $variation_ids[0] ); |
|
24 | - $product_1->set_regular_price( 19.19 ); |
|
25 | - $product_1->set_sale_price( 11.83 ); |
|
23 | + $product_1 = wc_get_product($variation_ids[0]); |
|
24 | + $product_1->set_regular_price(19.19); |
|
25 | + $product_1->set_sale_price(11.83); |
|
26 | 26 | $product_1->save(); |
27 | 27 | |
28 | - $product_2 = wc_get_product( $variation_ids[1] ); |
|
29 | - $product_2->set_regular_price( 20.05 ); |
|
28 | + $product_2 = wc_get_product($variation_ids[1]); |
|
29 | + $product_2->set_regular_price(20.05); |
|
30 | 30 | $product_2->save(); |
31 | 31 | |
32 | 32 | // Arrange: Set up an order with: |
@@ -34,16 +34,16 @@ discard block |
||
34 | 34 | // 2) The same product added several times. |
35 | 35 | // 3) A valid US ZIP code |
36 | 36 | $order = new WC_Order(); |
37 | - $order->set_shipping_postcode( '90210' ); |
|
38 | - $order->add_product( $product_1, 1 ); // Add one item of the first product variation |
|
39 | - $order->add_product( $product_2, 2 ); // Add two items of the second product variation |
|
37 | + $order->set_shipping_postcode('90210'); |
|
38 | + $order->add_product($product_1, 1); // Add one item of the first product variation |
|
39 | + $order->add_product($product_2, 2); // Add two items of the second product variation |
|
40 | 40 | |
41 | 41 | $order->save(); |
42 | 42 | $order->calculate_totals(); |
43 | 43 | |
44 | 44 | // Act: Call get_level3_data_from_order(). |
45 | 45 | $gateway = new WC_Gateway_Stripe(); |
46 | - $result = $gateway->get_level3_data_from_order( $order ); |
|
46 | + $result = $gateway->get_level3_data_from_order($order); |
|
47 | 47 | |
48 | 48 | // Assert. |
49 | 49 | $this->assertEquals( |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | 'line_items' => array( |
56 | 56 | (object) array( |
57 | 57 | 'product_code' => (string) $product_1->get_id(), |
58 | - 'product_description' => substr( $product_1->get_name(), 0, 26 ), |
|
58 | + 'product_description' => substr($product_1->get_name(), 0, 26), |
|
59 | 59 | 'unit_cost' => 1183, |
60 | 60 | 'quantity' => 1, |
61 | 61 | 'tax_amount' => 0, |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | ), |
64 | 64 | (object) array( |
65 | 65 | 'product_code' => (string) $product_2->get_id(), |
66 | - 'product_description' => substr( $product_2->get_name(), 0, 26 ), |
|
66 | + 'product_description' => substr($product_2->get_name(), 0, 26), |
|
67 | 67 | 'unit_cost' => 2005, |
68 | 68 | 'quantity' => 2, |
69 | 69 | 'tax_amount' => 0, |
@@ -75,14 +75,14 @@ discard block |
||
75 | 75 | ); |
76 | 76 | |
77 | 77 | // Assert: Check that Stripe's total charge check passes. |
78 | - $total_charged = WC_Stripe_Helper::get_stripe_amount( $order->get_total() ); |
|
79 | - $sum_of_unit_costs = array_reduce( $result['line_items'], function( $sum, $item ) { |
|
78 | + $total_charged = WC_Stripe_Helper::get_stripe_amount($order->get_total()); |
|
79 | + $sum_of_unit_costs = array_reduce($result['line_items'], function($sum, $item) { |
|
80 | 80 | return $sum + $item->quantity * $item->unit_cost; |
81 | 81 | } ); |
82 | - $sum_of_taxes = array_reduce( $result['line_items'], function( $sum, $item ) { |
|
82 | + $sum_of_taxes = array_reduce($result['line_items'], function($sum, $item) { |
|
83 | 83 | return $sum + $item->tax_amount; |
84 | 84 | } ); |
85 | - $sum_of_discounts = array_reduce( $result['line_items'], function( $sum, $item ) { |
|
85 | + $sum_of_discounts = array_reduce($result['line_items'], function($sum, $item) { |
|
86 | 86 | return $sum + $item->discount_amount; |
87 | 87 | } ); |
88 | 88 | $shipping_amount = $result['shipping_amount']; |
@@ -94,31 +94,31 @@ discard block |
||
94 | 94 | |
95 | 95 | public function test_non_us_shipping_zip_codes() { |
96 | 96 | // Skip this test because of the complexity of creating products in WC pre-3.0. |
97 | - if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
97 | + if (WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
98 | 98 | // Dummy assertion. |
99 | - $this->assertEquals( WC_Stripe_Helper::is_wc_lt( '3.0' ), true ); |
|
99 | + $this->assertEquals(WC_Stripe_Helper::is_wc_lt('3.0'), true); |
|
100 | 100 | return; |
101 | 101 | } |
102 | 102 | |
103 | 103 | // Update the store with the right post code. |
104 | - update_option( 'woocommerce_store_postcode', 1040 ); |
|
104 | + update_option('woocommerce_store_postcode', 1040); |
|
105 | 105 | |
106 | 106 | // Arrange: Create a couple of products to use. |
107 | 107 | $product = WC_Helper_Product::create_simple_product(); |
108 | - $product->set_regular_price( 19.19 ); |
|
108 | + $product->set_regular_price(19.19); |
|
109 | 109 | $product->save(); |
110 | 110 | |
111 | 111 | // Arrange: Set up an order with a non-US postcode. |
112 | 112 | $order = new WC_Order(); |
113 | - $order->set_shipping_postcode( '1050' ); |
|
114 | - $order->add_product( $product, 1 ); |
|
113 | + $order->set_shipping_postcode('1050'); |
|
114 | + $order->add_product($product, 1); |
|
115 | 115 | $order->save(); |
116 | 116 | $order->calculate_totals(); |
117 | 117 | |
118 | 118 | // Act: Call get_level3_data_from_order(). |
119 | 119 | $store_postcode = '1100'; |
120 | 120 | $gateway = new WC_Gateway_Stripe(); |
121 | - $result = $gateway->get_level3_data_from_order( $order ); |
|
121 | + $result = $gateway->get_level3_data_from_order($order); |
|
122 | 122 | |
123 | 123 | // Assert. |
124 | 124 | $this->assertEquals( |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | 'line_items' => array( |
129 | 129 | (object) array( |
130 | 130 | 'product_code' => (string) $product->get_id(), |
131 | - 'product_description' => substr( $product->get_name(), 0, 26 ), |
|
131 | + 'product_description' => substr($product->get_name(), 0, 26), |
|
132 | 132 | 'unit_cost' => 1919, |
133 | 133 | 'quantity' => 1, |
134 | 134 | 'tax_amount' => 0, |
@@ -141,14 +141,14 @@ discard block |
||
141 | 141 | } |
142 | 142 | |
143 | 143 | public function test_pre_30_postal_code_omission() { |
144 | - if ( ! WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
144 | + if ( ! WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
145 | 145 | // Dummy assertion. |
146 | - $this->assertEquals( WC_Stripe_Helper::is_wc_lt( '3.0' ), false ); |
|
146 | + $this->assertEquals(WC_Stripe_Helper::is_wc_lt('3.0'), false); |
|
147 | 147 | return; |
148 | 148 | } |
149 | 149 | |
150 | 150 | $order = new WC_Order(); |
151 | 151 | $gateway = new WC_Gateway_Stripe(); |
152 | - $this->assertEquals( array(), $gateway->get_level3_data_from_order( $order ) ); |
|
152 | + $this->assertEquals(array(), $gateway->get_level3_data_from_order($order)); |
|
153 | 153 | } |
154 | 154 | } |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | * |
16 | 16 | */ |
17 | 17 | |
18 | -if ( ! defined( 'ABSPATH' ) ) { |
|
18 | +if ( ! defined('ABSPATH')) { |
|
19 | 19 | exit; |
20 | 20 | } |
21 | 21 | |
@@ -29,30 +29,30 @@ discard block |
||
29 | 29 | */ |
30 | 30 | function woocommerce_stripe_missing_wc_notice() { |
31 | 31 | /* translators: 1. URL link. */ |
32 | - echo '<div class="error"><p><strong>' . sprintf( esc_html__( 'Stripe requires WooCommerce to be installed and active. You can download %s here.', 'woocommerce-gateway-stripe' ), '<a href="https://woocommerce.com/" target="_blank">WooCommerce</a>' ) . '</strong></p></div>'; |
|
32 | + echo '<div class="error"><p><strong>' . sprintf(esc_html__('Stripe requires WooCommerce to be installed and active. You can download %s here.', 'woocommerce-gateway-stripe'), '<a href="https://woocommerce.com/" target="_blank">WooCommerce</a>') . '</strong></p></div>'; |
|
33 | 33 | } |
34 | 34 | |
35 | -add_action( 'plugins_loaded', 'woocommerce_gateway_stripe_init' ); |
|
35 | +add_action('plugins_loaded', 'woocommerce_gateway_stripe_init'); |
|
36 | 36 | |
37 | 37 | function woocommerce_gateway_stripe_init() { |
38 | - load_plugin_textdomain( 'woocommerce-gateway-stripe', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' ); |
|
38 | + load_plugin_textdomain('woocommerce-gateway-stripe', false, plugin_basename(dirname(__FILE__)) . '/languages'); |
|
39 | 39 | |
40 | - if ( ! class_exists( 'WooCommerce' ) ) { |
|
41 | - add_action( 'admin_notices', 'woocommerce_stripe_missing_wc_notice' ); |
|
40 | + if ( ! class_exists('WooCommerce')) { |
|
41 | + add_action('admin_notices', 'woocommerce_stripe_missing_wc_notice'); |
|
42 | 42 | return; |
43 | 43 | } |
44 | 44 | |
45 | - if ( ! class_exists( 'WC_Stripe' ) ) : |
|
45 | + if ( ! class_exists('WC_Stripe')) : |
|
46 | 46 | /** |
47 | 47 | * Required minimums and constants |
48 | 48 | */ |
49 | - define( 'WC_STRIPE_VERSION', '4.3.2' ); |
|
50 | - define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' ); |
|
51 | - define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' ); |
|
52 | - define( 'WC_STRIPE_FUTURE_MIN_WC_VER', '3.0' ); |
|
53 | - define( 'WC_STRIPE_MAIN_FILE', __FILE__ ); |
|
54 | - define( 'WC_STRIPE_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) ); |
|
55 | - define( 'WC_STRIPE_PLUGIN_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) ); |
|
49 | + define('WC_STRIPE_VERSION', '4.3.2'); |
|
50 | + define('WC_STRIPE_MIN_PHP_VER', '5.6.0'); |
|
51 | + define('WC_STRIPE_MIN_WC_VER', '2.6.0'); |
|
52 | + define('WC_STRIPE_FUTURE_MIN_WC_VER', '3.0'); |
|
53 | + define('WC_STRIPE_MAIN_FILE', __FILE__); |
|
54 | + define('WC_STRIPE_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__)))); |
|
55 | + define('WC_STRIPE_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__))); |
|
56 | 56 | |
57 | 57 | class WC_Stripe { |
58 | 58 | |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | * @return Singleton The *Singleton* instance. |
68 | 68 | */ |
69 | 69 | public static function get_instance() { |
70 | - if ( null === self::$instance ) { |
|
70 | + if (null === self::$instance) { |
|
71 | 71 | self::$instance = new self(); |
72 | 72 | } |
73 | 73 | return self::$instance; |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | * *Singleton* via the `new` operator from outside of this class. |
95 | 95 | */ |
96 | 96 | private function __construct() { |
97 | - add_action( 'admin_init', array( $this, 'install' ) ); |
|
97 | + add_action('admin_init', array($this, 'install')); |
|
98 | 98 | $this->init(); |
99 | 99 | } |
100 | 100 | |
@@ -105,52 +105,52 @@ discard block |
||
105 | 105 | * @version 4.0.0 |
106 | 106 | */ |
107 | 107 | public function init() { |
108 | - if ( is_admin() ) { |
|
109 | - require_once dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-privacy.php'; |
|
108 | + if (is_admin()) { |
|
109 | + require_once dirname(__FILE__) . '/includes/admin/class-wc-stripe-privacy.php'; |
|
110 | 110 | } |
111 | 111 | |
112 | - require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-exception.php'; |
|
113 | - require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-logger.php'; |
|
114 | - require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-helper.php'; |
|
115 | - include_once dirname( __FILE__ ) . '/includes/class-wc-stripe-api.php'; |
|
116 | - require_once dirname( __FILE__ ) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php'; |
|
117 | - require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-webhook-handler.php'; |
|
118 | - require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-sepa-payment-token.php'; |
|
119 | - require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-apple-pay-registration.php'; |
|
120 | - require_once dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-pre-orders-compat.php'; |
|
121 | - require_once dirname( __FILE__ ) . '/includes/class-wc-gateway-stripe.php'; |
|
122 | - require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php'; |
|
123 | - require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php'; |
|
124 | - require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php'; |
|
125 | - require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php'; |
|
126 | - require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php'; |
|
127 | - require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php'; |
|
128 | - require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php'; |
|
129 | - require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php'; |
|
130 | - require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php'; |
|
131 | - require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-payment-request.php'; |
|
132 | - require_once dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-subs-compat.php'; |
|
133 | - require_once dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php'; |
|
134 | - require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-order-handler.php'; |
|
135 | - require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-payment-tokens.php'; |
|
136 | - require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-customer.php'; |
|
137 | - require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-intent-controller.php'; |
|
138 | - |
|
139 | - if ( is_admin() ) { |
|
140 | - require_once dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-admin-notices.php'; |
|
112 | + require_once dirname(__FILE__) . '/includes/class-wc-stripe-exception.php'; |
|
113 | + require_once dirname(__FILE__) . '/includes/class-wc-stripe-logger.php'; |
|
114 | + require_once dirname(__FILE__) . '/includes/class-wc-stripe-helper.php'; |
|
115 | + include_once dirname(__FILE__) . '/includes/class-wc-stripe-api.php'; |
|
116 | + require_once dirname(__FILE__) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php'; |
|
117 | + require_once dirname(__FILE__) . '/includes/class-wc-stripe-webhook-handler.php'; |
|
118 | + require_once dirname(__FILE__) . '/includes/class-wc-stripe-sepa-payment-token.php'; |
|
119 | + require_once dirname(__FILE__) . '/includes/class-wc-stripe-apple-pay-registration.php'; |
|
120 | + require_once dirname(__FILE__) . '/includes/compat/class-wc-stripe-pre-orders-compat.php'; |
|
121 | + require_once dirname(__FILE__) . '/includes/class-wc-gateway-stripe.php'; |
|
122 | + require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php'; |
|
123 | + require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php'; |
|
124 | + require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php'; |
|
125 | + require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php'; |
|
126 | + require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php'; |
|
127 | + require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php'; |
|
128 | + require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php'; |
|
129 | + require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php'; |
|
130 | + require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php'; |
|
131 | + require_once dirname(__FILE__) . '/includes/payment-methods/class-wc-stripe-payment-request.php'; |
|
132 | + require_once dirname(__FILE__) . '/includes/compat/class-wc-stripe-subs-compat.php'; |
|
133 | + require_once dirname(__FILE__) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php'; |
|
134 | + require_once dirname(__FILE__) . '/includes/class-wc-stripe-order-handler.php'; |
|
135 | + require_once dirname(__FILE__) . '/includes/class-wc-stripe-payment-tokens.php'; |
|
136 | + require_once dirname(__FILE__) . '/includes/class-wc-stripe-customer.php'; |
|
137 | + require_once dirname(__FILE__) . '/includes/class-wc-stripe-intent-controller.php'; |
|
138 | + |
|
139 | + if (is_admin()) { |
|
140 | + require_once dirname(__FILE__) . '/includes/admin/class-wc-stripe-admin-notices.php'; |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | // REMOVE IN THE FUTURE. |
144 | - require_once dirname( __FILE__ ) . '/includes/deprecated/class-wc-stripe-apple-pay.php'; |
|
144 | + require_once dirname(__FILE__) . '/includes/deprecated/class-wc-stripe-apple-pay.php'; |
|
145 | 145 | |
146 | - add_filter( 'woocommerce_payment_gateways', array( $this, 'add_gateways' ) ); |
|
147 | - add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'plugin_action_links' ) ); |
|
146 | + add_filter('woocommerce_payment_gateways', array($this, 'add_gateways')); |
|
147 | + add_filter('plugin_action_links_' . plugin_basename(__FILE__), array($this, 'plugin_action_links')); |
|
148 | 148 | |
149 | 149 | // Modify emails emails. |
150 | - add_filter( 'woocommerce_email_classes', array( $this, 'add_emails' ), 20 ); |
|
150 | + add_filter('woocommerce_email_classes', array($this, 'add_emails'), 20); |
|
151 | 151 | |
152 | - if ( version_compare( WC_VERSION, '3.4', '<' ) ) { |
|
153 | - add_filter( 'woocommerce_get_sections_checkout', array( $this, 'filter_gateway_order_admin' ) ); |
|
152 | + if (version_compare(WC_VERSION, '3.4', '<')) { |
|
153 | + add_filter('woocommerce_get_sections_checkout', array($this, 'filter_gateway_order_admin')); |
|
154 | 154 | } |
155 | 155 | } |
156 | 156 | |
@@ -161,8 +161,8 @@ discard block |
||
161 | 161 | * @version 4.0.0 |
162 | 162 | */ |
163 | 163 | public function update_plugin_version() { |
164 | - delete_option( 'wc_stripe_version' ); |
|
165 | - update_option( 'wc_stripe_version', WC_STRIPE_VERSION ); |
|
164 | + delete_option('wc_stripe_version'); |
|
165 | + update_option('wc_stripe_version', WC_STRIPE_VERSION); |
|
166 | 166 | } |
167 | 167 | |
168 | 168 | /** |
@@ -172,15 +172,15 @@ discard block |
||
172 | 172 | * @version 3.1.0 |
173 | 173 | */ |
174 | 174 | public function install() { |
175 | - if ( ! is_plugin_active( plugin_basename( __FILE__ ) ) ) { |
|
175 | + if ( ! is_plugin_active(plugin_basename(__FILE__))) { |
|
176 | 176 | return; |
177 | 177 | } |
178 | 178 | |
179 | - if ( ! defined( 'IFRAME_REQUEST' ) && ( WC_STRIPE_VERSION !== get_option( 'wc_stripe_version' ) ) ) { |
|
180 | - do_action( 'woocommerce_stripe_updated' ); |
|
179 | + if ( ! defined('IFRAME_REQUEST') && (WC_STRIPE_VERSION !== get_option('wc_stripe_version'))) { |
|
180 | + do_action('woocommerce_stripe_updated'); |
|
181 | 181 | |
182 | - if ( ! defined( 'WC_STRIPE_INSTALLING' ) ) { |
|
183 | - define( 'WC_STRIPE_INSTALLING', true ); |
|
182 | + if ( ! defined('WC_STRIPE_INSTALLING')) { |
|
183 | + define('WC_STRIPE_INSTALLING', true); |
|
184 | 184 | } |
185 | 185 | |
186 | 186 | $this->update_plugin_version(); |
@@ -193,13 +193,13 @@ discard block |
||
193 | 193 | * @since 1.0.0 |
194 | 194 | * @version 4.0.0 |
195 | 195 | */ |
196 | - public function plugin_action_links( $links ) { |
|
196 | + public function plugin_action_links($links) { |
|
197 | 197 | $plugin_links = array( |
198 | - '<a href="admin.php?page=wc-settings&tab=checkout§ion=stripe">' . esc_html__( 'Settings', 'woocommerce-gateway-stripe' ) . '</a>', |
|
199 | - '<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__( 'Docs', 'woocommerce-gateway-stripe' ) . '</a>', |
|
200 | - '<a href="https://woocommerce.com/my-account/create-a-ticket?broken=primary&select=18627">' . esc_html__( 'Support', 'woocommerce-gateway-stripe' ) . '</a>', |
|
198 | + '<a href="admin.php?page=wc-settings&tab=checkout§ion=stripe">' . esc_html__('Settings', 'woocommerce-gateway-stripe') . '</a>', |
|
199 | + '<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__('Docs', 'woocommerce-gateway-stripe') . '</a>', |
|
200 | + '<a href="https://woocommerce.com/my-account/create-a-ticket?broken=primary&select=18627">' . esc_html__('Support', 'woocommerce-gateway-stripe') . '</a>', |
|
201 | 201 | ); |
202 | - return array_merge( $plugin_links, $links ); |
|
202 | + return array_merge($plugin_links, $links); |
|
203 | 203 | } |
204 | 204 | |
205 | 205 | /** |
@@ -208,8 +208,8 @@ discard block |
||
208 | 208 | * @since 1.0.0 |
209 | 209 | * @version 4.0.0 |
210 | 210 | */ |
211 | - public function add_gateways( $methods ) { |
|
212 | - if ( class_exists( 'WC_Subscriptions_Order' ) && function_exists( 'wcs_create_renewal_order' ) ) { |
|
211 | + public function add_gateways($methods) { |
|
212 | + if (class_exists('WC_Subscriptions_Order') && function_exists('wcs_create_renewal_order')) { |
|
213 | 213 | $methods[] = 'WC_Stripe_Subs_Compat'; |
214 | 214 | $methods[] = 'WC_Stripe_Sepa_Subs_Compat'; |
215 | 215 | } else { |
@@ -235,28 +235,28 @@ discard block |
||
235 | 235 | * @since 4.0.0 |
236 | 236 | * @version 4.0.0 |
237 | 237 | */ |
238 | - public function filter_gateway_order_admin( $sections ) { |
|
239 | - unset( $sections['stripe'] ); |
|
240 | - unset( $sections['stripe_bancontact'] ); |
|
241 | - unset( $sections['stripe_sofort'] ); |
|
242 | - unset( $sections['stripe_giropay'] ); |
|
243 | - unset( $sections['stripe_eps'] ); |
|
244 | - unset( $sections['stripe_ideal'] ); |
|
245 | - unset( $sections['stripe_p24'] ); |
|
246 | - unset( $sections['stripe_alipay'] ); |
|
247 | - unset( $sections['stripe_sepa'] ); |
|
248 | - unset( $sections['stripe_multibanco'] ); |
|
238 | + public function filter_gateway_order_admin($sections) { |
|
239 | + unset($sections['stripe']); |
|
240 | + unset($sections['stripe_bancontact']); |
|
241 | + unset($sections['stripe_sofort']); |
|
242 | + unset($sections['stripe_giropay']); |
|
243 | + unset($sections['stripe_eps']); |
|
244 | + unset($sections['stripe_ideal']); |
|
245 | + unset($sections['stripe_p24']); |
|
246 | + unset($sections['stripe_alipay']); |
|
247 | + unset($sections['stripe_sepa']); |
|
248 | + unset($sections['stripe_multibanco']); |
|
249 | 249 | |
250 | 250 | $sections['stripe'] = 'Stripe'; |
251 | - $sections['stripe_bancontact'] = __( 'Stripe Bancontact', 'woocommerce-gateway-stripe' ); |
|
252 | - $sections['stripe_sofort'] = __( 'Stripe SOFORT', 'woocommerce-gateway-stripe' ); |
|
253 | - $sections['stripe_giropay'] = __( 'Stripe Giropay', 'woocommerce-gateway-stripe' ); |
|
254 | - $sections['stripe_eps'] = __( 'Stripe EPS', 'woocommerce-gateway-stripe' ); |
|
255 | - $sections['stripe_ideal'] = __( 'Stripe iDeal', 'woocommerce-gateway-stripe' ); |
|
256 | - $sections['stripe_p24'] = __( 'Stripe P24', 'woocommerce-gateway-stripe' ); |
|
257 | - $sections['stripe_alipay'] = __( 'Stripe Alipay', 'woocommerce-gateway-stripe' ); |
|
258 | - $sections['stripe_sepa'] = __( 'Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe' ); |
|
259 | - $sections['stripe_multibanco'] = __( 'Stripe Multibanco', 'woocommerce-gateway-stripe' ); |
|
251 | + $sections['stripe_bancontact'] = __('Stripe Bancontact', 'woocommerce-gateway-stripe'); |
|
252 | + $sections['stripe_sofort'] = __('Stripe SOFORT', 'woocommerce-gateway-stripe'); |
|
253 | + $sections['stripe_giropay'] = __('Stripe Giropay', 'woocommerce-gateway-stripe'); |
|
254 | + $sections['stripe_eps'] = __('Stripe EPS', 'woocommerce-gateway-stripe'); |
|
255 | + $sections['stripe_ideal'] = __('Stripe iDeal', 'woocommerce-gateway-stripe'); |
|
256 | + $sections['stripe_p24'] = __('Stripe P24', 'woocommerce-gateway-stripe'); |
|
257 | + $sections['stripe_alipay'] = __('Stripe Alipay', 'woocommerce-gateway-stripe'); |
|
258 | + $sections['stripe_sepa'] = __('Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe'); |
|
259 | + $sections['stripe_multibanco'] = __('Stripe Multibanco', 'woocommerce-gateway-stripe'); |
|
260 | 260 | |
261 | 261 | return $sections; |
262 | 262 | } |
@@ -267,16 +267,16 @@ discard block |
||
267 | 267 | * @param WC_Email[] $email_classes All existing emails. |
268 | 268 | * @return WC_Email[] |
269 | 269 | */ |
270 | - public function add_emails( $email_classes ) { |
|
270 | + public function add_emails($email_classes) { |
|
271 | 271 | require_once WC_STRIPE_PLUGIN_PATH . '/includes/compat/class-wc-stripe-email-failed-authentication.php'; |
272 | 272 | require_once WC_STRIPE_PLUGIN_PATH . '/includes/compat/class-wc-stripe-email-failed-renewal-authentication.php'; |
273 | 273 | require_once WC_STRIPE_PLUGIN_PATH . '/includes/compat/class-wc-stripe-email-failed-preorder-authentication.php'; |
274 | 274 | require_once WC_STRIPE_PLUGIN_PATH . '/includes/compat/class-wc-stripe-email-failed-authentication-retry.php'; |
275 | 275 | |
276 | 276 | // Add all emails, generated by the gateway. |
277 | - $email_classes['WC_Stripe_Email_Failed_Renewal_Authentication'] = new WC_Stripe_Email_Failed_Renewal_Authentication( $email_classes ); |
|
278 | - $email_classes['WC_Stripe_Email_Failed_Preorder_Authentication'] = new WC_Stripe_Email_Failed_Preorder_Authentication( $email_classes ); |
|
279 | - $email_classes['WC_Stripe_Email_Failed_Authentication_Retry'] = new WC_Stripe_Email_Failed_Authentication_Retry( $email_classes ); |
|
277 | + $email_classes['WC_Stripe_Email_Failed_Renewal_Authentication'] = new WC_Stripe_Email_Failed_Renewal_Authentication($email_classes); |
|
278 | + $email_classes['WC_Stripe_Email_Failed_Preorder_Authentication'] = new WC_Stripe_Email_Failed_Preorder_Authentication($email_classes); |
|
279 | + $email_classes['WC_Stripe_Email_Failed_Authentication_Retry'] = new WC_Stripe_Email_Failed_Authentication_Retry($email_classes); |
|
280 | 280 | |
281 | 281 | return $email_classes; |
282 | 282 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if ( ! defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -21,9 +21,9 @@ discard block |
||
21 | 21 | * @since 4.1.0 |
22 | 22 | */ |
23 | 23 | public function __construct() { |
24 | - add_action( 'admin_notices', array( $this, 'admin_notices' ) ); |
|
25 | - add_action( 'wp_loaded', array( $this, 'hide_notices' ) ); |
|
26 | - add_action( 'woocommerce_stripe_updated', array( $this, 'stripe_updated' ) ); |
|
24 | + add_action('admin_notices', array($this, 'admin_notices')); |
|
25 | + add_action('wp_loaded', array($this, 'hide_notices')); |
|
26 | + add_action('woocommerce_stripe_updated', array($this, 'stripe_updated')); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
@@ -32,8 +32,8 @@ discard block |
||
32 | 32 | * @since 1.0.0 |
33 | 33 | * @version 4.0.0 |
34 | 34 | */ |
35 | - public function add_admin_notice( $slug, $class, $message, $dismissible = false ) { |
|
36 | - $this->notices[ $slug ] = array( |
|
35 | + public function add_admin_notice($slug, $class, $message, $dismissible = false) { |
|
36 | + $this->notices[$slug] = array( |
|
37 | 37 | 'class' => $class, |
38 | 38 | 'message' => $message, |
39 | 39 | 'dismissible' => $dismissible, |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | * @version 4.0.0 |
48 | 48 | */ |
49 | 49 | public function admin_notices() { |
50 | - if ( ! current_user_can( 'manage_woocommerce' ) ) { |
|
50 | + if ( ! current_user_can('manage_woocommerce')) { |
|
51 | 51 | return; |
52 | 52 | } |
53 | 53 | |
@@ -57,17 +57,17 @@ discard block |
||
57 | 57 | // All other payment methods. |
58 | 58 | $this->payment_methods_check_environment(); |
59 | 59 | |
60 | - foreach ( (array) $this->notices as $notice_key => $notice ) { |
|
61 | - echo '<div class="' . esc_attr( $notice['class'] ) . '" style="position:relative;">'; |
|
60 | + foreach ((array) $this->notices as $notice_key => $notice) { |
|
61 | + echo '<div class="' . esc_attr($notice['class']) . '" style="position:relative;">'; |
|
62 | 62 | |
63 | - if ( $notice['dismissible'] ) { |
|
63 | + if ($notice['dismissible']) { |
|
64 | 64 | ?> |
65 | - <a href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'wc-stripe-hide-notice', $notice_key ), 'wc_stripe_hide_notices_nonce', '_wc_stripe_notice_nonce' ) ); ?>" class="woocommerce-message-close notice-dismiss" style="position:relative;float:right;padding:9px 0px 9px 9px 9px;text-decoration:none;"></a> |
|
65 | + <a href="<?php echo esc_url(wp_nonce_url(add_query_arg('wc-stripe-hide-notice', $notice_key), 'wc_stripe_hide_notices_nonce', '_wc_stripe_notice_nonce')); ?>" class="woocommerce-message-close notice-dismiss" style="position:relative;float:right;padding:9px 0px 9px 9px 9px;text-decoration:none;"></a> |
|
66 | 66 | <?php |
67 | 67 | } |
68 | 68 | |
69 | 69 | echo '<p>'; |
70 | - echo wp_kses( $notice['message'], array( 'a' => array( 'href' => array(), 'target' => array() ) ) ); |
|
70 | + echo wp_kses($notice['message'], array('a' => array('href' => array(), 'target' => array()))); |
|
71 | 71 | echo '</p></div>'; |
72 | 72 | } |
73 | 73 | } |
@@ -100,120 +100,120 @@ discard block |
||
100 | 100 | * @version 4.0.0 |
101 | 101 | */ |
102 | 102 | public function stripe_check_environment() { |
103 | - $show_style_notice = get_option( 'wc_stripe_show_style_notice' ); |
|
104 | - $show_ssl_notice = get_option( 'wc_stripe_show_ssl_notice' ); |
|
105 | - $show_keys_notice = get_option( 'wc_stripe_show_keys_notice' ); |
|
106 | - $show_3ds_notice = get_option( 'wc_stripe_show_3ds_notice' ); |
|
107 | - $show_phpver_notice = get_option( 'wc_stripe_show_phpver_notice' ); |
|
108 | - $show_wcver_notice = get_option( 'wc_stripe_show_wcver_notice' ); |
|
109 | - $show_curl_notice = get_option( 'wc_stripe_show_curl_notice' ); |
|
110 | - $show_sca_notice = get_option( 'wc_stripe_show_sca_notice' ); |
|
111 | - $changed_keys_notice = get_option( 'wc_stripe_show_changed_keys_notice' ); |
|
112 | - $options = get_option( 'woocommerce_stripe_settings' ); |
|
113 | - $testmode = ( isset( $options['testmode'] ) && 'yes' === $options['testmode'] ) ? true : false; |
|
114 | - $test_pub_key = isset( $options['test_publishable_key'] ) ? $options['test_publishable_key'] : ''; |
|
115 | - $test_secret_key = isset( $options['test_secret_key'] ) ? $options['test_secret_key'] : ''; |
|
116 | - $live_pub_key = isset( $options['publishable_key'] ) ? $options['publishable_key'] : ''; |
|
117 | - $live_secret_key = isset( $options['secret_key'] ) ? $options['secret_key'] : ''; |
|
118 | - $three_d_secure = isset( $options['three_d_secure'] ) && 'yes' === $options['three_d_secure']; |
|
119 | - |
|
120 | - if ( isset( $options['enabled'] ) && 'yes' === $options['enabled'] ) { |
|
121 | - if ( empty( $show_3ds_notice ) && $three_d_secure ) { |
|
103 | + $show_style_notice = get_option('wc_stripe_show_style_notice'); |
|
104 | + $show_ssl_notice = get_option('wc_stripe_show_ssl_notice'); |
|
105 | + $show_keys_notice = get_option('wc_stripe_show_keys_notice'); |
|
106 | + $show_3ds_notice = get_option('wc_stripe_show_3ds_notice'); |
|
107 | + $show_phpver_notice = get_option('wc_stripe_show_phpver_notice'); |
|
108 | + $show_wcver_notice = get_option('wc_stripe_show_wcver_notice'); |
|
109 | + $show_curl_notice = get_option('wc_stripe_show_curl_notice'); |
|
110 | + $show_sca_notice = get_option('wc_stripe_show_sca_notice'); |
|
111 | + $changed_keys_notice = get_option('wc_stripe_show_changed_keys_notice'); |
|
112 | + $options = get_option('woocommerce_stripe_settings'); |
|
113 | + $testmode = (isset($options['testmode']) && 'yes' === $options['testmode']) ? true : false; |
|
114 | + $test_pub_key = isset($options['test_publishable_key']) ? $options['test_publishable_key'] : ''; |
|
115 | + $test_secret_key = isset($options['test_secret_key']) ? $options['test_secret_key'] : ''; |
|
116 | + $live_pub_key = isset($options['publishable_key']) ? $options['publishable_key'] : ''; |
|
117 | + $live_secret_key = isset($options['secret_key']) ? $options['secret_key'] : ''; |
|
118 | + $three_d_secure = isset($options['three_d_secure']) && 'yes' === $options['three_d_secure']; |
|
119 | + |
|
120 | + if (isset($options['enabled']) && 'yes' === $options['enabled']) { |
|
121 | + if (empty($show_3ds_notice) && $three_d_secure) { |
|
122 | 122 | $url = 'https://stripe.com/docs/payments/3d-secure#three-ds-radar'; |
123 | 123 | |
124 | 124 | /* translators: 1) A URL that explains Stripe Radar. */ |
125 | - $message = __( 'WooCommerce Stripe - We see that you had the "Require 3D secure when applicable" setting turned on. This setting is not available here anymore, because it is now replaced by Stripe Radar. You can learn more about it <a href="%s" target="_blank">here</a>.', 'woocommerce-gateway-stripe' ); |
|
125 | + $message = __('WooCommerce Stripe - We see that you had the "Require 3D secure when applicable" setting turned on. This setting is not available here anymore, because it is now replaced by Stripe Radar. You can learn more about it <a href="%s" target="_blank">here</a>.', 'woocommerce-gateway-stripe'); |
|
126 | 126 | |
127 | - $this->add_admin_notice( '3ds', 'notice notice-warning', sprintf( $message, $url ), true ); |
|
127 | + $this->add_admin_notice('3ds', 'notice notice-warning', sprintf($message, $url), true); |
|
128 | 128 | } |
129 | 129 | |
130 | - if ( empty( $show_style_notice ) ) { |
|
130 | + if (empty($show_style_notice)) { |
|
131 | 131 | /* translators: 1) int version 2) int version */ |
132 | - $message = __( 'WooCommerce Stripe - We recently made changes to Stripe that may impact the appearance of your checkout. If your checkout has changed unexpectedly, please follow these <a href="https://docs.woocommerce.com/document/stripe/#styling" target="_blank">instructions</a> to fix.', 'woocommerce-gateway-stripe' ); |
|
132 | + $message = __('WooCommerce Stripe - We recently made changes to Stripe that may impact the appearance of your checkout. If your checkout has changed unexpectedly, please follow these <a href="https://docs.woocommerce.com/document/stripe/#styling" target="_blank">instructions</a> to fix.', 'woocommerce-gateway-stripe'); |
|
133 | 133 | |
134 | - $this->add_admin_notice( 'style', 'notice notice-warning', $message, true ); |
|
134 | + $this->add_admin_notice('style', 'notice notice-warning', $message, true); |
|
135 | 135 | |
136 | 136 | return; |
137 | 137 | } |
138 | 138 | |
139 | - if ( empty( $show_phpver_notice ) ) { |
|
140 | - if ( version_compare( phpversion(), WC_STRIPE_MIN_PHP_VER, '<' ) ) { |
|
139 | + if (empty($show_phpver_notice)) { |
|
140 | + if (version_compare(phpversion(), WC_STRIPE_MIN_PHP_VER, '<')) { |
|
141 | 141 | /* translators: 1) int version 2) int version */ |
142 | - $message = __( 'WooCommerce Stripe - The minimum PHP version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe' ); |
|
142 | + $message = __('WooCommerce Stripe - The minimum PHP version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe'); |
|
143 | 143 | |
144 | - $this->add_admin_notice( 'phpver', 'error', sprintf( $message, WC_STRIPE_MIN_PHP_VER, phpversion() ), true ); |
|
144 | + $this->add_admin_notice('phpver', 'error', sprintf($message, WC_STRIPE_MIN_PHP_VER, phpversion()), true); |
|
145 | 145 | |
146 | 146 | return; |
147 | 147 | } |
148 | 148 | } |
149 | 149 | |
150 | - if ( empty( $show_wcver_notice ) ) { |
|
151 | - if ( WC_Stripe_Helper::is_wc_lt( WC_STRIPE_MIN_WC_VER ) ) { |
|
150 | + if (empty($show_wcver_notice)) { |
|
151 | + if (WC_Stripe_Helper::is_wc_lt(WC_STRIPE_MIN_WC_VER)) { |
|
152 | 152 | /* translators: 1) int version 2) int version */ |
153 | - $message = __( 'WooCommerce Stripe - The minimum WooCommerce version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe' ); |
|
153 | + $message = __('WooCommerce Stripe - The minimum WooCommerce version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe'); |
|
154 | 154 | |
155 | - $this->add_admin_notice( 'wcver', 'notice notice-warning', sprintf( $message, WC_STRIPE_MIN_WC_VER, WC_VERSION ), true ); |
|
155 | + $this->add_admin_notice('wcver', 'notice notice-warning', sprintf($message, WC_STRIPE_MIN_WC_VER, WC_VERSION), true); |
|
156 | 156 | |
157 | 157 | return; |
158 | - } elseif ( WC_Stripe_Helper::is_wc_lt( WC_STRIPE_FUTURE_MIN_WC_VER ) ) { |
|
158 | + } elseif (WC_Stripe_Helper::is_wc_lt(WC_STRIPE_FUTURE_MIN_WC_VER)) { |
|
159 | 159 | /* translators: 1) int version 2) int version */ |
160 | - $message = __( 'WooCommerce Stripe - This is the last version of the plugin compatible with WooCommerce %1$s. All furture versions of the plugin will require WooCommerce %2$s or greater.', 'woocommerce-gateway-stripe' ); |
|
161 | - $this->add_admin_notice( 'wcver', 'notice notice-warning', sprintf( $message, WC_VERSION, WC_STRIPE_FUTURE_MIN_WC_VER ), true ); |
|
160 | + $message = __('WooCommerce Stripe - This is the last version of the plugin compatible with WooCommerce %1$s. All furture versions of the plugin will require WooCommerce %2$s or greater.', 'woocommerce-gateway-stripe'); |
|
161 | + $this->add_admin_notice('wcver', 'notice notice-warning', sprintf($message, WC_VERSION, WC_STRIPE_FUTURE_MIN_WC_VER), true); |
|
162 | 162 | } |
163 | 163 | } |
164 | 164 | |
165 | - if ( empty( $show_curl_notice ) ) { |
|
166 | - if ( ! function_exists( 'curl_init' ) ) { |
|
167 | - $this->add_admin_notice( 'curl', 'notice notice-warning', __( 'WooCommerce Stripe - cURL is not installed.', 'woocommerce-gateway-stripe' ), true ); |
|
165 | + if (empty($show_curl_notice)) { |
|
166 | + if ( ! function_exists('curl_init')) { |
|
167 | + $this->add_admin_notice('curl', 'notice notice-warning', __('WooCommerce Stripe - cURL is not installed.', 'woocommerce-gateway-stripe'), true); |
|
168 | 168 | } |
169 | 169 | } |
170 | 170 | |
171 | - if ( empty( $show_keys_notice ) ) { |
|
171 | + if (empty($show_keys_notice)) { |
|
172 | 172 | $secret = WC_Stripe_API::get_secret_key(); |
173 | 173 | |
174 | - if ( empty( $secret ) && ! ( isset( $_GET['page'], $_GET['section'] ) && 'wc-settings' === $_GET['page'] && 'stripe' === $_GET['section'] ) ) { |
|
174 | + if (empty($secret) && ! (isset($_GET['page'], $_GET['section']) && 'wc-settings' === $_GET['page'] && 'stripe' === $_GET['section'])) { |
|
175 | 175 | $setting_link = $this->get_setting_link(); |
176 | 176 | /* translators: 1) link */ |
177 | - $this->add_admin_notice( 'keys', 'notice notice-warning', sprintf( __( 'Stripe is almost ready. To get started, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), $setting_link ), true ); |
|
177 | + $this->add_admin_notice('keys', 'notice notice-warning', sprintf(__('Stripe is almost ready. To get started, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe'), $setting_link), true); |
|
178 | 178 | } |
179 | 179 | |
180 | 180 | // Check if keys are entered properly per live/test mode. |
181 | - if ( $testmode ) { |
|
181 | + if ($testmode) { |
|
182 | 182 | if ( |
183 | - ! empty( $test_pub_key ) && ! preg_match( '/^pk_test_/', $test_pub_key ) |
|
184 | - || ( ! empty( $test_secret_key ) && ! preg_match( '/^sk_test_/', $test_secret_key ) |
|
185 | - && ! empty( $test_secret_key ) && ! preg_match( '/^rk_test_/', $test_secret_key ) ) ) { |
|
183 | + ! empty($test_pub_key) && ! preg_match('/^pk_test_/', $test_pub_key) |
|
184 | + || ( ! empty($test_secret_key) && ! preg_match('/^sk_test_/', $test_secret_key) |
|
185 | + && ! empty($test_secret_key) && ! preg_match('/^rk_test_/', $test_secret_key)) ) { |
|
186 | 186 | $setting_link = $this->get_setting_link(); |
187 | 187 | /* translators: 1) link */ |
188 | - $this->add_admin_notice( 'keys', 'notice notice-error', sprintf( __( 'Stripe is in test mode however your test keys may not be valid. Test keys start with pk_test and sk_test or rk_test. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), $setting_link ), true ); |
|
188 | + $this->add_admin_notice('keys', 'notice notice-error', sprintf(__('Stripe is in test mode however your test keys may not be valid. Test keys start with pk_test and sk_test or rk_test. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe'), $setting_link), true); |
|
189 | 189 | } |
190 | 190 | } else { |
191 | 191 | if ( |
192 | - ! empty( $live_pub_key ) && ! preg_match( '/^pk_live_/', $live_pub_key ) |
|
193 | - || ( ! empty( $live_secret_key ) && ! preg_match( '/^sk_live_/', $live_secret_key ) |
|
194 | - && ! empty( $live_secret_key ) && ! preg_match( '/^rk_live_/', $live_secret_key ) ) ) { |
|
192 | + ! empty($live_pub_key) && ! preg_match('/^pk_live_/', $live_pub_key) |
|
193 | + || ( ! empty($live_secret_key) && ! preg_match('/^sk_live_/', $live_secret_key) |
|
194 | + && ! empty($live_secret_key) && ! preg_match('/^rk_live_/', $live_secret_key)) ) { |
|
195 | 195 | $setting_link = $this->get_setting_link(); |
196 | 196 | /* translators: 1) link */ |
197 | - $this->add_admin_notice( 'keys', 'notice notice-error', sprintf( __( 'Stripe is in live mode however your test keys may not be valid. Live keys start with pk_live and sk_live or rk_live. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), $setting_link ), true ); |
|
197 | + $this->add_admin_notice('keys', 'notice notice-error', sprintf(__('Stripe is in live mode however your test keys may not be valid. Live keys start with pk_live and sk_live or rk_live. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe'), $setting_link), true); |
|
198 | 198 | } |
199 | 199 | } |
200 | 200 | } |
201 | 201 | |
202 | - if ( empty( $show_ssl_notice ) ) { |
|
202 | + if (empty($show_ssl_notice)) { |
|
203 | 203 | // Show message if enabled and FORCE SSL is disabled and WordpressHTTPS plugin is not detected. |
204 | - if ( ! wc_checkout_is_https() ) { |
|
204 | + if ( ! wc_checkout_is_https()) { |
|
205 | 205 | /* translators: 1) link */ |
206 | - $this->add_admin_notice( 'ssl', 'notice notice-warning', sprintf( __( 'Stripe is enabled, but a SSL certificate is not detected. Your checkout may not be secure! Please ensure your server has a valid <a href="%1$s" target="_blank">SSL certificate</a>', 'woocommerce-gateway-stripe' ), 'https://en.wikipedia.org/wiki/Transport_Layer_Security' ), true ); |
|
206 | + $this->add_admin_notice('ssl', 'notice notice-warning', sprintf(__('Stripe is enabled, but a SSL certificate is not detected. Your checkout may not be secure! Please ensure your server has a valid <a href="%1$s" target="_blank">SSL certificate</a>', 'woocommerce-gateway-stripe'), 'https://en.wikipedia.org/wiki/Transport_Layer_Security'), true); |
|
207 | 207 | } |
208 | 208 | } |
209 | 209 | |
210 | - if ( empty( $show_sca_notice ) ) { |
|
211 | - $this->add_admin_notice( 'sca', 'notice notice-success', sprintf( __( 'Stripe is now ready for Strong Customer Authentication (SCA) and 3D Secure 2! <a href="%1$s" target="_blank">Read about SCA</a>', 'woocommerce-gateway-stripe' ), 'https://woocommerce.com/posts/introducing-strong-customer-authentication-sca/' ), true ); |
|
210 | + if (empty($show_sca_notice)) { |
|
211 | + $this->add_admin_notice('sca', 'notice notice-success', sprintf(__('Stripe is now ready for Strong Customer Authentication (SCA) and 3D Secure 2! <a href="%1$s" target="_blank">Read about SCA</a>', 'woocommerce-gateway-stripe'), 'https://woocommerce.com/posts/introducing-strong-customer-authentication-sca/'), true); |
|
212 | 212 | } |
213 | 213 | |
214 | - if ( 'yes' === $changed_keys_notice ) { |
|
214 | + if ('yes' === $changed_keys_notice) { |
|
215 | 215 | // translators: %s is a the URL for the link. |
216 | - $this->add_admin_notice( 'changed_keys', 'notice notice-warning', sprintf( __( 'The public and/or secret keys for the Stripe gateway have been changed. This might cause errors for existing customers and saved payment methods. <a href="%s" target="_blank">Click here to learn more</a>.', 'woocommerce-gateway-stripe' ), 'https://docs.woocommerce.com/document/stripe-fixing-customer-errors/' ), true ); |
|
216 | + $this->add_admin_notice('changed_keys', 'notice notice-warning', sprintf(__('The public and/or secret keys for the Stripe gateway have been changed. This might cause errors for existing customers and saved payment methods. <a href="%s" target="_blank">Click here to learn more</a>.', 'woocommerce-gateway-stripe'), 'https://docs.woocommerce.com/document/stripe-fixing-customer-errors/'), true); |
|
217 | 217 | } |
218 | 218 | } |
219 | 219 | } |
@@ -226,17 +226,17 @@ discard block |
||
226 | 226 | public function payment_methods_check_environment() { |
227 | 227 | $payment_methods = $this->get_payment_methods(); |
228 | 228 | |
229 | - foreach ( $payment_methods as $method => $class ) { |
|
230 | - $show_notice = get_option( 'wc_stripe_show_' . strtolower( $method ) . '_notice' ); |
|
229 | + foreach ($payment_methods as $method => $class) { |
|
230 | + $show_notice = get_option('wc_stripe_show_' . strtolower($method) . '_notice'); |
|
231 | 231 | $gateway = new $class(); |
232 | 232 | |
233 | - if ( 'yes' !== $gateway->enabled || 'no' === $show_notice ) { |
|
233 | + if ('yes' !== $gateway->enabled || 'no' === $show_notice) { |
|
234 | 234 | continue; |
235 | 235 | } |
236 | 236 | |
237 | - if ( ! in_array( get_woocommerce_currency(), $gateway->get_supported_currency() ) ) { |
|
237 | + if ( ! in_array(get_woocommerce_currency(), $gateway->get_supported_currency())) { |
|
238 | 238 | /* translators: %1$s Payment method, %2$s List of supported currencies */ |
239 | - $this->add_admin_notice( $method, 'notice notice-error', sprintf( __( '%1$s is enabled - it requires store currency to be set to %2$s', 'woocommerce-gateway-stripe' ), $method, implode( ', ', $gateway->get_supported_currency() ) ), true ); |
|
239 | + $this->add_admin_notice($method, 'notice notice-error', sprintf(__('%1$s is enabled - it requires store currency to be set to %2$s', 'woocommerce-gateway-stripe'), $method, implode(', ', $gateway->get_supported_currency())), true); |
|
240 | 240 | } |
241 | 241 | } |
242 | 242 | } |
@@ -248,71 +248,71 @@ discard block |
||
248 | 248 | * @version 4.0.0 |
249 | 249 | */ |
250 | 250 | public function hide_notices() { |
251 | - if ( isset( $_GET['wc-stripe-hide-notice'] ) && isset( $_GET['_wc_stripe_notice_nonce'] ) ) { |
|
252 | - if ( ! wp_verify_nonce( $_GET['_wc_stripe_notice_nonce'], 'wc_stripe_hide_notices_nonce' ) ) { |
|
253 | - wp_die( __( 'Action failed. Please refresh the page and retry.', 'woocommerce-gateway-stripe' ) ); |
|
251 | + if (isset($_GET['wc-stripe-hide-notice']) && isset($_GET['_wc_stripe_notice_nonce'])) { |
|
252 | + if ( ! wp_verify_nonce($_GET['_wc_stripe_notice_nonce'], 'wc_stripe_hide_notices_nonce')) { |
|
253 | + wp_die(__('Action failed. Please refresh the page and retry.', 'woocommerce-gateway-stripe')); |
|
254 | 254 | } |
255 | 255 | |
256 | - if ( ! current_user_can( 'manage_woocommerce' ) ) { |
|
257 | - wp_die( __( 'Cheatin’ huh?', 'woocommerce-gateway-stripe' ) ); |
|
256 | + if ( ! current_user_can('manage_woocommerce')) { |
|
257 | + wp_die(__('Cheatin’ huh?', 'woocommerce-gateway-stripe')); |
|
258 | 258 | } |
259 | 259 | |
260 | - $notice = wc_clean( $_GET['wc-stripe-hide-notice'] ); |
|
260 | + $notice = wc_clean($_GET['wc-stripe-hide-notice']); |
|
261 | 261 | |
262 | - switch ( $notice ) { |
|
262 | + switch ($notice) { |
|
263 | 263 | case 'style': |
264 | - update_option( 'wc_stripe_show_style_notice', 'no' ); |
|
264 | + update_option('wc_stripe_show_style_notice', 'no'); |
|
265 | 265 | break; |
266 | 266 | case 'phpver': |
267 | - update_option( 'wc_stripe_show_phpver_notice', 'no' ); |
|
267 | + update_option('wc_stripe_show_phpver_notice', 'no'); |
|
268 | 268 | break; |
269 | 269 | case 'wcver': |
270 | - update_option( 'wc_stripe_show_wcver_notice', 'no' ); |
|
270 | + update_option('wc_stripe_show_wcver_notice', 'no'); |
|
271 | 271 | break; |
272 | 272 | case 'curl': |
273 | - update_option( 'wc_stripe_show_curl_notice', 'no' ); |
|
273 | + update_option('wc_stripe_show_curl_notice', 'no'); |
|
274 | 274 | break; |
275 | 275 | case 'ssl': |
276 | - update_option( 'wc_stripe_show_ssl_notice', 'no' ); |
|
276 | + update_option('wc_stripe_show_ssl_notice', 'no'); |
|
277 | 277 | break; |
278 | 278 | case 'keys': |
279 | - update_option( 'wc_stripe_show_keys_notice', 'no' ); |
|
279 | + update_option('wc_stripe_show_keys_notice', 'no'); |
|
280 | 280 | break; |
281 | 281 | case '3ds': |
282 | - update_option( 'wc_stripe_show_3ds_notice', 'no' ); |
|
282 | + update_option('wc_stripe_show_3ds_notice', 'no'); |
|
283 | 283 | break; |
284 | 284 | case 'Alipay': |
285 | - update_option( 'wc_stripe_show_alipay_notice', 'no' ); |
|
285 | + update_option('wc_stripe_show_alipay_notice', 'no'); |
|
286 | 286 | break; |
287 | 287 | case 'Bancontact': |
288 | - update_option( 'wc_stripe_show_bancontact_notice', 'no' ); |
|
288 | + update_option('wc_stripe_show_bancontact_notice', 'no'); |
|
289 | 289 | break; |
290 | 290 | case 'EPS': |
291 | - update_option( 'wc_stripe_show_eps_notice', 'no' ); |
|
291 | + update_option('wc_stripe_show_eps_notice', 'no'); |
|
292 | 292 | break; |
293 | 293 | case 'Giropay': |
294 | - update_option( 'wc_stripe_show_giropay_notice', 'no' ); |
|
294 | + update_option('wc_stripe_show_giropay_notice', 'no'); |
|
295 | 295 | break; |
296 | 296 | case 'iDeal': |
297 | - update_option( 'wc_stripe_show_ideal_notice', 'no' ); |
|
297 | + update_option('wc_stripe_show_ideal_notice', 'no'); |
|
298 | 298 | break; |
299 | 299 | case 'Multibanco': |
300 | - update_option( 'wc_stripe_show_multibanco_notice', 'no' ); |
|
300 | + update_option('wc_stripe_show_multibanco_notice', 'no'); |
|
301 | 301 | break; |
302 | 302 | case 'P24': |
303 | - update_option( 'wc_stripe_show_p24_notice', 'no' ); |
|
303 | + update_option('wc_stripe_show_p24_notice', 'no'); |
|
304 | 304 | break; |
305 | 305 | case 'SEPA': |
306 | - update_option( 'wc_stripe_show_sepa_notice', 'no' ); |
|
306 | + update_option('wc_stripe_show_sepa_notice', 'no'); |
|
307 | 307 | break; |
308 | 308 | case 'SOFORT': |
309 | - update_option( 'wc_stripe_show_sofort_notice', 'no' ); |
|
309 | + update_option('wc_stripe_show_sofort_notice', 'no'); |
|
310 | 310 | break; |
311 | 311 | case 'sca': |
312 | - update_option( 'wc_stripe_show_sca_notice', 'no' ); |
|
312 | + update_option('wc_stripe_show_sca_notice', 'no'); |
|
313 | 313 | break; |
314 | 314 | case 'changed_keys': |
315 | - update_option( 'wc_stripe_show_changed_keys_notice', 'no' ); |
|
315 | + update_option('wc_stripe_show_changed_keys_notice', 'no'); |
|
316 | 316 | } |
317 | 317 | } |
318 | 318 | } |
@@ -325,11 +325,11 @@ discard block |
||
325 | 325 | * @return string Setting link |
326 | 326 | */ |
327 | 327 | public function get_setting_link() { |
328 | - $use_id_as_section = function_exists( 'WC' ) ? version_compare( WC()->version, '2.6', '>=' ) : false; |
|
328 | + $use_id_as_section = function_exists('WC') ? version_compare(WC()->version, '2.6', '>=') : false; |
|
329 | 329 | |
330 | - $section_slug = $use_id_as_section ? 'stripe' : strtolower( 'WC_Gateway_Stripe' ); |
|
330 | + $section_slug = $use_id_as_section ? 'stripe' : strtolower('WC_Gateway_Stripe'); |
|
331 | 331 | |
332 | - return admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=' . $section_slug ); |
|
332 | + return admin_url('admin.php?page=wc-settings&tab=checkout§ion=' . $section_slug); |
|
333 | 333 | } |
334 | 334 | |
335 | 335 | /** |
@@ -338,16 +338,16 @@ discard block |
||
338 | 338 | * @since 4.3.0 |
339 | 339 | */ |
340 | 340 | public function stripe_updated() { |
341 | - $previous_version = get_option( 'wc_stripe_version' ); |
|
341 | + $previous_version = get_option('wc_stripe_version'); |
|
342 | 342 | |
343 | 343 | // Only show the style notice if the plugin was installed and older than 4.1.4. |
344 | - if ( empty( $previous_version ) || version_compare( $previous_version, '4.1.4', 'ge' ) ) { |
|
345 | - update_option( 'wc_stripe_show_style_notice', 'no' ); |
|
344 | + if (empty($previous_version) || version_compare($previous_version, '4.1.4', 'ge')) { |
|
345 | + update_option('wc_stripe_show_style_notice', 'no'); |
|
346 | 346 | } |
347 | 347 | |
348 | 348 | // Only show the SCA notice on pre-4.3.0 installs. |
349 | - if ( empty( $previous_version ) || version_compare( $previous_version, '4.3.0', 'ge' ) ) { |
|
350 | - update_option( 'wc_stripe_show_sca_notice', 'no' ); |
|
349 | + if (empty($previous_version) || version_compare($previous_version, '4.3.0', 'ge')) { |
|
350 | + update_option('wc_stripe_show_sca_notice', 'no'); |
|
351 | 351 | } |
352 | 352 | } |
353 | 353 | } |