Completed
Push — master ( 717fdd...29d315 )
by Roy
02:50
created
includes/payment-methods/class-wc-gateway-stripe-sepa.php 1 patch
Spacing   +105 added lines, -105 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
@@ -65,9 +65,9 @@  discard block
 block discarded – undo
65 65
 	public function __construct() {
66 66
 		$this->retry_interval       = 1;
67 67
 		$this->id                   = 'stripe_sepa';
68
-		$this->method_title         = __( 'Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe' );
68
+		$this->method_title         = __('Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe');
69 69
 		/* translators: link */
70
-		$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&section=stripe' ) );
70
+		$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&section=stripe'));
71 71
 		$this->supports             = array(
72 72
 			'products',
73 73
 			'refunds',
@@ -92,25 +92,25 @@  discard block
 block discarded – undo
92 92
 		// Load the settings.
93 93
 		$this->init_settings();
94 94
 
95
-		$main_settings              = get_option( 'woocommerce_stripe_settings' );
96
-		$this->title                = $this->get_option( 'title' );
97
-		$this->description          = $this->get_option( 'description' );
98
-		$this->enabled              = $this->get_option( 'enabled' );
99
-		$this->testmode             = ( ! empty( $main_settings['testmode'] ) && 'yes' === $main_settings['testmode'] ) ? true : false;
100
-		$this->saved_cards          = ( ! empty( $main_settings['saved_cards'] ) && 'yes' === $main_settings['saved_cards'] ) ? true : false;
101
-		$this->publishable_key      = ! empty( $main_settings['publishable_key'] ) ? $main_settings['publishable_key'] : '';
102
-		$this->secret_key           = ! empty( $main_settings['secret_key'] ) ? $main_settings['secret_key'] : '';
103
-		$this->statement_descriptor = ! empty( $main_settings['statement_descriptor'] ) ? $main_settings['statement_descriptor'] : '';
104
-
105
-		if ( $this->testmode ) {
106
-			$this->publishable_key = ! empty( $main_settings['test_publishable_key'] ) ? $main_settings['test_publishable_key'] : '';
107
-			$this->secret_key      = ! empty( $main_settings['test_secret_key'] ) ? $main_settings['test_secret_key'] : '';
95
+		$main_settings              = get_option('woocommerce_stripe_settings');
96
+		$this->title                = $this->get_option('title');
97
+		$this->description          = $this->get_option('description');
98
+		$this->enabled              = $this->get_option('enabled');
99
+		$this->testmode             = ( ! empty($main_settings['testmode']) && 'yes' === $main_settings['testmode']) ? true : false;
100
+		$this->saved_cards          = ( ! empty($main_settings['saved_cards']) && 'yes' === $main_settings['saved_cards']) ? true : false;
101
+		$this->publishable_key      = ! empty($main_settings['publishable_key']) ? $main_settings['publishable_key'] : '';
102
+		$this->secret_key           = ! empty($main_settings['secret_key']) ? $main_settings['secret_key'] : '';
103
+		$this->statement_descriptor = ! empty($main_settings['statement_descriptor']) ? $main_settings['statement_descriptor'] : '';
104
+
105
+		if ($this->testmode) {
106
+			$this->publishable_key = ! empty($main_settings['test_publishable_key']) ? $main_settings['test_publishable_key'] : '';
107
+			$this->secret_key      = ! empty($main_settings['test_secret_key']) ? $main_settings['test_secret_key'] : '';
108 108
 		}
109 109
 
110
-		add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
111
-		add_action( 'admin_notices', array( $this, 'check_environment' ) );
112
-		add_action( 'admin_head', array( $this, 'remove_admin_notice' ) );
113
-		add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) );
110
+		add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options'));
111
+		add_action('admin_notices', array($this, 'check_environment'));
112
+		add_action('admin_head', array($this, 'remove_admin_notice'));
113
+		add_action('wp_enqueue_scripts', array($this, 'payment_scripts'));
114 114
 	}
115 115
 
116 116
 	/**
@@ -120,19 +120,19 @@  discard block
 block discarded – undo
120 120
 	 * @version 4.0.0
121 121
 	 */
122 122
 	public function check_environment() {
123
-		if ( ! current_user_can( 'manage_woocommerce' ) ) {
123
+		if ( ! current_user_can('manage_woocommerce')) {
124 124
 			return;
125 125
 		}
126 126
 
127 127
 		$environment_warning = $this->get_environment_warning();
128 128
 
129
-		if ( $environment_warning ) {
130
-			$this->add_admin_notice( 'bad_environment', 'error', $environment_warning );
129
+		if ($environment_warning) {
130
+			$this->add_admin_notice('bad_environment', 'error', $environment_warning);
131 131
 		}
132 132
 
133
-		foreach ( (array) $this->notices as $notice_key => $notice ) {
134
-			echo "<div class='" . esc_attr( $notice['class'] ) . "'><p>";
135
-			echo wp_kses( $notice['message'], array( 'a' => array( 'href' => array() ) ) );
133
+		foreach ((array) $this->notices as $notice_key => $notice) {
134
+			echo "<div class='" . esc_attr($notice['class']) . "'><p>";
135
+			echo wp_kses($notice['message'], array('a' => array('href' => array())));
136 136
 			echo '</p></div>';
137 137
 		}
138 138
 	}
@@ -145,8 +145,8 @@  discard block
 block discarded – undo
145 145
 	 * @version 4.0.0
146 146
 	 */
147 147
 	public function get_environment_warning() {
148
-		if ( 'yes' === $this->enabled && ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) {
149
-			$message = __( 'SEPA is enabled - it requires store currency to be set to Euros.', 'woocommerce-gateway-stripe' );
148
+		if ('yes' === $this->enabled && ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) {
149
+			$message = __('SEPA is enabled - it requires store currency to be set to Euros.', 'woocommerce-gateway-stripe');
150 150
 
151 151
 			return $message;
152 152
 		}
@@ -162,9 +162,9 @@  discard block
 block discarded – undo
162 162
 	 * @return array
163 163
 	 */
164 164
 	public function get_supported_currency() {
165
-		return apply_filters( 'wc_stripe_sepa_supported_currencies', array(
165
+		return apply_filters('wc_stripe_sepa_supported_currencies', array(
166 166
 			'EUR',
167
-		) );
167
+		));
168 168
 	}
169 169
 
170 170
 	/**
@@ -175,11 +175,11 @@  discard block
 block discarded – undo
175 175
 	 * @return bool
176 176
 	 */
177 177
 	public function is_available() {
178
-		if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) {
178
+		if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) {
179 179
 			return false;
180 180
 		}
181 181
 
182
-		if ( is_add_payment_method_page() && ! $this->saved_cards ) {
182
+		if (is_add_payment_method_page() && ! $this->saved_cards) {
183 183
 			return false;
184 184
 		}
185 185
 
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
 
201 201
 		$icons_str .= $icons['sepa'];
202 202
 
203
-		return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id );
203
+		return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id);
204 204
 	}
205 205
 
206 206
 	/**
@@ -211,19 +211,19 @@  discard block
 block discarded – undo
211 211
 	 * @access public
212 212
 	 */
213 213
 	public function payment_scripts() {
214
-		if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) {
214
+		if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) {
215 215
 			return;
216 216
 		}
217 217
 
218
-		wp_enqueue_style( 'stripe_paymentfonts' );
219
-		wp_enqueue_script( 'woocommerce_stripe' );
218
+		wp_enqueue_style('stripe_paymentfonts');
219
+		wp_enqueue_script('woocommerce_stripe');
220 220
 	}
221 221
 
222 222
 	/**
223 223
 	 * Initialize Gateway Settings Form Fields.
224 224
 	 */
225 225
 	public function init_form_fields() {
226
-		$this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-sepa-settings.php' );
226
+		$this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-sepa-settings.php');
227 227
 	}
228 228
 
229 229
 	/**
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
 	 */
236 236
 	public function mandate_display() {
237 237
 		/* translators: statement descriptor */
238
-		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 ) );
238
+		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));
239 239
 	}
240 240
 
241 241
 	/**
@@ -246,24 +246,24 @@  discard block
 block discarded – undo
246 246
 	 */
247 247
 	public function form() {
248 248
 		?>
249
-		<fieldset id="wc-<?php echo esc_attr( $this->id ); ?>-form" class="wc-payment-form">
250
-			<?php do_action( 'woocommerce_credit_card_form_start', $this->id ); ?>
249
+		<fieldset id="wc-<?php echo esc_attr($this->id); ?>-form" class="wc-payment-form">
250
+			<?php do_action('woocommerce_credit_card_form_start', $this->id); ?>
251 251
 			<p class="wc-stripe-sepa-mandate" style="margin-bottom:40px;"><?php $this->mandate_display(); ?></p>
252 252
 			<p class="form-row form-row-wide">
253 253
 				<label for="stripe-sepa-owner">
254
-					<?php esc_html_e( 'IBAN Account Name.', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span>
254
+					<?php esc_html_e('IBAN Account Name.', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span>
255 255
 				</label>
256 256
 				<input id="stripe-sepa-owner" name="stripe_sepa_owner" value="" style="border:1px solid #ddd;margin:5px 0;padding:10px 5px;background-color:#fff;outline:0;" />
257 257
 			</p>
258 258
 			<p class="form-row form-row-wide">
259 259
 				<label for="stripe-sepa-iban">
260
-					<?php esc_html_e( 'IBAN Account Number.', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span>
260
+					<?php esc_html_e('IBAN Account Number.', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span>
261 261
 				</label>
262 262
 				<input id="stripe-sepa-iban" name="stripe_sepa_iban" value="" style="border:1px solid #ddd;margin:5px 0;padding:10px 5px;background-color:#fff;outline:0;" />
263 263
 			</p>
264 264
 			<!-- Used to display form errors -->
265 265
 			<div class="stripe-source-errors" role="alert"></div>
266
-			<?php do_action( 'woocommerce_credit_card_form_end', $this->id ); ?>
266
+			<?php do_action('woocommerce_credit_card_form_end', $this->id); ?>
267 267
 			<div class="clear"></div>
268 268
 		</fieldset>
269 269
 		<?php
@@ -275,42 +275,42 @@  discard block
 block discarded – undo
275 275
 	public function payment_fields() {
276 276
 		$user                 = wp_get_current_user();
277 277
 		$total                = WC()->cart->total;
278
-		$display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards;
278
+		$display_tokenization = $this->supports('tokenization') && is_checkout() && $this->saved_cards;
279 279
 
280 280
 		// If paying from order, we need to get total from order not cart.
281
-		if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
282
-			$order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) );
281
+		if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) {
282
+			$order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key'])));
283 283
 			$total = $order->get_total();
284 284
 		}
285 285
 
286
-		if ( is_add_payment_method_page() ) {
287
-			$pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' );
288
-			$total        = '';
286
+		if (is_add_payment_method_page()) {
287
+			$pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe');
288
+			$total = '';
289 289
 		} else {
290 290
 			$pay_button_text = '';
291 291
 		}
292 292
 
293 293
 		echo '<div
294 294
 			id="stripe-sepa_debit-payment-data"
295
-			data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
296
-			data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">';
295
+			data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '"
296
+			data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">';
297 297
 
298
-		if ( $this->description ) {
299
-			if ( $this->testmode ) {
300
-				$this->description .= ' ' . __( 'TEST MODE ENABLED. In test mode, you can use IBAN number DE89370400440532013000.', 'woocommerce-gateway-stripe' );
301
-				$this->description  = trim( $this->description );
298
+		if ($this->description) {
299
+			if ($this->testmode) {
300
+				$this->description .= ' ' . __('TEST MODE ENABLED. In test mode, you can use IBAN number DE89370400440532013000.', 'woocommerce-gateway-stripe');
301
+				$this->description  = trim($this->description);
302 302
 			}
303
-			echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ) );
303
+			echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($this->description)));
304 304
 		}
305 305
 
306
-		if ( $display_tokenization ) {
306
+		if ($display_tokenization) {
307 307
 			$this->tokenization_script();
308 308
 			$this->saved_payment_methods();
309 309
 		}
310 310
 
311 311
 		$this->form();
312 312
 
313
-		if ( apply_filters( 'wc_stripe_display_save_payment_method_checkbox', $display_tokenization ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) ) {
313
+		if (apply_filters('wc_stripe_display_save_payment_method_checkbox', $display_tokenization) && ! is_add_payment_method_page() && ! isset($_GET['change_payment_method'])) {
314 314
 			$this->save_payment_method_checkbox();
315 315
 		}
316 316
 
@@ -328,95 +328,95 @@  discard block
 block discarded – undo
328 328
 	 *
329 329
 	 * @return array|void
330 330
 	 */
331
-	public function process_payment( $order_id, $retry = true, $force_save_source = false ) {
331
+	public function process_payment($order_id, $retry = true, $force_save_source = false) {
332 332
 		try {
333
-			$order = wc_get_order( $order_id );
333
+			$order = wc_get_order($order_id);
334 334
 
335 335
 			// This comes from the create account checkbox in the checkout page.
336
-			$create_account = ! empty( $_POST['createaccount'] ) ? true : false;
336
+			$create_account = ! empty($_POST['createaccount']) ? true : false;
337 337
 
338
-			if ( $create_account ) {
338
+			if ($create_account) {
339 339
 				$new_customer_id     = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id();
340
-				$new_stripe_customer = new WC_Stripe_Customer( $new_customer_id );
340
+				$new_stripe_customer = new WC_Stripe_Customer($new_customer_id);
341 341
 				$new_stripe_customer->create_customer();
342 342
 			}
343 343
 
344
-			$prepared_source = $this->prepare_source( get_current_user_id(), $force_save_source );
344
+			$prepared_source = $this->prepare_source(get_current_user_id(), $force_save_source);
345 345
 
346
-			$this->save_source_to_order( $order, $prepared_source );
346
+			$this->save_source_to_order($order, $prepared_source);
347 347
 
348 348
 			// Result from Stripe API request.
349 349
 			$response = null;
350 350
 
351
-			if ( $order->get_total() > 0 ) {
351
+			if ($order->get_total() > 0) {
352 352
 				// This will throw exception if not valid.
353
-				$this->validate_minimum_order_amount( $order );
353
+				$this->validate_minimum_order_amount($order);
354 354
 
355
-				WC_Stripe_Logger::log( "Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}" );
355
+				WC_Stripe_Logger::log("Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}");
356 356
 
357 357
 				// Make the request.
358
-				$response = WC_Stripe_API::request( $this->generate_payment_request( $order, $prepared_source ) );
358
+				$response = WC_Stripe_API::request($this->generate_payment_request($order, $prepared_source));
359 359
 
360
-				if ( ! empty( $response->error ) ) {
360
+				if ( ! empty($response->error)) {
361 361
 					// Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without.
362
-					if ( preg_match( '/No such customer/i', $response->error->message ) && $retry ) {
363
-						if ( WC_Stripe_Helper::is_pre_30() ) {
364
-							delete_user_meta( $order->customer_user, '_stripe_customer_id' );
365
-							delete_post_meta( $order_id, '_stripe_customer_id' );
362
+					if (preg_match('/No such customer/i', $response->error->message) && $retry) {
363
+						if (WC_Stripe_Helper::is_pre_30()) {
364
+							delete_user_meta($order->customer_user, '_stripe_customer_id');
365
+							delete_post_meta($order_id, '_stripe_customer_id');
366 366
 						} else {
367
-							delete_user_meta( $order->get_customer_id(), '_stripe_customer_id' );
368
-							$order->delete_meta_data( '_stripe_customer_id' );
367
+							delete_user_meta($order->get_customer_id(), '_stripe_customer_id');
368
+							$order->delete_meta_data('_stripe_customer_id');
369 369
 							$order->save();
370 370
 						}
371 371
 
372
-						return $this->process_payment( $order_id, false, $force_save_source );
373
-					} elseif ( preg_match( '/No such token/i', $response->error->message ) && $prepared_source->token_id ) {
372
+						return $this->process_payment($order_id, false, $force_save_source);
373
+					} elseif (preg_match('/No such token/i', $response->error->message) && $prepared_source->token_id) {
374 374
 						// Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message.
375
-						$wc_token = WC_Payment_Tokens::get( $prepared_source->token_id );
375
+						$wc_token = WC_Payment_Tokens::get($prepared_source->token_id);
376 376
 						$wc_token->delete();
377
-						$localized_message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' );
378
-						$order->add_order_note( $localized_message );
379
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
377
+						$localized_message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe');
378
+						$order->add_order_note($localized_message);
379
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
380 380
 					}
381 381
 
382 382
 					// We want to retry.
383
-					if ( $this->is_retryable_error( $response->error ) ) {
384
-						if ( $retry ) {
383
+					if ($this->is_retryable_error($response->error)) {
384
+						if ($retry) {
385 385
 							// Don't do anymore retries after this.
386
-							if ( 5 <= $this->retry_interval ) {
386
+							if (5 <= $this->retry_interval) {
387 387
 
388
-								return $this->process_payment( $order_id, false, $force_save_source );
388
+								return $this->process_payment($order_id, false, $force_save_source);
389 389
 							}
390 390
 
391
-							sleep( $this->retry_interval );
391
+							sleep($this->retry_interval);
392 392
 
393 393
 							$this->retry_interval++;
394 394
 
395
-							return $this->process_payment( $order_id, true, $force_save_source );
395
+							return $this->process_payment($order_id, true, $force_save_source);
396 396
 						} else {
397
-							$localized_message = __( 'On going requests error and retries exhausted.', 'woocommerce-gateway-stripe' );
398
-							$order->add_order_note( $localized_message );
399
-							throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
397
+							$localized_message = __('On going requests error and retries exhausted.', 'woocommerce-gateway-stripe');
398
+							$order->add_order_note($localized_message);
399
+							throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
400 400
 						}
401 401
 					}
402 402
 
403 403
 					$localized_messages = WC_Stripe_Helper::get_localized_messages();
404 404
 
405
-					if ( 'card_error' === $response->error->type ) {
406
-						$localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
405
+					if ('card_error' === $response->error->type) {
406
+						$localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message;
407 407
 					} else {
408
-						$localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
408
+						$localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message;
409 409
 					}
410 410
 
411
-					$order->add_order_note( $localized_message );
411
+					$order->add_order_note($localized_message);
412 412
 
413
-					throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
413
+					throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
414 414
 				}
415 415
 
416
-				do_action( 'wc_gateway_stripe_process_payment', $response, $order );
416
+				do_action('wc_gateway_stripe_process_payment', $response, $order);
417 417
 
418 418
 				// Process valid response.
419
-				$this->process_response( $response, $order );
419
+				$this->process_response($response, $order);
420 420
 			} else {
421 421
 				$order->payment_complete();
422 422
 			}
@@ -427,17 +427,17 @@  discard block
 block discarded – undo
427 427
 			// Return thank you page redirect.
428 428
 			return array(
429 429
 				'result'   => 'success',
430
-				'redirect' => $this->get_return_url( $order ),
430
+				'redirect' => $this->get_return_url($order),
431 431
 			);
432 432
 
433
-		} catch ( WC_Stripe_Exception $e ) {
434
-			wc_add_notice( $e->getLocalizedMessage(), 'error' );
435
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
433
+		} catch (WC_Stripe_Exception $e) {
434
+			wc_add_notice($e->getLocalizedMessage(), 'error');
435
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
436 436
 
437
-			do_action( 'wc_gateway_stripe_process_payment_error', $e, $order );
437
+			do_action('wc_gateway_stripe_process_payment_error', $e, $order);
438 438
 
439
-			if ( $order->has_status( array( 'pending', 'failed' ) ) ) {
440
-				$this->send_failed_order_email( $order_id );
439
+			if ($order->has_status(array('pending', 'failed'))) {
440
+				$this->send_failed_order_email($order_id);
441 441
 			}
442 442
 
443 443
 			return array(
Please login to merge, or discard this patch.
includes/class-wc-stripe-webhook-handler.php 1 patch
Spacing   +174 added lines, -174 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
@@ -32,9 +32,9 @@  discard block
 block discarded – undo
32 32
 	 */
33 33
 	public function __construct() {
34 34
 		$this->retry_interval = 2;
35
-		$stripe_settings      = get_option( 'woocommerce_stripe_settings', array() );
36
-		$this->testmode       = ( ! empty( $stripe_settings['testmode'] ) && 'yes' === $stripe_settings['testmode'] ) ? true : false;
37
-		add_action( 'woocommerce_api_wc_stripe', array( $this, 'check_for_webhook' ) );
35
+		$stripe_settings      = get_option('woocommerce_stripe_settings', array());
36
+		$this->testmode       = ( ! empty($stripe_settings['testmode']) && 'yes' === $stripe_settings['testmode']) ? true : false;
37
+		add_action('woocommerce_api_wc_stripe', array($this, 'check_for_webhook'));
38 38
 	}
39 39
 
40 40
 	/**
@@ -44,24 +44,24 @@  discard block
 block discarded – undo
44 44
 	 * @version 4.0.0
45 45
 	 */
46 46
 	public function check_for_webhook() {
47
-		if ( ( 'POST' !== $_SERVER['REQUEST_METHOD'] )
48
-			|| ! isset( $_GET['wc-api'] )
49
-			|| ( 'wc_stripe' !== $_GET['wc-api'] )
47
+		if (('POST' !== $_SERVER['REQUEST_METHOD'])
48
+			|| ! isset($_GET['wc-api'])
49
+			|| ('wc_stripe' !== $_GET['wc-api'])
50 50
 		) {
51 51
 			return;
52 52
 		}
53 53
 
54
-		$request_body    = file_get_contents( 'php://input' );
55
-		$request_headers = array_change_key_case( $this->get_request_headers(), CASE_UPPER );
54
+		$request_body    = file_get_contents('php://input');
55
+		$request_headers = array_change_key_case($this->get_request_headers(), CASE_UPPER);
56 56
 
57 57
 		// Validate it to make sure it is legit.
58
-		if ( $this->is_valid_request( $request_headers, $request_body ) ) {
59
-			$this->process_webhook( $request_body );
60
-			status_header( 200 );
58
+		if ($this->is_valid_request($request_headers, $request_body)) {
59
+			$this->process_webhook($request_body);
60
+			status_header(200);
61 61
 			exit;
62 62
 		} else {
63
-			WC_Stripe_Logger::log( 'Incoming webhook failed validation: ' . print_r( $request_body, true ) );
64
-			status_header( 400 );
63
+			WC_Stripe_Logger::log('Incoming webhook failed validation: ' . print_r($request_body, true));
64
+			status_header(400);
65 65
 			exit;
66 66
 		}
67 67
 	}
@@ -76,12 +76,12 @@  discard block
 block discarded – undo
76 76
 	 * @param string $request_body The request body from Stripe.
77 77
 	 * @return bool
78 78
 	 */
79
-	public function is_valid_request( $request_headers = null, $request_body = null ) {
80
-		if ( null === $request_headers || null === $request_body ) {
79
+	public function is_valid_request($request_headers = null, $request_body = null) {
80
+		if (null === $request_headers || null === $request_body) {
81 81
 			return false;
82 82
 		}
83 83
 
84
-		if ( ! empty( $request_headers['USER-AGENT'] ) && ! preg_match( '/Stripe/', $request_headers['USER-AGENT'] ) ) {
84
+		if ( ! empty($request_headers['USER-AGENT']) && ! preg_match('/Stripe/', $request_headers['USER-AGENT'])) {
85 85
 			return false;
86 86
 		}
87 87
 
@@ -97,11 +97,11 @@  discard block
 block discarded – undo
97 97
 	 * @version 4.0.0
98 98
 	 */
99 99
 	public function get_request_headers() {
100
-		if ( ! function_exists( 'getallheaders' ) ) {
100
+		if ( ! function_exists('getallheaders')) {
101 101
 			$headers = [];
102
-			foreach ( $_SERVER as $name => $value ) {
103
-				if ( 'HTTP_' === substr( $name, 0, 5 ) ) {
104
-					$headers[ str_replace( ' ', '-', ucwords( strtolower( str_replace( '_', ' ', substr( $name, 5 ) ) ) ) ) ] = $value;
102
+			foreach ($_SERVER as $name => $value) {
103
+				if ('HTTP_' === substr($name, 0, 5)) {
104
+					$headers[str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))))] = $value;
105 105
 				}
106 106
 			}
107 107
 
@@ -120,30 +120,30 @@  discard block
 block discarded – undo
120 120
 	 * @param object $notification
121 121
 	 * @param bool $retry
122 122
 	 */
123
-	public function process_webhook_payment( $notification, $retry = true ) {
123
+	public function process_webhook_payment($notification, $retry = true) {
124 124
 		// The following 2 payment methods are synchronous so does not need to be handle via webhook.
125
-		if ( 'card' === $notification->data->object->type || 'sepa_debit' === $notification->data->object->type ) {
125
+		if ('card' === $notification->data->object->type || 'sepa_debit' === $notification->data->object->type) {
126 126
 			return;
127 127
 		}
128 128
 
129
-		$order = WC_Stripe_Helper::get_order_by_source_id( $notification->data->object->id );
129
+		$order = WC_Stripe_Helper::get_order_by_source_id($notification->data->object->id);
130 130
 
131
-		if ( ! $order ) {
132
-			WC_Stripe_Logger::log( 'Could not find order via source ID: ' . $notification->data->object->id );
131
+		if ( ! $order) {
132
+			WC_Stripe_Logger::log('Could not find order via source ID: ' . $notification->data->object->id);
133 133
 			return;
134 134
 		}
135 135
 
136 136
 		$order_id  = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
137 137
 		$source_id = $notification->data->object->id;
138 138
 
139
-		$is_pending_receiver = ( 'receiver' === $notification->data->object->flow );
139
+		$is_pending_receiver = ('receiver' === $notification->data->object->flow);
140 140
 
141 141
 		try {
142
-			if ( 'processing' === $order->get_status() || 'completed' === $order->get_status() ) {
142
+			if ('processing' === $order->get_status() || 'completed' === $order->get_status()) {
143 143
 				return;
144 144
 			}
145 145
 
146
-			if ( 'on-hold' === $order->get_status() && ! $is_pending_receiver ) {
146
+			if ('on-hold' === $order->get_status() && ! $is_pending_receiver) {
147 147
 				return;
148 148
 			}
149 149
 
@@ -151,95 +151,95 @@  discard block
 block discarded – undo
151 151
 			$response = null;
152 152
 
153 153
 			// This will throw exception if not valid.
154
-			$this->validate_minimum_order_amount( $order );
154
+			$this->validate_minimum_order_amount($order);
155 155
 
156
-			WC_Stripe_Logger::log( "Info: (Webhook) Begin processing payment for order $order_id for the amount of {$order->get_total()}" );
156
+			WC_Stripe_Logger::log("Info: (Webhook) Begin processing payment for order $order_id for the amount of {$order->get_total()}");
157 157
 
158 158
 			// Prep source object.
159 159
 			$source_object           = new stdClass();
160 160
 			$source_object->token_id = '';
161
-			$source_object->customer = $this->get_stripe_customer_id( $order );
161
+			$source_object->customer = $this->get_stripe_customer_id($order);
162 162
 			$source_object->source   = $source_id;
163 163
 
164 164
 			// Make the request.
165
-			$response = WC_Stripe_API::request( $this->generate_payment_request( $order, $source_object ), 'charges', 'POST', true );
165
+			$response = WC_Stripe_API::request($this->generate_payment_request($order, $source_object), 'charges', 'POST', true);
166 166
 			$headers  = $response['headers'];
167 167
 			$response = $response['body'];
168 168
 
169
-			if ( ! empty( $response->error ) ) {
169
+			if ( ! empty($response->error)) {
170 170
 				// We want to retry.
171
-				if ( $this->is_retryable_error( $response->error ) ) {
172
-					if ( $retry ) {
171
+				if ($this->is_retryable_error($response->error)) {
172
+					if ($retry) {
173 173
 						// Don't do anymore retries after this.
174
-						if ( 5 <= $this->retry_interval ) {
174
+						if (5 <= $this->retry_interval) {
175 175
 
176
-							return $this->process_webhook_payment( $notification, false );
176
+							return $this->process_webhook_payment($notification, false);
177 177
 						}
178 178
 
179
-						sleep( $this->retry_interval );
179
+						sleep($this->retry_interval);
180 180
 
181 181
 						$this->retry_interval++;
182
-						return $this->process_webhook_payment( $notification, true );
182
+						return $this->process_webhook_payment($notification, true);
183 183
 					} else {
184
-						$localized_message = __( 'On going requests error and retries exhausted.', 'woocommerce-gateway-stripe' );
185
-						$order->add_order_note( $localized_message );
186
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
184
+						$localized_message = __('On going requests error and retries exhausted.', 'woocommerce-gateway-stripe');
185
+						$order->add_order_note($localized_message);
186
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
187 187
 					}
188 188
 				}
189 189
 
190 190
 				// Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without.
191
-				if ( preg_match( '/No such customer/i', $response->error->message ) && $retry ) {
192
-					if ( WC_Stripe_Helper::is_pre_30() ) {
193
-						delete_user_meta( $order->customer_user, '_stripe_customer_id' );
194
-						delete_post_meta( $order_id, '_stripe_customer_id' );
191
+				if (preg_match('/No such customer/i', $response->error->message) && $retry) {
192
+					if (WC_Stripe_Helper::is_pre_30()) {
193
+						delete_user_meta($order->customer_user, '_stripe_customer_id');
194
+						delete_post_meta($order_id, '_stripe_customer_id');
195 195
 					} else {
196
-						delete_user_meta( $order->get_customer_id(), '_stripe_customer_id' );
197
-						$order->delete_meta_data( '_stripe_customer_id' );
196
+						delete_user_meta($order->get_customer_id(), '_stripe_customer_id');
197
+						$order->delete_meta_data('_stripe_customer_id');
198 198
 						$order->save();
199 199
 					}
200 200
 
201
-					return $this->process_webhook_payment( $notification, false );
201
+					return $this->process_webhook_payment($notification, false);
202 202
 
203
-				} elseif ( preg_match( '/No such token/i', $response->error->message ) && $source_object->token_id ) {
203
+				} elseif (preg_match('/No such token/i', $response->error->message) && $source_object->token_id) {
204 204
 					// Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message.
205
-					$wc_token = WC_Payment_Tokens::get( $source_object->token_id );
205
+					$wc_token = WC_Payment_Tokens::get($source_object->token_id);
206 206
 					$wc_token->delete();
207
-					$message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' );
208
-					$order->add_order_note( $message );
209
-					throw new WC_Stripe_Exception( print_r( $response, true ), $message );
207
+					$message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe');
208
+					$order->add_order_note($message);
209
+					throw new WC_Stripe_Exception(print_r($response, true), $message);
210 210
 				}
211 211
 
212 212
 				$localized_messages = WC_Stripe_Helper::get_localized_messages();
213 213
 
214
-				if ( 'card_error' === $response->error->type ) {
215
-					$localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
214
+				if ('card_error' === $response->error->type) {
215
+					$localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message;
216 216
 				} else {
217
-					$localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
217
+					$localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message;
218 218
 				}
219 219
 
220
-				$order->add_order_note( $localized_message );
220
+				$order->add_order_note($localized_message);
221 221
 
222
-				throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
222
+				throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
223 223
 			}
224 224
 
225 225
 			// To prevent double processing the order on WC side.
226
-			if ( ! $this->is_original_request( $headers ) ) {
226
+			if ( ! $this->is_original_request($headers)) {
227 227
 				return;
228 228
 			}
229 229
 
230
-			do_action( 'wc_gateway_stripe_process_webhook_payment', $response, $order );
230
+			do_action('wc_gateway_stripe_process_webhook_payment', $response, $order);
231 231
 
232
-			$this->process_response( $response, $order );
232
+			$this->process_response($response, $order);
233 233
 
234
-		} catch ( WC_Stripe_Exception $e ) {
235
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
234
+		} catch (WC_Stripe_Exception $e) {
235
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
236 236
 
237
-			do_action( 'wc_gateway_stripe_process_webhook_payment_error', $e, $order );
237
+			do_action('wc_gateway_stripe_process_webhook_payment_error', $e, $order);
238 238
 
239
-			$statuses = array( 'pending', 'failed' );
239
+			$statuses = array('pending', 'failed');
240 240
 
241
-			if ( $order->has_status( $statuses ) ) {
242
-				$this->send_failed_order_email( $order_id );
241
+			if ($order->has_status($statuses)) {
242
+				$this->send_failed_order_email($order_id);
243 243
 			}
244 244
 		}
245 245
 	}
@@ -252,21 +252,21 @@  discard block
 block discarded – undo
252 252
 	 * @since 4.0.0
253 253
 	 * @param object $notification
254 254
 	 */
255
-	public function process_webhook_dispute( $notification ) {
256
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->charge );
255
+	public function process_webhook_dispute($notification) {
256
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->charge);
257 257
 
258
-		if ( ! $order ) {
259
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->charge );
258
+		if ( ! $order) {
259
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->charge);
260 260
 			return;
261 261
 		}
262 262
 
263 263
 		/* translators: 1) The URL to the order. */
264
-		$order->update_status( 'on-hold', sprintf( __( 'A dispute was created for this order. Response is needed. Please go to your <a href="%s" title="Stripe Dashboard" target="_blank">Stripe Dashboard</a> to review this dispute.', 'woocommerce-gateway-stripe' ), $this->get_transaction_url( $order ) ) );
264
+		$order->update_status('on-hold', sprintf(__('A dispute was created for this order. Response is needed. Please go to your <a href="%s" title="Stripe Dashboard" target="_blank">Stripe Dashboard</a> to review this dispute.', 'woocommerce-gateway-stripe'), $this->get_transaction_url($order)));
265 265
 
266
-		do_action( 'wc_gateway_stripe_process_webhook_payment_error', $order, $notification );
266
+		do_action('wc_gateway_stripe_process_webhook_payment_error', $order, $notification);
267 267
 
268 268
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
269
-		$this->send_failed_order_email( $order_id );
269
+		$this->send_failed_order_email($order_id);
270 270
 	}
271 271
 
272 272
 	/**
@@ -277,41 +277,41 @@  discard block
 block discarded – undo
277 277
 	 * @version 4.0.0
278 278
 	 * @param object $notification
279 279
 	 */
280
-	public function process_webhook_capture( $notification ) {
281
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->id );
280
+	public function process_webhook_capture($notification) {
281
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->id);
282 282
 
283
-		if ( ! $order ) {
284
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->id );
283
+		if ( ! $order) {
284
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->id);
285 285
 			return;
286 286
 		}
287 287
 
288 288
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
289 289
 
290
-		if ( 'stripe' === ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) ) {
291
-			$charge   = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_transaction_id', true ) : $order->get_transaction_id();
292
-			$captured = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_charge_captured', true ) : $order->get_meta( '_stripe_charge_captured', true );
290
+		if ('stripe' === (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method())) {
291
+			$charge   = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_transaction_id', true) : $order->get_transaction_id();
292
+			$captured = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_charge_captured', true) : $order->get_meta('_stripe_charge_captured', true);
293 293
 
294
-			if ( $charge && 'no' === $captured ) {
295
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_charge_captured', 'yes' ) : $order->update_meta_data( '_stripe_charge_captured', 'yes' );
294
+			if ($charge && 'no' === $captured) {
295
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_charge_captured', 'yes') : $order->update_meta_data('_stripe_charge_captured', 'yes');
296 296
 
297 297
 				// Store other data such as fees
298
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $notification->data->object->id ) : $order->set_transaction_id( $notification->data->object->id );
298
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $notification->data->object->id) : $order->set_transaction_id($notification->data->object->id);
299 299
 
300
-				if ( isset( $notification->data->object->balance_transaction ) ) {
301
-					$this->update_fees( $order, $notification->data->object->balance_transaction );
300
+				if (isset($notification->data->object->balance_transaction)) {
301
+					$this->update_fees($order, $notification->data->object->balance_transaction);
302 302
 				}
303 303
 
304
-				if ( is_callable( array( $order, 'save' ) ) ) {
304
+				if (is_callable(array($order, 'save'))) {
305 305
 					$order->save();
306 306
 				}
307 307
 
308 308
 				/* translators: transaction id */
309
-				$order->update_status( $order->needs_processing() ? 'processing' : 'completed', sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $notification->data->object->id ) );
309
+				$order->update_status($order->needs_processing() ? 'processing' : 'completed', sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $notification->data->object->id));
310 310
 
311 311
 				// Check and see if capture is partial.
312
-				if ( $this->is_partial_capture( $notification ) ) {
313
-					$order->set_total( $this->get_partial_amount_to_charge( $notification ) );
314
-					$order->add_order_note( __( 'This charge was partially captured via Stripe Dashboard', 'woocommerce-gateway-stripe' ) );
312
+				if ($this->is_partial_capture($notification)) {
313
+					$order->set_total($this->get_partial_amount_to_charge($notification));
314
+					$order->add_order_note(__('This charge was partially captured via Stripe Dashboard', 'woocommerce-gateway-stripe'));
315 315
 					$order->save();
316 316
 				}
317 317
 			}
@@ -326,38 +326,38 @@  discard block
 block discarded – undo
326 326
 	 * @version 4.0.0
327 327
 	 * @param object $notification
328 328
 	 */
329
-	public function process_webhook_charge_succeeded( $notification ) {
329
+	public function process_webhook_charge_succeeded($notification) {
330 330
 		// The following payment methods are synchronous so does not need to be handle via webhook.
331
-		if ( ( isset( $notification->data->object->source->type ) && 'card' === $notification->data->object->source->type ) || ( isset( $notification->data->object->source->type ) && 'three_d_secure' === $notification->data->object->source->type ) ) {
331
+		if ((isset($notification->data->object->source->type) && 'card' === $notification->data->object->source->type) || (isset($notification->data->object->source->type) && 'three_d_secure' === $notification->data->object->source->type)) {
332 332
 			return;
333 333
 		}
334 334
 
335
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->id );
335
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->id);
336 336
 
337
-		if ( ! $order ) {
338
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->id );
337
+		if ( ! $order) {
338
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->id);
339 339
 			return;
340 340
 		}
341 341
 
342 342
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
343 343
 
344
-		if ( 'on-hold' !== $order->get_status() ) {
344
+		if ('on-hold' !== $order->get_status()) {
345 345
 			return;
346 346
 		}
347 347
 
348 348
 		// Store other data such as fees
349
-		WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $notification->data->object->id ) : $order->set_transaction_id( $notification->data->object->id );
349
+		WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $notification->data->object->id) : $order->set_transaction_id($notification->data->object->id);
350 350
 
351
-		if ( isset( $notification->data->object->balance_transaction ) ) {
352
-			$this->update_fees( $order, $notification->data->object->balance_transaction );
351
+		if (isset($notification->data->object->balance_transaction)) {
352
+			$this->update_fees($order, $notification->data->object->balance_transaction);
353 353
 		}
354 354
 
355
-		if ( is_callable( array( $order, 'save' ) ) ) {
355
+		if (is_callable(array($order, 'save'))) {
356 356
 			$order->save();
357 357
 		}
358 358
 
359 359
 		/* translators: transaction id */
360
-		$order->update_status( $order->needs_processing() ? 'processing' : 'completed', sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $notification->data->object->id ) );
360
+		$order->update_status($order->needs_processing() ? 'processing' : 'completed', sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $notification->data->object->id));
361 361
 	}
362 362
 
363 363
 	/**
@@ -368,23 +368,23 @@  discard block
 block discarded – undo
368 368
 	 * @version 4.0.0
369 369
 	 * @param object $notification
370 370
 	 */
371
-	public function process_webhook_charge_failed( $notification ) {
372
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->id );
371
+	public function process_webhook_charge_failed($notification) {
372
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->id);
373 373
 
374
-		if ( ! $order ) {
375
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->id );
374
+		if ( ! $order) {
375
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->id);
376 376
 			return;
377 377
 		}
378 378
 
379 379
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
380 380
 
381
-		if ( 'on-hold' !== $order->get_status() ) {
381
+		if ('on-hold' !== $order->get_status()) {
382 382
 			return;
383 383
 		}
384 384
 
385
-		$order->update_status( 'failed', __( 'This payment failed to clear.', 'woocommerce-gateway-stripe' ) );
385
+		$order->update_status('failed', __('This payment failed to clear.', 'woocommerce-gateway-stripe'));
386 386
 
387
-		do_action( 'wc_gateway_stripe_process_webhook_payment_error', $order, $notification );
387
+		do_action('wc_gateway_stripe_process_webhook_payment_error', $order, $notification);
388 388
 	}
389 389
 
390 390
 	/**
@@ -395,23 +395,23 @@  discard block
 block discarded – undo
395 395
 	 * @version 4.0.0
396 396
 	 * @param object $notification
397 397
 	 */
398
-	public function process_webhook_source_canceled( $notification ) {
399
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->id );
398
+	public function process_webhook_source_canceled($notification) {
399
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->id);
400 400
 
401
-		if ( ! $order ) {
402
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->id );
401
+		if ( ! $order) {
402
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->id);
403 403
 			return;
404 404
 		}
405 405
 
406 406
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
407 407
 
408
-		if ( 'on-hold' !== $order->get_status() || 'cancelled' !== $order->get_status() ) {
408
+		if ('on-hold' !== $order->get_status() || 'cancelled' !== $order->get_status()) {
409 409
 			return;
410 410
 		}
411 411
 
412
-		$order->update_status( 'cancelled', __( 'This payment has cancelled.', 'woocommerce-gateway-stripe' ) );
412
+		$order->update_status('cancelled', __('This payment has cancelled.', 'woocommerce-gateway-stripe'));
413 413
 
414
-		do_action( 'wc_gateway_stripe_process_webhook_payment_error', $order, $notification );
414
+		do_action('wc_gateway_stripe_process_webhook_payment_error', $order, $notification);
415 415
 	}
416 416
 
417 417
 	/**
@@ -422,42 +422,42 @@  discard block
 block discarded – undo
422 422
 	 * @version 4.0.0
423 423
 	 * @param object $notification
424 424
 	 */
425
-	public function process_webhook_refund( $notification ) {
426
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->id );
425
+	public function process_webhook_refund($notification) {
426
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->id);
427 427
 
428
-		if ( ! $order ) {
429
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->id );
428
+		if ( ! $order) {
429
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->id);
430 430
 			return;
431 431
 		}
432 432
 
433 433
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
434 434
 
435
-		if ( 'stripe' === ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) ) {
436
-			$charge    = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_transaction_id', true ) : $order->get_transaction_id();
437
-			$captured  = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_charge_captured', true ) : $order->get_meta( '_stripe_charge_captured', true );
438
-			$refund_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_refund_id', true ) : $order->get_meta( '_stripe_refund_id', true );
435
+		if ('stripe' === (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method())) {
436
+			$charge    = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_transaction_id', true) : $order->get_transaction_id();
437
+			$captured  = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_charge_captured', true) : $order->get_meta('_stripe_charge_captured', true);
438
+			$refund_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_refund_id', true) : $order->get_meta('_stripe_refund_id', true);
439 439
 
440 440
 			// If the refund ID matches, don't continue to prevent double refunding.
441
-			if ( $notification->data->object->refunds->data[0]->id === $refund_id ) {
441
+			if ($notification->data->object->refunds->data[0]->id === $refund_id) {
442 442
 				return;
443 443
 			}
444 444
 
445 445
 			// Only refund captured charge.
446
-			if ( $charge ) {
447
-				$reason = ( isset( $captured ) && 'yes' === $captured ) ? __( 'Refunded via Stripe Dashboard', 'woocommerce-gateway-stripe' ) : __( 'Pre-Authorization Released via Stripe Dashboard', 'woocommerce-gateway-stripe' );
446
+			if ($charge) {
447
+				$reason = (isset($captured) && 'yes' === $captured) ? __('Refunded via Stripe Dashboard', 'woocommerce-gateway-stripe') : __('Pre-Authorization Released via Stripe Dashboard', 'woocommerce-gateway-stripe');
448 448
 
449 449
 				// Create the refund.
450
-				$refund = wc_create_refund( array(
450
+				$refund = wc_create_refund(array(
451 451
 					'order_id'       => $order_id,
452
-					'amount'         => $this->get_refund_amount( $notification ),
452
+					'amount'         => $this->get_refund_amount($notification),
453 453
 					'reason'         => $reason,
454
-				) );
454
+				));
455 455
 
456
-				if ( is_wp_error( $refund ) ) {
457
-					WC_Stripe_Logger::log( $refund->get_error_message() );
456
+				if (is_wp_error($refund)) {
457
+					WC_Stripe_Logger::log($refund->get_error_message());
458 458
 				}
459 459
 
460
-				$order->add_order_note( $reason );
460
+				$order->add_order_note($reason);
461 461
 			}
462 462
 		}
463 463
 	}
@@ -468,21 +468,21 @@  discard block
 block discarded – undo
468 468
 	 * @since 4.0.6
469 469
 	 * @param object $notification
470 470
 	 */
471
-	public function process_review_opened( $notification ) {
472
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->charge );
471
+	public function process_review_opened($notification) {
472
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->charge);
473 473
 
474
-		if ( ! $order ) {
475
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->charge );
474
+		if ( ! $order) {
475
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->charge);
476 476
 			return;
477 477
 		}
478 478
 
479 479
 		/* translators: 1) The URL to the order. 2) The reason type. */
480
-		$message = sprintf( __( 'A review has been opened for this order. Action is needed. Please go to your <a href="%1$s" title="Stripe Dashboard" target="_blank">Stripe Dashboard</a> to review the issue. Reason: (%2$s)', 'woocommerce-gateway-stripe' ), $this->get_transaction_url( $order ), $notification->data->object->reason );
480
+		$message = sprintf(__('A review has been opened for this order. Action is needed. Please go to your <a href="%1$s" title="Stripe Dashboard" target="_blank">Stripe Dashboard</a> to review the issue. Reason: (%2$s)', 'woocommerce-gateway-stripe'), $this->get_transaction_url($order), $notification->data->object->reason);
481 481
 
482
-		if ( apply_filters( 'wc_stripe_webhook_review_change_order_status', true, $order, $notification ) ) {
483
-			$order->update_status( 'on-hold', $message );
482
+		if (apply_filters('wc_stripe_webhook_review_change_order_status', true, $order, $notification)) {
483
+			$order->update_status('on-hold', $message);
484 484
 		} else {
485
-			$order->add_order_note( $message );
485
+			$order->add_order_note($message);
486 486
 		}
487 487
 	}
488 488
 
@@ -492,25 +492,25 @@  discard block
 block discarded – undo
492 492
 	 * @since 4.0.6
493 493
 	 * @param object $notification
494 494
 	 */
495
-	public function process_review_closed( $notification ) {
496
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->charge );
495
+	public function process_review_closed($notification) {
496
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->charge);
497 497
 
498
-		if ( ! $order ) {
499
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->charge );
498
+		if ( ! $order) {
499
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->charge);
500 500
 			return;
501 501
 		}
502 502
 
503 503
 		/* translators: 1) The reason type. */
504
-		$message = sprintf( __( 'The opened review for this order is now closed. Reason: (%s)', 'woocommerce-gateway-stripe' ), $notification->data->object->reason );
504
+		$message = sprintf(__('The opened review for this order is now closed. Reason: (%s)', 'woocommerce-gateway-stripe'), $notification->data->object->reason);
505 505
 
506
-		if ( 'on-hold' === $order->get_status() ) {
507
-			if ( apply_filters( 'wc_stripe_webhook_review_change_order_status', true, $order, $notification ) ) {
508
-				$order->update_status( 'processing', $message );
506
+		if ('on-hold' === $order->get_status()) {
507
+			if (apply_filters('wc_stripe_webhook_review_change_order_status', true, $order, $notification)) {
508
+				$order->update_status('processing', $message);
509 509
 			} else {
510
-				$order->add_order_note( $message );
510
+				$order->add_order_note($message);
511 511
 			}
512 512
 		} else {
513
-			$order->add_order_note( $message );
513
+			$order->add_order_note($message);
514 514
 		}
515 515
 	}
516 516
 
@@ -521,7 +521,7 @@  discard block
 block discarded – undo
521 521
 	 * @version 4.0.0
522 522
 	 * @param object $notification
523 523
 	 */
524
-	public function is_partial_capture( $notification ) {
524
+	public function is_partial_capture($notification) {
525 525
 		return 0 < $notification->data->object->amount_refunded;
526 526
 	}
527 527
 
@@ -532,11 +532,11 @@  discard block
 block discarded – undo
532 532
 	 * @version 4.0.0
533 533
 	 * @param object $notification
534 534
 	 */
535
-	public function get_refund_amount( $notification ) {
536
-		if ( $this->is_partial_capture( $notification ) ) {
535
+	public function get_refund_amount($notification) {
536
+		if ($this->is_partial_capture($notification)) {
537 537
 			$amount = $notification->data->object->amount_refunded / 100;
538 538
 
539
-			if ( in_array( strtolower( $notification->data->object->currency ), WC_Stripe_Helper::no_decimal_currencies() ) ) {
539
+			if (in_array(strtolower($notification->data->object->currency), WC_Stripe_Helper::no_decimal_currencies())) {
540 540
 				$amount = $notification->data->object->amount_refunded;
541 541
 			}
542 542
 
@@ -553,12 +553,12 @@  discard block
 block discarded – undo
553 553
 	 * @version 4.0.0
554 554
 	 * @param object $notification
555 555
 	 */
556
-	public function get_partial_amount_to_charge( $notification ) {
557
-		if ( $this->is_partial_capture( $notification ) ) {
558
-			$amount = ( $notification->data->object->amount - $notification->data->object->amount_refunded ) / 100;
556
+	public function get_partial_amount_to_charge($notification) {
557
+		if ($this->is_partial_capture($notification)) {
558
+			$amount = ($notification->data->object->amount - $notification->data->object->amount_refunded) / 100;
559 559
 
560
-			if ( in_array( strtolower( $notification->data->object->currency ), WC_Stripe_Helper::no_decimal_currencies() ) ) {
561
-				$amount = ( $notification->data->object->amount - $notification->data->object->amount_refunded );
560
+			if (in_array(strtolower($notification->data->object->currency), WC_Stripe_Helper::no_decimal_currencies())) {
561
+				$amount = ($notification->data->object->amount - $notification->data->object->amount_refunded);
562 562
 			}
563 563
 
564 564
 			return $amount;
@@ -574,44 +574,44 @@  discard block
 block discarded – undo
574 574
 	 * @version 4.0.0
575 575
 	 * @param string $request_body
576 576
 	 */
577
-	public function process_webhook( $request_body ) {
578
-		$notification = json_decode( $request_body );
577
+	public function process_webhook($request_body) {
578
+		$notification = json_decode($request_body);
579 579
 
580
-		switch ( $notification->type ) {
580
+		switch ($notification->type) {
581 581
 			case 'source.chargeable':
582
-				$this->process_webhook_payment( $notification );
582
+				$this->process_webhook_payment($notification);
583 583
 				break;
584 584
 
585 585
 			case 'source.canceled':
586
-				$this->process_webhook_source_canceled( $notification );
586
+				$this->process_webhook_source_canceled($notification);
587 587
 				break;
588 588
 
589 589
 			case 'charge.succeeded':
590
-				$this->process_webhook_charge_succeeded( $notification );
590
+				$this->process_webhook_charge_succeeded($notification);
591 591
 				break;
592 592
 
593 593
 			case 'charge.failed':
594
-				$this->process_webhook_charge_failed( $notification );
594
+				$this->process_webhook_charge_failed($notification);
595 595
 				break;
596 596
 
597 597
 			case 'charge.captured':
598
-				$this->process_webhook_capture( $notification );
598
+				$this->process_webhook_capture($notification);
599 599
 				break;
600 600
 
601 601
 			case 'charge.dispute.created':
602
-				$this->process_webhook_dispute( $notification );
602
+				$this->process_webhook_dispute($notification);
603 603
 				break;
604 604
 
605 605
 			case 'charge.refunded':
606
-				$this->process_webhook_refund( $notification );
606
+				$this->process_webhook_refund($notification);
607 607
 				break;
608 608
 
609 609
 			case 'review.opened':
610
-				$this->process_review_opened( $notification );
610
+				$this->process_review_opened($notification);
611 611
 				break;
612 612
 
613 613
 			case 'review.closed':
614
-				$this->process_review_closed( $notification );
614
+				$this->process_review_closed($notification);
615 615
 				break;
616 616
 
617 617
 		}
Please login to merge, or discard this patch.
includes/class-wc-stripe-order-handler.php 1 patch
Spacing   +97 added lines, -97 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
@@ -23,12 +23,12 @@  discard block
 block discarded – undo
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_on-hold_to_processing', array( $this, 'capture_payment' ) );
28
-		add_action( 'woocommerce_order_status_on-hold_to_completed', array( $this, 'capture_payment' ) );
29
-		add_action( 'woocommerce_order_status_on-hold_to_cancelled', array( $this, 'cancel_payment' ) );
30
-		add_action( 'woocommerce_order_status_on-hold_to_refunded', array( $this, 'cancel_payment' ) );
31
-		add_action( 'wc_ajax_wc_stripe_validate_checkout', array( $this, 'validate_checkout' ) );
26
+		add_action('wp', array($this, 'maybe_process_redirect_order'));
27
+		add_action('woocommerce_order_status_on-hold_to_processing', array($this, 'capture_payment'));
28
+		add_action('woocommerce_order_status_on-hold_to_completed', array($this, 'capture_payment'));
29
+		add_action('woocommerce_order_status_on-hold_to_cancelled', array($this, 'cancel_payment'));
30
+		add_action('woocommerce_order_status_on-hold_to_refunded', array($this, 'cancel_payment'));
31
+		add_action('wc_ajax_wc_stripe_validate_checkout', array($this, 'validate_checkout'));
32 32
 	}
33 33
 
34 34
 	/**
@@ -49,25 +49,25 @@  discard block
 block discarded – undo
49 49
 	 * @since 4.0.0
50 50
 	 * @version 4.0.0
51 51
 	 */
52
-	public function process_redirect_payment( $order_id, $retry = true ) {
52
+	public function process_redirect_payment($order_id, $retry = true) {
53 53
 		try {
54
-			$source = wc_clean( $_GET['source'] );
54
+			$source = wc_clean($_GET['source']);
55 55
 
56
-			if ( empty( $source ) ) {
56
+			if (empty($source)) {
57 57
 				return;
58 58
 			}
59 59
 
60
-			if ( empty( $order_id ) ) {
60
+			if (empty($order_id)) {
61 61
 				return;
62 62
 			}
63 63
 
64
-			$order = wc_get_order( $order_id );
64
+			$order = wc_get_order($order_id);
65 65
 
66
-			if ( ! is_object( $order ) ) {
66
+			if ( ! is_object($order)) {
67 67
 				return;
68 68
 			}
69 69
 
70
-			if ( 'processing' === $order->get_status() || 'completed' === $order->get_status() || 'on-hold' === $order->get_status() ) {
70
+			if ('processing' === $order->get_status() || 'completed' === $order->get_status() || 'on-hold' === $order->get_status()) {
71 71
 				return;
72 72
 			}
73 73
 
@@ -75,129 +75,129 @@  discard block
 block discarded – undo
75 75
 			$response = null;
76 76
 
77 77
 			// This will throw exception if not valid.
78
-			$this->validate_minimum_order_amount( $order );
78
+			$this->validate_minimum_order_amount($order);
79 79
 
80
-			WC_Stripe_Logger::log( "Info: (Redirect) Begin processing payment for order $order_id for the amount of {$order->get_total()}" );
80
+			WC_Stripe_Logger::log("Info: (Redirect) Begin processing payment for order $order_id for the amount of {$order->get_total()}");
81 81
 
82 82
 			/**
83 83
 			 * First check if the source is chargeable at this time. If not,
84 84
 			 * webhook will take care of it later.
85 85
 			 */
86
-			$source_info = WC_Stripe_API::retrieve( 'sources/' . $source );
86
+			$source_info = WC_Stripe_API::retrieve('sources/' . $source);
87 87
 
88
-			if ( ! empty( $source_info->error ) ) {
89
-				throw new WC_Stripe_Exception( print_r( $source_info, true ), $source_info->error->message );
88
+			if ( ! empty($source_info->error)) {
89
+				throw new WC_Stripe_Exception(print_r($source_info, true), $source_info->error->message);
90 90
 			}
91 91
 
92
-			if ( 'failed' === $source_info->status || 'canceled' === $source_info->status ) {
93
-				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' ) );
92
+			if ('failed' === $source_info->status || 'canceled' === $source_info->status) {
93
+				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 94
 			}
95 95
 
96 96
 			// If already consumed, then ignore request.
97
-			if ( 'consumed' === $source_info->status ) {
97
+			if ('consumed' === $source_info->status) {
98 98
 				return;
99 99
 			}
100 100
 
101 101
 			// If not chargeable, then ignore request.
102
-			if ( 'chargeable' !== $source_info->status ) {
102
+			if ('chargeable' !== $source_info->status) {
103 103
 				return;
104 104
 			}
105 105
 
106 106
 			// Prep source object.
107 107
 			$source_object           = new stdClass();
108 108
 			$source_object->token_id = '';
109
-			$source_object->customer = $this->get_stripe_customer_id( $order );
109
+			$source_object->customer = $this->get_stripe_customer_id($order);
110 110
 			$source_object->source   = $source_info->id;
111 111
 
112 112
 			/* If we're doing a retry and source is chargeable, we need to pass
113 113
 			 * a different idempotency key and retry for success.
114 114
 			 */
115
-			if ( 1 < $this->retry_interval && 'chargeable' === $source_info->status ) {
116
-				add_filter( 'wc_stripe_idempotency_key', array( $this, 'change_idempotency_key' ), 10, 2 );
115
+			if (1 < $this->retry_interval && 'chargeable' === $source_info->status) {
116
+				add_filter('wc_stripe_idempotency_key', array($this, 'change_idempotency_key'), 10, 2);
117 117
 			}
118 118
 
119 119
 			// Make the request.
120
-			$response = WC_Stripe_API::request( $this->generate_payment_request( $order, $source_object ), 'charges', 'POST', true );
120
+			$response = WC_Stripe_API::request($this->generate_payment_request($order, $source_object), 'charges', 'POST', true);
121 121
 			$headers  = $response['headers'];
122 122
 			$response = $response['body'];
123 123
 
124
-			if ( ! empty( $response->error ) ) {
124
+			if ( ! empty($response->error)) {
125 125
 				// Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without.
126
-				if ( preg_match( '/No such customer/i', $response->error->message ) && $retry ) {
127
-					if ( WC_Stripe_Helper::is_pre_30() ) {
128
-						delete_user_meta( $order->customer_user, '_stripe_customer_id' );
129
-						delete_post_meta( $order_id, '_stripe_customer_id' );
126
+				if (preg_match('/No such customer/i', $response->error->message) && $retry) {
127
+					if (WC_Stripe_Helper::is_pre_30()) {
128
+						delete_user_meta($order->customer_user, '_stripe_customer_id');
129
+						delete_post_meta($order_id, '_stripe_customer_id');
130 130
 					} else {
131
-						delete_user_meta( $order->get_customer_id(), '_stripe_customer_id' );
132
-						$order->delete_meta_data( '_stripe_customer_id' );
131
+						delete_user_meta($order->get_customer_id(), '_stripe_customer_id');
132
+						$order->delete_meta_data('_stripe_customer_id');
133 133
 						$order->save();
134 134
 					}
135 135
 
136
-					return $this->process_redirect_payment( $order_id, false );
136
+					return $this->process_redirect_payment($order_id, false);
137 137
 
138
-				} elseif ( preg_match( '/No such token/i', $response->error->message ) && $source_object->token_id ) {
138
+				} elseif (preg_match('/No such token/i', $response->error->message) && $source_object->token_id) {
139 139
 					// Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message.
140 140
 
141
-					$wc_token = WC_Payment_Tokens::get( $source_object->token_id );
141
+					$wc_token = WC_Payment_Tokens::get($source_object->token_id);
142 142
 					$wc_token->delete();
143
-					$message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' );
144
-					$order->add_order_note( $message );
145
-					throw new WC_Stripe_Exception( print_r( $response, true ), $message );
143
+					$message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe');
144
+					$order->add_order_note($message);
145
+					throw new WC_Stripe_Exception(print_r($response, true), $message);
146 146
 				}
147 147
 
148 148
 				// We want to retry.
149
-				if ( $this->is_retryable_error( $response->error ) ) {
150
-					if ( $retry ) {
149
+				if ($this->is_retryable_error($response->error)) {
150
+					if ($retry) {
151 151
 						// Don't do anymore retries after this.
152
-						if ( 5 <= $this->retry_interval ) {
153
-							return $this->process_redirect_payment( $order_id, false );
152
+						if (5 <= $this->retry_interval) {
153
+							return $this->process_redirect_payment($order_id, false);
154 154
 						}
155 155
 
156
-						sleep( $this->retry_interval );
156
+						sleep($this->retry_interval);
157 157
 
158 158
 						$this->retry_interval++;
159
-						return $this->process_redirect_payment( $order_id, true );
159
+						return $this->process_redirect_payment($order_id, true);
160 160
 					} else {
161
-						$localized_message = __( 'On going requests error and retries exhausted.', 'woocommerce-gateway-stripe' );
162
-						$order->add_order_note( $localized_message );
163
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
161
+						$localized_message = __('On going requests error and retries exhausted.', 'woocommerce-gateway-stripe');
162
+						$order->add_order_note($localized_message);
163
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
164 164
 					}
165 165
 				}
166 166
 
167 167
 				$localized_messages = WC_Stripe_Helper::get_localized_messages();
168 168
 
169
-				if ( 'card_error' === $response->error->type ) {
170
-					$message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
169
+				if ('card_error' === $response->error->type) {
170
+					$message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message;
171 171
 				} else {
172
-					$message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
172
+					$message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message;
173 173
 				}
174 174
 
175
-				throw new WC_Stripe_Exception( print_r( $response, true ), $message );
175
+				throw new WC_Stripe_Exception(print_r($response, true), $message);
176 176
 			}
177 177
 
178 178
 			// To prevent double processing the order on WC side.
179
-			if ( ! $this->is_original_request( $headers ) ) {
179
+			if ( ! $this->is_original_request($headers)) {
180 180
 				return;
181 181
 			}
182 182
 
183
-			do_action( 'wc_gateway_stripe_process_redirect_payment', $response, $order );
183
+			do_action('wc_gateway_stripe_process_redirect_payment', $response, $order);
184 184
 
185
-			$this->process_response( $response, $order );
185
+			$this->process_response($response, $order);
186 186
 
187
-		} catch ( WC_Stripe_Exception $e ) {
188
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
187
+		} catch (WC_Stripe_Exception $e) {
188
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
189 189
 
190
-			do_action( 'wc_gateway_stripe_process_redirect_payment_error', $e, $order );
190
+			do_action('wc_gateway_stripe_process_redirect_payment_error', $e, $order);
191 191
 
192 192
 			/* translators: error message */
193
-			$order->update_status( 'failed', sprintf( __( 'Stripe payment failed: %s', 'woocommerce-gateway-stripe' ), $e->getLocalizedMessage() ) );
193
+			$order->update_status('failed', sprintf(__('Stripe payment failed: %s', 'woocommerce-gateway-stripe'), $e->getLocalizedMessage()));
194 194
 
195
-			if ( $order->has_status( array( 'pending', 'failed' ) ) ) {
196
-				$this->send_failed_order_email( $order_id );
195
+			if ($order->has_status(array('pending', 'failed'))) {
196
+				$this->send_failed_order_email($order_id);
197 197
 			}
198 198
 
199
-			wc_add_notice( $e->getLocalizedMessage(), 'error' );
200
-			wp_safe_redirect( wc_get_checkout_url() );
199
+			wc_add_notice($e->getLocalizedMessage(), 'error');
200
+			wp_safe_redirect(wc_get_checkout_url());
201 201
 			exit;
202 202
 		}
203 203
 	}
@@ -209,13 +209,13 @@  discard block
 block discarded – undo
209 209
 	 * @version 4.0.0
210 210
 	 */
211 211
 	public function maybe_process_redirect_order() {
212
-		if ( ! is_order_received_page() || empty( $_GET['client_secret'] ) || empty( $_GET['source'] ) ) {
212
+		if ( ! is_order_received_page() || empty($_GET['client_secret']) || empty($_GET['source'])) {
213 213
 			return;
214 214
 		}
215 215
 
216
-		$order_id = wc_clean( $_GET['order_id'] );
216
+		$order_id = wc_clean($_GET['order_id']);
217 217
 
218
-		$this->process_redirect_payment( $order_id );
218
+		$this->process_redirect_payment($order_id);
219 219
 	}
220 220
 
221 221
 	/**
@@ -225,52 +225,52 @@  discard block
 block discarded – undo
225 225
 	 * @version 4.0.0
226 226
 	 * @param  int $order_id
227 227
 	 */
228
-	public function capture_payment( $order_id ) {
229
-		$order = wc_get_order( $order_id );
228
+	public function capture_payment($order_id) {
229
+		$order = wc_get_order($order_id);
230 230
 
231
-		if ( 'stripe' === ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) ) {
232
-			$charge   = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_transaction_id', true ) : $order->get_transaction_id();
233
-			$captured = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_charge_captured', true ) : $order->get_meta( '_stripe_charge_captured', true );
231
+		if ('stripe' === (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method())) {
232
+			$charge   = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_transaction_id', true) : $order->get_transaction_id();
233
+			$captured = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_charge_captured', true) : $order->get_meta('_stripe_charge_captured', true);
234 234
 
235
-			if ( $charge && 'no' === $captured ) {
235
+			if ($charge && 'no' === $captured) {
236 236
 				$order_total = $order->get_total();
237 237
 
238
-				if ( 0 < $order->get_total_refunded() ) {
238
+				if (0 < $order->get_total_refunded()) {
239 239
 					$order_total = $order_total - $order->get_total_refunded();
240 240
 				}
241 241
 
242
-				$result = WC_Stripe_API::request( array(
243
-					'amount'   => WC_Stripe_Helper::get_stripe_amount( $order_total ),
242
+				$result = WC_Stripe_API::request(array(
243
+					'amount'   => WC_Stripe_Helper::get_stripe_amount($order_total),
244 244
 					'expand[]' => 'balance_transaction',
245
-				), 'charges/' . $charge . '/capture' );
245
+				), 'charges/' . $charge . '/capture');
246 246
 
247
-				if ( ! empty( $result->error ) ) {
247
+				if ( ! empty($result->error)) {
248 248
 					/* translators: error message */
249
-					$order->update_status( 'failed', sprintf( __( 'Unable to capture charge! %s', 'woocommerce-gateway-stripe' ), $result->error->message ) );
249
+					$order->update_status('failed', sprintf(__('Unable to capture charge! %s', 'woocommerce-gateway-stripe'), $result->error->message));
250 250
 				} else {
251 251
 					/* translators: transaction id */
252
-					$order->add_order_note( sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $result->id ) );
253
-					WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_charge_captured', 'yes' ) : $order->update_meta_data( '_stripe_charge_captured', 'yes' );
252
+					$order->add_order_note(sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $result->id));
253
+					WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_charge_captured', 'yes') : $order->update_meta_data('_stripe_charge_captured', 'yes');
254 254
 
255 255
 					// Store other data such as fees
256
-					WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $result->id ) : $order->set_transaction_id( $result->id );
256
+					WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $result->id) : $order->set_transaction_id($result->id);
257 257
 
258
-					if ( isset( $result->balance_transaction ) && isset( $result->balance_transaction->fee ) ) {
258
+					if (isset($result->balance_transaction) && isset($result->balance_transaction->fee)) {
259 259
 						// Fees and Net needs to both come from Stripe to be accurate as the returned
260 260
 						// values are in the local currency of the Stripe account, not from WC.
261
-						$fee = ! empty( $result->balance_transaction->fee ) ? WC_Stripe_Helper::format_balance_fee( $result->balance_transaction, 'fee' ) : 0;
262
-						$net = ! empty( $result->balance_transaction->net ) ? WC_Stripe_Helper::format_balance_fee( $result->balance_transaction, 'net' ) : 0;
263
-						WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, parent::META_NAME_FEE, $fee ) : $order->update_meta_data( parent::META_NAME_FEE, $fee );
264
-						WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, parent::META_NAME_NET, $net ) : $order->update_meta_data( parent::META_NAME_NET, $net );
261
+						$fee = ! empty($result->balance_transaction->fee) ? WC_Stripe_Helper::format_balance_fee($result->balance_transaction, 'fee') : 0;
262
+						$net = ! empty($result->balance_transaction->net) ? WC_Stripe_Helper::format_balance_fee($result->balance_transaction, 'net') : 0;
263
+						WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, parent::META_NAME_FEE, $fee) : $order->update_meta_data(parent::META_NAME_FEE, $fee);
264
+						WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, parent::META_NAME_NET, $net) : $order->update_meta_data(parent::META_NAME_NET, $net);
265 265
 					}
266 266
 
267
-					if ( is_callable( array( $order, 'save' ) ) ) {
267
+					if (is_callable(array($order, 'save'))) {
268 268
 						$order->save();
269 269
 					}
270 270
 				}
271 271
 
272 272
 				// This hook fires when admin manually changes order status to processing or completed.
273
-				do_action( 'woocommerce_stripe_process_manual_capture', $order, $result );
273
+				do_action('woocommerce_stripe_process_manual_capture', $order, $result);
274 274
 			}
275 275
 		}
276 276
 	}
@@ -282,14 +282,14 @@  discard block
 block discarded – undo
282 282
 	 * @version 4.0.0
283 283
 	 * @param  int $order_id
284 284
 	 */
285
-	public function cancel_payment( $order_id ) {
286
-		$order = wc_get_order( $order_id );
285
+	public function cancel_payment($order_id) {
286
+		$order = wc_get_order($order_id);
287 287
 
288
-		if ( 'stripe' === ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) ) {
289
-			$this->process_refund( $order_id );
288
+		if ('stripe' === (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method())) {
289
+			$this->process_refund($order_id);
290 290
 
291 291
 			// This hook fires when admin manually changes order status to cancel.
292
-			do_action( 'woocommerce_stripe_process_manual_cancel', $order );
292
+			do_action('woocommerce_stripe_process_manual_cancel', $order);
293 293
 		}
294 294
 	}
295 295
 
@@ -300,8 +300,8 @@  discard block
 block discarded – undo
300 300
 	 * @version 4.0.0
301 301
 	 */
302 302
 	public function validate_checkout() {
303
-		if ( ! wp_verify_nonce( $_POST['nonce'], '_wc_stripe_nonce' ) ) {
304
-			wp_die( __( 'Cheatin&#8217; huh?', 'woocommerce-gateway-stripe' ) );
303
+		if ( ! wp_verify_nonce($_POST['nonce'], '_wc_stripe_nonce')) {
304
+			wp_die(__('Cheatin&#8217; huh?', 'woocommerce-gateway-stripe'));
305 305
 		}
306 306
 
307 307
 		/*
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
 		 * i.e. wp_send_json( 'success' ); // On successful validation.
310 310
 		 * i.e. For errors follow WC https://github.com/woocommerce/woocommerce/blob/master/includes/class-wc-checkout.php#L918-L938
311 311
 		 */
312
-		do_action( 'wc_stripe_validate_modal_checkout_action', $_POST['required_fields'], $_POST['all_fields'] );
312
+		do_action('wc_stripe_validate_modal_checkout_action', $_POST['required_fields'], $_POST['all_fields']);
313 313
 	}
314 314
 }
315 315
 
Please login to merge, or discard this patch.
includes/class-wc-stripe-apple-pay-registration.php 1 patch
Spacing   +46 added lines, -46 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  * @since 4.0.6
6 6
  */
7 7
 
8
-if ( ! defined( 'ABSPATH' ) ) {
8
+if ( ! defined('ABSPATH')) {
9 9
 	exit;
10 10
 }
11 11
 
@@ -60,21 +60,21 @@  discard block
 block discarded – undo
60 60
 	public $apple_pay_verify_notice;
61 61
 
62 62
 	public function __construct() {
63
-		$this->stripe_settings         = get_option( 'woocommerce_stripe_settings', array() );
64
-		$this->stripe_enabled          = $this->get_option( 'enabled' );
65
-		$this->payment_request         = 'yes' === $this->get_option( 'payment_request', 'yes' );
66
-		$this->apple_pay_domain_set    = 'yes' === $this->get_option( 'apple_pay_domain_set', 'no' );
63
+		$this->stripe_settings         = get_option('woocommerce_stripe_settings', array());
64
+		$this->stripe_enabled          = $this->get_option('enabled');
65
+		$this->payment_request         = 'yes' === $this->get_option('payment_request', 'yes');
66
+		$this->apple_pay_domain_set    = 'yes' === $this->get_option('apple_pay_domain_set', 'no');
67 67
 		$this->apple_pay_verify_notice = '';
68
-		$this->testmode                = 'yes' === $this->get_option( 'testmode', 'no' );
69
-		$this->secret_key              = $this->testmode ? $this->get_option( 'test_secret_key' ) : $this->get_option( 'secret_key' );
68
+		$this->testmode                = 'yes' === $this->get_option('testmode', 'no');
69
+		$this->secret_key              = $this->testmode ? $this->get_option('test_secret_key') : $this->get_option('secret_key');
70 70
 
71
-		if ( empty( $this->stripe_settings ) ) {
71
+		if (empty($this->stripe_settings)) {
72 72
 			return;
73 73
 		}
74 74
 
75 75
 		$this->init_apple_pay();
76 76
 
77
-		add_action( 'admin_notices', array( $this, 'admin_notices' ) );
77
+		add_action('admin_notices', array($this, 'admin_notices'));
78 78
 	}
79 79
 
80 80
 	/**
@@ -85,13 +85,13 @@  discard block
 block discarded – undo
85 85
 	 * @param string default
86 86
 	 * @return string $setting_value
87 87
 	 */
88
-	public function get_option( $setting = '', $default = '' ) {
89
-		if ( empty( $this->stripe_settings ) ) {
88
+	public function get_option($setting = '', $default = '') {
89
+		if (empty($this->stripe_settings)) {
90 90
 			return $default;
91 91
 		}
92 92
 
93
-		if ( ! empty( $this->stripe_settings[ $setting ] ) ) {
94
-			return $this->stripe_settings[ $setting ];
93
+		if ( ! empty($this->stripe_settings[$setting])) {
94
+			return $this->stripe_settings[$setting];
95 95
 		}
96 96
 
97 97
 		return $default;
@@ -106,9 +106,9 @@  discard block
 block discarded – undo
106 106
 	public function init_apple_pay() {
107 107
 		if (
108 108
 			is_admin() &&
109
-			isset( $_GET['page'] ) && 'wc-settings' === $_GET['page'] &&
110
-			isset( $_GET['tab'] ) && 'checkout' === $_GET['tab'] &&
111
-			isset( $_GET['section'] ) && 'stripe' === $_GET['section'] &&
109
+			isset($_GET['page']) && 'wc-settings' === $_GET['page'] &&
110
+			isset($_GET['tab']) && 'checkout' === $_GET['tab'] &&
111
+			isset($_GET['section']) && 'stripe' === $_GET['section'] &&
112 112
 			$this->payment_request
113 113
 		) {
114 114
 			$this->process_apple_pay_verification();
@@ -122,9 +122,9 @@  discard block
 block discarded – undo
122 122
 	 * @version 3.1.0
123 123
 	 * @param string $secret_key
124 124
 	 */
125
-	private function register_apple_pay_domain( $secret_key = '' ) {
126
-		if ( empty( $secret_key ) ) {
127
-			throw new Exception( __( 'Unable to verify domain - missing secret key.', 'woocommerce-gateway-stripe' ) );
125
+	private function register_apple_pay_domain($secret_key = '') {
126
+		if (empty($secret_key)) {
127
+			throw new Exception(__('Unable to verify domain - missing secret key.', 'woocommerce-gateway-stripe'));
128 128
 		}
129 129
 
130 130
 		$endpoint = 'https://api.stripe.com/v1/apple_pay/domains';
@@ -138,23 +138,23 @@  discard block
 block discarded – undo
138 138
 			'Authorization' => 'Bearer ' . $secret_key,
139 139
 		);
140 140
 
141
-		$response = wp_remote_post( $endpoint, array(
141
+		$response = wp_remote_post($endpoint, array(
142 142
 			'headers' => $headers,
143
-			'body'    => http_build_query( $data ),
144
-		) );
143
+			'body'    => http_build_query($data),
144
+		));
145 145
 
146
-		if ( is_wp_error( $response ) ) {
146
+		if (is_wp_error($response)) {
147 147
 			/* translators: error message */
148
-			throw new Exception( sprintf( __( 'Unable to verify domain - %s', 'woocommerce-gateway-stripe' ), $response->get_error_message() ) );
148
+			throw new Exception(sprintf(__('Unable to verify domain - %s', 'woocommerce-gateway-stripe'), $response->get_error_message()));
149 149
 		}
150 150
 
151
-		if ( 200 !== $response['response']['code'] ) {
152
-			$parsed_response = json_decode( $response['body'] );
151
+		if (200 !== $response['response']['code']) {
152
+			$parsed_response = json_decode($response['body']);
153 153
 
154 154
 			$this->apple_pay_verify_notice = $parsed_response->error->message;
155 155
 
156 156
 			/* translators: error message */
157
-			throw new Exception( sprintf( __( 'Unable to verify domain - %s', 'woocommerce-gateway-stripe' ), $parsed_response->error->message ) );
157
+			throw new Exception(sprintf(__('Unable to verify domain - %s', 'woocommerce-gateway-stripe'), $parsed_response->error->message));
158 158
 		}
159 159
 	}
160 160
 
@@ -166,45 +166,45 @@  discard block
 block discarded – undo
166 166
 	 */
167 167
 	public function process_apple_pay_verification() {
168 168
 		try {
169
-			$path     = untrailingslashit( $_SERVER['DOCUMENT_ROOT'] );
169
+			$path     = untrailingslashit($_SERVER['DOCUMENT_ROOT']);
170 170
 			$dir      = '.well-known';
171 171
 			$file     = 'apple-developer-merchantid-domain-association';
172 172
 			$fullpath = $path . '/' . $dir . '/' . $file;
173 173
 
174
-			if ( $this->apple_pay_domain_set && file_exists( $fullpath ) ) {
174
+			if ($this->apple_pay_domain_set && file_exists($fullpath)) {
175 175
 				return;
176 176
 			}
177 177
 
178
-			if ( ! file_exists( $path . '/' . $dir ) ) {
179
-				if ( ! @mkdir( $path . '/' . $dir, 0755 ) ) { // @codingStandardsIgnoreLine
180
-					throw new Exception( __( 'Unable to create domain association folder to domain root.', 'woocommerce-gateway-stripe' ) );
178
+			if ( ! file_exists($path . '/' . $dir)) {
179
+				if ( ! @mkdir($path . '/' . $dir, 0755)) { // @codingStandardsIgnoreLine
180
+					throw new Exception(__('Unable to create domain association folder to domain root.', 'woocommerce-gateway-stripe'));
181 181
 				}
182 182
 			}
183 183
 
184
-			if ( ! file_exists( $fullpath ) ) {
185
-				if ( ! @copy( WC_STRIPE_PLUGIN_PATH . '/' . $file, $fullpath ) ) { // @codingStandardsIgnoreLine
186
-					throw new Exception( __( 'Unable to copy domain association file to domain root.', 'woocommerce-gateway-stripe' ) );
184
+			if ( ! file_exists($fullpath)) {
185
+				if ( ! @copy(WC_STRIPE_PLUGIN_PATH . '/' . $file, $fullpath)) { // @codingStandardsIgnoreLine
186
+					throw new Exception(__('Unable to copy domain association file to domain root.', 'woocommerce-gateway-stripe'));
187 187
 				}
188 188
 			}
189 189
 
190 190
 			// At this point then the domain association folder and file should be available.
191 191
 			// Proceed to verify/and or verify again.
192
-			$this->register_apple_pay_domain( $this->secret_key );
192
+			$this->register_apple_pay_domain($this->secret_key);
193 193
 
194 194
 			// No errors to this point, verification success!
195 195
 			$this->stripe_settings['apple_pay_domain_set'] = 'yes';
196 196
 			$this->apple_pay_domain_set = true;
197 197
 
198
-			update_option( 'woocommerce_stripe_settings', $this->stripe_settings );
198
+			update_option('woocommerce_stripe_settings', $this->stripe_settings);
199 199
 
200
-			WC_Stripe_Logger::log( 'Your domain has been verified with Apple Pay!' );
200
+			WC_Stripe_Logger::log('Your domain has been verified with Apple Pay!');
201 201
 
202
-		} catch ( Exception $e ) {
202
+		} catch (Exception $e) {
203 203
 			$this->stripe_settings['apple_pay_domain_set'] = 'no';
204 204
 
205
-			update_option( 'woocommerce_stripe_settings', $this->stripe_settings );
205
+			update_option('woocommerce_stripe_settings', $this->stripe_settings);
206 206
 
207
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
207
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
208 208
 		}
209 209
 	}
210 210
 
@@ -214,11 +214,11 @@  discard block
 block discarded – undo
214 214
 	 * @since 4.0.6
215 215
 	 */
216 216
 	public function admin_notices() {
217
-		if ( ! $this->stripe_enabled ) {
217
+		if ( ! $this->stripe_enabled) {
218 218
 			return;
219 219
 		}
220 220
 
221
-		if ( $this->payment_request && ! empty( $this->apple_pay_verify_notice ) ) {
221
+		if ($this->payment_request && ! empty($this->apple_pay_verify_notice)) {
222 222
 			$allowed_html = array(
223 223
 				'a' => array(
224 224
 					'href' => array(),
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
 				),
227 227
 			);
228 228
 
229
-			echo '<div class="error stripe-apple-pay-message"><p>' . wp_kses( make_clickable( $this->apple_pay_verify_notice ), $allowed_html ) . '</p></div>';
229
+			echo '<div class="error stripe-apple-pay-message"><p>' . wp_kses(make_clickable($this->apple_pay_verify_notice), $allowed_html) . '</p></div>';
230 230
 		}
231 231
 
232 232
 		/**
@@ -234,9 +234,9 @@  discard block
 block discarded – undo
234 234
 		 * when setting screen is displayed. So if domain verification is not set,
235 235
 		 * something went wrong so lets notify user.
236 236
 		 */
237
-		if ( ! empty( $this->secret_key ) && $this->payment_request && ! $this->apple_pay_domain_set ) {
237
+		if ( ! empty($this->secret_key) && $this->payment_request && ! $this->apple_pay_domain_set) {
238 238
 			/* translators: 1) HTML anchor open tag 2) HTML anchor closing tag */
239
-			echo '<div class="error stripe-apple-pay-message"><p>' . sprintf( __( 'Apple Pay domain verification failed. Please check the %1$slog%2$s to see the issue. (Logging must be enabled to see recorded logs)', 'woocommerce-gateway-stripe' ), '<a href="' . admin_url( 'admin.php?page=wc-status&tab=logs' ) . '">', '</a>' ) . '</p></div>';
239
+			echo '<div class="error stripe-apple-pay-message"><p>' . sprintf(__('Apple Pay domain verification failed. Please check the %1$slog%2$s to see the issue. (Logging must be enabled to see recorded logs)', 'woocommerce-gateway-stripe'), '<a href="' . admin_url('admin.php?page=wc-status&tab=logs') . '">', '</a>') . '</p></div>';
240 240
 		}
241 241
 	}
242 242
 }
Please login to merge, or discard this patch.
includes/admin/stripe-settings.php 1 patch
Spacing   +67 added lines, -67 removed lines patch added patch discarded remove patch
@@ -1,191 +1,191 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
6 6
 $webhook_url = WC_Stripe_Helper::get_webhook_url();
7 7
 
8
-return apply_filters( 'wc_stripe_settings',
8
+return apply_filters('wc_stripe_settings',
9 9
 	array(
10 10
 		'enabled' => array(
11
-			'title'       => __( 'Enable/Disable', 'woocommerce-gateway-stripe' ),
12
-			'label'       => __( 'Enable Stripe', 'woocommerce-gateway-stripe' ),
11
+			'title'       => __('Enable/Disable', 'woocommerce-gateway-stripe'),
12
+			'label'       => __('Enable Stripe', 'woocommerce-gateway-stripe'),
13 13
 			'type'        => 'checkbox',
14 14
 			'description' => '',
15 15
 			'default'     => 'no',
16 16
 		),
17 17
 		'title' => array(
18
-			'title'       => __( 'Title', 'woocommerce-gateway-stripe' ),
18
+			'title'       => __('Title', 'woocommerce-gateway-stripe'),
19 19
 			'type'        => 'text',
20
-			'description' => __( 'This controls the title which the user sees during checkout.', 'woocommerce-gateway-stripe' ),
21
-			'default'     => __( 'Credit Card (Stripe)', 'woocommerce-gateway-stripe' ),
20
+			'description' => __('This controls the title which the user sees during checkout.', 'woocommerce-gateway-stripe'),
21
+			'default'     => __('Credit Card (Stripe)', 'woocommerce-gateway-stripe'),
22 22
 			'desc_tip'    => true,
23 23
 		),
24 24
 		'description' => array(
25
-			'title'       => __( 'Description', 'woocommerce-gateway-stripe' ),
25
+			'title'       => __('Description', 'woocommerce-gateway-stripe'),
26 26
 			'type'        => 'text',
27
-			'description' => __( 'This controls the description which the user sees during checkout.', 'woocommerce-gateway-stripe' ),
28
-			'default'     => __( 'Pay with your credit card via Stripe.', 'woocommerce-gateway-stripe' ),
27
+			'description' => __('This controls the description which the user sees during checkout.', 'woocommerce-gateway-stripe'),
28
+			'default'     => __('Pay with your credit card via Stripe.', 'woocommerce-gateway-stripe'),
29 29
 			'desc_tip'    => true,
30 30
 		),
31 31
 		'webhook' => array(
32
-			'title'       => __( 'Webhook Endpoints', 'woocommerce-gateway-stripe' ),
32
+			'title'       => __('Webhook Endpoints', 'woocommerce-gateway-stripe'),
33 33
 			'type'        => 'title',
34 34
 			/* translators: webhook URL */
35
-			'description' => sprintf( __( 'You must add the webhook endpoint <strong style="background-color:#ddd;">&nbsp;&nbsp;%s&nbsp;&nbsp;</strong> to your Stripe Account Settings <a href="https://dashboard.stripe.com/account/webhooks" target="_blank">Here</a> so you can receive notifications on the charge statuses.', 'woocommerce-gateway-stripe' ), $webhook_url ),
35
+			'description' => sprintf(__('You must add the webhook endpoint <strong style="background-color:#ddd;">&nbsp;&nbsp;%s&nbsp;&nbsp;</strong> to your Stripe Account Settings <a href="https://dashboard.stripe.com/account/webhooks" target="_blank">Here</a> so you can receive notifications on the charge statuses.', 'woocommerce-gateway-stripe'), $webhook_url),
36 36
 		),
37 37
 		'testmode' => array(
38
-			'title'       => __( 'Test mode', 'woocommerce-gateway-stripe' ),
39
-			'label'       => __( 'Enable Test Mode', 'woocommerce-gateway-stripe' ),
38
+			'title'       => __('Test mode', 'woocommerce-gateway-stripe'),
39
+			'label'       => __('Enable Test Mode', 'woocommerce-gateway-stripe'),
40 40
 			'type'        => 'checkbox',
41
-			'description' => __( 'Place the payment gateway in test mode using test API keys.', 'woocommerce-gateway-stripe' ),
41
+			'description' => __('Place the payment gateway in test mode using test API keys.', 'woocommerce-gateway-stripe'),
42 42
 			'default'     => 'yes',
43 43
 			'desc_tip'    => true,
44 44
 		),
45 45
 		'test_publishable_key' => array(
46
-			'title'       => __( 'Test Publishable Key', 'woocommerce-gateway-stripe' ),
46
+			'title'       => __('Test Publishable Key', 'woocommerce-gateway-stripe'),
47 47
 			'type'        => 'password',
48
-			'description' => __( 'Get your API keys from your stripe account.', 'woocommerce-gateway-stripe' ),
48
+			'description' => __('Get your API keys from your stripe account.', 'woocommerce-gateway-stripe'),
49 49
 			'default'     => '',
50 50
 			'desc_tip'    => true,
51 51
 		),
52 52
 		'test_secret_key' => array(
53
-			'title'       => __( 'Test Secret Key', 'woocommerce-gateway-stripe' ),
53
+			'title'       => __('Test Secret Key', 'woocommerce-gateway-stripe'),
54 54
 			'type'        => 'password',
55
-			'description' => __( 'Get your API keys from your stripe account.', 'woocommerce-gateway-stripe' ),
55
+			'description' => __('Get your API keys from your stripe account.', 'woocommerce-gateway-stripe'),
56 56
 			'default'     => '',
57 57
 			'desc_tip'    => true,
58 58
 		),
59 59
 		'publishable_key' => array(
60
-			'title'       => __( 'Live Publishable Key', 'woocommerce-gateway-stripe' ),
60
+			'title'       => __('Live Publishable Key', 'woocommerce-gateway-stripe'),
61 61
 			'type'        => 'password',
62
-			'description' => __( 'Get your API keys from your stripe account.', 'woocommerce-gateway-stripe' ),
62
+			'description' => __('Get your API keys from your stripe account.', 'woocommerce-gateway-stripe'),
63 63
 			'default'     => '',
64 64
 			'desc_tip'    => true,
65 65
 		),
66 66
 		'secret_key' => array(
67
-			'title'       => __( 'Live Secret Key', 'woocommerce-gateway-stripe' ),
67
+			'title'       => __('Live Secret Key', 'woocommerce-gateway-stripe'),
68 68
 			'type'        => 'password',
69
-			'description' => __( 'Get your API keys from your stripe account.', 'woocommerce-gateway-stripe' ),
69
+			'description' => __('Get your API keys from your stripe account.', 'woocommerce-gateway-stripe'),
70 70
 			'default'     => '',
71 71
 			'desc_tip'    => true,
72 72
 		),
73 73
 		'inline_cc_form' => array(
74
-			'title'       => __( 'Inline Credit Card Form', 'woocommerce-gateway-stripe' ),
74
+			'title'       => __('Inline Credit Card Form', 'woocommerce-gateway-stripe'),
75 75
 			'type'        => 'checkbox',
76
-			'description' => __( 'Choose the style you want to show for your credit card form. When unchecked, the credit card form will display separate credit card number field, expiry date field and cvc field.', 'woocommerce-gateway-stripe' ),
76
+			'description' => __('Choose the style you want to show for your credit card form. When unchecked, the credit card form will display separate credit card number field, expiry date field and cvc field.', 'woocommerce-gateway-stripe'),
77 77
 			'default'     => 'no',
78 78
 			'desc_tip'    => true,
79 79
 		),
80 80
 		'statement_descriptor' => array(
81
-			'title'       => __( 'Statement Descriptor', 'woocommerce-gateway-stripe' ),
81
+			'title'       => __('Statement Descriptor', 'woocommerce-gateway-stripe'),
82 82
 			'type'        => 'text',
83
-			'description' => __( 'This may be up to 22 characters. The statement description must contain at least one letter, may not include ><"\' characters, and will appear on your customer\'s statement in capital letters.', 'woocommerce-gateway-stripe' ),
83
+			'description' => __('This may be up to 22 characters. The statement description must contain at least one letter, may not include ><"\' characters, and will appear on your customer\'s statement in capital letters.', 'woocommerce-gateway-stripe'),
84 84
 			'default'     => '',
85 85
 			'desc_tip'    => true,
86 86
 		),
87 87
 		'capture' => array(
88
-			'title'       => __( 'Capture', 'woocommerce-gateway-stripe' ),
89
-			'label'       => __( 'Capture charge immediately', 'woocommerce-gateway-stripe' ),
88
+			'title'       => __('Capture', 'woocommerce-gateway-stripe'),
89
+			'label'       => __('Capture charge immediately', 'woocommerce-gateway-stripe'),
90 90
 			'type'        => 'checkbox',
91
-			'description' => __( 'Whether or not to immediately capture the charge. When unchecked, the charge issues an authorization and will need to be captured later. Uncaptured charges expire in 7 days.', 'woocommerce-gateway-stripe' ),
91
+			'description' => __('Whether or not to immediately capture the charge. When unchecked, the charge issues an authorization and will need to be captured later. Uncaptured charges expire in 7 days.', 'woocommerce-gateway-stripe'),
92 92
 			'default'     => 'yes',
93 93
 			'desc_tip'    => true,
94 94
 		),
95 95
 		'three_d_secure' => array(
96
-			'title'       => __( '3D Secure', 'woocommerce-gateway-stripe' ),
97
-			'label'       => __( 'Require 3D Secure when applicable', 'woocommerce-gateway-stripe' ),
96
+			'title'       => __('3D Secure', 'woocommerce-gateway-stripe'),
97
+			'label'       => __('Require 3D Secure when applicable', 'woocommerce-gateway-stripe'),
98 98
 			'type'        => 'checkbox',
99
-			'description' => __( 'Some payment methods have 3D Secure feature. This is an extra security layer for your store. Choose how to handle payments when 3D Secure is optional. Enabling would require customers to use 3D Secure when optional.', 'woocommerce-gateway-stripe' ),
99
+			'description' => __('Some payment methods have 3D Secure feature. This is an extra security layer for your store. Choose how to handle payments when 3D Secure is optional. Enabling would require customers to use 3D Secure when optional.', 'woocommerce-gateway-stripe'),
100 100
 			'default'     => 'no',
101 101
 			'desc_tip'    => true,
102 102
 		),
103 103
 		'stripe_checkout' => array(
104
-			'title'       => __( 'Stripe Checkout', 'woocommerce-gateway-stripe' ),
105
-			'label'       => __( 'Enable Stripe Checkout', 'woocommerce-gateway-stripe' ),
104
+			'title'       => __('Stripe Checkout', 'woocommerce-gateway-stripe'),
105
+			'label'       => __('Enable Stripe Checkout', 'woocommerce-gateway-stripe'),
106 106
 			'type'        => 'checkbox',
107
-			'description' => __( 'If enabled, this option shows a "pay" button and modal credit card form on the checkout, instead of credit card fields directly on the page.', 'woocommerce-gateway-stripe' ),
107
+			'description' => __('If enabled, this option shows a "pay" button and modal credit card form on the checkout, instead of credit card fields directly on the page.', 'woocommerce-gateway-stripe'),
108 108
 			'default'     => 'no',
109 109
 			'desc_tip'    => true,
110 110
 		),
111 111
 		'stripe_bitcoin' => array(
112
-			'title'       => __( 'Bitcoin Currency', 'woocommerce-gateway-stripe' ),
113
-			'label'       => __( 'Enable Bitcoin Currency', 'woocommerce-gateway-stripe' ),
112
+			'title'       => __('Bitcoin Currency', 'woocommerce-gateway-stripe'),
113
+			'label'       => __('Enable Bitcoin Currency', 'woocommerce-gateway-stripe'),
114 114
 			'type'        => 'checkbox',
115
-			'description' => __( 'If enabled, an option to accept bitcoin will show on the checkout modal. Note: Stripe Checkout needs to be enabled and store currency must be set to USD.', 'woocommerce-gateway-stripe' ),
115
+			'description' => __('If enabled, an option to accept bitcoin will show on the checkout modal. Note: Stripe Checkout needs to be enabled and store currency must be set to USD.', 'woocommerce-gateway-stripe'),
116 116
 			'default'     => 'no',
117 117
 			'desc_tip'    => true,
118 118
 		),
119 119
 		'stripe_checkout_image' => array(
120
-			'title'       => __( 'Stripe Checkout Image', 'woocommerce-gateway-stripe' ),
121
-			'description' => __( 'Optionally enter the URL to a 128x128px image of your brand or product. e.g. <code>https://yoursite.com/wp-content/uploads/2013/09/yourimage.jpg</code>', 'woocommerce-gateway-stripe' ),
120
+			'title'       => __('Stripe Checkout Image', 'woocommerce-gateway-stripe'),
121
+			'description' => __('Optionally enter the URL to a 128x128px image of your brand or product. e.g. <code>https://yoursite.com/wp-content/uploads/2013/09/yourimage.jpg</code>', 'woocommerce-gateway-stripe'),
122 122
 			'type'        => 'text',
123 123
 			'default'     => '',
124 124
 			'desc_tip'    => true,
125 125
 		),
126 126
 		'stripe_checkout_description' => array(
127
-			'title'       => __( 'Stripe Checkout Description', 'woocommerce-gateway-stripe' ),
127
+			'title'       => __('Stripe Checkout Description', 'woocommerce-gateway-stripe'),
128 128
 			'type'        => 'text',
129
-			'description' => __( 'Shows a description of your store on Stripe Modal Checkout.', 'woocommerce-gateway-stripe' ),
129
+			'description' => __('Shows a description of your store on Stripe Modal Checkout.', 'woocommerce-gateway-stripe'),
130 130
 			'default'     => '',
131 131
 			'desc_tip'    => true,
132 132
 		),
133 133
 		'payment_request' => array(
134
-			'title'       => __( 'Payment Request Buttons', 'woocommerce-gateway-stripe' ),
134
+			'title'       => __('Payment Request Buttons', 'woocommerce-gateway-stripe'),
135 135
 			/* translators: 1) br tag 2) opening anchor tag 3) closing anchor tag */
136
-			'label'       => sprintf( __( 'Enable Payment Request Buttons. (Apple Pay/Chrome Payment Request API) %1$sBy using Apple Pay, you agree to %2$s and %3$s\'s terms of service.', 'woocommerce-gateway-stripe' ), '<br />', '<a href="https://stripe.com/apple-pay/legal" target="_blank">Stripe</a>', '<a href="https://developer.apple.com/apple-pay/acceptable-use-guidelines-for-websites/" target="_blank">Apple</a>' ),
136
+			'label'       => sprintf(__('Enable Payment Request Buttons. (Apple Pay/Chrome Payment Request API) %1$sBy using Apple Pay, you agree to %2$s and %3$s\'s terms of service.', 'woocommerce-gateway-stripe'), '<br />', '<a href="https://stripe.com/apple-pay/legal" target="_blank">Stripe</a>', '<a href="https://developer.apple.com/apple-pay/acceptable-use-guidelines-for-websites/" target="_blank">Apple</a>'),
137 137
 			'type'        => 'checkbox',
138
-			'description' => __( 'If enabled, users will be able to pay using Apple Pay or Chrome Payment Request if supported by the browser.', 'woocommerce-gateway-stripe' ),
138
+			'description' => __('If enabled, users will be able to pay using Apple Pay or Chrome Payment Request if supported by the browser.', 'woocommerce-gateway-stripe'),
139 139
 			'default'     => 'yes',
140 140
 			'desc_tip'    => true,
141 141
 		),
142 142
 		'payment_request_button_type' => array(
143
-			'title'       => __( 'Payment Request Button Type', 'woocommerce-gateway-stripe' ),
144
-			'label'       => __( 'Button Type', 'woocommerce-gateway-stripe' ),
143
+			'title'       => __('Payment Request Button Type', 'woocommerce-gateway-stripe'),
144
+			'label'       => __('Button Type', 'woocommerce-gateway-stripe'),
145 145
 			'type'        => 'select',
146
-			'description' => __( 'Select the button type you would like to show.', 'woocommerce-gateway-stripe' ),
146
+			'description' => __('Select the button type you would like to show.', 'woocommerce-gateway-stripe'),
147 147
 			'default'     => 'buy',
148 148
 			'desc_tip'    => true,
149 149
 			'options'     => array(
150
-				'default' => __( 'Default', 'woocommerce-gateway-stripe' ),
151
-				'buy'     => __( 'Buy', 'woocommerce-gateway-stripe' ),
152
-				'donate'  => __( 'Donate', 'woocommerce-gateway-stripe' ),
150
+				'default' => __('Default', 'woocommerce-gateway-stripe'),
151
+				'buy'     => __('Buy', 'woocommerce-gateway-stripe'),
152
+				'donate'  => __('Donate', 'woocommerce-gateway-stripe'),
153 153
 			),
154 154
 		),
155 155
 		'payment_request_button_theme' => array(
156
-			'title'       => __( 'Payment Request Button Theme', 'woocommerce-gateway-stripe' ),
157
-			'label'       => __( 'Button Theme', 'woocommerce-gateway-stripe' ),
156
+			'title'       => __('Payment Request Button Theme', 'woocommerce-gateway-stripe'),
157
+			'label'       => __('Button Theme', 'woocommerce-gateway-stripe'),
158 158
 			'type'        => 'select',
159
-			'description' => __( 'Select the button theme you would like to show.', 'woocommerce-gateway-stripe' ),
159
+			'description' => __('Select the button theme you would like to show.', 'woocommerce-gateway-stripe'),
160 160
 			'default'     => 'dark',
161 161
 			'desc_tip'    => true,
162 162
 			'options'     => array(
163
-				'dark'          => __( 'Dark', 'woocommerce-gateway-stripe' ),
164
-				'light'         => __( 'Light', 'woocommerce-gateway-stripe' ),
165
-				'light-outline' => __( 'Light-Outline', 'woocommerce-gateway-stripe' ),
163
+				'dark'          => __('Dark', 'woocommerce-gateway-stripe'),
164
+				'light'         => __('Light', 'woocommerce-gateway-stripe'),
165
+				'light-outline' => __('Light-Outline', 'woocommerce-gateway-stripe'),
166 166
 			),
167 167
 		),
168 168
 		'payment_request_button_height' => array(
169
-			'title'       => __( 'Payment Request Button Height', 'woocommerce-gateway-stripe' ),
170
-			'label'       => __( 'Button Height', 'woocommerce-gateway-stripe' ),
169
+			'title'       => __('Payment Request Button Height', 'woocommerce-gateway-stripe'),
170
+			'label'       => __('Button Height', 'woocommerce-gateway-stripe'),
171 171
 			'type'        => 'text',
172
-			'description' => __( 'Enter the height you would like the button to be in pixels. Width will always be 100%.', 'woocommerce-gateway-stripe' ),
172
+			'description' => __('Enter the height you would like the button to be in pixels. Width will always be 100%.', 'woocommerce-gateway-stripe'),
173 173
 			'default'     => '44',
174 174
 			'desc_tip'    => true,
175 175
 		),
176 176
 		'saved_cards' => array(
177
-			'title'       => __( 'Saved Cards', 'woocommerce-gateway-stripe' ),
178
-			'label'       => __( 'Enable Payment via Saved Cards', 'woocommerce-gateway-stripe' ),
177
+			'title'       => __('Saved Cards', 'woocommerce-gateway-stripe'),
178
+			'label'       => __('Enable Payment via Saved Cards', 'woocommerce-gateway-stripe'),
179 179
 			'type'        => 'checkbox',
180
-			'description' => __( 'If enabled, users will be able to pay with a saved card during checkout. Card details are saved on Stripe servers, not on your store.', 'woocommerce-gateway-stripe' ),
180
+			'description' => __('If enabled, users will be able to pay with a saved card during checkout. Card details are saved on Stripe servers, not on your store.', 'woocommerce-gateway-stripe'),
181 181
 			'default'     => 'no',
182 182
 			'desc_tip'    => true,
183 183
 		),
184 184
 		'logging' => array(
185
-			'title'       => __( 'Logging', 'woocommerce-gateway-stripe' ),
186
-			'label'       => __( 'Log debug messages', 'woocommerce-gateway-stripe' ),
185
+			'title'       => __('Logging', 'woocommerce-gateway-stripe'),
186
+			'label'       => __('Log debug messages', 'woocommerce-gateway-stripe'),
187 187
 			'type'        => 'checkbox',
188
-			'description' => __( 'Save debug messages to the WooCommerce System Status log.', 'woocommerce-gateway-stripe' ),
188
+			'description' => __('Save debug messages to the WooCommerce System Status log.', 'woocommerce-gateway-stripe'),
189 189
 			'default'     => 'no',
190 190
 			'desc_tip'    => true,
191 191
 		),
Please login to merge, or discard this patch.
includes/class-wc-gateway-stripe.php 1 patch
Spacing   +179 added lines, -179 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
@@ -113,9 +113,9 @@  discard block
 block discarded – undo
113 113
 	public function __construct() {
114 114
 		$this->retry_interval       = 1;
115 115
 		$this->id                   = 'stripe';
116
-		$this->method_title         = __( 'Stripe', 'woocommerce-gateway-stripe' );
116
+		$this->method_title         = __('Stripe', 'woocommerce-gateway-stripe');
117 117
 		/* translators: 1) link to Stripe register page 2) link to Stripe api keys page */
118
-		$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' );
118
+		$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');
119 119
 		$this->has_fields           = true;
120 120
 		$this->supports             = array(
121 121
 			'products',
@@ -142,33 +142,33 @@  discard block
 block discarded – undo
142 142
 		$this->init_settings();
143 143
 
144 144
 		// Get setting values.
145
-		$this->title                       = $this->get_option( 'title' );
146
-		$this->description                 = $this->get_option( 'description' );
147
-		$this->enabled                     = $this->get_option( 'enabled' );
148
-		$this->testmode                    = 'yes' === $this->get_option( 'testmode' );
149
-		$this->inline_cc_form              = 'yes' === $this->get_option( 'inline_cc_form' );
150
-		$this->capture                     = 'yes' === $this->get_option( 'capture', 'yes' );
151
-		$this->statement_descriptor        = WC_Stripe_Helper::clean_statement_descriptor( $this->get_option( 'statement_descriptor' ) );
152
-		$this->three_d_secure              = 'yes' === $this->get_option( 'three_d_secure' );
153
-		$this->stripe_checkout             = 'yes' === $this->get_option( 'stripe_checkout' );
154
-		$this->stripe_checkout_image       = $this->get_option( 'stripe_checkout_image', '' );
155
-		$this->stripe_checkout_description = $this->get_option( 'stripe_checkout_description' );
156
-		$this->saved_cards                 = 'yes' === $this->get_option( 'saved_cards' );
157
-		$this->secret_key                  = $this->testmode ? $this->get_option( 'test_secret_key' ) : $this->get_option( 'secret_key' );
158
-		$this->publishable_key             = $this->testmode ? $this->get_option( 'test_publishable_key' ) : $this->get_option( 'publishable_key' );
159
-		$this->bitcoin                     = 'USD' === strtoupper( get_woocommerce_currency() ) && 'yes' === $this->get_option( 'stripe_bitcoin' );
160
-		$this->payment_request             = 'yes' === $this->get_option( 'payment_request', 'yes' );
161
-
162
-		if ( $this->stripe_checkout ) {
163
-			$this->order_button_text = __( 'Continue to payment', 'woocommerce-gateway-stripe' );
145
+		$this->title                       = $this->get_option('title');
146
+		$this->description                 = $this->get_option('description');
147
+		$this->enabled                     = $this->get_option('enabled');
148
+		$this->testmode                    = 'yes' === $this->get_option('testmode');
149
+		$this->inline_cc_form              = 'yes' === $this->get_option('inline_cc_form');
150
+		$this->capture                     = 'yes' === $this->get_option('capture', 'yes');
151
+		$this->statement_descriptor        = WC_Stripe_Helper::clean_statement_descriptor($this->get_option('statement_descriptor'));
152
+		$this->three_d_secure              = 'yes' === $this->get_option('three_d_secure');
153
+		$this->stripe_checkout             = 'yes' === $this->get_option('stripe_checkout');
154
+		$this->stripe_checkout_image       = $this->get_option('stripe_checkout_image', '');
155
+		$this->stripe_checkout_description = $this->get_option('stripe_checkout_description');
156
+		$this->saved_cards                 = 'yes' === $this->get_option('saved_cards');
157
+		$this->secret_key                  = $this->testmode ? $this->get_option('test_secret_key') : $this->get_option('secret_key');
158
+		$this->publishable_key             = $this->testmode ? $this->get_option('test_publishable_key') : $this->get_option('publishable_key');
159
+		$this->bitcoin                     = 'USD' === strtoupper(get_woocommerce_currency()) && 'yes' === $this->get_option('stripe_bitcoin');
160
+		$this->payment_request             = 'yes' === $this->get_option('payment_request', 'yes');
161
+
162
+		if ($this->stripe_checkout) {
163
+			$this->order_button_text = __('Continue to payment', 'woocommerce-gateway-stripe');
164 164
 		}
165 165
 
166
-		WC_Stripe_API::set_secret_key( $this->secret_key );
166
+		WC_Stripe_API::set_secret_key($this->secret_key);
167 167
 
168 168
 		// Hooks.
169
-		add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) );
170
-		add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
171
-		add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
169
+		add_action('wp_enqueue_scripts', array($this, 'payment_scripts'));
170
+		add_action('admin_enqueue_scripts', array($this, 'admin_scripts'));
171
+		add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options'));
172 172
 	}
173 173
 
174 174
 	/**
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
 	 * @return bool
179 179
 	 */
180 180
 	public function are_keys_set() {
181
-		if ( empty( $this->secret_key ) || empty( $this->publishable_key ) ) {
181
+		if (empty($this->secret_key) || empty($this->publishable_key)) {
182 182
 			return false;
183 183
 		}
184 184
 
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
 	 * @since 4.0.2
192 192
 	 */
193 193
 	public function is_available() {
194
-		if ( is_add_payment_method_page() && ! $this->saved_cards ) {
194
+		if (is_add_payment_method_page() && ! $this->saved_cards) {
195 195
 			return false;
196 196
 		}
197 197
 
@@ -214,24 +214,24 @@  discard block
 block discarded – undo
214 214
 		$icons_str .= $icons['amex'];
215 215
 		$icons_str .= $icons['mastercard'];
216 216
 
217
-		if ( 'USD' === get_woocommerce_currency() ) {
217
+		if ('USD' === get_woocommerce_currency()) {
218 218
 			$icons_str .= $icons['discover'];
219 219
 			$icons_str .= $icons['jcb'];
220 220
 			$icons_str .= $icons['diners'];
221 221
 		}
222 222
 
223
-		if ( $this->bitcoin && $this->stripe_checkout ) {
223
+		if ($this->bitcoin && $this->stripe_checkout) {
224 224
 			$icons_str .= $icons['bitcoin'];
225 225
 		}
226 226
 
227
-		return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id );
227
+		return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id);
228 228
 	}
229 229
 
230 230
 	/**
231 231
 	 * Initialise Gateway Settings Form Fields
232 232
 	 */
233 233
 	public function init_form_fields() {
234
-		$this->form_fields = require( dirname( __FILE__ ) . '/admin/stripe-settings.php' );
234
+		$this->form_fields = require(dirname(__FILE__) . '/admin/stripe-settings.php');
235 235
 	}
236 236
 
237 237
 	/**
@@ -239,68 +239,68 @@  discard block
 block discarded – undo
239 239
 	 */
240 240
 	public function payment_fields() {
241 241
 		$user                 = wp_get_current_user();
242
-		$display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards;
242
+		$display_tokenization = $this->supports('tokenization') && is_checkout() && $this->saved_cards;
243 243
 		$total                = WC()->cart->total;
244 244
 		$user_email           = '';
245 245
 
246 246
 		// If paying from order, we need to get total from order not cart.
247
-		if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
248
-			$order      = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) );
247
+		if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) {
248
+			$order      = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key'])));
249 249
 			$total      = $order->get_total();
250 250
 			$user_email = WC_Stripe_Helper::is_pre_30() ? $order->billing_email : $order->get_billing_email();
251 251
 		} else {
252
-			if ( $user->ID ) {
253
-				$user_email = get_user_meta( $user->ID, 'billing_email', true );
252
+			if ($user->ID) {
253
+				$user_email = get_user_meta($user->ID, 'billing_email', true);
254 254
 				$user_email = $user_email ? $user_email : $user->user_email;
255 255
 			}
256 256
 		}
257 257
 
258
-		if ( is_add_payment_method_page() ) {
259
-			$pay_button_text = __( 'Add Card', 'woocommerce-gateway-stripe' );
260
-			$total        = '';
258
+		if (is_add_payment_method_page()) {
259
+			$pay_button_text = __('Add Card', 'woocommerce-gateway-stripe');
260
+			$total = '';
261 261
 		} else {
262 262
 			$pay_button_text = '';
263 263
 		}
264 264
 
265 265
 		echo '<div
266 266
 			id="stripe-payment-data"
267
-			data-panel-label="' . esc_attr( $pay_button_text ) . '"
268
-			data-description="'. esc_attr( strip_tags( $this->stripe_checkout_description ) ) . '"
269
-			data-email="' . esc_attr( $user_email ) . '"
270
-			data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
271
-			data-name="' . esc_attr( $this->statement_descriptor ) . '"
272
-			data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '"
273
-			data-image="' . esc_attr( $this->stripe_checkout_image ) . '"
274
-			data-bitcoin="' . esc_attr( ( $this->bitcoin && $this->capture ) ? 'true' : 'false' ) . '"
275
-			data-locale="' . esc_attr( apply_filters( 'wc_stripe_checkout_locale', $this->get_locale() ) ) . '"
276
-			data-three-d-secure="' . esc_attr( $this->three_d_secure ? 'true' : 'false' ) . '"
277
-			data-allow-remember-me="' . esc_attr( $this->saved_cards ? 'true' : 'false' ) . '">';
278
-
279
-		if ( $this->description ) {
280
-			if ( $this->testmode ) {
267
+			data-panel-label="' . esc_attr($pay_button_text) . '"
268
+			data-description="'. esc_attr(strip_tags($this->stripe_checkout_description)) . '"
269
+			data-email="' . esc_attr($user_email) . '"
270
+			data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '"
271
+			data-name="' . esc_attr($this->statement_descriptor) . '"
272
+			data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '"
273
+			data-image="' . esc_attr($this->stripe_checkout_image) . '"
274
+			data-bitcoin="' . esc_attr(($this->bitcoin && $this->capture) ? 'true' : 'false') . '"
275
+			data-locale="' . esc_attr(apply_filters('wc_stripe_checkout_locale', $this->get_locale())) . '"
276
+			data-three-d-secure="' . esc_attr($this->three_d_secure ? 'true' : 'false') . '"
277
+			data-allow-remember-me="' . esc_attr($this->saved_cards ? 'true' : 'false') . '">';
278
+
279
+		if ($this->description) {
280
+			if ($this->testmode) {
281 281
 				/* translators: link to Stripe testing page */
282
-				$this->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 documentation "<a href="%s" target="_blank">Testing Stripe</a>" for more card numbers.', 'woocommerce-gateway-stripe' ), 'https://stripe.com/docs/testing' );
283
-				$this->description  = trim( $this->description );
282
+				$this->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 documentation "<a href="%s" target="_blank">Testing Stripe</a>" for more card numbers.', 'woocommerce-gateway-stripe'), 'https://stripe.com/docs/testing');
283
+				$this->description  = trim($this->description);
284 284
 			}
285
-			echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ) );
285
+			echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($this->description)));
286 286
 		}
287 287
 
288
-		if ( $display_tokenization ) {
288
+		if ($display_tokenization) {
289 289
 			$this->tokenization_script();
290 290
 			$this->saved_payment_methods();
291 291
 		}
292 292
 
293
-		if ( ! $this->stripe_checkout ) {
294
-			if ( apply_filters( 'wc_stripe_use_elements_checkout_form', true ) ) {
293
+		if ( ! $this->stripe_checkout) {
294
+			if (apply_filters('wc_stripe_use_elements_checkout_form', true)) {
295 295
 				$this->elements_form();
296 296
 			} else {
297
-				WC_Stripe_Logger::log( 'DEPRECATED! Since version 4.0. Stripe Elements is used. This legacy credit card form will be removed by version 5.0!' );
297
+				WC_Stripe_Logger::log('DEPRECATED! Since version 4.0. Stripe Elements is used. This legacy credit card form will be removed by version 5.0!');
298 298
 				$this->form();
299 299
 				echo '<div class="stripe-source-errors" role="alert"></div>';
300 300
 			}
301 301
 		}
302 302
 
303
-		if ( apply_filters( 'wc_stripe_display_save_payment_method_checkbox', $display_tokenization ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) ) {
303
+		if (apply_filters('wc_stripe_display_save_payment_method_checkbox', $display_tokenization) && ! is_add_payment_method_page() && ! isset($_GET['change_payment_method'])) {
304 304
 			$this->save_payment_method_checkbox();
305 305
 		}
306 306
 
@@ -315,12 +315,12 @@  discard block
 block discarded – undo
315 315
 	 */
316 316
 	public function elements_form() {
317 317
 		?>
318
-		<fieldset id="wc-<?php echo esc_attr( $this->id ); ?>-cc-form" class="wc-credit-card-form wc-payment-form" style="background:transparent;">
319
-			<?php do_action( 'woocommerce_credit_card_form_start', $this->id ); ?>
318
+		<fieldset id="wc-<?php echo esc_attr($this->id); ?>-cc-form" class="wc-credit-card-form wc-payment-form" style="background:transparent;">
319
+			<?php do_action('woocommerce_credit_card_form_start', $this->id); ?>
320 320
 
321
-			<?php if ( $this->inline_cc_form ) { ?>
321
+			<?php if ($this->inline_cc_form) { ?>
322 322
 				<label for="card-element">
323
-					<?php esc_html_e( 'Credit or debit card', 'woocommerce-gateway-stripe' ); ?>
323
+					<?php esc_html_e('Credit or debit card', 'woocommerce-gateway-stripe'); ?>
324 324
 				</label>
325 325
 
326 326
 				<div id="stripe-card-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
 				</div>
329 329
 			<?php } else { ?>
330 330
 				<div class="form-row form-row-wide">
331
-					<label><?php _e( 'Card Number', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
331
+					<label><?php _e('Card Number', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label>
332 332
 
333 333
 					<div id="stripe-card-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
334 334
 					<!-- a Stripe Element will be inserted here. -->
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
336 336
 				</div>
337 337
 
338 338
 				<div class="form-row form-row-first">
339
-					<label><?php _e( 'Expiry Date', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
339
+					<label><?php _e('Expiry Date', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label>
340 340
 
341 341
 					<div id="stripe-exp-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
342 342
 					<!-- a Stripe Element will be inserted here. -->
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
 				</div>
345 345
 
346 346
 				<div class="form-row form-row-last">
347
-					<label><?php _e( 'Card Code (CVC)', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
347
+					<label><?php _e('Card Code (CVC)', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label>
348 348
 				<div id="stripe-cvc-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
349 349
 				<!-- a Stripe Element will be inserted here. -->
350 350
 				</div>
@@ -354,7 +354,7 @@  discard block
 block discarded – undo
354 354
 
355 355
 			<!-- Used to display form errors -->
356 356
 			<div class="stripe-source-errors" role="alert"></div>
357
-			<?php do_action( 'woocommerce_credit_card_form_end', $this->id ); ?>
357
+			<?php do_action('woocommerce_credit_card_form_end', $this->id); ?>
358 358
 			<div class="clear"></div>
359 359
 		</fieldset>
360 360
 		<?php
@@ -367,13 +367,13 @@  discard block
 block discarded – undo
367 367
 	 * @version 3.1.0
368 368
 	 */
369 369
 	public function admin_scripts() {
370
-		if ( 'woocommerce_page_wc-settings' !== get_current_screen()->id ) {
370
+		if ('woocommerce_page_wc-settings' !== get_current_screen()->id) {
371 371
 			return;
372 372
 		}
373 373
 
374
-		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
374
+		$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
375 375
 
376
-		wp_enqueue_script( 'woocommerce_stripe_admin', plugins_url( 'assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array(), WC_STRIPE_VERSION, true );
376
+		wp_enqueue_script('woocommerce_stripe_admin', plugins_url('assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array(), WC_STRIPE_VERSION, true);
377 377
 	}
378 378
 
379 379
 	/**
@@ -385,46 +385,46 @@  discard block
 block discarded – undo
385 385
 	 * @version 4.0.0
386 386
 	 */
387 387
 	public function payment_scripts() {
388
-		if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) ) {
388
+		if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page() && ! isset($_GET['change_payment_method'])) {
389 389
 			return;
390 390
 		}
391 391
 
392 392
 		// If Stripe is not enabled bail.
393
-		if ( 'no' === $this->enabled ) {
393
+		if ('no' === $this->enabled) {
394 394
 			return;
395 395
 		}
396 396
 
397 397
 		// If keys are not set bail.
398
-		if ( ! $this->are_keys_set() ) {
399
-			WC_Stripe_Logger::log( 'Keys are not set correctly.' );
398
+		if ( ! $this->are_keys_set()) {
399
+			WC_Stripe_Logger::log('Keys are not set correctly.');
400 400
 			return;
401 401
 		}
402 402
 
403 403
 		// If no SSL bail.
404
-		if ( ! $this->testmode && ! is_ssl() ) {
405
-			WC_Stripe_Logger::log( 'Stripe requires SSL.' );
404
+		if ( ! $this->testmode && ! is_ssl()) {
405
+			WC_Stripe_Logger::log('Stripe requires SSL.');
406 406
 			return;
407 407
 		}
408 408
 
409
-		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
409
+		$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
410 410
 
411
-		wp_register_style( 'stripe_paymentfonts', plugins_url( 'assets/css/stripe-paymentfonts.css', WC_STRIPE_MAIN_FILE ), array(), '1.2.5' );
412
-		wp_enqueue_style( 'stripe_paymentfonts' );
413
-		wp_register_script( 'stripe_checkout', 'https://checkout.stripe.com/checkout.js', '', WC_STRIPE_VERSION, true );
414
-		wp_register_script( 'stripev2', 'https://js.stripe.com/v2/', '', '2.0', true );
415
-		wp_register_script( 'stripe', 'https://js.stripe.com/v3/', '', '3.0', true );
416
-		wp_register_script( 'woocommerce_stripe', plugins_url( 'assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array( 'jquery-payment', 'stripev2', 'stripe' ), WC_STRIPE_VERSION, true );
411
+		wp_register_style('stripe_paymentfonts', plugins_url('assets/css/stripe-paymentfonts.css', WC_STRIPE_MAIN_FILE), array(), '1.2.5');
412
+		wp_enqueue_style('stripe_paymentfonts');
413
+		wp_register_script('stripe_checkout', 'https://checkout.stripe.com/checkout.js', '', WC_STRIPE_VERSION, true);
414
+		wp_register_script('stripev2', 'https://js.stripe.com/v2/', '', '2.0', true);
415
+		wp_register_script('stripe', 'https://js.stripe.com/v3/', '', '3.0', true);
416
+		wp_register_script('woocommerce_stripe', plugins_url('assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array('jquery-payment', 'stripev2', 'stripe'), WC_STRIPE_VERSION, true);
417 417
 
418 418
 		$stripe_params = array(
419 419
 			'key'                  => $this->publishable_key,
420
-			'i18n_terms'           => __( 'Please accept the terms and conditions first', 'woocommerce-gateway-stripe' ),
421
-			'i18n_required_fields' => __( 'Please fill in required checkout fields first', 'woocommerce-gateway-stripe' ),
420
+			'i18n_terms'           => __('Please accept the terms and conditions first', 'woocommerce-gateway-stripe'),
421
+			'i18n_required_fields' => __('Please fill in required checkout fields first', 'woocommerce-gateway-stripe'),
422 422
 		);
423 423
 
424 424
 		// If we're on the pay page we need to pass stripe.js the address of the order.
425
-		if ( isset( $_GET['pay_for_order'] ) && 'true' === $_GET['pay_for_order'] ) {
426
-			$order_id = wc_get_order_id_by_order_key( urldecode( $_GET['key'] ) );
427
-			$order    = wc_get_order( $order_id );
425
+		if (isset($_GET['pay_for_order']) && 'true' === $_GET['pay_for_order']) {
426
+			$order_id = wc_get_order_id_by_order_key(urldecode($_GET['key']));
427
+			$order    = wc_get_order($order_id);
428 428
 
429 429
 			$stripe_params['billing_first_name'] = WC_Stripe_Helper::is_pre_30() ? $order->billing_first_name : $order->get_billing_first_name();
430 430
 			$stripe_params['billing_last_name']  = WC_Stripe_Helper::is_pre_30() ? $order->billing_last_name : $order->get_billing_last_name();
@@ -436,39 +436,39 @@  discard block
 block discarded – undo
436 436
 			$stripe_params['billing_country']    = WC_Stripe_Helper::is_pre_30() ? $order->billing_country : $order->get_billing_country();
437 437
 		}
438 438
 
439
-		$stripe_params['no_prepaid_card_msg']                     = __( 'Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charge. Please try with alternative payment method.', 'woocommerce-gateway-stripe' );
440
-		$stripe_params['no_sepa_owner_msg']                       = __( 'Please enter your IBAN account name.', 'woocommerce-gateway-stripe' );
441
-		$stripe_params['no_sepa_iban_msg']                        = __( 'Please enter your IBAN account number.', 'woocommerce-gateway-stripe' );
442
-		$stripe_params['sepa_mandate_notification']               = apply_filters( 'wc_stripe_sepa_mandate_notification', 'email' );
443
-		$stripe_params['allow_prepaid_card']                      = apply_filters( 'wc_stripe_allow_prepaid_card', true ) ? 'yes' : 'no';
439
+		$stripe_params['no_prepaid_card_msg']                     = __('Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charge. Please try with alternative payment method.', 'woocommerce-gateway-stripe');
440
+		$stripe_params['no_sepa_owner_msg']                       = __('Please enter your IBAN account name.', 'woocommerce-gateway-stripe');
441
+		$stripe_params['no_sepa_iban_msg']                        = __('Please enter your IBAN account number.', 'woocommerce-gateway-stripe');
442
+		$stripe_params['sepa_mandate_notification']               = apply_filters('wc_stripe_sepa_mandate_notification', 'email');
443
+		$stripe_params['allow_prepaid_card']                      = apply_filters('wc_stripe_allow_prepaid_card', true) ? 'yes' : 'no';
444 444
 		$stripe_params['inline_cc_form']                          = $this->inline_cc_form ? 'yes' : 'no';
445
-		$stripe_params['stripe_checkout_require_billing_address'] = apply_filters( 'wc_stripe_checkout_require_billing_address', false ) ? 'yes' : 'no';
446
-		$stripe_params['is_checkout']                             = ( is_checkout() && empty( $_GET['pay_for_order'] ) ) ? 'yes' : 'no';
445
+		$stripe_params['stripe_checkout_require_billing_address'] = apply_filters('wc_stripe_checkout_require_billing_address', false) ? 'yes' : 'no';
446
+		$stripe_params['is_checkout']                             = (is_checkout() && empty($_GET['pay_for_order'])) ? 'yes' : 'no';
447 447
 		$stripe_params['return_url']                              = $this->get_stripe_return_url();
448
-		$stripe_params['ajaxurl']                                 = WC_AJAX::get_endpoint( '%%endpoint%%' );
449
-		$stripe_params['stripe_nonce']                            = wp_create_nonce( '_wc_stripe_nonce' );
448
+		$stripe_params['ajaxurl']                                 = WC_AJAX::get_endpoint('%%endpoint%%');
449
+		$stripe_params['stripe_nonce']                            = wp_create_nonce('_wc_stripe_nonce');
450 450
 		$stripe_params['statement_descriptor']                    = $this->statement_descriptor;
451
-		$stripe_params['use_elements']                            = apply_filters( 'wc_stripe_use_elements_checkout_form', true ) ? 'yes' : 'no';
452
-		$stripe_params['elements_options']                        = apply_filters( 'wc_stripe_elements_options', array() );
451
+		$stripe_params['use_elements']                            = apply_filters('wc_stripe_use_elements_checkout_form', true) ? 'yes' : 'no';
452
+		$stripe_params['elements_options']                        = apply_filters('wc_stripe_elements_options', array());
453 453
 		$stripe_params['is_stripe_checkout']                      = $this->stripe_checkout ? 'yes' : 'no';
454
-		$stripe_params['is_change_payment_page']                  = isset( $_GET['change_payment_method'] ) ? 'yes' : 'no';
455
-		$stripe_params['is_pay_for_order_page']                   = isset( $_GET['pay_for_order'] ) ? 'yes' : 'no';
456
-		$stripe_params['validate_modal_checkout']                 = apply_filters( 'wc_stripe_validate_modal_checkout', false ) ? 'yes' : 'no';
457
-		$stripe_params['elements_styling']                        = apply_filters( 'wc_stripe_elements_styling', false );
458
-		$stripe_params['elements_classes']                        = apply_filters( 'wc_stripe_elements_classes', false );
454
+		$stripe_params['is_change_payment_page']                  = isset($_GET['change_payment_method']) ? 'yes' : 'no';
455
+		$stripe_params['is_pay_for_order_page']                   = isset($_GET['pay_for_order']) ? 'yes' : 'no';
456
+		$stripe_params['validate_modal_checkout']                 = apply_filters('wc_stripe_validate_modal_checkout', false) ? 'yes' : 'no';
457
+		$stripe_params['elements_styling']                        = apply_filters('wc_stripe_elements_styling', false);
458
+		$stripe_params['elements_classes']                        = apply_filters('wc_stripe_elements_classes', false);
459 459
 
460 460
 		// merge localized messages to be use in JS
461
-		$stripe_params = array_merge( $stripe_params, WC_Stripe_Helper::get_localized_messages() );
461
+		$stripe_params = array_merge($stripe_params, WC_Stripe_Helper::get_localized_messages());
462 462
 
463
-		wp_localize_script( 'woocommerce_stripe', 'wc_stripe_params', apply_filters( 'wc_stripe_params', $stripe_params ) );
464
-		wp_localize_script( 'woocommerce_stripe_checkout', 'wc_stripe_params', apply_filters( 'wc_stripe_params', $stripe_params ) );
463
+		wp_localize_script('woocommerce_stripe', 'wc_stripe_params', apply_filters('wc_stripe_params', $stripe_params));
464
+		wp_localize_script('woocommerce_stripe_checkout', 'wc_stripe_params', apply_filters('wc_stripe_params', $stripe_params));
465 465
 
466
-		if ( $this->stripe_checkout ) {
467
-			wp_enqueue_script( 'stripe_checkout' );
466
+		if ($this->stripe_checkout) {
467
+			wp_enqueue_script('stripe_checkout');
468 468
 		}
469 469
 
470 470
 		$this->tokenization_script();
471
-		wp_enqueue_script( 'woocommerce_stripe' );
471
+		wp_enqueue_script('woocommerce_stripe');
472 472
 	}
473 473
 
474 474
 	/**
@@ -484,41 +484,41 @@  discard block
 block discarded – undo
484 484
 	 *
485 485
 	 * @return array|void
486 486
 	 */
487
-	public function process_payment( $order_id, $retry = true, $force_save_source = false ) {
487
+	public function process_payment($order_id, $retry = true, $force_save_source = false) {
488 488
 		try {
489
-			$order = wc_get_order( $order_id );
489
+			$order = wc_get_order($order_id);
490 490
 
491 491
 			// This comes from the create account checkbox in the checkout page.
492
-			$create_account = ! empty( $_POST['createaccount'] ) ? true : false;
492
+			$create_account = ! empty($_POST['createaccount']) ? true : false;
493 493
 
494
-			if ( $create_account ) {
494
+			if ($create_account) {
495 495
 				$new_customer_id     = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id();
496
-				$new_stripe_customer = new WC_Stripe_Customer( $new_customer_id );
496
+				$new_stripe_customer = new WC_Stripe_Customer($new_customer_id);
497 497
 				$new_stripe_customer->create_customer();
498 498
 			}
499 499
 
500
-			$prepared_source = $this->prepare_source( get_current_user_id(), $force_save_source );
500
+			$prepared_source = $this->prepare_source(get_current_user_id(), $force_save_source);
501 501
 			$source_object   = $prepared_source->source_object;
502 502
 
503 503
 			// Check if we don't allow prepaid credit cards.
504
-			if ( ! apply_filters( 'wc_stripe_allow_prepaid_card', true ) && $this->is_prepaid_card( $source_object ) ) {
505
-				$localized_message = __( 'Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charge. Please try with alternative payment method.', 'woocommerce-gateway-stripe' );
506
-				throw new WC_Stripe_Exception( print_r( $source_object, true ), $localized_message );
504
+			if ( ! apply_filters('wc_stripe_allow_prepaid_card', true) && $this->is_prepaid_card($source_object)) {
505
+				$localized_message = __('Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charge. Please try with alternative payment method.', 'woocommerce-gateway-stripe');
506
+				throw new WC_Stripe_Exception(print_r($source_object, true), $localized_message);
507 507
 			}
508 508
 
509
-			if ( empty( $prepared_source->source ) ) {
510
-				$localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
511
-				throw new WC_Stripe_Exception( print_r( $prepared_source, true ), $localized_message );
509
+			if (empty($prepared_source->source)) {
510
+				$localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe');
511
+				throw new WC_Stripe_Exception(print_r($prepared_source, true), $localized_message);
512 512
 			}
513 513
 
514
-			$this->save_source_to_order( $order, $prepared_source );
514
+			$this->save_source_to_order($order, $prepared_source);
515 515
 
516 516
 			// Result from Stripe API request.
517 517
 			$response = null;
518 518
 
519
-			if ( $order->get_total() > 0 ) {
519
+			if ($order->get_total() > 0) {
520 520
 				// This will throw exception if not valid.
521
-				$this->validate_minimum_order_amount( $order );
521
+				$this->validate_minimum_order_amount($order);
522 522
 
523 523
 				/*
524 524
 				 * Check if card 3DS is required or optional with 3DS setting.
@@ -527,105 +527,105 @@  discard block
 block discarded – undo
527 527
 				 * Note that if we need to save source, the original source must be first
528 528
 				 * attached to a customer in Stripe before it can be charged.
529 529
 				 */
530
-				if ( $this->is_3ds_required( $source_object ) ) {
531
-					$response = $this->create_3ds_source( $order, $source_object );
530
+				if ($this->is_3ds_required($source_object)) {
531
+					$response = $this->create_3ds_source($order, $source_object);
532 532
 
533
-					if ( ! empty( $response->error ) ) {
533
+					if ( ! empty($response->error)) {
534 534
 						$localized_message = $response->error->message;
535 535
 
536
-						$order->add_order_note( $localized_message );
536
+						$order->add_order_note($localized_message);
537 537
 
538
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
538
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
539 539
 					}
540 540
 
541 541
 					// Update order meta with 3DS source.
542
-					if ( WC_Stripe_Helper::is_pre_30() ) {
543
-						update_post_meta( $order_id, '_stripe_source_id', $response->id );
542
+					if (WC_Stripe_Helper::is_pre_30()) {
543
+						update_post_meta($order_id, '_stripe_source_id', $response->id);
544 544
 					} else {
545
-						$order->update_meta_data( '_stripe_source_id', $response->id );
545
+						$order->update_meta_data('_stripe_source_id', $response->id);
546 546
 						$order->save();
547 547
 					}
548 548
 
549
-					WC_Stripe_Logger::log( 'Info: Redirecting to 3DS...' );
549
+					WC_Stripe_Logger::log('Info: Redirecting to 3DS...');
550 550
 
551 551
 					return array(
552 552
 						'result'   => 'success',
553
-						'redirect' => esc_url_raw( $response->redirect->url ),
553
+						'redirect' => esc_url_raw($response->redirect->url),
554 554
 					);
555 555
 				}
556 556
 
557
-				WC_Stripe_Logger::log( "Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}" );
557
+				WC_Stripe_Logger::log("Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}");
558 558
 
559 559
 				/* If we're doing a retry and source is chargeable, we need to pass
560 560
 				 * a different idempotency key and retry for success.
561 561
 				 */
562
-				if ( 1 < $this->retry_interval && ! empty( $source_object ) && 'chargeable' === $source_object->status ) {
563
-					add_filter( 'wc_stripe_idempotency_key', array( $this, 'change_idempotency_key' ), 10, 2 );
562
+				if (1 < $this->retry_interval && ! empty($source_object) && 'chargeable' === $source_object->status) {
563
+					add_filter('wc_stripe_idempotency_key', array($this, 'change_idempotency_key'), 10, 2);
564 564
 				}
565 565
 
566 566
 				// Make the request.
567
-				$response = WC_Stripe_API::request( $this->generate_payment_request( $order, $prepared_source ) );
567
+				$response = WC_Stripe_API::request($this->generate_payment_request($order, $prepared_source));
568 568
 
569
-				if ( ! empty( $response->error ) ) {
569
+				if ( ! empty($response->error)) {
570 570
 					// Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without.
571
-					if ( preg_match( '/No such customer/i', $response->error->message ) && $retry ) {
572
-						if ( WC_Stripe_Helper::is_pre_30() ) {
573
-							delete_user_meta( $order->customer_user, '_stripe_customer_id' );
574
-							delete_post_meta( $order_id, '_stripe_customer_id' );
571
+					if (preg_match('/No such customer/i', $response->error->message) && $retry) {
572
+						if (WC_Stripe_Helper::is_pre_30()) {
573
+							delete_user_meta($order->customer_user, '_stripe_customer_id');
574
+							delete_post_meta($order_id, '_stripe_customer_id');
575 575
 						} else {
576
-							delete_user_meta( $order->get_customer_id(), '_stripe_customer_id' );
577
-							$order->delete_meta_data( '_stripe_customer_id' );
576
+							delete_user_meta($order->get_customer_id(), '_stripe_customer_id');
577
+							$order->delete_meta_data('_stripe_customer_id');
578 578
 							$order->save();
579 579
 						}
580 580
 
581
-						return $this->process_payment( $order_id, false, $force_save_source );
582
-					} elseif ( preg_match( '/No such token/i', $response->error->message ) && $prepared_source->token_id ) {
581
+						return $this->process_payment($order_id, false, $force_save_source);
582
+					} elseif (preg_match('/No such token/i', $response->error->message) && $prepared_source->token_id) {
583 583
 						// Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message.
584
-						$wc_token = WC_Payment_Tokens::get( $prepared_source->token_id );
584
+						$wc_token = WC_Payment_Tokens::get($prepared_source->token_id);
585 585
 						$wc_token->delete();
586
-						$localized_message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' );
587
-						$order->add_order_note( $localized_message );
588
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
586
+						$localized_message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe');
587
+						$order->add_order_note($localized_message);
588
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
589 589
 					}
590 590
 
591 591
 					// We want to retry.
592
-					if ( $this->is_retryable_error( $response->error ) ) {
593
-						if ( $retry ) {
592
+					if ($this->is_retryable_error($response->error)) {
593
+						if ($retry) {
594 594
 							// Don't do anymore retries after this.
595
-							if ( 5 <= $this->retry_interval ) {
595
+							if (5 <= $this->retry_interval) {
596 596
 
597
-								return $this->process_payment( $order_id, false, $force_save_source );
597
+								return $this->process_payment($order_id, false, $force_save_source);
598 598
 							}
599 599
 
600
-							sleep( $this->retry_interval );
600
+							sleep($this->retry_interval);
601 601
 
602 602
 							$this->retry_interval++;
603 603
 
604
-							return $this->process_payment( $order_id, true, $force_save_source );
604
+							return $this->process_payment($order_id, true, $force_save_source);
605 605
 						} else {
606
-							$localized_message = __( 'On going requests error and retries exhausted.', 'woocommerce-gateway-stripe' );
607
-							$order->add_order_note( $localized_message );
608
-							throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
606
+							$localized_message = __('On going requests error and retries exhausted.', 'woocommerce-gateway-stripe');
607
+							$order->add_order_note($localized_message);
608
+							throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
609 609
 						}
610 610
 					}
611 611
 
612 612
 					$localized_messages = WC_Stripe_Helper::get_localized_messages();
613 613
 
614
-					if ( 'card_error' === $response->error->type ) {
615
-						$localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
614
+					if ('card_error' === $response->error->type) {
615
+						$localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message;
616 616
 					} else {
617
-						$localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
617
+						$localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message;
618 618
 					}
619 619
 
620
-					$order->add_order_note( $localized_message );
620
+					$order->add_order_note($localized_message);
621 621
 
622
-					throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
622
+					throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
623 623
 				}
624 624
 
625
-				do_action( 'wc_gateway_stripe_process_payment', $response, $order );
625
+				do_action('wc_gateway_stripe_process_payment', $response, $order);
626 626
 
627 627
 				// Process valid response.
628
-				$this->process_response( $response, $order );
628
+				$this->process_response($response, $order);
629 629
 			} else {
630 630
 				$order->payment_complete();
631 631
 			}
@@ -636,20 +636,20 @@  discard block
 block discarded – undo
636 636
 			// Return thank you page redirect.
637 637
 			return array(
638 638
 				'result'   => 'success',
639
-				'redirect' => $this->get_return_url( $order ),
639
+				'redirect' => $this->get_return_url($order),
640 640
 			);
641 641
 
642
-		} catch ( WC_Stripe_Exception $e ) {
643
-			wc_add_notice( $e->getLocalizedMessage(), 'error' );
644
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
642
+		} catch (WC_Stripe_Exception $e) {
643
+			wc_add_notice($e->getLocalizedMessage(), 'error');
644
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
645 645
 
646
-			do_action( 'wc_gateway_stripe_process_payment_error', $e, $order );
646
+			do_action('wc_gateway_stripe_process_payment_error', $e, $order);
647 647
 
648 648
 			/* translators: error message */
649
-			$order->update_status( 'failed' );
649
+			$order->update_status('failed');
650 650
 
651
-			if ( $order->has_status( array( 'pending', 'failed' ) ) ) {
652
-				$this->send_failed_order_email( $order_id );
651
+			if ($order->has_status(array('pending', 'failed'))) {
652
+				$this->send_failed_order_email($order_id);
653 653
 			}
654 654
 
655 655
 			return array(
Please login to merge, or discard this patch.
includes/abstracts/abstract-wc-stripe-payment-gateway.php 2 patches
Doc Comments   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,6 +53,8 @@  discard block
 block discarded – undo
53 53
 	 *
54 54
 	 * @since 4.0.0
55 55
 	 * @version 4.0.0
56
+	 * @param string $slug
57
+	 * @param string $class
56 58
 	 */
57 59
 	public function add_admin_notice( $slug, $class, $message ) {
58 60
 		$this->notices[ $slug ] = array(
@@ -429,7 +431,7 @@  discard block
 block discarded – undo
429 431
 	 * Checks if card is 3DS.
430 432
 	 *
431 433
 	 * @since 4.0.4
432
-	 * @param object $source_object
434
+	 * @param stdClass $source_object
433 435
 	 * @return bool
434 436
 	 */
435 437
 	public function is_3ds_card( $source_object ) {
@@ -452,7 +454,7 @@  discard block
 block discarded – undo
452 454
 	 *
453 455
 	 * @since 4.0.8
454 456
 	 * @param string $source_id
455
-	 * @return bool
457
+	 * @return integer
456 458
 	 */
457 459
 	public function is_type_legacy_card( $source_id ) {
458 460
 		return ( preg_match( '/^card_/', $source_id ) );
Please login to merge, or discard this patch.
Spacing   +223 added lines, -224 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 	 * @since 4.0.5
22 22
 	 * @param array $error
23 23
 	 */
24
-	public function is_retryable_error( $error ) {
24
+	public function is_retryable_error($error) {
25 25
 		return (
26 26
 			'invalid_request_error' === $error->type ||
27 27
 			'idempotency_error' === $error->type ||
@@ -35,11 +35,11 @@  discard block
 block discarded – undo
35 35
 	 * Check if this gateway is enabled
36 36
 	 */
37 37
 	public function is_available() {
38
-		if ( 'yes' === $this->enabled ) {
39
-			if ( ! $this->testmode && is_checkout() && ! is_ssl() ) {
38
+		if ('yes' === $this->enabled) {
39
+			if ( ! $this->testmode && is_checkout() && ! is_ssl()) {
40 40
 				return false;
41 41
 			}
42
-			if ( ! $this->secret_key || ! $this->publishable_key ) {
42
+			if ( ! $this->secret_key || ! $this->publishable_key) {
43 43
 				return false;
44 44
 			}
45 45
 			return true;
@@ -54,8 +54,8 @@  discard block
 block discarded – undo
54 54
 	 * @since 4.0.0
55 55
 	 * @version 4.0.0
56 56
 	 */
57
-	public function add_admin_notice( $slug, $class, $message ) {
58
-		$this->notices[ $slug ] = array(
57
+	public function add_admin_notice($slug, $class, $message) {
58
+		$this->notices[$slug] = array(
59 59
 			'class'   => $class,
60 60
 			'message' => $message,
61 61
 		);
@@ -68,8 +68,8 @@  discard block
 block discarded – undo
68 68
 	 * @version 4.0.0
69 69
 	 */
70 70
 	public function remove_admin_notice() {
71
-		if ( did_action( 'woocommerce_update_options' ) ) {
72
-			remove_action( 'admin_notices', array( $this, 'check_environment' ) );
71
+		if (did_action('woocommerce_update_options')) {
72
+			remove_action('admin_notices', array($this, 'check_environment'));
73 73
 		}
74 74
 	}
75 75
 
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 	 * @return array
82 82
 	 */
83 83
 	public function payment_icons() {
84
-		return apply_filters( 'wc_stripe_payment_icons', array(
84
+		return apply_filters('wc_stripe_payment_icons', array(
85 85
 			'visa'       => '<i class="stripe-pf stripe-pf-visa stripe-pf-right" alt="Visa" aria-hidden="true"></i>',
86 86
 			'amex'       => '<i class="stripe-pf stripe-pf-american-express stripe-pf-right" alt="Amex" aria-hidden="true"></i>',
87 87
 			'mastercard' => '<i class="stripe-pf stripe-pf-mastercard stripe-pf-right" alt="Mastercard" aria-hidden="true"></i>',
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 			'eps'        => '<i class="stripe-pf stripe-pf-eps stripe-pf-right" alt="EPS" aria-hidden="true"></i>',
99 99
 			'sofort'     => '<i class="stripe-pf stripe-pf-sofort stripe-pf-right" alt="SOFORT" aria-hidden="true"></i>',
100 100
 			'sepa'       => '<i class="stripe-pf stripe-pf-sepa stripe-pf-right" alt="SEPA" aria-hidden="true"></i>',
101
-		) );
101
+		));
102 102
 	}
103 103
 
104 104
 	/**
@@ -109,10 +109,10 @@  discard block
 block discarded – undo
109 109
 	 * @version 4.0.0
110 110
 	 * @param object $order
111 111
 	 */
112
-	public function validate_minimum_order_amount( $order ) {
113
-		if ( $order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount() ) {
112
+	public function validate_minimum_order_amount($order) {
113
+		if ($order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount()) {
114 114
 			/* translators: 1) dollar amount */
115
-			throw new WC_Stripe_Exception( 'Did not meet minimum amount', sprintf( __( 'Sorry, the minimum allowed order total is %1$s to use this payment method.', 'woocommerce-gateway-stripe' ), wc_price( WC_Stripe_Helper::get_minimum_amount() / 100 ) ) );
115
+			throw new WC_Stripe_Exception('Did not meet minimum amount', sprintf(__('Sorry, the minimum allowed order total is %1$s to use this payment method.', 'woocommerce-gateway-stripe'), wc_price(WC_Stripe_Helper::get_minimum_amount() / 100)));
116 116
 		}
117 117
 	}
118 118
 
@@ -122,14 +122,14 @@  discard block
 block discarded – undo
122 122
 	 * @since 4.0.0
123 123
 	 * @version 4.0.0
124 124
 	 */
125
-	public function get_transaction_url( $order ) {
126
-		if ( $this->testmode ) {
125
+	public function get_transaction_url($order) {
126
+		if ($this->testmode) {
127 127
 			$this->view_transaction_url = 'https://dashboard.stripe.com/test/payments/%s';
128 128
 		} else {
129 129
 			$this->view_transaction_url = 'https://dashboard.stripe.com/payments/%s';
130 130
 		}
131 131
 
132
-		return parent::get_transaction_url( $order );
132
+		return parent::get_transaction_url($order);
133 133
 	}
134 134
 
135 135
 	/**
@@ -138,15 +138,15 @@  discard block
 block discarded – undo
138 138
 	 * @since 4.0.0
139 139
 	 * @version 4.0.0
140 140
 	 */
141
-	public function get_stripe_customer_id( $order ) {
142
-		$customer = get_user_meta( WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(), '_stripe_customer_id', true );
141
+	public function get_stripe_customer_id($order) {
142
+		$customer = get_user_meta(WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(), '_stripe_customer_id', true);
143 143
 
144
-		if ( empty( $customer ) ) {
144
+		if (empty($customer)) {
145 145
 			// Try to get it via the order.
146
-			if ( WC_Stripe_Helper::is_pre_30() ) {
147
-				return get_post_meta( $order->id, '_stripe_customer_id', true );
146
+			if (WC_Stripe_Helper::is_pre_30()) {
147
+				return get_post_meta($order->id, '_stripe_customer_id', true);
148 148
 			} else {
149
-				return $order->get_meta( '_stripe_customer_id', true );
149
+				return $order->get_meta('_stripe_customer_id', true);
150 150
 			}
151 151
 		} else {
152 152
 			return $customer;
@@ -163,9 +163,9 @@  discard block
 block discarded – undo
163 163
 	 * @param object $order
164 164
 	 * @param int $id Stripe session id.
165 165
 	 */
166
-	public function get_stripe_return_url( $order = null, $id = null ) {
167
-		if ( is_object( $order ) ) {
168
-			if ( empty( $id ) ) {
166
+	public function get_stripe_return_url($order = null, $id = null) {
167
+		if (is_object($order)) {
168
+			if (empty($id)) {
169 169
 				$id = uniqid();
170 170
 			}
171 171
 
@@ -176,10 +176,10 @@  discard block
 block discarded – undo
176 176
 				'order_id'       => $order_id,
177 177
 			);
178 178
 
179
-			return esc_url_raw( add_query_arg( $args, $this->get_return_url( $order ) ) );
179
+			return esc_url_raw(add_query_arg($args, $this->get_return_url($order)));
180 180
 		}
181 181
 
182
-		return esc_url_raw( add_query_arg( array( 'utm_nooverride' => '1' ), $this->get_return_url() ) );
182
+		return esc_url_raw(add_query_arg(array('utm_nooverride' => '1'), $this->get_return_url()));
183 183
 	}
184 184
 
185 185
 	/**
@@ -187,8 +187,8 @@  discard block
 block discarded – undo
187 187
 	 * @param  int  $order_id
188 188
 	 * @return boolean
189 189
 	 */
190
-	public function has_subscription( $order_id ) {
191
-		return ( function_exists( 'wcs_order_contains_subscription' ) && ( wcs_order_contains_subscription( $order_id ) || wcs_is_subscription( $order_id ) || wcs_order_contains_renewal( $order_id ) ) );
190
+	public function has_subscription($order_id) {
191
+		return (function_exists('wcs_order_contains_subscription') && (wcs_order_contains_subscription($order_id) || wcs_is_subscription($order_id) || wcs_order_contains_renewal($order_id)));
192 192
 	}
193 193
 
194 194
 	/**
@@ -200,34 +200,33 @@  discard block
 block discarded – undo
200 200
 	 * @param  object $prepared_source
201 201
 	 * @return array()
202 202
 	 */
203
-	public function generate_payment_request( $order, $prepared_source ) {
204
-		$settings                          = get_option( 'woocommerce_stripe_settings', array() );
205
-		$statement_descriptor              = ! empty( $settings['statement_descriptor'] ) ? str_replace( "'", '', $settings['statement_descriptor'] ) : '';
206
-		$capture                           = ! empty( $settings['capture'] ) && 'yes' === $settings['capture'] ? true : false;
203
+	public function generate_payment_request($order, $prepared_source) {
204
+		$settings                          = get_option('woocommerce_stripe_settings', array());
205
+		$statement_descriptor              = ! empty($settings['statement_descriptor']) ? str_replace("'", '', $settings['statement_descriptor']) : '';
206
+		$capture                           = ! empty($settings['capture']) && 'yes' === $settings['capture'] ? true : false;
207 207
 		$post_data                         = array();
208
-		$post_data['currency']             = strtolower( WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency() );
209
-		$post_data['amount']               = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $post_data['currency'] );
208
+		$post_data['currency']             = strtolower(WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency());
209
+		$post_data['amount']               = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $post_data['currency']);
210 210
 		/* translators: 1) blog name 2) order number */
211
-		$post_data['description']          = sprintf( __( '%1$s - Order %2$s', 'woocommerce-gateway-stripe' ), wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ), $order->get_order_number() );
211
+		$post_data['description']          = sprintf(__('%1$s - Order %2$s', 'woocommerce-gateway-stripe'), wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES), $order->get_order_number());
212 212
 		$billing_email      = WC_Stripe_Helper::is_pre_30() ? $order->billing_email : $order->get_billing_email();
213 213
 		$billing_first_name = WC_Stripe_Helper::is_pre_30() ? $order->billing_first_name : $order->get_billing_first_name();
214 214
 		$billing_last_name  = WC_Stripe_Helper::is_pre_30() ? $order->billing_last_name : $order->get_billing_last_name();
215 215
 
216
-		if ( ! empty( $billing_email ) && apply_filters( 'wc_stripe_send_stripe_receipt', false ) ) {
216
+		if ( ! empty($billing_email) && apply_filters('wc_stripe_send_stripe_receipt', false)) {
217 217
 			$post_data['receipt_email'] = $billing_email;
218 218
 		}
219 219
 
220
-		switch ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) {
221
-			case 'stripe':
222
-				if ( ! empty( $statement_descriptor ) ) {
223
-					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor );
220
+		switch (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method()) {
221
+			case 'stripe' : if ( ! empty($statement_descriptor)) {
222
+					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor);
224 223
 				}
225 224
 
226 225
 				$post_data['capture'] = $capture ? 'true' : 'false';
227 226
 				break;
228 227
 			case 'stripe_sepa':
229
-				if ( ! empty( $statement_descriptor ) ) {
230
-					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor );
228
+				if ( ! empty($statement_descriptor)) {
229
+					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor);
231 230
 				}
232 231
 				break;
233 232
 		}
@@ -235,25 +234,25 @@  discard block
 block discarded – undo
235 234
 		$post_data['expand[]'] = 'balance_transaction';
236 235
 
237 236
 		$metadata = array(
238
-			__( 'customer_name', 'woocommerce-gateway-stripe' ) => sanitize_text_field( $billing_first_name ) . ' ' . sanitize_text_field( $billing_last_name ),
239
-			__( 'customer_email', 'woocommerce-gateway-stripe' ) => sanitize_email( $billing_email ),
237
+			__('customer_name', 'woocommerce-gateway-stripe') => sanitize_text_field($billing_first_name) . ' ' . sanitize_text_field($billing_last_name),
238
+			__('customer_email', 'woocommerce-gateway-stripe') => sanitize_email($billing_email),
240 239
 			'order_id' => WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(),
241 240
 		);
242 241
 
243
-		if ( $this->has_subscription( WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id() ) ) {
242
+		if ($this->has_subscription(WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id())) {
244 243
 			$metadata += array(
245 244
 				'payment_type' => 'recurring',
246
-				'site_url'     => esc_url( get_site_url() ),
245
+				'site_url'     => esc_url(get_site_url()),
247 246
 			);
248 247
 		}
249 248
 
250
-		$post_data['metadata'] = apply_filters( 'wc_stripe_payment_metadata', $metadata, $order, $prepared_source );
249
+		$post_data['metadata'] = apply_filters('wc_stripe_payment_metadata', $metadata, $order, $prepared_source);
251 250
 
252
-		if ( $prepared_source->customer ) {
251
+		if ($prepared_source->customer) {
253 252
 			$post_data['customer'] = $prepared_source->customer;
254 253
 		}
255 254
 
256
-		if ( $prepared_source->source ) {
255
+		if ($prepared_source->source) {
257 256
 			$post_data['source'] = $prepared_source->source;
258 257
 		}
259 258
 
@@ -265,79 +264,79 @@  discard block
 block discarded – undo
265 264
 		 * @param WC_Order $order
266 265
 		 * @param object $source
267 266
 		 */
268
-		return apply_filters( 'wc_stripe_generate_payment_request', $post_data, $order, $prepared_source );
267
+		return apply_filters('wc_stripe_generate_payment_request', $post_data, $order, $prepared_source);
269 268
 	}
270 269
 
271 270
 	/**
272 271
 	 * Store extra meta data for an order from a Stripe Response.
273 272
 	 */
274
-	public function process_response( $response, $order ) {
275
-		WC_Stripe_Logger::log( 'Processing response: ' . print_r( $response, true ) );
273
+	public function process_response($response, $order) {
274
+		WC_Stripe_Logger::log('Processing response: ' . print_r($response, true));
276 275
 
277 276
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
278 277
 
279
-		$captured = ( isset( $response->captured ) && $response->captured ) ? 'yes' : 'no';
278
+		$captured = (isset($response->captured) && $response->captured) ? 'yes' : 'no';
280 279
 
281 280
 		// Store charge data.
282
-		WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_charge_captured', $captured ) : $order->update_meta_data( '_stripe_charge_captured', $captured );
281
+		WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_charge_captured', $captured) : $order->update_meta_data('_stripe_charge_captured', $captured);
283 282
 
284 283
 		// Store other data such as fees.
285
-		if ( isset( $response->balance_transaction ) && isset( $response->balance_transaction->fee ) ) {
284
+		if (isset($response->balance_transaction) && isset($response->balance_transaction->fee)) {
286 285
 			// Fees and Net needs to both come from Stripe to be accurate as the returned
287 286
 			// values are in the local currency of the Stripe account, not from WC.
288
-			$fee = ! empty( $response->balance_transaction->fee ) ? WC_Stripe_Helper::format_balance_fee( $response->balance_transaction, 'fee' ) : 0;
289
-			$net = ! empty( $response->balance_transaction->net ) ? WC_Stripe_Helper::format_balance_fee( $response->balance_transaction, 'net' ) : 0;
290
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, self::META_NAME_FEE, $fee ) : $order->update_meta_data( self::META_NAME_FEE, $fee );
291
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, self::META_NAME_NET, $net ) : $order->update_meta_data( self::META_NAME_NET, $net );
287
+			$fee = ! empty($response->balance_transaction->fee) ? WC_Stripe_Helper::format_balance_fee($response->balance_transaction, 'fee') : 0;
288
+			$net = ! empty($response->balance_transaction->net) ? WC_Stripe_Helper::format_balance_fee($response->balance_transaction, 'net') : 0;
289
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, self::META_NAME_FEE, $fee) : $order->update_meta_data(self::META_NAME_FEE, $fee);
290
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, self::META_NAME_NET, $net) : $order->update_meta_data(self::META_NAME_NET, $net);
292 291
 		}
293 292
 
294
-		if ( 'yes' === $captured ) {
293
+		if ('yes' === $captured) {
295 294
 			/**
296 295
 			 * Charge can be captured but in a pending state. Payment methods
297 296
 			 * that are asynchronous may take couple days to clear. Webhook will
298 297
 			 * take care of the status changes.
299 298
 			 */
300
-			if ( 'pending' === $response->status ) {
301
-				$order_stock_reduced = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_order_stock_reduced', true ) : $order->get_meta( '_order_stock_reduced', true );
299
+			if ('pending' === $response->status) {
300
+				$order_stock_reduced = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_order_stock_reduced', true) : $order->get_meta('_order_stock_reduced', true);
302 301
 
303
-				if ( ! $order_stock_reduced ) {
304
-					WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels( $order_id );
302
+				if ( ! $order_stock_reduced) {
303
+					WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels($order_id);
305 304
 				}
306 305
 
307
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $response->id ) : $order->set_transaction_id( $response->id );
306
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $response->id) : $order->set_transaction_id($response->id);
308 307
 				/* translators: transaction id */
309
-				$order->update_status( 'on-hold', sprintf( __( 'Stripe charge awaiting payment: %s.', 'woocommerce-gateway-stripe' ), $response->id ) );
308
+				$order->update_status('on-hold', sprintf(__('Stripe charge awaiting payment: %s.', 'woocommerce-gateway-stripe'), $response->id));
310 309
 			}
311 310
 
312
-			if ( 'succeeded' === $response->status ) {
313
-				$order->payment_complete( $response->id );
311
+			if ('succeeded' === $response->status) {
312
+				$order->payment_complete($response->id);
314 313
 
315 314
 				/* translators: transaction id */
316
-				$message = sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $response->id );
317
-				$order->add_order_note( $message );
315
+				$message = sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $response->id);
316
+				$order->add_order_note($message);
318 317
 			}
319 318
 
320
-			if ( 'failed' === $response->status ) {
321
-				$localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
322
-				$order->add_order_note( $localized_message );
323
-				throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
319
+			if ('failed' === $response->status) {
320
+				$localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe');
321
+				$order->add_order_note($localized_message);
322
+				throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
324 323
 			}
325 324
 		} else {
326
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $response->id ) : $order->set_transaction_id( $response->id );
325
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $response->id) : $order->set_transaction_id($response->id);
327 326
 
328
-			if ( $order->has_status( array( 'pending', 'failed' ) ) ) {
329
-				WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels( $order_id );
327
+			if ($order->has_status(array('pending', 'failed'))) {
328
+				WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels($order_id);
330 329
 			}
331 330
 
332 331
 			/* translators: transaction id */
333
-			$order->update_status( 'on-hold', sprintf( __( 'Stripe charge authorized (Charge ID: %s). Process order to take payment, or cancel to remove the pre-authorization.', 'woocommerce-gateway-stripe' ), $response->id ) );
332
+			$order->update_status('on-hold', sprintf(__('Stripe charge authorized (Charge ID: %s). Process order to take payment, or cancel to remove the pre-authorization.', 'woocommerce-gateway-stripe'), $response->id));
334 333
 		}
335 334
 
336
-		if ( is_callable( array( $order, 'save' ) ) ) {
335
+		if (is_callable(array($order, 'save'))) {
337 336
 			$order->save();
338 337
 		}
339 338
 
340
-		do_action( 'wc_gateway_stripe_process_response', $response, $order );
339
+		do_action('wc_gateway_stripe_process_response', $response, $order);
341 340
 
342 341
 		return $response;
343 342
 	}
@@ -350,10 +349,10 @@  discard block
 block discarded – undo
350 349
 	 * @param int $order_id
351 350
 	 * @return null
352 351
 	 */
353
-	public function send_failed_order_email( $order_id ) {
352
+	public function send_failed_order_email($order_id) {
354 353
 		$emails = WC()->mailer()->get_emails();
355
-		if ( ! empty( $emails ) && ! empty( $order_id ) ) {
356
-			$emails['WC_Email_Failed_Order']->trigger( $order_id );
354
+		if ( ! empty($emails) && ! empty($order_id)) {
355
+			$emails['WC_Email_Failed_Order']->trigger($order_id);
357 356
 		}
358 357
 	}
359 358
 
@@ -365,7 +364,7 @@  discard block
 block discarded – undo
365 364
 	 * @param object $order
366 365
 	 * @return object $details
367 366
 	 */
368
-	public function get_owner_details( $order ) {
367
+	public function get_owner_details($order) {
369 368
 		$billing_first_name = WC_Stripe_Helper::is_pre_30() ? $order->billing_first_name : $order->get_billing_first_name();
370 369
 		$billing_last_name  = WC_Stripe_Helper::is_pre_30() ? $order->billing_last_name : $order->get_billing_last_name();
371 370
 
@@ -376,8 +375,8 @@  discard block
 block discarded – undo
376 375
 
377 376
 		$phone                             = WC_Stripe_Helper::is_pre_30() ? $order->billing_phone : $order->get_billing_phone();
378 377
 
379
-		if ( ! empty( $phone ) ) {
380
-			$details['phone']              = $phone;
378
+		if ( ! empty($phone)) {
379
+			$details['phone'] = $phone;
381 380
 		}
382 381
 
383 382
 		$details['address']['line1']       = WC_Stripe_Helper::is_pre_30() ? $order->billing_address_1 : $order->get_billing_address_1();
@@ -387,7 +386,7 @@  discard block
 block discarded – undo
387 386
 		$details['address']['postal_code'] = WC_Stripe_Helper::is_pre_30() ? $order->billing_postcode : $order->get_billing_postcode();
388 387
 		$details['address']['country']     = WC_Stripe_Helper::is_pre_30() ? $order->billing_country : $order->get_billing_country();
389 388
 
390
-		return (object) apply_filters( 'wc_stripe_owner_details', $details, $order );
389
+		return (object) apply_filters('wc_stripe_owner_details', $details, $order);
391 390
 	}
392 391
 
393 392
 	/**
@@ -396,15 +395,15 @@  discard block
 block discarded – undo
396 395
 	 * @since 4.0.3
397 396
 	 * @param string $source_id The source ID to get source object for.
398 397
 	 */
399
-	public function get_source_object( $source_id = '' ) {
400
-		if ( empty( $source_id ) ) {
398
+	public function get_source_object($source_id = '') {
399
+		if (empty($source_id)) {
401 400
 			return '';
402 401
 		}
403 402
 
404
-		$source_object = WC_Stripe_API::retrieve( 'sources/' . $source_id );
403
+		$source_object = WC_Stripe_API::retrieve('sources/' . $source_id);
405 404
 
406
-		if ( ! empty( $source_object->error ) ) {
407
-			throw new WC_Stripe_Exception( print_r( $source_object, true ), $source_object->error->message );
405
+		if ( ! empty($source_object->error)) {
406
+			throw new WC_Stripe_Exception(print_r($source_object, true), $source_object->error->message);
408 407
 		}
409 408
 
410 409
 		return $source_object;
@@ -417,11 +416,11 @@  discard block
 block discarded – undo
417 416
 	 * @param object $source_object
418 417
 	 * @return bool
419 418
 	 */
420
-	public function is_3ds_required( $source_object ) {
419
+	public function is_3ds_required($source_object) {
421 420
 		return (
422
-			$source_object && ! empty( $source_object->card ) ) &&
423
-			( 'card' === $source_object->type && 'required' === $source_object->card->three_d_secure ||
424
-			( $this->three_d_secure && 'optional' === $source_object->card->three_d_secure )
421
+			$source_object && ! empty($source_object->card) ) &&
422
+			('card' === $source_object->type && 'required' === $source_object->card->three_d_secure ||
423
+			($this->three_d_secure && 'optional' === $source_object->card->three_d_secure)
425 424
 		);
426 425
 	}
427 426
 
@@ -432,8 +431,8 @@  discard block
 block discarded – undo
432 431
 	 * @param object $source_object
433 432
 	 * @return bool
434 433
 	 */
435
-	public function is_3ds_card( $source_object ) {
436
-		return ( $source_object && 'three_d_secure' === $source_object->type );
434
+	public function is_3ds_card($source_object) {
435
+		return ($source_object && 'three_d_secure' === $source_object->type);
437 436
 	}
438 437
 
439 438
 	/**
@@ -443,8 +442,8 @@  discard block
 block discarded – undo
443 442
 	 * @param object $source_object
444 443
 	 * @return bool
445 444
 	 */
446
-	public function is_prepaid_card( $source_object ) {
447
-		return ( $source_object && 'token' === $source_object->object && 'prepaid' === $source_object->card->funding );
445
+	public function is_prepaid_card($source_object) {
446
+		return ($source_object && 'token' === $source_object->object && 'prepaid' === $source_object->card->funding);
448 447
 	}
449 448
 
450 449
 	/**
@@ -454,8 +453,8 @@  discard block
 block discarded – undo
454 453
 	 * @param string $source_id
455 454
 	 * @return bool
456 455
 	 */
457
-	public function is_type_legacy_card( $source_id ) {
458
-		return ( preg_match( '/^card_/', $source_id ) );
456
+	public function is_type_legacy_card($source_id) {
457
+		return (preg_match('/^card_/', $source_id));
459 458
 	}
460 459
 
461 460
 	/**
@@ -468,22 +467,22 @@  discard block
 block discarded – undo
468 467
 	 * @param string $return_url
469 468
 	 * @return mixed
470 469
 	 */
471
-	public function create_3ds_source( $order, $source_object, $return_url = '' ) {
470
+	public function create_3ds_source($order, $source_object, $return_url = '') {
472 471
 		$currency                    = WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency();
473 472
 		$order_id                    = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
474
-		$return_url                  = empty( $return_url ) ? $this->get_stripe_return_url( $order ) : $return_url;
473
+		$return_url                  = empty($return_url) ? $this->get_stripe_return_url($order) : $return_url;
475 474
 
476 475
 		$post_data                   = array();
477
-		$post_data['amount']         = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency );
478
-		$post_data['currency']       = strtolower( $currency );
476
+		$post_data['amount']         = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency);
477
+		$post_data['currency']       = strtolower($currency);
479 478
 		$post_data['type']           = 'three_d_secure';
480
-		$post_data['owner']          = $this->get_owner_details( $order );
481
-		$post_data['three_d_secure'] = array( 'card' => $source_object->id );
482
-		$post_data['redirect']       = array( 'return_url' => $return_url );
479
+		$post_data['owner']          = $this->get_owner_details($order);
480
+		$post_data['three_d_secure'] = array('card' => $source_object->id);
481
+		$post_data['redirect']       = array('return_url' => $return_url);
483 482
 
484
-		WC_Stripe_Logger::log( 'Info: Begin creating 3DS source...' );
483
+		WC_Stripe_Logger::log('Info: Begin creating 3DS source...');
485 484
 
486
-		return WC_Stripe_API::request( apply_filters( 'wc_stripe_3ds_source', $post_data, $order ), 'sources' );
485
+		return WC_Stripe_API::request(apply_filters('wc_stripe_3ds_source', $post_data, $order), 'sources');
487 486
 	}
488 487
 
489 488
 	/**
@@ -499,61 +498,61 @@  discard block
 block discarded – undo
499 498
 	 * @throws Exception When card was not added or for and invalid card.
500 499
 	 * @return object
501 500
 	 */
502
-	public function prepare_source( $user_id, $force_save_source = false ) {
503
-		$customer           = new WC_Stripe_Customer( $user_id );
501
+	public function prepare_source($user_id, $force_save_source = false) {
502
+		$customer           = new WC_Stripe_Customer($user_id);
504 503
 		$set_customer       = true;
505
-		$force_save_source  = apply_filters( 'wc_stripe_force_save_source', $force_save_source, $customer );
504
+		$force_save_source  = apply_filters('wc_stripe_force_save_source', $force_save_source, $customer);
506 505
 		$source_object      = '';
507 506
 		$source_id          = '';
508 507
 		$wc_token_id        = false;
509
-		$payment_method     = isset( $_POST['payment_method'] ) ? wc_clean( $_POST['payment_method'] ) : 'stripe';
508
+		$payment_method     = isset($_POST['payment_method']) ? wc_clean($_POST['payment_method']) : 'stripe';
510 509
 		$is_token           = false;
511 510
 
512 511
 		// New CC info was entered and we have a new source to process.
513
-		if ( ! empty( $_POST['stripe_source'] ) ) {
514
-			$source_object = self::get_source_object( wc_clean( $_POST['stripe_source'] ) );
512
+		if ( ! empty($_POST['stripe_source'])) {
513
+			$source_object = self::get_source_object(wc_clean($_POST['stripe_source']));
515 514
 			$source_id     = $source_object->id;
516 515
 
517 516
 			// This checks to see if customer opted to save the payment method to file.
518
-			$maybe_saved_card = isset( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] ) && ! empty( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] );
517
+			$maybe_saved_card = isset($_POST['wc-' . $payment_method . '-new-payment-method']) && ! empty($_POST['wc-' . $payment_method . '-new-payment-method']);
519 518
 
520 519
 			/**
521 520
 			 * This is true if the user wants to store the card to their account.
522 521
 			 * Criteria to save to file is they are logged in, they opted to save or product requirements and the source is
523 522
 			 * actually reusable. Either that or force_save_source is true.
524 523
 			 */
525
-			if ( ( $user_id && $this->saved_cards && $maybe_saved_card && 'reusable' === $source_object->usage ) || $force_save_source ) {
526
-				$response = $customer->add_source( $source_object->id );
524
+			if (($user_id && $this->saved_cards && $maybe_saved_card && 'reusable' === $source_object->usage) || $force_save_source) {
525
+				$response = $customer->add_source($source_object->id);
527 526
 
528
-				if ( ! empty( $response->error ) ) {
529
-					throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message );
527
+				if ( ! empty($response->error)) {
528
+					throw new WC_Stripe_Exception(print_r($response, true), $response->error->message);
530 529
 				}
531 530
 			}
532
-		} elseif ( isset( $_POST[ 'wc-' . $payment_method . '-payment-token' ] ) && 'new' !== $_POST[ 'wc-' . $payment_method . '-payment-token' ] ) {
531
+		} elseif (isset($_POST['wc-' . $payment_method . '-payment-token']) && 'new' !== $_POST['wc-' . $payment_method . '-payment-token']) {
533 532
 			// Use an existing token, and then process the payment.
534
-			$wc_token_id = wc_clean( $_POST[ 'wc-' . $payment_method . '-payment-token' ] );
535
-			$wc_token    = WC_Payment_Tokens::get( $wc_token_id );
533
+			$wc_token_id = wc_clean($_POST['wc-' . $payment_method . '-payment-token']);
534
+			$wc_token    = WC_Payment_Tokens::get($wc_token_id);
536 535
 
537
-			if ( ! $wc_token || $wc_token->get_user_id() !== get_current_user_id() ) {
538
-				WC()->session->set( 'refresh_totals', true );
539
-				throw new WC_Stripe_Exception( 'Invalid payment method', __( 'Invalid payment method. Please input a new card number.', 'woocommerce-gateway-stripe' ) );
536
+			if ( ! $wc_token || $wc_token->get_user_id() !== get_current_user_id()) {
537
+				WC()->session->set('refresh_totals', true);
538
+				throw new WC_Stripe_Exception('Invalid payment method', __('Invalid payment method. Please input a new card number.', 'woocommerce-gateway-stripe'));
540 539
 			}
541 540
 
542 541
 			$source_id = $wc_token->get_token();
543 542
 
544
-			if ( $this->is_type_legacy_card( $source_id ) ) {
543
+			if ($this->is_type_legacy_card($source_id)) {
545 544
 				$is_token = true;
546 545
 			}
547
-		} elseif ( isset( $_POST['stripe_token'] ) && 'new' !== $_POST['stripe_token'] ) {
548
-			$stripe_token     = wc_clean( $_POST['stripe_token'] );
549
-			$maybe_saved_card = isset( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] ) && ! empty( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] );
546
+		} elseif (isset($_POST['stripe_token']) && 'new' !== $_POST['stripe_token']) {
547
+			$stripe_token     = wc_clean($_POST['stripe_token']);
548
+			$maybe_saved_card = isset($_POST['wc-' . $payment_method . '-new-payment-method']) && ! empty($_POST['wc-' . $payment_method . '-new-payment-method']);
550 549
 
551 550
 			// This is true if the user wants to store the card to their account.
552
-			if ( ( $user_id && $this->saved_cards && $maybe_saved_card ) || $force_save_source ) {
553
-				$response = $customer->add_source( $stripe_token );
551
+			if (($user_id && $this->saved_cards && $maybe_saved_card) || $force_save_source) {
552
+				$response = $customer->add_source($stripe_token);
554 553
 
555
-				if ( ! empty( $response->error ) ) {
556
-					throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message );
554
+				if ( ! empty($response->error)) {
555
+					throw new WC_Stripe_Exception(print_r($response, true), $response->error->message);
557 556
 				}
558 557
 			} else {
559 558
 				$set_customer = false;
@@ -562,14 +561,14 @@  discard block
 block discarded – undo
562 561
 			}
563 562
 		}
564 563
 
565
-		if ( ! $set_customer ) {
564
+		if ( ! $set_customer) {
566 565
 			$customer_id = false;
567 566
 		} else {
568 567
 			$customer_id = $customer->get_id() ? $customer->get_id() : false;
569 568
 		}
570 569
 
571
-		if ( empty( $source_object ) && ! $is_token ) {
572
-			$source_object = self::get_source_object( $source_id );
570
+		if (empty($source_object) && ! $is_token) {
571
+			$source_object = self::get_source_object($source_id);
573 572
 		}
574 573
 
575 574
 		return (object) array(
@@ -593,37 +592,37 @@  discard block
 block discarded – undo
593 592
 	 * @param object $order
594 593
 	 * @return object
595 594
 	 */
596
-	public function prepare_order_source( $order = null ) {
595
+	public function prepare_order_source($order = null) {
597 596
 		$stripe_customer = new WC_Stripe_Customer();
598 597
 		$stripe_source   = false;
599 598
 		$token_id        = false;
600 599
 
601
-		if ( $order ) {
600
+		if ($order) {
602 601
 			$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
603 602
 
604
-			$stripe_customer_id = get_post_meta( $order_id, '_stripe_customer_id', true );
603
+			$stripe_customer_id = get_post_meta($order_id, '_stripe_customer_id', true);
605 604
 
606
-			if ( $stripe_customer_id ) {
607
-				$stripe_customer->set_id( $stripe_customer_id );
605
+			if ($stripe_customer_id) {
606
+				$stripe_customer->set_id($stripe_customer_id);
608 607
 			}
609 608
 
610
-			$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_source_id', true ) : $order->get_meta( '_stripe_source_id', true );
609
+			$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_source_id', true) : $order->get_meta('_stripe_source_id', true);
611 610
 
612 611
 			// Since 4.0.0, we changed card to source so we need to account for that.
613
-			if ( empty( $source_id ) ) {
614
-				$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_card_id', true ) : $order->get_meta( '_stripe_card_id', true );
612
+			if (empty($source_id)) {
613
+				$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_card_id', true) : $order->get_meta('_stripe_card_id', true);
615 614
 
616 615
 				// Take this opportunity to update the key name.
617
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_source_id', $source_id ) : $order->update_meta_data( '_stripe_source_id', $source_id );
616
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_source_id', $source_id) : $order->update_meta_data('_stripe_source_id', $source_id);
618 617
 
619
-				if ( is_callable( array( $order, 'save' ) ) ) {
618
+				if (is_callable(array($order, 'save'))) {
620 619
 					$order->save();
621 620
 				}
622 621
 			}
623 622
 
624
-			if ( $source_id ) {
623
+			if ($source_id) {
625 624
 				$stripe_source = $source_id;
626
-			} elseif ( apply_filters( 'wc_stripe_use_default_customer_source', true ) ) {
625
+			} elseif (apply_filters('wc_stripe_use_default_customer_source', true)) {
627 626
 				/*
628 627
 				 * We can attempt to charge the customer's default source
629 628
 				 * by sending empty source id.
@@ -647,27 +646,27 @@  discard block
 block discarded – undo
647 646
 	 * @param WC_Order $order For to which the source applies.
648 647
 	 * @param stdClass $source Source information.
649 648
 	 */
650
-	public function save_source_to_order( $order, $source ) {
649
+	public function save_source_to_order($order, $source) {
651 650
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
652 651
 
653 652
 		// Store source in the order.
654
-		if ( $source->customer ) {
655
-			if ( WC_Stripe_Helper::is_pre_30() ) {
656
-				update_post_meta( $order_id, '_stripe_customer_id', $source->customer );
653
+		if ($source->customer) {
654
+			if (WC_Stripe_Helper::is_pre_30()) {
655
+				update_post_meta($order_id, '_stripe_customer_id', $source->customer);
657 656
 			} else {
658
-				$order->update_meta_data( '_stripe_customer_id', $source->customer );
657
+				$order->update_meta_data('_stripe_customer_id', $source->customer);
659 658
 			}
660 659
 		}
661 660
 
662
-		if ( $source->source ) {
663
-			if ( WC_Stripe_Helper::is_pre_30() ) {
664
-				update_post_meta( $order_id, '_stripe_source_id', $source->source );
661
+		if ($source->source) {
662
+			if (WC_Stripe_Helper::is_pre_30()) {
663
+				update_post_meta($order_id, '_stripe_source_id', $source->source);
665 664
 			} else {
666
-				$order->update_meta_data( '_stripe_source_id', $source->source );
665
+				$order->update_meta_data('_stripe_source_id', $source->source);
667 666
 			}
668 667
 		}
669 668
 
670
-		if ( is_callable( array( $order, 'save' ) ) ) {
669
+		if (is_callable(array($order, 'save'))) {
671 670
 			$order->save();
672 671
 		}
673 672
 	}
@@ -681,35 +680,35 @@  discard block
 block discarded – undo
681 680
 	 * @param object $order The order object
682 681
 	 * @param int $balance_transaction_id
683 682
 	 */
684
-	public function update_fees( $order, $balance_transaction_id ) {
683
+	public function update_fees($order, $balance_transaction_id) {
685 684
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
686 685
 
687
-		$balance_transaction = WC_Stripe_API::retrieve( 'balance/history/' . $balance_transaction_id );
686
+		$balance_transaction = WC_Stripe_API::retrieve('balance/history/' . $balance_transaction_id);
688 687
 
689
-		if ( empty( $balance_transaction->error ) ) {
690
-			if ( isset( $balance_transaction ) && isset( $balance_transaction->fee ) ) {
688
+		if (empty($balance_transaction->error)) {
689
+			if (isset($balance_transaction) && isset($balance_transaction->fee)) {
691 690
 				// Fees and Net needs to both come from Stripe to be accurate as the returned
692 691
 				// values are in the local currency of the Stripe account, not from WC.
693
-				$fee_refund = ! empty( $balance_transaction->fee ) ? WC_Stripe_Helper::format_balance_fee( $balance_transaction, 'fee' ) : 0;
694
-				$net_refund = ! empty( $balance_transaction->net ) ? WC_Stripe_Helper::format_balance_fee( $balance_transaction, 'net' ) : 0;
692
+				$fee_refund = ! empty($balance_transaction->fee) ? WC_Stripe_Helper::format_balance_fee($balance_transaction, 'fee') : 0;
693
+				$net_refund = ! empty($balance_transaction->net) ? WC_Stripe_Helper::format_balance_fee($balance_transaction, 'net') : 0;
695 694
 
696 695
 				// Current data fee & net.
697
-				$fee_current = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, self::META_NAME_FEE, true ) : $order->get_meta( self::META_NAME_FEE, true );
698
-				$net_current = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, self::META_NAME_NET, true ) : $order->get_meta( self::META_NAME_NET, true );
696
+				$fee_current = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, self::META_NAME_FEE, true) : $order->get_meta(self::META_NAME_FEE, true);
697
+				$net_current = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, self::META_NAME_NET, true) : $order->get_meta(self::META_NAME_NET, true);
699 698
 
700 699
 				// Calculation.
701 700
 				$fee = (float) $fee_current + (float) $fee_refund;
702 701
 				$net = (float) $net_current + (float) $net_refund;
703 702
 
704
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, self::META_NAME_FEE, $fee ) : $order->update_meta_data( self::META_NAME_FEE, $fee );
705
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, self::META_NAME_NET, $net ) : $order->update_meta_data( self::META_NAME_NET, $net );
703
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, self::META_NAME_FEE, $fee) : $order->update_meta_data(self::META_NAME_FEE, $fee);
704
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, self::META_NAME_NET, $net) : $order->update_meta_data(self::META_NAME_NET, $net);
706 705
 
707
-				if ( is_callable( array( $order, 'save' ) ) ) {
706
+				if (is_callable(array($order, 'save'))) {
708 707
 					$order->save();
709 708
 				}
710 709
 			}
711 710
 		} else {
712
-			WC_Stripe_Logger::log( "Unable to update fees/net meta for order: {$order_id}" );
711
+			WC_Stripe_Logger::log("Unable to update fees/net meta for order: {$order_id}");
713 712
 		}
714 713
 	}
715 714
 
@@ -722,33 +721,33 @@  discard block
 block discarded – undo
722 721
 	 * @param  float $amount
723 722
 	 * @return bool
724 723
 	 */
725
-	public function process_refund( $order_id, $amount = null, $reason = '' ) {
726
-		$order = wc_get_order( $order_id );
724
+	public function process_refund($order_id, $amount = null, $reason = '') {
725
+		$order = wc_get_order($order_id);
727 726
 
728
-		if ( ! $order || ! $order->get_transaction_id() ) {
727
+		if ( ! $order || ! $order->get_transaction_id()) {
729 728
 			return false;
730 729
 		}
731 730
 
732 731
 		$request = array();
733 732
 
734
-		if ( WC_Stripe_Helper::is_pre_30() ) {
735
-			$order_currency = get_post_meta( $order_id, '_order_currency', true );
736
-			$captured       = get_post_meta( $order_id, '_stripe_charge_captured', true );
733
+		if (WC_Stripe_Helper::is_pre_30()) {
734
+			$order_currency = get_post_meta($order_id, '_order_currency', true);
735
+			$captured       = get_post_meta($order_id, '_stripe_charge_captured', true);
737 736
 		} else {
738 737
 			$order_currency = $order->get_currency();
739
-			$captured       = $order->get_meta( '_stripe_charge_captured', true );
738
+			$captured       = $order->get_meta('_stripe_charge_captured', true);
740 739
 		}
741 740
 
742
-		if ( ! is_null( $amount ) ) {
743
-			$request['amount'] = WC_Stripe_Helper::get_stripe_amount( $amount, $order_currency );
741
+		if ( ! is_null($amount)) {
742
+			$request['amount'] = WC_Stripe_Helper::get_stripe_amount($amount, $order_currency);
744 743
 		}
745 744
 
746 745
 		// If order is only authorized, don't pass amount.
747
-		if ( 'yes' !== $captured ) {
748
-			unset( $request['amount'] );
746
+		if ('yes' !== $captured) {
747
+			unset($request['amount']);
749 748
 		}
750 749
 
751
-		if ( $reason ) {
750
+		if ($reason) {
752 751
 			$request['metadata'] = array(
753 752
 				'reason' => $reason,
754 753
 			);
@@ -756,35 +755,35 @@  discard block
 block discarded – undo
756 755
 
757 756
 		$request['charge'] = $order->get_transaction_id();
758 757
 
759
-		WC_Stripe_Logger::log( "Info: Beginning refund for order {$order->get_transaction_id()} for the amount of {$amount}" );
758
+		WC_Stripe_Logger::log("Info: Beginning refund for order {$order->get_transaction_id()} for the amount of {$amount}");
760 759
 
761
-		$request = apply_filters( 'wc_stripe_refund_request', $request, $order );
760
+		$request = apply_filters('wc_stripe_refund_request', $request, $order);
762 761
 
763
-		$response = WC_Stripe_API::request( $request, 'refunds' );
762
+		$response = WC_Stripe_API::request($request, 'refunds');
764 763
 
765
-		if ( ! empty( $response->error ) ) {
766
-			WC_Stripe_Logger::log( 'Error: ' . $response->error->message );
764
+		if ( ! empty($response->error)) {
765
+			WC_Stripe_Logger::log('Error: ' . $response->error->message);
767 766
 
768 767
 			return $response;
769 768
 
770
-		} elseif ( ! empty( $response->id ) ) {
771
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_refund_id', $response->id ) : $order->update_meta_data( '_stripe_refund_id', $response->id );
769
+		} elseif ( ! empty($response->id)) {
770
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_refund_id', $response->id) : $order->update_meta_data('_stripe_refund_id', $response->id);
772 771
 
773
-			$amount = wc_price( $response->amount / 100 );
772
+			$amount = wc_price($response->amount / 100);
774 773
 
775
-			if ( in_array( strtolower( $order->get_currency() ), WC_Stripe_Helper::no_decimal_currencies() ) ) {
776
-				$amount = wc_price( $response->amount );
774
+			if (in_array(strtolower($order->get_currency()), WC_Stripe_Helper::no_decimal_currencies())) {
775
+				$amount = wc_price($response->amount);
777 776
 			}
778 777
 
779
-			if ( isset( $response->balance_transaction ) ) {
780
-				$this->update_fees( $order, $response->balance_transaction );
778
+			if (isset($response->balance_transaction)) {
779
+				$this->update_fees($order, $response->balance_transaction);
781 780
 			}
782 781
 
783 782
 			/* translators: 1) dollar amount 2) transaction id 3) refund message */
784
-			$refund_message = ( isset( $captured ) && 'yes' === $captured ) ? sprintf( __( 'Refunded %1$s - Refund ID: %2$s - Reason: %3$s', 'woocommerce-gateway-stripe' ), $amount, $response->id, $reason ) : __( 'Pre-Authorization Released', 'woocommerce-gateway-stripe' );
783
+			$refund_message = (isset($captured) && 'yes' === $captured) ? sprintf(__('Refunded %1$s - Refund ID: %2$s - Reason: %3$s', 'woocommerce-gateway-stripe'), $amount, $response->id, $reason) : __('Pre-Authorization Released', 'woocommerce-gateway-stripe');
785 784
 
786
-			$order->add_order_note( $refund_message );
787
-			WC_Stripe_Logger::log( 'Success: ' . html_entity_decode( strip_tags( $refund_message ) ) );
785
+			$order->add_order_note($refund_message);
786
+			WC_Stripe_Logger::log('Success: ' . html_entity_decode(strip_tags($refund_message)));
788 787
 
789 788
 			return true;
790 789
 		}
@@ -799,44 +798,44 @@  discard block
 block discarded – undo
799 798
 	 */
800 799
 	public function add_payment_method() {
801 800
 		$error     = false;
802
-		$error_msg = __( 'There was a problem adding the card.', 'woocommerce-gateway-stripe' );
801
+		$error_msg = __('There was a problem adding the card.', 'woocommerce-gateway-stripe');
803 802
 		$source_id = '';
804 803
 
805
-		if ( empty( $_POST['stripe_source'] ) && empty( $_POST['stripe_token'] ) || ! is_user_logged_in() ) {
804
+		if (empty($_POST['stripe_source']) && empty($_POST['stripe_token']) || ! is_user_logged_in()) {
806 805
 			$error = true;
807 806
 		}
808 807
 
809
-		$stripe_customer = new WC_Stripe_Customer( get_current_user_id() );
808
+		$stripe_customer = new WC_Stripe_Customer(get_current_user_id());
810 809
 
811
-		$source = ! empty( $_POST['stripe_source'] ) ? wc_clean( $_POST['stripe_source'] ) : '';
810
+		$source = ! empty($_POST['stripe_source']) ? wc_clean($_POST['stripe_source']) : '';
812 811
 
813
-		$source_object = WC_Stripe_API::retrieve( 'sources/' . $source );
812
+		$source_object = WC_Stripe_API::retrieve('sources/' . $source);
814 813
 
815
-		if ( isset( $source_object ) ) {
816
-			if ( ! empty( $source_object->error ) ) {
814
+		if (isset($source_object)) {
815
+			if ( ! empty($source_object->error)) {
817 816
 				$error = true;
818 817
 			}
819 818
 
820 819
 			$source_id = $source_object->id;
821
-		} elseif ( isset( $_POST['stripe_token'] ) ) {
822
-			$source_id = wc_clean( $_POST['stripe_token'] );
820
+		} elseif (isset($_POST['stripe_token'])) {
821
+			$source_id = wc_clean($_POST['stripe_token']);
823 822
 		}
824 823
 
825
-		$response = $stripe_customer->add_source( $source_id );
824
+		$response = $stripe_customer->add_source($source_id);
826 825
 
827
-		if ( ! $response || is_wp_error( $response ) || ! empty( $response->error ) ) {
826
+		if ( ! $response || is_wp_error($response) || ! empty($response->error)) {
828 827
 			$error = true;
829 828
 		}
830 829
 
831
-		if ( $error ) {
832
-			wc_add_notice( $error_msg, 'error' );
833
-			WC_Stripe_Logger::log( 'Add payment method Error: ' . $error_msg );
830
+		if ($error) {
831
+			wc_add_notice($error_msg, 'error');
832
+			WC_Stripe_Logger::log('Add payment method Error: ' . $error_msg);
834 833
 			return;
835 834
 		}
836 835
 
837 836
 		return array(
838 837
 			'result'   => 'success',
839
-			'redirect' => wc_get_endpoint_url( 'payment-methods' ),
838
+			'redirect' => wc_get_endpoint_url('payment-methods'),
840 839
 		);
841 840
 	}
842 841
 
@@ -853,10 +852,10 @@  discard block
 block discarded – undo
853 852
 		 * Stripe expects Norwegian to only be passed NO.
854 853
 		 * But WP has different dialects.
855 854
 		 */
856
-		if ( 'NO' === substr( $locale, 3, 2 ) ) {
855
+		if ('NO' === substr($locale, 3, 2)) {
857 856
 			$locale = 'no';
858 857
 		} else {
859
-			$locale = substr( get_locale(), 0, 2 );
858
+			$locale = substr(get_locale(), 0, 2);
860 859
 		}
861 860
 
862 861
 		return $locale;
@@ -870,9 +869,9 @@  discard block
 block discarded – undo
870 869
 	 * @param string $idempotency_key
871 870
 	 * @param array $request
872 871
 	 */
873
-	public function change_idempotency_key( $idempotency_key, $request ) {
874
-		$customer = ! empty( $request['customer'] ) ? $request['customer'] : '';
875
-		$source   = ! empty( $request['source'] ) ? $request['source'] : $customer;
872
+	public function change_idempotency_key($idempotency_key, $request) {
873
+		$customer = ! empty($request['customer']) ? $request['customer'] : '';
874
+		$source   = ! empty($request['source']) ? $request['source'] : $customer;
876 875
 		$count    = $this->retry_interval;
877 876
 
878 877
 		return $request['metadata']['order_id'] . '-' . $count . '-' . $source;
@@ -886,8 +885,8 @@  discard block
 block discarded – undo
886 885
 	 * @since 4.0.6
887 886
 	 * @param array $headers
888 887
 	 */
889
-	public function is_original_request( $headers ) {
890
-		if ( $headers['original-request'] === $headers['request-id'] ) {
888
+	public function is_original_request($headers) {
889
+		if ($headers['original-request'] === $headers['request-id']) {
891 890
 			return true;
892 891
 		}
893 892
 
Please login to merge, or discard this patch.