Completed
Push — master ( 7e98cf...023f04 )
by Roy
02:08
created
includes/abstracts/abstract-wc-stripe-payment-gateway.php 1 patch
Spacing   +218 added lines, -219 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 ||
@@ -33,11 +33,11 @@  discard block
 block discarded – undo
33 33
 	 * Check if this gateway is enabled
34 34
 	 */
35 35
 	public function is_available() {
36
-		if ( 'yes' === $this->enabled ) {
37
-			if ( ! $this->testmode && is_checkout() && ! is_ssl() ) {
36
+		if ('yes' === $this->enabled) {
37
+			if ( ! $this->testmode && is_checkout() && ! is_ssl()) {
38 38
 				return false;
39 39
 			}
40
-			if ( ! $this->secret_key || ! $this->publishable_key ) {
40
+			if ( ! $this->secret_key || ! $this->publishable_key) {
41 41
 				return false;
42 42
 			}
43 43
 			return true;
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
 	 * @since 4.0.0
53 53
 	 * @version 4.0.0
54 54
 	 */
55
-	public function add_admin_notice( $slug, $class, $message ) {
56
-		$this->notices[ $slug ] = array(
55
+	public function add_admin_notice($slug, $class, $message) {
56
+		$this->notices[$slug] = array(
57 57
 			'class'   => $class,
58 58
 			'message' => $message,
59 59
 		);
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
 	 * @version 4.0.0
67 67
 	 */
68 68
 	public function remove_admin_notice() {
69
-		if ( did_action( 'woocommerce_update_options' ) ) {
70
-			remove_action( 'admin_notices', array( $this, 'check_environment' ) );
69
+		if (did_action('woocommerce_update_options')) {
70
+			remove_action('admin_notices', array($this, 'check_environment'));
71 71
 		}
72 72
 	}
73 73
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 	 * @return array
80 80
 	 */
81 81
 	public function payment_icons() {
82
-		return apply_filters( 'wc_stripe_payment_icons', array(
82
+		return apply_filters('wc_stripe_payment_icons', array(
83 83
 			'visa'       => '<i class="stripe-pf stripe-pf-visa stripe-pf-right" alt="Visa" aria-hidden="true"></i>',
84 84
 			'amex'       => '<i class="stripe-pf stripe-pf-american-express stripe-pf-right" alt="Amex" aria-hidden="true"></i>',
85 85
 			'mastercard' => '<i class="stripe-pf stripe-pf-mastercard stripe-pf-right" alt="Mastercard" aria-hidden="true"></i>',
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 			'eps'        => '<i class="stripe-pf stripe-pf-eps stripe-pf-right" alt="EPS" aria-hidden="true"></i>',
97 97
 			'sofort'     => '<i class="stripe-pf stripe-pf-sofort stripe-pf-right" alt="SOFORT" aria-hidden="true"></i>',
98 98
 			'sepa'       => '<i class="stripe-pf stripe-pf-sepa stripe-pf-right" alt="SEPA" aria-hidden="true"></i>',
99
-		) );
99
+		));
100 100
 	}
101 101
 
102 102
 	/**
@@ -107,10 +107,10 @@  discard block
 block discarded – undo
107 107
 	 * @version 4.0.0
108 108
 	 * @param object $order
109 109
 	 */
110
-	public function validate_minimum_order_amount( $order ) {
111
-		if ( $order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount() ) {
110
+	public function validate_minimum_order_amount($order) {
111
+		if ($order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount()) {
112 112
 			/* translators: 1) dollar amount */
113
-			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 ) ) );
113
+			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)));
114 114
 		}
115 115
 	}
116 116
 
@@ -120,14 +120,14 @@  discard block
 block discarded – undo
120 120
 	 * @since 4.0.0
121 121
 	 * @version 4.0.0
122 122
 	 */
123
-	public function get_transaction_url( $order ) {
124
-		if ( $this->testmode ) {
123
+	public function get_transaction_url($order) {
124
+		if ($this->testmode) {
125 125
 			$this->view_transaction_url = 'https://dashboard.stripe.com/test/payments/%s';
126 126
 		} else {
127 127
 			$this->view_transaction_url = 'https://dashboard.stripe.com/payments/%s';
128 128
 		}
129 129
 
130
-		return parent::get_transaction_url( $order );
130
+		return parent::get_transaction_url($order);
131 131
 	}
132 132
 
133 133
 	/**
@@ -136,15 +136,15 @@  discard block
 block discarded – undo
136 136
 	 * @since 4.0.0
137 137
 	 * @version 4.0.0
138 138
 	 */
139
-	public function get_stripe_customer_id( $order ) {
140
-		$customer = get_user_meta( WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(), '_stripe_customer_id', true );
139
+	public function get_stripe_customer_id($order) {
140
+		$customer = get_user_meta(WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(), '_stripe_customer_id', true);
141 141
 
142
-		if ( empty( $customer ) ) {
142
+		if (empty($customer)) {
143 143
 			// Try to get it via the order.
144
-			if ( WC_Stripe_Helper::is_pre_30() ) {
145
-				return get_post_meta( $order->id, '_stripe_customer_id', true );
144
+			if (WC_Stripe_Helper::is_pre_30()) {
145
+				return get_post_meta($order->id, '_stripe_customer_id', true);
146 146
 			} else {
147
-				return $order->get_meta( '_stripe_customer_id', true );
147
+				return $order->get_meta('_stripe_customer_id', true);
148 148
 			}
149 149
 		} else {
150 150
 			return $customer;
@@ -161,9 +161,9 @@  discard block
 block discarded – undo
161 161
 	 * @param object $order
162 162
 	 * @param int $id Stripe session id.
163 163
 	 */
164
-	public function get_stripe_return_url( $order = null, $id = null ) {
165
-		if ( is_object( $order ) ) {
166
-			if ( empty( $id ) ) {
164
+	public function get_stripe_return_url($order = null, $id = null) {
165
+		if (is_object($order)) {
166
+			if (empty($id)) {
167 167
 				$id = uniqid();
168 168
 			}
169 169
 
@@ -174,10 +174,10 @@  discard block
 block discarded – undo
174 174
 				'order_id'       => $order_id,
175 175
 			);
176 176
 
177
-			return esc_url_raw( add_query_arg( $args, $this->get_return_url( $order ) ) );
177
+			return esc_url_raw(add_query_arg($args, $this->get_return_url($order)));
178 178
 		}
179 179
 
180
-		return esc_url_raw( add_query_arg( array( 'utm_nooverride' => '1' ), $this->get_return_url() ) );
180
+		return esc_url_raw(add_query_arg(array('utm_nooverride' => '1'), $this->get_return_url()));
181 181
 	}
182 182
 
183 183
 	/**
@@ -185,8 +185,8 @@  discard block
 block discarded – undo
185 185
 	 * @param  int  $order_id
186 186
 	 * @return boolean
187 187
 	 */
188
-	public function has_subscription( $order_id ) {
189
-		return ( function_exists( 'wcs_order_contains_subscription' ) && ( wcs_order_contains_subscription( $order_id ) || wcs_is_subscription( $order_id ) || wcs_order_contains_renewal( $order_id ) ) );
188
+	public function has_subscription($order_id) {
189
+		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 190
 	}
191 191
 
192 192
 	/**
@@ -198,34 +198,33 @@  discard block
 block discarded – undo
198 198
 	 * @param  object $prepared_source
199 199
 	 * @return array()
200 200
 	 */
201
-	public function generate_payment_request( $order, $prepared_source ) {
202
-		$settings                          = get_option( 'woocommerce_stripe_settings', array() );
203
-		$statement_descriptor              = ! empty( $settings['statement_descriptor'] ) ? str_replace( "'", '', $settings['statement_descriptor'] ) : '';
204
-		$capture                           = ! empty( $settings['capture'] ) && 'yes' === $settings['capture'] ? true : false;
201
+	public function generate_payment_request($order, $prepared_source) {
202
+		$settings                          = get_option('woocommerce_stripe_settings', array());
203
+		$statement_descriptor              = ! empty($settings['statement_descriptor']) ? str_replace("'", '', $settings['statement_descriptor']) : '';
204
+		$capture                           = ! empty($settings['capture']) && 'yes' === $settings['capture'] ? true : false;
205 205
 		$post_data                         = array();
206
-		$post_data['currency']             = strtolower( WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency() );
207
-		$post_data['amount']               = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $post_data['currency'] );
206
+		$post_data['currency']             = strtolower(WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency());
207
+		$post_data['amount']               = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $post_data['currency']);
208 208
 		/* translators: 1) blog name 2) order number */
209
-		$post_data['description']          = sprintf( __( '%1$s - Order %2$s', 'woocommerce-gateway-stripe' ), wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ), $order->get_order_number() );
209
+		$post_data['description']          = sprintf(__('%1$s - Order %2$s', 'woocommerce-gateway-stripe'), wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES), $order->get_order_number());
210 210
 		$billing_email      = WC_Stripe_Helper::is_pre_30() ? $order->billing_email : $order->get_billing_email();
211 211
 		$billing_first_name = WC_Stripe_Helper::is_pre_30() ? $order->billing_first_name : $order->get_billing_first_name();
212 212
 		$billing_last_name  = WC_Stripe_Helper::is_pre_30() ? $order->billing_last_name : $order->get_billing_last_name();
213 213
 
214
-		if ( ! empty( $billing_email ) && apply_filters( 'wc_stripe_send_stripe_receipt', false ) ) {
214
+		if ( ! empty($billing_email) && apply_filters('wc_stripe_send_stripe_receipt', false)) {
215 215
 			$post_data['receipt_email'] = $billing_email;
216 216
 		}
217 217
 
218
-		switch ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) {
219
-			case 'stripe':
220
-				if ( ! empty( $statement_descriptor ) ) {
221
-					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor );
218
+		switch (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method()) {
219
+			case 'stripe' : if ( ! empty($statement_descriptor)) {
220
+					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor);
222 221
 				}
223 222
 
224 223
 				$post_data['capture'] = $capture ? 'true' : 'false';
225 224
 				break;
226 225
 			case 'stripe_sepa':
227
-				if ( ! empty( $statement_descriptor ) ) {
228
-					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor );
226
+				if ( ! empty($statement_descriptor)) {
227
+					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor);
229 228
 				}
230 229
 				break;
231 230
 		}
@@ -233,25 +232,25 @@  discard block
 block discarded – undo
233 232
 		$post_data['expand[]'] = 'balance_transaction';
234 233
 
235 234
 		$metadata = array(
236
-			__( 'customer_name', 'woocommerce-gateway-stripe' ) => sanitize_text_field( $billing_first_name ) . ' ' . sanitize_text_field( $billing_last_name ),
237
-			__( 'customer_email', 'woocommerce-gateway-stripe' ) => sanitize_email( $billing_email ),
235
+			__('customer_name', 'woocommerce-gateway-stripe') => sanitize_text_field($billing_first_name) . ' ' . sanitize_text_field($billing_last_name),
236
+			__('customer_email', 'woocommerce-gateway-stripe') => sanitize_email($billing_email),
238 237
 			'order_id' => WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(),
239 238
 		);
240 239
 
241
-		if ( $this->has_subscription( WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id() ) ) {
240
+		if ($this->has_subscription(WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id())) {
242 241
 			$metadata += array(
243 242
 				'payment_type' => 'recurring',
244
-				'site_url'     => esc_url( get_site_url() ),
243
+				'site_url'     => esc_url(get_site_url()),
245 244
 			);
246 245
 		}
247 246
 
248
-		$post_data['metadata'] = apply_filters( 'wc_stripe_payment_metadata', $metadata, $order, $prepared_source );
247
+		$post_data['metadata'] = apply_filters('wc_stripe_payment_metadata', $metadata, $order, $prepared_source);
249 248
 
250
-		if ( $prepared_source->customer ) {
249
+		if ($prepared_source->customer) {
251 250
 			$post_data['customer'] = $prepared_source->customer;
252 251
 		}
253 252
 
254
-		if ( $prepared_source->source ) {
253
+		if ($prepared_source->source) {
255 254
 			$post_data['source'] = $prepared_source->source;
256 255
 		}
257 256
 
@@ -263,79 +262,79 @@  discard block
 block discarded – undo
263 262
 		 * @param WC_Order $order
264 263
 		 * @param object $source
265 264
 		 */
266
-		return apply_filters( 'wc_stripe_generate_payment_request', $post_data, $order, $prepared_source );
265
+		return apply_filters('wc_stripe_generate_payment_request', $post_data, $order, $prepared_source);
267 266
 	}
268 267
 
269 268
 	/**
270 269
 	 * Store extra meta data for an order from a Stripe Response.
271 270
 	 */
272
-	public function process_response( $response, $order ) {
273
-		WC_Stripe_Logger::log( 'Processing response: ' . print_r( $response, true ) );
271
+	public function process_response($response, $order) {
272
+		WC_Stripe_Logger::log('Processing response: ' . print_r($response, true));
274 273
 
275 274
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
276 275
 
277
-		$captured = ( isset( $response->captured ) && $response->captured ) ? 'yes' : 'no';
276
+		$captured = (isset($response->captured) && $response->captured) ? 'yes' : 'no';
278 277
 
279 278
 		// Store charge data.
280
-		WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_charge_captured', $captured ) : $order->update_meta_data( '_stripe_charge_captured', $captured );
279
+		WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_charge_captured', $captured) : $order->update_meta_data('_stripe_charge_captured', $captured);
281 280
 
282 281
 		// Store other data such as fees.
283
-		if ( isset( $response->balance_transaction ) && isset( $response->balance_transaction->fee ) ) {
282
+		if (isset($response->balance_transaction) && isset($response->balance_transaction->fee)) {
284 283
 			// Fees and Net needs to both come from Stripe to be accurate as the returned
285 284
 			// values are in the local currency of the Stripe account, not from WC.
286
-			$fee = ! empty( $response->balance_transaction->fee ) ? WC_Stripe_Helper::format_balance_fee( $response->balance_transaction, 'fee' ) : 0;
287
-			$net = ! empty( $response->balance_transaction->net ) ? WC_Stripe_Helper::format_balance_fee( $response->balance_transaction, 'net' ) : 0;
288
-			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 );
289
-			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 );
285
+			$fee = ! empty($response->balance_transaction->fee) ? WC_Stripe_Helper::format_balance_fee($response->balance_transaction, 'fee') : 0;
286
+			$net = ! empty($response->balance_transaction->net) ? WC_Stripe_Helper::format_balance_fee($response->balance_transaction, 'net') : 0;
287
+			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);
288
+			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);
290 289
 		}
291 290
 
292
-		if ( 'yes' === $captured ) {
291
+		if ('yes' === $captured) {
293 292
 			/**
294 293
 			 * Charge can be captured but in a pending state. Payment methods
295 294
 			 * that are asynchronous may take couple days to clear. Webhook will
296 295
 			 * take care of the status changes.
297 296
 			 */
298
-			if ( 'pending' === $response->status ) {
299
-				$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 );
297
+			if ('pending' === $response->status) {
298
+				$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);
300 299
 
301
-				if ( ! $order_stock_reduced ) {
302
-					WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels( $order_id );
300
+				if ( ! $order_stock_reduced) {
301
+					WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels($order_id);
303 302
 				}
304 303
 
305
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $response->id ) : $order->set_transaction_id( $response->id );
304
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $response->id) : $order->set_transaction_id($response->id);
306 305
 				/* translators: transaction id */
307
-				$order->update_status( 'on-hold', sprintf( __( 'Stripe charge awaiting payment: %s.', 'woocommerce-gateway-stripe' ), $response->id ) );
306
+				$order->update_status('on-hold', sprintf(__('Stripe charge awaiting payment: %s.', 'woocommerce-gateway-stripe'), $response->id));
308 307
 			}
309 308
 
310
-			if ( 'succeeded' === $response->status ) {
311
-				$order->payment_complete( $response->id );
309
+			if ('succeeded' === $response->status) {
310
+				$order->payment_complete($response->id);
312 311
 
313 312
 				/* translators: transaction id */
314
-				$message = sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $response->id );
315
-				$order->add_order_note( $message );
313
+				$message = sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $response->id);
314
+				$order->add_order_note($message);
316 315
 			}
317 316
 
318
-			if ( 'failed' === $response->status ) {
319
-				$localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
320
-				$order->add_order_note( $localized_message );
321
-				throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
317
+			if ('failed' === $response->status) {
318
+				$localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe');
319
+				$order->add_order_note($localized_message);
320
+				throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
322 321
 			}
323 322
 		} else {
324
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $response->id ) : $order->set_transaction_id( $response->id );
323
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $response->id) : $order->set_transaction_id($response->id);
325 324
 
326
-			if ( $order->has_status( array( 'pending', 'failed' ) ) ) {
327
-				WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels( $order_id );
325
+			if ($order->has_status(array('pending', 'failed'))) {
326
+				WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels($order_id);
328 327
 			}
329 328
 
330 329
 			/* translators: transaction id */
331
-			$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 ) );
330
+			$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 331
 		}
333 332
 
334
-		if ( is_callable( array( $order, 'save' ) ) ) {
333
+		if (is_callable(array($order, 'save'))) {
335 334
 			$order->save();
336 335
 		}
337 336
 
338
-		do_action( 'wc_gateway_stripe_process_response', $response, $order );
337
+		do_action('wc_gateway_stripe_process_response', $response, $order);
339 338
 
340 339
 		return $response;
341 340
 	}
@@ -348,10 +347,10 @@  discard block
 block discarded – undo
348 347
 	 * @param int $order_id
349 348
 	 * @return null
350 349
 	 */
351
-	public function send_failed_order_email( $order_id ) {
350
+	public function send_failed_order_email($order_id) {
352 351
 		$emails = WC()->mailer()->get_emails();
353
-		if ( ! empty( $emails ) && ! empty( $order_id ) ) {
354
-			$emails['WC_Email_Failed_Order']->trigger( $order_id );
352
+		if ( ! empty($emails) && ! empty($order_id)) {
353
+			$emails['WC_Email_Failed_Order']->trigger($order_id);
355 354
 		}
356 355
 	}
357 356
 
@@ -363,7 +362,7 @@  discard block
 block discarded – undo
363 362
 	 * @param object $order
364 363
 	 * @return object $details
365 364
 	 */
366
-	public function get_owner_details( $order ) {
365
+	public function get_owner_details($order) {
367 366
 		$billing_first_name = WC_Stripe_Helper::is_pre_30() ? $order->billing_first_name : $order->get_billing_first_name();
368 367
 		$billing_last_name  = WC_Stripe_Helper::is_pre_30() ? $order->billing_last_name : $order->get_billing_last_name();
369 368
 
@@ -374,8 +373,8 @@  discard block
 block discarded – undo
374 373
 
375 374
 		$phone                             = WC_Stripe_Helper::is_pre_30() ? $order->billing_phone : $order->get_billing_phone();
376 375
 
377
-		if ( ! empty( $phone ) ) {
378
-			$details['phone']              = $phone;
376
+		if ( ! empty($phone)) {
377
+			$details['phone'] = $phone;
379 378
 		}
380 379
 
381 380
 		$details['address']['line1']       = WC_Stripe_Helper::is_pre_30() ? $order->billing_address_1 : $order->get_billing_address_1();
@@ -385,7 +384,7 @@  discard block
 block discarded – undo
385 384
 		$details['address']['postal_code'] = WC_Stripe_Helper::is_pre_30() ? $order->billing_postcode : $order->get_billing_postcode();
386 385
 		$details['address']['country']     = WC_Stripe_Helper::is_pre_30() ? $order->billing_country : $order->get_billing_country();
387 386
 
388
-		return (object) apply_filters( 'wc_stripe_owner_details', $details, $order );
387
+		return (object) apply_filters('wc_stripe_owner_details', $details, $order);
389 388
 	}
390 389
 
391 390
 	/**
@@ -394,15 +393,15 @@  discard block
 block discarded – undo
394 393
 	 * @since 4.0.3
395 394
 	 * @param string $source_id The source ID to get source object for.
396 395
 	 */
397
-	public function get_source_object( $source_id = '' ) {
398
-		if ( empty( $source_id ) ) {
396
+	public function get_source_object($source_id = '') {
397
+		if (empty($source_id)) {
399 398
 			return '';
400 399
 		}
401 400
 
402
-		$source_object = WC_Stripe_API::retrieve( 'sources/' . $source_id );
401
+		$source_object = WC_Stripe_API::retrieve('sources/' . $source_id);
403 402
 
404
-		if ( ! empty( $source_object->error ) ) {
405
-			throw new WC_Stripe_Exception( print_r( $source_object, true ), $source_object->error->message );
403
+		if ( ! empty($source_object->error)) {
404
+			throw new WC_Stripe_Exception(print_r($source_object, true), $source_object->error->message);
406 405
 		}
407 406
 
408 407
 		return $source_object;
@@ -415,11 +414,11 @@  discard block
 block discarded – undo
415 414
 	 * @param object $source_object
416 415
 	 * @return bool
417 416
 	 */
418
-	public function is_3ds_required( $source_object ) {
417
+	public function is_3ds_required($source_object) {
419 418
 		return (
420
-			$source_object && ! empty( $source_object->card ) ) &&
421
-			( 'card' === $source_object->type && 'required' === $source_object->card->three_d_secure ||
422
-			( $this->three_d_secure && 'optional' === $source_object->card->three_d_secure )
419
+			$source_object && ! empty($source_object->card) ) &&
420
+			('card' === $source_object->type && 'required' === $source_object->card->three_d_secure ||
421
+			($this->three_d_secure && 'optional' === $source_object->card->three_d_secure)
423 422
 		);
424 423
 	}
425 424
 
@@ -430,8 +429,8 @@  discard block
 block discarded – undo
430 429
 	 * @param object $source_object
431 430
 	 * @return bool
432 431
 	 */
433
-	public function is_3ds_card( $source_object ) {
434
-		return ( $source_object && 'three_d_secure' === $source_object->type );
432
+	public function is_3ds_card($source_object) {
433
+		return ($source_object && 'three_d_secure' === $source_object->type);
435 434
 	}
436 435
 
437 436
 	/**
@@ -441,8 +440,8 @@  discard block
 block discarded – undo
441 440
 	 * @param object $source_object
442 441
 	 * @return bool
443 442
 	 */
444
-	public function is_prepaid_card( $source_object ) {
445
-		return ( $source_object && 'token' === $source_object->object && 'prepaid' === $source_object->card->funding );
443
+	public function is_prepaid_card($source_object) {
444
+		return ($source_object && 'token' === $source_object->object && 'prepaid' === $source_object->card->funding);
446 445
 	}
447 446
 
448 447
 	/**
@@ -455,22 +454,22 @@  discard block
 block discarded – undo
455 454
 	 * @param string $return_url
456 455
 	 * @return mixed
457 456
 	 */
458
-	public function create_3ds_source( $order, $source_object, $return_url = '' ) {
457
+	public function create_3ds_source($order, $source_object, $return_url = '') {
459 458
 		$currency                    = WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency();
460 459
 		$order_id                    = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
461
-		$return_url                  = empty( $return_url ) ? $this->get_stripe_return_url( $order ) : $return_url;
460
+		$return_url                  = empty($return_url) ? $this->get_stripe_return_url($order) : $return_url;
462 461
 
463 462
 		$post_data                   = array();
464
-		$post_data['amount']         = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency );
465
-		$post_data['currency']       = strtolower( $currency );
463
+		$post_data['amount']         = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency);
464
+		$post_data['currency']       = strtolower($currency);
466 465
 		$post_data['type']           = 'three_d_secure';
467
-		$post_data['owner']          = $this->get_owner_details( $order );
468
-		$post_data['three_d_secure'] = array( 'card' => $source_object->id );
469
-		$post_data['redirect']       = array( 'return_url' => $return_url );
466
+		$post_data['owner']          = $this->get_owner_details($order);
467
+		$post_data['three_d_secure'] = array('card' => $source_object->id);
468
+		$post_data['redirect']       = array('return_url' => $return_url);
470 469
 
471
-		WC_Stripe_Logger::log( 'Info: Begin creating 3DS source...' );
470
+		WC_Stripe_Logger::log('Info: Begin creating 3DS source...');
472 471
 
473
-		return WC_Stripe_API::request( apply_filters( 'wc_stripe_3ds_source', $post_data, $order ), 'sources' );
472
+		return WC_Stripe_API::request(apply_filters('wc_stripe_3ds_source', $post_data, $order), 'sources');
474 473
 	}
475 474
 
476 475
 	/**
@@ -486,56 +485,56 @@  discard block
 block discarded – undo
486 485
 	 * @throws Exception When card was not added or for and invalid card.
487 486
 	 * @return object
488 487
 	 */
489
-	public function prepare_source( $user_id, $force_save_source = false ) {
490
-		$customer           = new WC_Stripe_Customer( $user_id );
488
+	public function prepare_source($user_id, $force_save_source = false) {
489
+		$customer           = new WC_Stripe_Customer($user_id);
491 490
 		$set_customer       = true;
492
-		$force_save_source  = apply_filters( 'wc_stripe_force_save_source', $force_save_source, $customer );
491
+		$force_save_source  = apply_filters('wc_stripe_force_save_source', $force_save_source, $customer);
493 492
 		$source_object      = '';
494 493
 		$source_id          = '';
495 494
 		$wc_token_id        = false;
496
-		$payment_method     = isset( $_POST['payment_method'] ) ? wc_clean( $_POST['payment_method'] ) : 'stripe';
495
+		$payment_method     = isset($_POST['payment_method']) ? wc_clean($_POST['payment_method']) : 'stripe';
497 496
 
498 497
 		// New CC info was entered and we have a new source to process.
499
-		if ( ! empty( $_POST['stripe_source'] ) ) {
500
-			$source_object = self::get_source_object( wc_clean( $_POST['stripe_source'] ) );
498
+		if ( ! empty($_POST['stripe_source'])) {
499
+			$source_object = self::get_source_object(wc_clean($_POST['stripe_source']));
501 500
 			$source_id     = $source_object->id;
502 501
 
503 502
 			// This checks to see if customer opted to save the payment method to file.
504
-			$maybe_saved_card = isset( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] ) && ! empty( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] );
503
+			$maybe_saved_card = isset($_POST['wc-' . $payment_method . '-new-payment-method']) && ! empty($_POST['wc-' . $payment_method . '-new-payment-method']);
505 504
 
506 505
 			/**
507 506
 			 * This is true if the user wants to store the card to their account.
508 507
 			 * Criteria to save to file is they are logged in, they opted to save or product requirements and the source is
509 508
 			 * actually reusable. Either that or force_save_source is true.
510 509
 			 */
511
-			if ( ( $user_id && $this->saved_cards && $maybe_saved_card && 'reusable' === $source_object->usage ) || $force_save_source ) {
512
-				$response = $customer->add_source( $source_object->id );
510
+			if (($user_id && $this->saved_cards && $maybe_saved_card && 'reusable' === $source_object->usage) || $force_save_source) {
511
+				$response = $customer->add_source($source_object->id);
513 512
 
514
-				if ( ! empty( $response->error ) ) {
515
-					throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message );
513
+				if ( ! empty($response->error)) {
514
+					throw new WC_Stripe_Exception(print_r($response, true), $response->error->message);
516 515
 				}
517 516
 			}
518
-		} elseif ( isset( $_POST[ 'wc-' . $payment_method . '-payment-token' ] ) && 'new' !== $_POST[ 'wc-' . $payment_method . '-payment-token' ] ) {
517
+		} elseif (isset($_POST['wc-' . $payment_method . '-payment-token']) && 'new' !== $_POST['wc-' . $payment_method . '-payment-token']) {
519 518
 			// Use an existing token, and then process the payment.
520
-			$wc_token_id = wc_clean( $_POST[ 'wc-' . $payment_method . '-payment-token' ] );
521
-			$wc_token    = WC_Payment_Tokens::get( $wc_token_id );
519
+			$wc_token_id = wc_clean($_POST['wc-' . $payment_method . '-payment-token']);
520
+			$wc_token    = WC_Payment_Tokens::get($wc_token_id);
522 521
 
523
-			if ( ! $wc_token || $wc_token->get_user_id() !== get_current_user_id() ) {
524
-				WC()->session->set( 'refresh_totals', true );
525
-				throw new WC_Stripe_Exception( 'Invalid payment method', __( 'Invalid payment method. Please input a new card number.', 'woocommerce-gateway-stripe' ) );
522
+			if ( ! $wc_token || $wc_token->get_user_id() !== get_current_user_id()) {
523
+				WC()->session->set('refresh_totals', true);
524
+				throw new WC_Stripe_Exception('Invalid payment method', __('Invalid payment method. Please input a new card number.', 'woocommerce-gateway-stripe'));
526 525
 			}
527 526
 
528 527
 			$source_id = $wc_token->get_token();
529
-		} elseif ( isset( $_POST['stripe_token'] ) && 'new' !== $_POST['stripe_token'] ) {
530
-			$stripe_token     = wc_clean( $_POST['stripe_token'] );
531
-			$maybe_saved_card = isset( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] ) && ! empty( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] );
528
+		} elseif (isset($_POST['stripe_token']) && 'new' !== $_POST['stripe_token']) {
529
+			$stripe_token     = wc_clean($_POST['stripe_token']);
530
+			$maybe_saved_card = isset($_POST['wc-' . $payment_method . '-new-payment-method']) && ! empty($_POST['wc-' . $payment_method . '-new-payment-method']);
532 531
 
533 532
 			// This is true if the user wants to store the card to their account.
534
-			if ( ( $user_id && $this->saved_cards && $maybe_saved_card ) || $force_save_source ) {
535
-				$response = $customer->add_source( $stripe_token );
533
+			if (($user_id && $this->saved_cards && $maybe_saved_card) || $force_save_source) {
534
+				$response = $customer->add_source($stripe_token);
536 535
 
537
-				if ( ! empty( $response->error ) ) {
538
-					throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message );
536
+				if ( ! empty($response->error)) {
537
+					throw new WC_Stripe_Exception(print_r($response, true), $response->error->message);
539 538
 				}
540 539
 			} else {
541 540
 				$set_customer = false;
@@ -543,14 +542,14 @@  discard block
 block discarded – undo
543 542
 			}
544 543
 		}
545 544
 
546
-		if ( ! $set_customer ) {
545
+		if ( ! $set_customer) {
547 546
 			$customer_id = false;
548 547
 		} else {
549 548
 			$customer_id = $customer->get_id() ? $customer->get_id() : false;
550 549
 		}
551 550
 
552
-		if ( empty( $source_object ) ) {
553
-			$source_object = self::get_source_object( $source_id );
551
+		if (empty($source_object)) {
552
+			$source_object = self::get_source_object($source_id);
554 553
 		}
555 554
 
556 555
 		return (object) array(
@@ -574,37 +573,37 @@  discard block
 block discarded – undo
574 573
 	 * @param object $order
575 574
 	 * @return object
576 575
 	 */
577
-	public function prepare_order_source( $order = null ) {
576
+	public function prepare_order_source($order = null) {
578 577
 		$stripe_customer = new WC_Stripe_Customer();
579 578
 		$stripe_source   = false;
580 579
 		$token_id        = false;
581 580
 
582
-		if ( $order ) {
581
+		if ($order) {
583 582
 			$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
584 583
 
585
-			$stripe_customer_id = get_post_meta( $order_id, '_stripe_customer_id', true );
584
+			$stripe_customer_id = get_post_meta($order_id, '_stripe_customer_id', true);
586 585
 
587
-			if ( $stripe_customer_id ) {
588
-				$stripe_customer->set_id( $stripe_customer_id );
586
+			if ($stripe_customer_id) {
587
+				$stripe_customer->set_id($stripe_customer_id);
589 588
 			}
590 589
 
591
-			$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_source_id', true ) : $order->get_meta( '_stripe_source_id', true );
590
+			$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_source_id', true) : $order->get_meta('_stripe_source_id', true);
592 591
 
593 592
 			// Since 4.0.0, we changed card to source so we need to account for that.
594
-			if ( empty( $source_id ) ) {
595
-				$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_card_id', true ) : $order->get_meta( '_stripe_card_id', true );
593
+			if (empty($source_id)) {
594
+				$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_card_id', true) : $order->get_meta('_stripe_card_id', true);
596 595
 
597 596
 				// Take this opportunity to update the key name.
598
-				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 );
597
+				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);
599 598
 
600
-				if ( is_callable( array( $order, 'save' ) ) ) {
599
+				if (is_callable(array($order, 'save'))) {
601 600
 					$order->save();
602 601
 				}
603 602
 			}
604 603
 
605
-			if ( $source_id ) {
604
+			if ($source_id) {
606 605
 				$stripe_source = $source_id;
607
-			} elseif ( apply_filters( 'wc_stripe_use_default_customer_source', true ) ) {
606
+			} elseif (apply_filters('wc_stripe_use_default_customer_source', true)) {
608 607
 				/*
609 608
 				 * We can attempt to charge the customer's default source
610 609
 				 * by sending empty source id.
@@ -628,27 +627,27 @@  discard block
 block discarded – undo
628 627
 	 * @param WC_Order $order For to which the source applies.
629 628
 	 * @param stdClass $source Source information.
630 629
 	 */
631
-	public function save_source_to_order( $order, $source ) {
630
+	public function save_source_to_order($order, $source) {
632 631
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
633 632
 
634 633
 		// Store source in the order.
635
-		if ( $source->customer ) {
636
-			if ( WC_Stripe_Helper::is_pre_30() ) {
637
-				update_post_meta( $order_id, '_stripe_customer_id', $source->customer );
634
+		if ($source->customer) {
635
+			if (WC_Stripe_Helper::is_pre_30()) {
636
+				update_post_meta($order_id, '_stripe_customer_id', $source->customer);
638 637
 			} else {
639
-				$order->update_meta_data( '_stripe_customer_id', $source->customer );
638
+				$order->update_meta_data('_stripe_customer_id', $source->customer);
640 639
 			}
641 640
 		}
642 641
 
643
-		if ( $source->source ) {
644
-			if ( WC_Stripe_Helper::is_pre_30() ) {
645
-				update_post_meta( $order_id, '_stripe_source_id', $source->source );
642
+		if ($source->source) {
643
+			if (WC_Stripe_Helper::is_pre_30()) {
644
+				update_post_meta($order_id, '_stripe_source_id', $source->source);
646 645
 			} else {
647
-				$order->update_meta_data( '_stripe_source_id', $source->source );
646
+				$order->update_meta_data('_stripe_source_id', $source->source);
648 647
 			}
649 648
 		}
650 649
 
651
-		if ( is_callable( array( $order, 'save' ) ) ) {
650
+		if (is_callable(array($order, 'save'))) {
652 651
 			$order->save();
653 652
 		}
654 653
 	}
@@ -662,35 +661,35 @@  discard block
 block discarded – undo
662 661
 	 * @param object $order The order object
663 662
 	 * @param int $balance_transaction_id
664 663
 	 */
665
-	public function update_fees( $order, $balance_transaction_id ) {
664
+	public function update_fees($order, $balance_transaction_id) {
666 665
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
667 666
 
668
-		$balance_transaction = WC_Stripe_API::retrieve( 'balance/history/' . $balance_transaction_id );
667
+		$balance_transaction = WC_Stripe_API::retrieve('balance/history/' . $balance_transaction_id);
669 668
 
670
-		if ( empty( $balance_transaction->error ) ) {
671
-			if ( isset( $balance_transaction ) && isset( $balance_transaction->fee ) ) {
669
+		if (empty($balance_transaction->error)) {
670
+			if (isset($balance_transaction) && isset($balance_transaction->fee)) {
672 671
 				// Fees and Net needs to both come from Stripe to be accurate as the returned
673 672
 				// values are in the local currency of the Stripe account, not from WC.
674
-				$fee_refund = ! empty( $balance_transaction->fee ) ? WC_Stripe_Helper::format_balance_fee( $balance_transaction, 'fee' ) : 0;
675
-				$net_refund = ! empty( $balance_transaction->net ) ? WC_Stripe_Helper::format_balance_fee( $balance_transaction, 'net' ) : 0;
673
+				$fee_refund = ! empty($balance_transaction->fee) ? WC_Stripe_Helper::format_balance_fee($balance_transaction, 'fee') : 0;
674
+				$net_refund = ! empty($balance_transaction->net) ? WC_Stripe_Helper::format_balance_fee($balance_transaction, 'net') : 0;
676 675
 
677 676
 				// Current data fee & net.
678
-				$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 );
679
-				$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 );
677
+				$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);
678
+				$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);
680 679
 
681 680
 				// Calculation.
682 681
 				$fee = (float) $fee_current + (float) $fee_refund;
683 682
 				$net = (float) $net_current + (float) $net_refund;
684 683
 
685
-				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 );
686
-				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 );
684
+				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);
685
+				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);
687 686
 
688
-				if ( is_callable( array( $order, 'save' ) ) ) {
687
+				if (is_callable(array($order, 'save'))) {
689 688
 					$order->save();
690 689
 				}
691 690
 			}
692 691
 		} else {
693
-			WC_Stripe_Logger::log( "Unable to update fees/net meta for order: {$order_id}" );
692
+			WC_Stripe_Logger::log("Unable to update fees/net meta for order: {$order_id}");
694 693
 		}
695 694
 	}
696 695
 
@@ -703,33 +702,33 @@  discard block
 block discarded – undo
703 702
 	 * @param  float $amount
704 703
 	 * @return bool
705 704
 	 */
706
-	public function process_refund( $order_id, $amount = null, $reason = '' ) {
707
-		$order = wc_get_order( $order_id );
705
+	public function process_refund($order_id, $amount = null, $reason = '') {
706
+		$order = wc_get_order($order_id);
708 707
 
709
-		if ( ! $order || ! $order->get_transaction_id() ) {
708
+		if ( ! $order || ! $order->get_transaction_id()) {
710 709
 			return false;
711 710
 		}
712 711
 
713 712
 		$request = array();
714 713
 
715
-		if ( WC_Stripe_Helper::is_pre_30() ) {
716
-			$order_currency = get_post_meta( $order_id, '_order_currency', true );
717
-			$captured       = get_post_meta( $order_id, '_stripe_charge_captured', true );
714
+		if (WC_Stripe_Helper::is_pre_30()) {
715
+			$order_currency = get_post_meta($order_id, '_order_currency', true);
716
+			$captured       = get_post_meta($order_id, '_stripe_charge_captured', true);
718 717
 		} else {
719 718
 			$order_currency = $order->get_currency();
720
-			$captured       = $order->get_meta( '_stripe_charge_captured', true );
719
+			$captured       = $order->get_meta('_stripe_charge_captured', true);
721 720
 		}
722 721
 
723
-		if ( ! is_null( $amount ) ) {
724
-			$request['amount'] = WC_Stripe_Helper::get_stripe_amount( $amount, $order_currency );
722
+		if ( ! is_null($amount)) {
723
+			$request['amount'] = WC_Stripe_Helper::get_stripe_amount($amount, $order_currency);
725 724
 		}
726 725
 
727 726
 		// If order is only authorized, don't pass amount.
728
-		if ( 'yes' !== $captured ) {
729
-			unset( $request['amount'] );
727
+		if ('yes' !== $captured) {
728
+			unset($request['amount']);
730 729
 		}
731 730
 
732
-		if ( $reason ) {
731
+		if ($reason) {
733 732
 			$request['metadata'] = array(
734 733
 				'reason' => $reason,
735 734
 			);
@@ -737,35 +736,35 @@  discard block
 block discarded – undo
737 736
 
738 737
 		$request['charge'] = $order->get_transaction_id();
739 738
 
740
-		WC_Stripe_Logger::log( "Info: Beginning refund for order {$order->get_transaction_id()} for the amount of {$amount}" );
739
+		WC_Stripe_Logger::log("Info: Beginning refund for order {$order->get_transaction_id()} for the amount of {$amount}");
741 740
 
742
-		$request = apply_filters( 'wc_stripe_refund_request_args', $request, $order );
741
+		$request = apply_filters('wc_stripe_refund_request_args', $request, $order);
743 742
 
744
-		$response = WC_Stripe_API::request( $request, 'refunds' );
743
+		$response = WC_Stripe_API::request($request, 'refunds');
745 744
 
746
-		if ( ! empty( $response->error ) ) {
747
-			WC_Stripe_Logger::log( 'Error: ' . $response->error->message );
745
+		if ( ! empty($response->error)) {
746
+			WC_Stripe_Logger::log('Error: ' . $response->error->message);
748 747
 
749 748
 			return $response;
750 749
 
751
-		} elseif ( ! empty( $response->id ) ) {
752
-			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 );
750
+		} elseif ( ! empty($response->id)) {
751
+			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);
753 752
 
754
-			$amount = wc_price( $response->amount / 100 );
753
+			$amount = wc_price($response->amount / 100);
755 754
 
756
-			if ( in_array( strtolower( $order->get_currency() ), WC_Stripe_Helper::no_decimal_currencies() ) ) {
757
-				$amount = wc_price( $response->amount );
755
+			if (in_array(strtolower($order->get_currency()), WC_Stripe_Helper::no_decimal_currencies())) {
756
+				$amount = wc_price($response->amount);
758 757
 			}
759 758
 
760
-			if ( isset( $response->balance_transaction ) ) {
761
-				$this->update_fees( $order, $response->balance_transaction );
759
+			if (isset($response->balance_transaction)) {
760
+				$this->update_fees($order, $response->balance_transaction);
762 761
 			}
763 762
 
764 763
 			/* translators: 1) dollar amount 2) transaction id 3) refund message */
765
-			$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' );
764
+			$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');
766 765
 
767
-			$order->add_order_note( $refund_message );
768
-			WC_Stripe_Logger::log( 'Success: ' . html_entity_decode( strip_tags( $refund_message ) ) );
766
+			$order->add_order_note($refund_message);
767
+			WC_Stripe_Logger::log('Success: ' . html_entity_decode(strip_tags($refund_message)));
769 768
 
770 769
 			return true;
771 770
 		}
@@ -780,44 +779,44 @@  discard block
 block discarded – undo
780 779
 	 */
781 780
 	public function add_payment_method() {
782 781
 		$error     = false;
783
-		$error_msg = __( 'There was a problem adding the card.', 'woocommerce-gateway-stripe' );
782
+		$error_msg = __('There was a problem adding the card.', 'woocommerce-gateway-stripe');
784 783
 		$source_id = '';
785 784
 
786
-		if ( empty( $_POST['stripe_source'] ) && empty( $_POST['stripe_token'] ) || ! is_user_logged_in() ) {
785
+		if (empty($_POST['stripe_source']) && empty($_POST['stripe_token']) || ! is_user_logged_in()) {
787 786
 			$error = true;
788 787
 		}
789 788
 
790
-		$stripe_customer = new WC_Stripe_Customer( get_current_user_id() );
789
+		$stripe_customer = new WC_Stripe_Customer(get_current_user_id());
791 790
 
792
-		$source = ! empty( $_POST['stripe_source'] ) ? wc_clean( $_POST['stripe_source'] ) : '';
791
+		$source = ! empty($_POST['stripe_source']) ? wc_clean($_POST['stripe_source']) : '';
793 792
 
794
-		$source_object = WC_Stripe_API::retrieve( 'sources/' . $source );
793
+		$source_object = WC_Stripe_API::retrieve('sources/' . $source);
795 794
 
796
-		if ( isset( $source_object ) ) {
797
-			if ( ! empty( $source_object->error ) ) {
795
+		if (isset($source_object)) {
796
+			if ( ! empty($source_object->error)) {
798 797
 				$error = true;
799 798
 			}
800 799
 
801 800
 			$source_id = $source_object->id;
802
-		} elseif ( isset( $_POST['stripe_token'] ) ) {
803
-			$source_id = wc_clean( $_POST['stripe_token'] );
801
+		} elseif (isset($_POST['stripe_token'])) {
802
+			$source_id = wc_clean($_POST['stripe_token']);
804 803
 		}
805 804
 
806
-		$response = $stripe_customer->add_source( $source_id );
805
+		$response = $stripe_customer->add_source($source_id);
807 806
 
808
-		if ( ! $response || is_wp_error( $response ) || ! empty( $response->error ) ) {
807
+		if ( ! $response || is_wp_error($response) || ! empty($response->error)) {
809 808
 			$error = true;
810 809
 		}
811 810
 
812
-		if ( $error ) {
813
-			wc_add_notice( $error_msg, 'error' );
814
-			WC_Stripe_Logger::log( 'Add payment method Error: ' . $error_msg );
811
+		if ($error) {
812
+			wc_add_notice($error_msg, 'error');
813
+			WC_Stripe_Logger::log('Add payment method Error: ' . $error_msg);
815 814
 			return;
816 815
 		}
817 816
 
818 817
 		return array(
819 818
 			'result'   => 'success',
820
-			'redirect' => wc_get_endpoint_url( 'payment-methods' ),
819
+			'redirect' => wc_get_endpoint_url('payment-methods'),
821 820
 		);
822 821
 	}
823 822
 
@@ -834,10 +833,10 @@  discard block
 block discarded – undo
834 833
 		 * Stripe expects Norwegian to only be passed NO.
835 834
 		 * But WP has different dialects.
836 835
 		 */
837
-		if ( 'NO' === substr( $locale, 3, 2 ) ) {
836
+		if ('NO' === substr($locale, 3, 2)) {
838 837
 			$locale = 'no';
839 838
 		} else {
840
-			$locale = substr( get_locale(), 0, 2 );
839
+			$locale = substr(get_locale(), 0, 2);
841 840
 		}
842 841
 
843 842
 		return $locale;
@@ -851,9 +850,9 @@  discard block
 block discarded – undo
851 850
 	 * @param string $idempotency_key
852 851
 	 * @param array $request
853 852
 	 */
854
-	public function change_idempotency_key( $idempotency_key, $request ) {
855
-		$customer = ! empty( $request['customer'] ) ? $request['customer'] : '';
856
-		$source   = ! empty( $request['source'] ) ? $request['source'] : $customer;
853
+	public function change_idempotency_key($idempotency_key, $request) {
854
+		$customer = ! empty($request['customer']) ? $request['customer'] : '';
855
+		$source   = ! empty($request['source']) ? $request['source'] : $customer;
857 856
 		$count    = $this->retry_interval;
858 857
 
859 858
 		return $request['metadata']['order_id'] . '-' . $count . '-' . $source;
Please login to merge, or discard this patch.
includes/compat/class-wc-stripe-sepa-compat.php 1 patch
Spacing   +160 added lines, -160 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
 
@@ -15,24 +15,24 @@  discard block
 block discarded – undo
15 15
 	public function __construct() {
16 16
 		parent::__construct();
17 17
 
18
-		if ( class_exists( 'WC_Subscriptions_Order' ) ) {
19
-			add_action( 'woocommerce_scheduled_subscription_payment_' . $this->id, array( $this, 'scheduled_subscription_payment' ), 10, 2 );
20
-			add_action( 'wcs_resubscribe_order_created', array( $this, 'delete_resubscribe_meta' ), 10 );
21
-			add_action( 'wcs_renewal_order_created', array( $this, 'delete_renewal_meta' ), 10 );
22
-			add_action( 'woocommerce_subscription_failing_payment_method_updated_stripe', array( $this, 'update_failing_payment_method' ), 10, 2 );
18
+		if (class_exists('WC_Subscriptions_Order')) {
19
+			add_action('woocommerce_scheduled_subscription_payment_' . $this->id, array($this, 'scheduled_subscription_payment'), 10, 2);
20
+			add_action('wcs_resubscribe_order_created', array($this, 'delete_resubscribe_meta'), 10);
21
+			add_action('wcs_renewal_order_created', array($this, 'delete_renewal_meta'), 10);
22
+			add_action('woocommerce_subscription_failing_payment_method_updated_stripe', array($this, 'update_failing_payment_method'), 10, 2);
23 23
 
24 24
 			// Display the credit card used for a subscription in the "My Subscriptions" table.
25
-			add_filter( 'woocommerce_my_subscriptions_payment_method', array( $this, 'maybe_render_subscription_payment_method' ), 10, 2 );
25
+			add_filter('woocommerce_my_subscriptions_payment_method', array($this, 'maybe_render_subscription_payment_method'), 10, 2);
26 26
 
27 27
 			// Allow store managers to manually set Stripe as the payment method on a subscription.
28
-			add_filter( 'woocommerce_subscription_payment_meta', array( $this, 'add_subscription_payment_meta' ), 10, 2 );
29
-			add_filter( 'woocommerce_subscription_validate_payment_meta', array( $this, 'validate_subscription_payment_meta' ), 10, 2 );
30
-			add_filter( 'wc_stripe_display_save_payment_method_checkbox', array( $this, 'maybe_hide_save_checkbox' ) );
31
-			add_filter( 'wc_stripe_payment_metadata', array( $this, 'add_subscription_meta_data' ), 10, 2 );
28
+			add_filter('woocommerce_subscription_payment_meta', array($this, 'add_subscription_payment_meta'), 10, 2);
29
+			add_filter('woocommerce_subscription_validate_payment_meta', array($this, 'validate_subscription_payment_meta'), 10, 2);
30
+			add_filter('wc_stripe_display_save_payment_method_checkbox', array($this, 'maybe_hide_save_checkbox'));
31
+			add_filter('wc_stripe_payment_metadata', array($this, 'add_subscription_meta_data'), 10, 2);
32 32
 		}
33 33
 
34
-		if ( class_exists( 'WC_Pre_Orders_Order' ) ) {
35
-			add_action( 'wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array( $this, 'process_pre_order_release_payment' ) );
34
+		if (class_exists('WC_Pre_Orders_Order')) {
35
+			add_action('wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array($this, 'process_pre_order_release_payment'));
36 36
 		}
37 37
 	}
38 38
 
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
 	 * @since 4.0.0
44 44
 	 * @version 4.0.0
45 45
 	 */
46
-	public function maybe_hide_save_checkbox( $display_tokenization ) {
47
-		if ( WC_Subscriptions_Cart::cart_contains_subscription() ) {
46
+	public function maybe_hide_save_checkbox($display_tokenization) {
47
+		if (WC_Subscriptions_Cart::cart_contains_subscription()) {
48 48
 			return false;
49 49
 		}
50 50
 
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
 	 * @param  int  $order_id
57 57
 	 * @return boolean
58 58
 	 */
59
-	public function has_subscription( $order_id ) {
60
-		return ( function_exists( 'wcs_order_contains_subscription' ) && ( wcs_order_contains_subscription( $order_id ) || wcs_is_subscription( $order_id ) || wcs_order_contains_renewal( $order_id ) ) );
59
+	public function has_subscription($order_id) {
60
+		return (function_exists('wcs_order_contains_subscription') && (wcs_order_contains_subscription($order_id) || wcs_is_subscription($order_id) || wcs_order_contains_renewal($order_id)));
61 61
 	}
62 62
 
63 63
 	/**
@@ -65,8 +65,8 @@  discard block
 block discarded – undo
65 65
 	 * @param  int  $order_id
66 66
 	 * @return boolean
67 67
 	 */
68
-	protected function is_pre_order( $order_id ) {
69
-		return ( class_exists( 'WC_Pre_Orders_Order' ) && WC_Pre_Orders_Order::order_contains_pre_order( $order_id ) );
68
+	protected function is_pre_order($order_id) {
69
+		return (class_exists('WC_Pre_Orders_Order') && WC_Pre_Orders_Order::order_contains_pre_order($order_id));
70 70
 	}
71 71
 
72 72
 	/**
@@ -74,14 +74,14 @@  discard block
 block discarded – undo
74 74
 	 * @param  int $order_id
75 75
 	 * @return array
76 76
 	 */
77
-	public function process_payment( $order_id, $retry = true, $force_save_source = false ) {
78
-		if ( $this->has_subscription( $order_id ) ) {
77
+	public function process_payment($order_id, $retry = true, $force_save_source = false) {
78
+		if ($this->has_subscription($order_id)) {
79 79
 			// Regular payment with force customer enabled.
80
-			return parent::process_payment( $order_id, true, true );
81
-		} elseif ( $this->is_pre_order( $order_id ) ) {
82
-			return $this->process_pre_order( $order_id, $retry, $force_save_source );
80
+			return parent::process_payment($order_id, true, true);
81
+		} elseif ($this->is_pre_order($order_id)) {
82
+			return $this->process_pre_order($order_id, $retry, $force_save_source);
83 83
 		} else {
84
-			return parent::process_payment( $order_id, $retry, $force_save_source );
84
+			return parent::process_payment($order_id, $retry, $force_save_source);
85 85
 		}
86 86
 	}
87 87
 
@@ -92,14 +92,14 @@  discard block
 block discarded – undo
92 92
 	 * @param array $metadata
93 93
 	 * @param object $order
94 94
 	 */
95
-	public function add_subscription_meta_data( $metadata, $order ) {
96
-		if ( ! $this->has_subscription( WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id() ) ) {
95
+	public function add_subscription_meta_data($metadata, $order) {
96
+		if ( ! $this->has_subscription(WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id())) {
97 97
 			return $metadata;
98 98
 		}
99 99
 
100 100
 		return $metadata += array(
101 101
 			'payment_type'   => 'recurring',
102
-			'site_url'       => esc_url( get_site_url() ),
102
+			'site_url'       => esc_url(get_site_url()),
103 103
 		);
104 104
 	}
105 105
 
@@ -109,24 +109,24 @@  discard block
 block discarded – undo
109 109
 	 * @since 3.1.0
110 110
 	 * @version 4.0.0
111 111
 	 */
112
-	public function save_source_to_order( $order, $source ) {
113
-		parent::save_source_to_order( $order, $source );
112
+	public function save_source_to_order($order, $source) {
113
+		parent::save_source_to_order($order, $source);
114 114
 
115
-		$order_id  = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
115
+		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
116 116
 
117 117
 		// Also store it on the subscriptions being purchased or paid for in the order.
118
-		if ( function_exists( 'wcs_order_contains_subscription' ) && wcs_order_contains_subscription( $order_id ) ) {
119
-			$subscriptions = wcs_get_subscriptions_for_order( $order_id );
120
-		} elseif ( function_exists( 'wcs_order_contains_renewal' ) && wcs_order_contains_renewal( $order_id ) ) {
121
-			$subscriptions = wcs_get_subscriptions_for_renewal_order( $order_id );
118
+		if (function_exists('wcs_order_contains_subscription') && wcs_order_contains_subscription($order_id)) {
119
+			$subscriptions = wcs_get_subscriptions_for_order($order_id);
120
+		} elseif (function_exists('wcs_order_contains_renewal') && wcs_order_contains_renewal($order_id)) {
121
+			$subscriptions = wcs_get_subscriptions_for_renewal_order($order_id);
122 122
 		} else {
123 123
 			$subscriptions = array();
124 124
 		}
125 125
 
126
-		foreach ( $subscriptions as $subscription ) {
126
+		foreach ($subscriptions as $subscription) {
127 127
 			$subscription_id = WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id();
128
-			update_post_meta( $subscription_id, '_stripe_customer_id', $source->customer );
129
-			update_post_meta( $subscription_id, '_stripe_source_id', $source->source );
128
+			update_post_meta($subscription_id, '_stripe_customer_id', $source->customer);
129
+			update_post_meta($subscription_id, '_stripe_source_id', $source->source);
130 130
 		}
131 131
 	}
132 132
 
@@ -139,45 +139,45 @@  discard block
 block discarded – undo
139 139
 	 * @param mixed $renewal_order
140 140
 	 * @param bool $is_retry Is this a retry process.
141 141
 	 */
142
-	public function process_subscription_payment( $amount = 0.0, $renewal_order, $is_retry = false ) {
143
-		if ( $amount * 100 < WC_Stripe_Helper::get_minimum_amount() ) {
142
+	public function process_subscription_payment($amount = 0.0, $renewal_order, $is_retry = false) {
143
+		if ($amount * 100 < WC_Stripe_Helper::get_minimum_amount()) {
144 144
 			/* translators: minimum amount */
145
-			return new WP_Error( 'stripe_error', 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 ) ) );
145
+			return new WP_Error('stripe_error', 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)));
146 146
 		}
147 147
 
148 148
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id();
149 149
 
150 150
 		// Get source from order.
151
-		$prepared_source = $this->prepare_order_source( $renewal_order );
151
+		$prepared_source = $this->prepare_order_source($renewal_order);
152 152
 
153
-		if ( ! $prepared_source->customer ) {
154
-			return new WP_Error( 'stripe_error', __( 'Customer not found', 'woocommerce-gateway-stripe' ) );
153
+		if ( ! $prepared_source->customer) {
154
+			return new WP_Error('stripe_error', __('Customer not found', 'woocommerce-gateway-stripe'));
155 155
 		}
156 156
 
157
-		WC_Stripe_Logger::log( "Info: Begin processing subscription payment for order {$order_id} for the amount of {$amount}" );
157
+		WC_Stripe_Logger::log("Info: Begin processing subscription payment for order {$order_id} for the amount of {$amount}");
158 158
 
159
-		if ( $is_retry ) {
159
+		if ($is_retry) {
160 160
 			// Passing empty source with charge customer default.
161 161
 			$prepared_source->source = '';
162 162
 		}
163 163
 
164
-		$request            = $this->generate_payment_request( $renewal_order, $prepared_source );
164
+		$request            = $this->generate_payment_request($renewal_order, $prepared_source);
165 165
 		$request['capture'] = 'true';
166
-		$request['amount']  = WC_Stripe_Helper::get_stripe_amount( $amount, $request['currency'] );
167
-		$response           = WC_Stripe_API::request( $request );
166
+		$request['amount']  = WC_Stripe_Helper::get_stripe_amount($amount, $request['currency']);
167
+		$response           = WC_Stripe_API::request($request);
168 168
 
169
-		if ( ! empty( $response->error ) || is_wp_error( $response ) ) {
170
-			if ( $is_retry ) {
169
+		if ( ! empty($response->error) || is_wp_error($response)) {
170
+			if ($is_retry) {
171 171
 				/* translators: error message */
172
-				$renewal_order->update_status( 'failed', sprintf( __( 'Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe' ), $response->error->message ) );
172
+				$renewal_order->update_status('failed', sprintf(__('Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe'), $response->error->message));
173 173
 			}
174 174
 
175 175
 			return $response; // Default catch all errors.
176 176
 		}
177 177
 
178
-		$this->process_response( $response, $renewal_order );
178
+		$this->process_response($response, $renewal_order);
179 179
 
180
-		if ( ! $is_retry ) {
180
+		if ( ! $is_retry) {
181 181
 			return $response;
182 182
 		}
183 183
 	}
@@ -186,21 +186,21 @@  discard block
 block discarded – undo
186 186
 	 * Don't transfer Stripe customer/token meta to resubscribe orders.
187 187
 	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
188 188
 	 */
189
-	public function delete_resubscribe_meta( $resubscribe_order ) {
190
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_customer_id' );
191
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_source_id' );
189
+	public function delete_resubscribe_meta($resubscribe_order) {
190
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_customer_id');
191
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_source_id');
192 192
 		// For BW compat will remove in future
193
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_card_id' );
194
-		$this->delete_renewal_meta( $resubscribe_order );
193
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_card_id');
194
+		$this->delete_renewal_meta($resubscribe_order);
195 195
 	}
196 196
 
197 197
 	/**
198 198
 	 * Don't transfer Stripe fee/ID meta to renewal orders.
199 199
 	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
200 200
 	 */
201
-	public function delete_renewal_meta( $renewal_order ) {
202
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id() ), 'Stripe Fee' );
203
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id() ), 'Net Revenue From Stripe' );
201
+	public function delete_renewal_meta($renewal_order) {
202
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id()), 'Stripe Fee');
203
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id()), 'Net Revenue From Stripe');
204 204
 		return $renewal_order;
205 205
 	}
206 206
 
@@ -210,21 +210,21 @@  discard block
 block discarded – undo
210 210
 	 * @param $amount_to_charge float The amount to charge.
211 211
 	 * @param $renewal_order WC_Order A WC_Order object created to record the renewal payment.
212 212
 	 */
213
-	public function scheduled_subscription_payment( $amount_to_charge, $renewal_order ) {
214
-		$response = $this->process_subscription_payment( $amount_to_charge, $renewal_order );
213
+	public function scheduled_subscription_payment($amount_to_charge, $renewal_order) {
214
+		$response = $this->process_subscription_payment($amount_to_charge, $renewal_order);
215 215
 
216
-		if ( is_wp_error( $response ) ) {
216
+		if (is_wp_error($response)) {
217 217
 			/* translators: error message */
218
-			$renewal_order->update_status( 'failed', sprintf( __( 'Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe' ), $response->get_error_message() ) );
218
+			$renewal_order->update_status('failed', sprintf(__('Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe'), $response->get_error_message()));
219 219
 		}
220 220
 
221
-		if ( ! empty( $response->error ) ) {
221
+		if ( ! empty($response->error)) {
222 222
 			// This is a very generic error to listen for but worth a retry before total fail.
223
-			if ( isset( $response->error->type ) && 'invalid_request_error' === $response->error->type && apply_filters( 'wc_stripe_use_default_customer_source', true ) ) {
224
-				$this->process_subscription_payment( $amount_to_charge, $renewal_order, true );
223
+			if (isset($response->error->type) && 'invalid_request_error' === $response->error->type && apply_filters('wc_stripe_use_default_customer_source', true)) {
224
+				$this->process_subscription_payment($amount_to_charge, $renewal_order, true);
225 225
 			} else {
226 226
 				/* translators: error message */
227
-				$renewal_order->update_status( 'failed', sprintf( __( 'Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe' ), $response->error->message ) );
227
+				$renewal_order->update_status('failed', sprintf(__('Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe'), $response->error->message));
228 228
 			}
229 229
 		}
230 230
 	}
@@ -233,20 +233,20 @@  discard block
 block discarded – undo
233 233
 	 * Remove order meta
234 234
 	 * @param  object $order
235 235
 	 */
236
-	public function remove_order_source_before_retry( $order ) {
236
+	public function remove_order_source_before_retry($order) {
237 237
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
238
-		delete_post_meta( $order_id, '_stripe_source_id' );
238
+		delete_post_meta($order_id, '_stripe_source_id');
239 239
 		// For BW compat will remove in the future.
240
-		delete_post_meta( $order_id, '_stripe_card_id' );
240
+		delete_post_meta($order_id, '_stripe_card_id');
241 241
 	}
242 242
 
243 243
 	/**
244 244
 	 * Remove order meta
245 245
 	 * @param object $order
246 246
 	 */
247
-	public function remove_order_customer_before_retry( $order ) {
247
+	public function remove_order_customer_before_retry($order) {
248 248
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
249
-		delete_post_meta( $order_id, '_stripe_customer_id' );
249
+		delete_post_meta($order_id, '_stripe_customer_id');
250 250
 	}
251 251
 
252 252
 	/**
@@ -258,14 +258,14 @@  discard block
 block discarded – undo
258 258
 	 * @param WC_Order $renewal_order The order which recorded the successful payment (to make up for the failed automatic payment).
259 259
 	 * @return void
260 260
 	 */
261
-	public function update_failing_payment_method( $subscription, $renewal_order ) {
262
-		if ( WC_Stripe_Helper::is_pre_30() ) {
263
-			update_post_meta( $subscription->id, '_stripe_customer_id', $renewal_order->stripe_customer_id );
264
-			update_post_meta( $subscription->id, '_stripe_source_id', $renewal_order->stripe_source_id );
261
+	public function update_failing_payment_method($subscription, $renewal_order) {
262
+		if (WC_Stripe_Helper::is_pre_30()) {
263
+			update_post_meta($subscription->id, '_stripe_customer_id', $renewal_order->stripe_customer_id);
264
+			update_post_meta($subscription->id, '_stripe_source_id', $renewal_order->stripe_source_id);
265 265
 
266 266
 		} else {
267
-			update_post_meta( $subscription->get_id(), '_stripe_customer_id', $renewal_order->get_meta( '_stripe_customer_id', true ) );
268
-			update_post_meta( $subscription->get_id(), '_stripe_source_id', $renewal_order->get_meta( '_stripe_source_id', true ) );
267
+			update_post_meta($subscription->get_id(), '_stripe_customer_id', $renewal_order->get_meta('_stripe_customer_id', true));
268
+			update_post_meta($subscription->get_id(), '_stripe_source_id', $renewal_order->get_meta('_stripe_source_id', true));
269 269
 		}
270 270
 	}
271 271
 
@@ -278,21 +278,21 @@  discard block
 block discarded – undo
278 278
 	 * @param WC_Subscription $subscription An instance of a subscription object
279 279
 	 * @return array
280 280
 	 */
281
-	public function add_subscription_payment_meta( $payment_meta, $subscription ) {
282
-		$source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_source_id', true );
281
+	public function add_subscription_payment_meta($payment_meta, $subscription) {
282
+		$source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_source_id', true);
283 283
 
284 284
 		// For BW compat will remove in future.
285
-		if ( empty( $source_id ) ) {
286
-			$source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_card_id', true );
285
+		if (empty($source_id)) {
286
+			$source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_card_id', true);
287 287
 
288 288
 			// Take this opportunity to update the key name.
289
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $subscription->id, '_stripe_source_id', $source_id ) : update_post_meta( $subscription->get_id(), '_stripe_source_id', $source_id );
289
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($subscription->id, '_stripe_source_id', $source_id) : update_post_meta($subscription->get_id(), '_stripe_source_id', $source_id);
290 290
 		}
291 291
 
292
-		$payment_meta[ $this->id ] = array(
292
+		$payment_meta[$this->id] = array(
293 293
 			'post_meta' => array(
294 294
 				'_stripe_customer_id' => array(
295
-					'value' => get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_customer_id', true ),
295
+					'value' => get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_customer_id', true),
296 296
 					'label' => 'Stripe Customer ID',
297 297
 				),
298 298
 				'_stripe_source_id' => array(
@@ -313,22 +313,22 @@  discard block
 block discarded – undo
313 313
 	 * @param array $payment_meta associative array of meta data required for automatic payments
314 314
 	 * @return array
315 315
 	 */
316
-	public function validate_subscription_payment_meta( $payment_method_id, $payment_meta ) {
317
-		if ( $this->id === $payment_method_id ) {
316
+	public function validate_subscription_payment_meta($payment_method_id, $payment_meta) {
317
+		if ($this->id === $payment_method_id) {
318 318
 
319
-			if ( ! isset( $payment_meta['post_meta']['_stripe_customer_id']['value'] ) || empty( $payment_meta['post_meta']['_stripe_customer_id']['value'] ) ) {
320
-				throw new Exception( __( 'A "Stripe Customer ID" value is required.', 'woocommerce-gateway-stripe' ) );
321
-			} elseif ( 0 !== strpos( $payment_meta['post_meta']['_stripe_customer_id']['value'], 'cus_' ) ) {
322
-				throw new Exception( __( 'Invalid customer ID. A valid "Stripe Customer ID" must begin with "cus_".', 'woocommerce-gateway-stripe' ) );
319
+			if ( ! isset($payment_meta['post_meta']['_stripe_customer_id']['value']) || empty($payment_meta['post_meta']['_stripe_customer_id']['value'])) {
320
+				throw new Exception(__('A "Stripe Customer ID" value is required.', 'woocommerce-gateway-stripe'));
321
+			} elseif (0 !== strpos($payment_meta['post_meta']['_stripe_customer_id']['value'], 'cus_')) {
322
+				throw new Exception(__('Invalid customer ID. A valid "Stripe Customer ID" must begin with "cus_".', 'woocommerce-gateway-stripe'));
323 323
 			}
324 324
 
325 325
 			if (
326
-				( ! empty( $payment_meta['post_meta']['_stripe_source_id']['value'] )
327
-				&& 0 !== strpos( $payment_meta['post_meta']['_stripe_source_id']['value'], 'card_' ) )
328
-				&& ( ! empty( $payment_meta['post_meta']['_stripe_source_id']['value'] )
329
-				&& 0 !== strpos( $payment_meta['post_meta']['_stripe_source_id']['value'], 'src_' ) ) ) {
326
+				( ! empty($payment_meta['post_meta']['_stripe_source_id']['value'])
327
+				&& 0 !== strpos($payment_meta['post_meta']['_stripe_source_id']['value'], 'card_'))
328
+				&& ( ! empty($payment_meta['post_meta']['_stripe_source_id']['value'])
329
+				&& 0 !== strpos($payment_meta['post_meta']['_stripe_source_id']['value'], 'src_')) ) {
330 330
 
331
-				throw new Exception( __( 'Invalid source ID. A valid source "Stripe Source ID" must begin with "src_" or "card_".', 'woocommerce-gateway-stripe' ) );
331
+				throw new Exception(__('Invalid source ID. A valid source "Stripe Source ID" must begin with "src_" or "card_".', 'woocommerce-gateway-stripe'));
332 332
 			}
333 333
 		}
334 334
 	}
@@ -341,89 +341,89 @@  discard block
 block discarded – undo
341 341
 	 * @param WC_Subscription $subscription the subscription details
342 342
 	 * @return string the subscription payment method
343 343
 	 */
344
-	public function maybe_render_subscription_payment_method( $payment_method_to_display, $subscription ) {
344
+	public function maybe_render_subscription_payment_method($payment_method_to_display, $subscription) {
345 345
 		$customer_user = WC_Stripe_Helper::is_pre_30() ? $subscription->customer_user : $subscription->get_customer_id();
346 346
 
347 347
 		// bail for other payment methods
348
-		if ( ( WC_Stripe_Helper::is_pre_30() ? $subscription->payment_method : $subscription->get_payment_method() ) !== $this->id || ! $customer_user ) {
348
+		if ((WC_Stripe_Helper::is_pre_30() ? $subscription->payment_method : $subscription->get_payment_method()) !== $this->id || ! $customer_user) {
349 349
 			return $payment_method_to_display;
350 350
 		}
351 351
 
352
-		$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_source_id', true );
352
+		$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_source_id', true);
353 353
 
354 354
 		// For BW compat will remove in future.
355
-		if ( empty( $stripe_source_id ) ) {
356
-			$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_card_id', true );
355
+		if (empty($stripe_source_id)) {
356
+			$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_card_id', true);
357 357
 
358 358
 			// Take this opportunity to update the key name.
359
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $subscription->id, '_stripe_source_id', $stripe_source_id ) : update_post_meta( $subscription->get_id(), '_stripe_source_id', $stripe_source_id );
359
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($subscription->id, '_stripe_source_id', $stripe_source_id) : update_post_meta($subscription->get_id(), '_stripe_source_id', $stripe_source_id);
360 360
 		}
361 361
 
362 362
 		$stripe_customer    = new WC_Stripe_Customer();
363
-		$stripe_customer_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_customer_id', true );
363
+		$stripe_customer_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_customer_id', true);
364 364
 
365 365
 		// If we couldn't find a Stripe customer linked to the subscription, fallback to the user meta data.
366
-		if ( ! $stripe_customer_id || ! is_string( $stripe_customer_id ) ) {
366
+		if ( ! $stripe_customer_id || ! is_string($stripe_customer_id)) {
367 367
 			$user_id            = $customer_user;
368
-			$stripe_customer_id = get_user_meta( $user_id, '_stripe_customer_id', true );
369
-			$stripe_source_id   = get_user_meta( $user_id, '_stripe_source_id', true );
368
+			$stripe_customer_id = get_user_meta($user_id, '_stripe_customer_id', true);
369
+			$stripe_source_id   = get_user_meta($user_id, '_stripe_source_id', true);
370 370
 
371 371
 			// For BW compat will remove in future.
372
-			if ( empty( $stripe_source_id ) ) {
373
-				$stripe_source_id = get_user_meta( $user_id, '_stripe_card_id', true );
372
+			if (empty($stripe_source_id)) {
373
+				$stripe_source_id = get_user_meta($user_id, '_stripe_card_id', true);
374 374
 
375 375
 				// Take this opportunity to update the key name.
376
-				update_user_meta( $user_id, '_stripe_source_id', $stripe_source_id );
376
+				update_user_meta($user_id, '_stripe_source_id', $stripe_source_id);
377 377
 			}
378 378
 		}
379 379
 
380 380
 		// If we couldn't find a Stripe customer linked to the account, fallback to the order meta data.
381
-		if ( ( ! $stripe_customer_id || ! is_string( $stripe_customer_id ) ) && false !== $subscription->order ) {
382
-			$stripe_customer_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_customer_id', true );
383
-			$stripe_source_id   = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_source_id', true );
381
+		if (( ! $stripe_customer_id || ! is_string($stripe_customer_id)) && false !== $subscription->order) {
382
+			$stripe_customer_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_customer_id', true);
383
+			$stripe_source_id   = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_source_id', true);
384 384
 
385 385
 			// For BW compat will remove in future.
386
-			if ( empty( $stripe_source_id ) ) {
387
-				$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_card_id', true );
386
+			if (empty($stripe_source_id)) {
387
+				$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_card_id', true);
388 388
 
389 389
 				// Take this opportunity to update the key name.
390
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $subscription->order->id, '_stripe_source_id', $stripe_source_id ) : update_post_meta( $subscription->get_parent_id(), '_stripe_source_id', $stripe_source_id );
390
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($subscription->order->id, '_stripe_source_id', $stripe_source_id) : update_post_meta($subscription->get_parent_id(), '_stripe_source_id', $stripe_source_id);
391 391
 			}
392 392
 		}
393 393
 
394
-		$stripe_customer->set_id( $stripe_customer_id );
394
+		$stripe_customer->set_id($stripe_customer_id);
395 395
 		$sources = $stripe_customer->get_sources();
396 396
 
397
-		if ( $sources ) {
397
+		if ($sources) {
398 398
 			$found_source = false;
399
-			foreach ( $sources as $source ) {
400
-				if ( isset( $source->type ) && 'card' === $source->type ) {
399
+			foreach ($sources as $source) {
400
+				if (isset($source->type) && 'card' === $source->type) {
401 401
 					$card = $source->card;
402 402
 				}
403 403
 
404
-				if ( $source->id === $stripe_source_id ) {
404
+				if ($source->id === $stripe_source_id) {
405 405
 					$found_source = true;
406 406
 
407
-					if ( $card ) {
407
+					if ($card) {
408 408
 						/* translators: 1) card brand 2) last 4 digits */
409
-						$payment_method_to_display = sprintf( __( 'Via %1$s card ending in %2$s', 'woocommerce-gateway-stripe' ), ( isset( $card->brand ) ? $card->brand : __( 'N/A', 'woocommerce-gateway-stripe' ) ), $card->last4 );
409
+						$payment_method_to_display = sprintf(__('Via %1$s card ending in %2$s', 'woocommerce-gateway-stripe'), (isset($card->brand) ? $card->brand : __('N/A', 'woocommerce-gateway-stripe')), $card->last4);
410 410
 					} else {
411
-						$payment_method_to_display = __( 'N/A', 'woocommerce-gateway-stripe' );
411
+						$payment_method_to_display = __('N/A', 'woocommerce-gateway-stripe');
412 412
 					}
413 413
 					break;
414 414
 				}
415 415
 			}
416 416
 
417
-			if ( ! $found_source ) {
418
-				if ( 'card' === $sources[0]->type ) {
417
+			if ( ! $found_source) {
418
+				if ('card' === $sources[0]->type) {
419 419
 					$card = $sources[0]->card;
420 420
 				}
421 421
 
422
-				if ( $card ) {
422
+				if ($card) {
423 423
 					/* translators: 1) card brand 2) last 4 digits */
424
-					$payment_method_to_display = sprintf( __( 'Via %1$s card ending in %2$s', 'woocommerce-gateway-stripe' ), ( isset( $card->brand ) ? $card->brand : __( 'N/A', 'woocommerce-gateway-stripe' ) ), $card->last4 );
424
+					$payment_method_to_display = sprintf(__('Via %1$s card ending in %2$s', 'woocommerce-gateway-stripe'), (isset($card->brand) ? $card->brand : __('N/A', 'woocommerce-gateway-stripe')), $card->last4);
425 425
 				} else {
426
-					$payment_method_to_display = __( 'N/A', 'woocommerce-gateway-stripe' );
426
+					$payment_method_to_display = __('N/A', 'woocommerce-gateway-stripe');
427 427
 				}
428 428
 			}
429 429
 		}
@@ -436,42 +436,42 @@  discard block
 block discarded – undo
436 436
 	 * @param int $order_id
437 437
 	 * @return array
438 438
 	 */
439
-	public function process_pre_order( $order_id, $retry, $force_save_source ) {
440
-		if ( WC_Pre_Orders_Order::order_requires_payment_tokenization( $order_id ) ) {
439
+	public function process_pre_order($order_id, $retry, $force_save_source) {
440
+		if (WC_Pre_Orders_Order::order_requires_payment_tokenization($order_id)) {
441 441
 			try {
442
-				$order = wc_get_order( $order_id );
442
+				$order = wc_get_order($order_id);
443 443
 
444
-				if ( $order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount() ) {
444
+				if ($order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount()) {
445 445
 					/* translators: minimum amount */
446
-					throw new Exception( 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 ) ) );
446
+					throw new Exception(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)));
447 447
 				}
448 448
 
449
-				$prepared_source = $this->prepare_source( get_current_user_id(), true );
449
+				$prepared_source = $this->prepare_source(get_current_user_id(), true);
450 450
 
451 451
 				// We need a source on file to continue.
452
-				if ( empty( $prepared_source->customer ) || empty( $prepared_source->source ) ) {
453
-					throw new Exception( __( 'Unable to store payment details. Please try again.', 'woocommerce-gateway-stripe' ) );
452
+				if (empty($prepared_source->customer) || empty($prepared_source->source)) {
453
+					throw new Exception(__('Unable to store payment details. Please try again.', 'woocommerce-gateway-stripe'));
454 454
 				}
455 455
 
456
-				$this->save_source_to_order( $order, $prepared_source );
456
+				$this->save_source_to_order($order, $prepared_source);
457 457
 
458 458
 				// Remove cart
459 459
 				WC()->cart->empty_cart();
460 460
 
461 461
 				// Is pre ordered!
462
-				WC_Pre_Orders_Order::mark_order_as_pre_ordered( $order );
462
+				WC_Pre_Orders_Order::mark_order_as_pre_ordered($order);
463 463
 
464 464
 				// Return thank you page redirect
465 465
 				return array(
466 466
 					'result'   => 'success',
467
-					'redirect' => $this->get_return_url( $order ),
467
+					'redirect' => $this->get_return_url($order),
468 468
 				);
469
-			} catch ( Exception $e ) {
470
-				wc_add_notice( $e->getMessage(), 'error' );
469
+			} catch (Exception $e) {
470
+				wc_add_notice($e->getMessage(), 'error');
471 471
 				return;
472 472
 			}
473 473
 		} else {
474
-			return parent::process_payment( $order_id, $retry, $force_save_source );
474
+			return parent::process_payment($order_id, $retry, $force_save_source);
475 475
 		}
476 476
 	}
477 477
 
@@ -480,7 +480,7 @@  discard block
 block discarded – undo
480 480
 	 * @param WC_Order $order
481 481
 	 * @return void
482 482
 	 */
483
-	public function process_pre_order_release_payment( $order ) {
483
+	public function process_pre_order_release_payment($order) {
484 484
 		try {
485 485
 			// Define some callbacks if the first attempt fails.
486 486
 			$retry_callbacks = array(
@@ -488,33 +488,33 @@  discard block
 block discarded – undo
488 488
 				'remove_order_customer_before_retry',
489 489
 			);
490 490
 
491
-			while ( 1 ) {
492
-				$source   = $this->prepare_order_source( $order );
493
-				$response = WC_Stripe_API::request( $this->generate_payment_request( $order, $source ) );
491
+			while (1) {
492
+				$source   = $this->prepare_order_source($order);
493
+				$response = WC_Stripe_API::request($this->generate_payment_request($order, $source));
494 494
 
495
-				if ( ! empty( $response->error ) ) {
496
-					if ( 0 === sizeof( $retry_callbacks ) ) {
497
-						throw new Exception( $response->error->message );
495
+				if ( ! empty($response->error)) {
496
+					if (0 === sizeof($retry_callbacks)) {
497
+						throw new Exception($response->error->message);
498 498
 					} else {
499
-						$retry_callback = array_shift( $retry_callbacks );
500
-						call_user_func( array( $this, $retry_callback ), $order );
499
+						$retry_callback = array_shift($retry_callbacks);
500
+						call_user_func(array($this, $retry_callback), $order);
501 501
 					}
502 502
 				} else {
503 503
 					// Successful
504
-					$this->process_response( $response, $order );
504
+					$this->process_response($response, $order);
505 505
 					break;
506 506
 				}
507 507
 			}
508
-		} catch ( Exception $e ) {
508
+		} catch (Exception $e) {
509 509
 			/* translators: error message */
510
-			$order_note = sprintf( __( 'Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe' ), $e->getMessage() );
510
+			$order_note = sprintf(__('Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe'), $e->getMessage());
511 511
 
512 512
 			// Mark order as failed if not already set,
513 513
 			// otherwise, make sure we add the order note so we can detect when someone fails to check out multiple times
514
-			if ( ! $order->has_status( 'failed' ) ) {
515
-				$order->update_status( 'failed', $order_note );
514
+			if ( ! $order->has_status('failed')) {
515
+				$order->update_status('failed', $order_note);
516 516
 			} else {
517
-				$order->add_order_note( $order_note );
517
+				$order->add_order_note($order_note);
518 518
 			}
519 519
 		}
520 520
 	}
Please login to merge, or discard this patch.
includes/compat/class-wc-stripe-compat.php 1 patch
Spacing   +183 added lines, -183 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
 
@@ -15,23 +15,23 @@  discard block
 block discarded – undo
15 15
 	public function __construct() {
16 16
 		parent::__construct();
17 17
 
18
-		if ( class_exists( 'WC_Subscriptions_Order' ) ) {
19
-			add_action( 'woocommerce_scheduled_subscription_payment_' . $this->id, array( $this, 'scheduled_subscription_payment' ), 10, 2 );
20
-			add_action( 'wcs_resubscribe_order_created', array( $this, 'delete_resubscribe_meta' ), 10 );
21
-			add_action( 'wcs_renewal_order_created', array( $this, 'delete_renewal_meta' ), 10 );
22
-			add_action( 'woocommerce_subscription_failing_payment_method_updated_stripe', array( $this, 'update_failing_payment_method' ), 10, 2 );
18
+		if (class_exists('WC_Subscriptions_Order')) {
19
+			add_action('woocommerce_scheduled_subscription_payment_' . $this->id, array($this, 'scheduled_subscription_payment'), 10, 2);
20
+			add_action('wcs_resubscribe_order_created', array($this, 'delete_resubscribe_meta'), 10);
21
+			add_action('wcs_renewal_order_created', array($this, 'delete_renewal_meta'), 10);
22
+			add_action('woocommerce_subscription_failing_payment_method_updated_stripe', array($this, 'update_failing_payment_method'), 10, 2);
23 23
 
24 24
 			// display the credit card used for a subscription in the "My Subscriptions" table
25
-			add_filter( 'woocommerce_my_subscriptions_payment_method', array( $this, 'maybe_render_subscription_payment_method' ), 10, 2 );
25
+			add_filter('woocommerce_my_subscriptions_payment_method', array($this, 'maybe_render_subscription_payment_method'), 10, 2);
26 26
 
27 27
 			// allow store managers to manually set Stripe as the payment method on a subscription
28
-			add_filter( 'woocommerce_subscription_payment_meta', array( $this, 'add_subscription_payment_meta' ), 10, 2 );
29
-			add_filter( 'woocommerce_subscription_validate_payment_meta', array( $this, 'validate_subscription_payment_meta' ), 10, 2 );
30
-			add_filter( 'wc_stripe_display_save_payment_method_checkbox', array( $this, 'maybe_hide_save_checkbox' ) );
28
+			add_filter('woocommerce_subscription_payment_meta', array($this, 'add_subscription_payment_meta'), 10, 2);
29
+			add_filter('woocommerce_subscription_validate_payment_meta', array($this, 'validate_subscription_payment_meta'), 10, 2);
30
+			add_filter('wc_stripe_display_save_payment_method_checkbox', array($this, 'maybe_hide_save_checkbox'));
31 31
 		}
32 32
 
33
-		if ( class_exists( 'WC_Pre_Orders_Order' ) ) {
34
-			add_action( 'wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array( $this, 'process_pre_order_release_payment' ) );
33
+		if (class_exists('WC_Pre_Orders_Order')) {
34
+			add_action('wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array($this, 'process_pre_order_release_payment'));
35 35
 		}
36 36
 	}
37 37
 
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
 	 * @since 4.0.0
43 43
 	 * @version 4.0.0
44 44
 	 */
45
-	public function maybe_hide_save_checkbox( $display_tokenization ) {
46
-		if ( WC_Subscriptions_Cart::cart_contains_subscription() ) {
45
+	public function maybe_hide_save_checkbox($display_tokenization) {
46
+		if (WC_Subscriptions_Cart::cart_contains_subscription()) {
47 47
 			return false;
48 48
 		}
49 49
 
@@ -55,8 +55,8 @@  discard block
 block discarded – undo
55 55
 	 * @param  int  $order_id
56 56
 	 * @return boolean
57 57
 	 */
58
-	public function has_subscription( $order_id ) {
59
-		return ( function_exists( 'wcs_order_contains_subscription' ) && ( wcs_order_contains_subscription( $order_id ) || wcs_is_subscription( $order_id ) || wcs_order_contains_renewal( $order_id ) ) );
58
+	public function has_subscription($order_id) {
59
+		return (function_exists('wcs_order_contains_subscription') && (wcs_order_contains_subscription($order_id) || wcs_is_subscription($order_id) || wcs_order_contains_renewal($order_id)));
60 60
 	}
61 61
 
62 62
 	/**
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	 * @return bool
67 67
 	 */
68 68
 	public function is_subs_change_payment() {
69
-		return ( isset( $_GET['pay_for_order'] ) && isset( $_GET['change_payment_method'] ) );
69
+		return (isset($_GET['pay_for_order']) && isset($_GET['change_payment_method']));
70 70
 	}
71 71
 
72 72
 	/**
@@ -74,8 +74,8 @@  discard block
 block discarded – undo
74 74
 	 * @param  int  $order_id
75 75
 	 * @return boolean
76 76
 	 */
77
-	public function is_pre_order( $order_id ) {
78
-		return ( class_exists( 'WC_Pre_Orders_Order' ) && WC_Pre_Orders_Order::order_contains_pre_order( $order_id ) );
77
+	public function is_pre_order($order_id) {
78
+		return (class_exists('WC_Pre_Orders_Order') && WC_Pre_Orders_Order::order_contains_pre_order($order_id));
79 79
 	}
80 80
 
81 81
 	/**
@@ -84,24 +84,24 @@  discard block
 block discarded – undo
84 84
 	 * @since 4.0.4
85 85
 	 * @param int $order_id
86 86
 	 */
87
-	public function change_subs_payment_method( $order_id ) {
87
+	public function change_subs_payment_method($order_id) {
88 88
 		try {
89
-			$subscription    = wc_get_order( $order_id );
90
-			$prepared_source = $this->prepare_source( get_current_user_id(), true );
89
+			$subscription    = wc_get_order($order_id);
90
+			$prepared_source = $this->prepare_source(get_current_user_id(), true);
91 91
 			$source_object   = $prepared_source->source_object;
92 92
 
93 93
 			// Check if we don't allow prepaid credit cards.
94
-			if ( ! apply_filters( 'wc_stripe_allow_prepaid_card', true ) && $this->is_prepaid_card( $source_object ) ) {
95
-				$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' );
96
-				throw new WC_Stripe_Exception( print_r( $source_object, true ), $localized_message );
94
+			if ( ! apply_filters('wc_stripe_allow_prepaid_card', true) && $this->is_prepaid_card($source_object)) {
95
+				$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');
96
+				throw new WC_Stripe_Exception(print_r($source_object, true), $localized_message);
97 97
 			}
98 98
 
99
-			if ( empty( $prepared_source->source ) ) {
100
-				$localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
101
-				throw new WC_Stripe_Exception( print_r( $prepared_source, true ), $localized_message );
99
+			if (empty($prepared_source->source)) {
100
+				$localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe');
101
+				throw new WC_Stripe_Exception(print_r($prepared_source, true), $localized_message);
102 102
 			}
103 103
 
104
-			$this->save_source_to_order( $subscription, $prepared_source );
104
+			$this->save_source_to_order($subscription, $prepared_source);
105 105
 
106 106
 			/*
107 107
 			 * Check if card 3DS is required or optional with 3DS setting.
@@ -110,41 +110,41 @@  discard block
 block discarded – undo
110 110
 			 * Note that if we need to save source, the original source must be first
111 111
 			 * attached to a customer in Stripe before it can be charged.
112 112
 			 */
113
-			if ( $this->is_3ds_required( $source_object ) ) {
113
+			if ($this->is_3ds_required($source_object)) {
114 114
 				$order    = $subscription->get_parent();
115
-				$response = $this->create_3ds_source( $order, $source_object, $subscription->get_view_order_url() );
115
+				$response = $this->create_3ds_source($order, $source_object, $subscription->get_view_order_url());
116 116
 
117
-				if ( ! empty( $response->error ) ) {
117
+				if ( ! empty($response->error)) {
118 118
 					$localized_message = $response->error->message;
119 119
 
120
-					$order->add_order_note( $localized_message );
120
+					$order->add_order_note($localized_message);
121 121
 
122
-					throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
122
+					throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
123 123
 				}
124 124
 
125 125
 				// Update order meta with 3DS source.
126
-				if ( WC_Stripe_Helper::is_pre_30() ) {
127
-					update_post_meta( $order_id, '_stripe_source_id', $response->id );
126
+				if (WC_Stripe_Helper::is_pre_30()) {
127
+					update_post_meta($order_id, '_stripe_source_id', $response->id);
128 128
 				} else {
129
-					$subscription->update_meta_data( '_stripe_source_id', $response->id );
129
+					$subscription->update_meta_data('_stripe_source_id', $response->id);
130 130
 					$subscription->save();
131 131
 				}
132 132
 
133
-				WC_Stripe_Logger::log( 'Info: Redirecting to 3DS...' );
133
+				WC_Stripe_Logger::log('Info: Redirecting to 3DS...');
134 134
 
135 135
 				return array(
136 136
 					'result'   => 'success',
137
-					'redirect' => esc_url_raw( $response->redirect->url ),
137
+					'redirect' => esc_url_raw($response->redirect->url),
138 138
 				);
139 139
 			}
140 140
 
141 141
 			return array(
142 142
 				'result'   => 'success',
143
-				'redirect' => $this->get_return_url( $subscription ),
143
+				'redirect' => $this->get_return_url($subscription),
144 144
 			);
145
-		} catch ( WC_Stripe_Exception $e ) {
146
-			wc_add_notice( $e->getLocalizedMessage(), 'error' );
147
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
145
+		} catch (WC_Stripe_Exception $e) {
146
+			wc_add_notice($e->getLocalizedMessage(), 'error');
147
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
148 148
 		}
149 149
 	}
150 150
 
@@ -153,18 +153,18 @@  discard block
 block discarded – undo
153 153
 	 * @param  int $order_id
154 154
 	 * @return array
155 155
 	 */
156
-	public function process_payment( $order_id, $retry = true, $force_save_source = false ) {
157
-		if ( $this->has_subscription( $order_id ) ) {
158
-			if ( $this->is_subs_change_payment() ) {
159
-				return $this->change_subs_payment_method( $order_id );
156
+	public function process_payment($order_id, $retry = true, $force_save_source = false) {
157
+		if ($this->has_subscription($order_id)) {
158
+			if ($this->is_subs_change_payment()) {
159
+				return $this->change_subs_payment_method($order_id);
160 160
 			}
161 161
 
162 162
 			// Regular payment with force customer enabled
163
-			return parent::process_payment( $order_id, true, true );
164
-		} elseif ( $this->is_pre_order( $order_id ) ) {
165
-			return $this->process_pre_order( $order_id, $retry, $force_save_source );
163
+			return parent::process_payment($order_id, true, true);
164
+		} elseif ($this->is_pre_order($order_id)) {
165
+			return $this->process_pre_order($order_id, $retry, $force_save_source);
166 166
 		} else {
167
-			return parent::process_payment( $order_id, $retry, $force_save_source );
167
+			return parent::process_payment($order_id, $retry, $force_save_source);
168 168
 		}
169 169
 	}
170 170
 
@@ -174,24 +174,24 @@  discard block
 block discarded – undo
174 174
 	 * @since 3.1.0
175 175
 	 * @version 4.0.0
176 176
 	 */
177
-	public function save_source_to_order( $order, $source ) {
178
-		parent::save_source_to_order( $order, $source );
177
+	public function save_source_to_order($order, $source) {
178
+		parent::save_source_to_order($order, $source);
179 179
 
180 180
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
181 181
 
182 182
 		// Also store it on the subscriptions being purchased or paid for in the order
183
-		if ( function_exists( 'wcs_order_contains_subscription' ) && wcs_order_contains_subscription( $order_id ) ) {
184
-			$subscriptions = wcs_get_subscriptions_for_order( $order_id );
185
-		} elseif ( function_exists( 'wcs_order_contains_renewal' ) && wcs_order_contains_renewal( $order_id ) ) {
186
-			$subscriptions = wcs_get_subscriptions_for_renewal_order( $order_id );
183
+		if (function_exists('wcs_order_contains_subscription') && wcs_order_contains_subscription($order_id)) {
184
+			$subscriptions = wcs_get_subscriptions_for_order($order_id);
185
+		} elseif (function_exists('wcs_order_contains_renewal') && wcs_order_contains_renewal($order_id)) {
186
+			$subscriptions = wcs_get_subscriptions_for_renewal_order($order_id);
187 187
 		} else {
188 188
 			$subscriptions = array();
189 189
 		}
190 190
 
191
-		foreach ( $subscriptions as $subscription ) {
191
+		foreach ($subscriptions as $subscription) {
192 192
 			$subscription_id = WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id();
193
-			update_post_meta( $subscription_id, '_stripe_customer_id', $source->customer );
194
-			update_post_meta( $subscription_id, '_stripe_source_id', $source->source );
193
+			update_post_meta($subscription_id, '_stripe_customer_id', $source->customer);
194
+			update_post_meta($subscription_id, '_stripe_source_id', $source->source);
195 195
 		}
196 196
 	}
197 197
 
@@ -204,45 +204,45 @@  discard block
 block discarded – undo
204 204
 	 * @param mixed $renewal_order
205 205
 	 * @param bool $is_retry Is this a retry process.
206 206
 	 */
207
-	public function process_subscription_payment( $amount = 0.0, $renewal_order, $is_retry = false ) {
208
-		if ( $amount * 100 < WC_Stripe_Helper::get_minimum_amount() ) {
207
+	public function process_subscription_payment($amount = 0.0, $renewal_order, $is_retry = false) {
208
+		if ($amount * 100 < WC_Stripe_Helper::get_minimum_amount()) {
209 209
 			/* translators: minimum amount */
210
-			return new WP_Error( 'stripe_error', 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 ) ) );
210
+			return new WP_Error('stripe_error', 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)));
211 211
 		}
212 212
 
213 213
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id();
214 214
 
215 215
 		// Get source from order
216
-		$prepared_source = $this->prepare_order_source( $renewal_order );
216
+		$prepared_source = $this->prepare_order_source($renewal_order);
217 217
 
218
-		if ( ! $prepared_source->customer ) {
219
-			return new WP_Error( 'stripe_error', __( 'Customer not found', 'woocommerce-gateway-stripe' ) );
218
+		if ( ! $prepared_source->customer) {
219
+			return new WP_Error('stripe_error', __('Customer not found', 'woocommerce-gateway-stripe'));
220 220
 		}
221 221
 
222
-		WC_Stripe_Logger::log( "Info: Begin processing subscription payment for order {$order_id} for the amount of {$amount}" );
222
+		WC_Stripe_Logger::log("Info: Begin processing subscription payment for order {$order_id} for the amount of {$amount}");
223 223
 
224
-		if ( $is_retry ) {
224
+		if ($is_retry) {
225 225
 			// Passing empty source with charge customer default.
226 226
 			$prepared_source->source = '';
227 227
 		}
228 228
 
229
-		$request            = $this->generate_payment_request( $renewal_order, $prepared_source );
229
+		$request            = $this->generate_payment_request($renewal_order, $prepared_source);
230 230
 		$request['capture'] = 'true';
231
-		$request['amount']  = WC_Stripe_Helper::get_stripe_amount( $amount, $request['currency'] );
232
-		$response           = WC_Stripe_API::request( $request );
231
+		$request['amount']  = WC_Stripe_Helper::get_stripe_amount($amount, $request['currency']);
232
+		$response           = WC_Stripe_API::request($request);
233 233
 
234
-		if ( ! empty( $response->error ) || is_wp_error( $response ) ) {
235
-			if ( $is_retry ) {
234
+		if ( ! empty($response->error) || is_wp_error($response)) {
235
+			if ($is_retry) {
236 236
 				/* translators: error message */
237
-				$renewal_order->update_status( 'failed', sprintf( __( 'Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe' ), $response->error->message ) );
237
+				$renewal_order->update_status('failed', sprintf(__('Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe'), $response->error->message));
238 238
 			}
239 239
 
240 240
 			return $response; // Default catch all errors.
241 241
 		}
242 242
 
243
-		$this->process_response( $response, $renewal_order );
243
+		$this->process_response($response, $renewal_order);
244 244
 
245
-		if ( ! $is_retry ) {
245
+		if ( ! $is_retry) {
246 246
 			return $response;
247 247
 		}
248 248
 	}
@@ -251,21 +251,21 @@  discard block
 block discarded – undo
251 251
 	 * Don't transfer Stripe customer/token meta to resubscribe orders.
252 252
 	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
253 253
 	 */
254
-	public function delete_resubscribe_meta( $resubscribe_order ) {
255
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_customer_id' );
256
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_source_id' );
254
+	public function delete_resubscribe_meta($resubscribe_order) {
255
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_customer_id');
256
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_source_id');
257 257
 		// For BW compat will remove in future
258
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_card_id' );
259
-		$this->delete_renewal_meta( $resubscribe_order );
258
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_card_id');
259
+		$this->delete_renewal_meta($resubscribe_order);
260 260
 	}
261 261
 
262 262
 	/**
263 263
 	 * Don't transfer Stripe fee/ID meta to renewal orders.
264 264
 	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
265 265
 	 */
266
-	public function delete_renewal_meta( $renewal_order ) {
267
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id() ), 'Stripe Fee' );
268
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id() ), 'Net Revenue From Stripe' );
266
+	public function delete_renewal_meta($renewal_order) {
267
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id()), 'Stripe Fee');
268
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id()), 'Net Revenue From Stripe');
269 269
 		return $renewal_order;
270 270
 	}
271 271
 
@@ -275,21 +275,21 @@  discard block
 block discarded – undo
275 275
 	 * @param $amount_to_charge float The amount to charge.
276 276
 	 * @param $renewal_order WC_Order A WC_Order object created to record the renewal payment.
277 277
 	 */
278
-	public function scheduled_subscription_payment( $amount_to_charge, $renewal_order ) {
279
-		$response = $this->process_subscription_payment( $amount_to_charge, $renewal_order );
278
+	public function scheduled_subscription_payment($amount_to_charge, $renewal_order) {
279
+		$response = $this->process_subscription_payment($amount_to_charge, $renewal_order);
280 280
 
281
-		if ( is_wp_error( $response ) ) {
281
+		if (is_wp_error($response)) {
282 282
 			/* translators: error message */
283
-			$renewal_order->update_status( 'failed', sprintf( __( 'Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe' ), $response->get_error_message() ) );
283
+			$renewal_order->update_status('failed', sprintf(__('Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe'), $response->get_error_message()));
284 284
 		}
285 285
 
286
-		if ( ! empty( $response->error ) ) {
286
+		if ( ! empty($response->error)) {
287 287
 			// This is a very generic error to listen for but worth a retry before total fail.
288
-			if ( isset( $response->error->type ) && 'invalid_request_error' === $response->error->type && apply_filters( 'wc_stripe_use_default_customer_source', true ) ) {
289
-				$this->process_subscription_payment( $amount_to_charge, $renewal_order, true );
288
+			if (isset($response->error->type) && 'invalid_request_error' === $response->error->type && apply_filters('wc_stripe_use_default_customer_source', true)) {
289
+				$this->process_subscription_payment($amount_to_charge, $renewal_order, true);
290 290
 			} else {
291 291
 				/* translators: error message */
292
-				$renewal_order->update_status( 'failed', sprintf( __( 'Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe' ), $response->error->message ) );
292
+				$renewal_order->update_status('failed', sprintf(__('Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe'), $response->error->message));
293 293
 			}
294 294
 		}
295 295
 	}
@@ -298,20 +298,20 @@  discard block
 block discarded – undo
298 298
 	 * Remove order meta
299 299
 	 * @param object $order
300 300
 	 */
301
-	public function remove_order_source_before_retry( $order ) {
301
+	public function remove_order_source_before_retry($order) {
302 302
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
303
-		delete_post_meta( $order_id, '_stripe_source_id' );
303
+		delete_post_meta($order_id, '_stripe_source_id');
304 304
 		// For BW compat will remove in the future.
305
-		delete_post_meta( $order_id, '_stripe_card_id' );
305
+		delete_post_meta($order_id, '_stripe_card_id');
306 306
 	}
307 307
 
308 308
 	/**
309 309
 	 * Remove order meta
310 310
 	 * @param  object $order
311 311
 	 */
312
-	public function remove_order_customer_before_retry( $order ) {
312
+	public function remove_order_customer_before_retry($order) {
313 313
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
314
-		delete_post_meta( $order_id, '_stripe_customer_id' );
314
+		delete_post_meta($order_id, '_stripe_customer_id');
315 315
 	}
316 316
 
317 317
 	/**
@@ -323,14 +323,14 @@  discard block
 block discarded – undo
323 323
 	 * @param WC_Order $renewal_order The order which recorded the successful payment (to make up for the failed automatic payment).
324 324
 	 * @return void
325 325
 	 */
326
-	public function update_failing_payment_method( $subscription, $renewal_order ) {
327
-		if ( WC_Stripe_Helper::is_pre_30() ) {
328
-			update_post_meta( $subscription->id, '_stripe_customer_id', $renewal_order->stripe_customer_id );
329
-			update_post_meta( $subscription->id, '_stripe_source_id', $renewal_order->stripe_source_id );
326
+	public function update_failing_payment_method($subscription, $renewal_order) {
327
+		if (WC_Stripe_Helper::is_pre_30()) {
328
+			update_post_meta($subscription->id, '_stripe_customer_id', $renewal_order->stripe_customer_id);
329
+			update_post_meta($subscription->id, '_stripe_source_id', $renewal_order->stripe_source_id);
330 330
 
331 331
 		} else {
332
-			update_post_meta( $subscription->get_id(), '_stripe_customer_id', $renewal_order->get_meta( '_stripe_customer_id', true ) );
333
-			update_post_meta( $subscription->get_id(), '_stripe_source_id', $renewal_order->get_meta( '_stripe_source_id', true ) );
332
+			update_post_meta($subscription->get_id(), '_stripe_customer_id', $renewal_order->get_meta('_stripe_customer_id', true));
333
+			update_post_meta($subscription->get_id(), '_stripe_source_id', $renewal_order->get_meta('_stripe_source_id', true));
334 334
 		}
335 335
 	}
336 336
 
@@ -343,21 +343,21 @@  discard block
 block discarded – undo
343 343
 	 * @param WC_Subscription $subscription An instance of a subscription object
344 344
 	 * @return array
345 345
 	 */
346
-	public function add_subscription_payment_meta( $payment_meta, $subscription ) {
347
-		$source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_source_id', true );
346
+	public function add_subscription_payment_meta($payment_meta, $subscription) {
347
+		$source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_source_id', true);
348 348
 
349 349
 		// For BW compat will remove in future.
350
-		if ( empty( $source_id ) ) {
351
-			$source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_card_id', true );
350
+		if (empty($source_id)) {
351
+			$source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_card_id', true);
352 352
 
353 353
 			// Take this opportunity to update the key name.
354
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $subscription->id, '_stripe_source_id', $source_id ) : update_post_meta( $subscription->get_id(), '_stripe_source_id', $source_id );
354
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($subscription->id, '_stripe_source_id', $source_id) : update_post_meta($subscription->get_id(), '_stripe_source_id', $source_id);
355 355
 		}
356 356
 
357
-		$payment_meta[ $this->id ] = array(
357
+		$payment_meta[$this->id] = array(
358 358
 			'post_meta' => array(
359 359
 				'_stripe_customer_id' => array(
360
-					'value' => get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_customer_id', true ),
360
+					'value' => get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_customer_id', true),
361 361
 					'label' => 'Stripe Customer ID',
362 362
 				),
363 363
 				'_stripe_source_id' => array(
@@ -380,22 +380,22 @@  discard block
 block discarded – undo
380 380
 	 * @param array $payment_meta associative array of meta data required for automatic payments
381 381
 	 * @return array
382 382
 	 */
383
-	public function validate_subscription_payment_meta( $payment_method_id, $payment_meta ) {
384
-		if ( $this->id === $payment_method_id ) {
383
+	public function validate_subscription_payment_meta($payment_method_id, $payment_meta) {
384
+		if ($this->id === $payment_method_id) {
385 385
 
386
-			if ( ! isset( $payment_meta['post_meta']['_stripe_customer_id']['value'] ) || empty( $payment_meta['post_meta']['_stripe_customer_id']['value'] ) ) {
387
-				throw new Exception( __( 'A "Stripe Customer ID" value is required.', 'woocommerce-gateway-stripe' ) );
388
-			} elseif ( 0 !== strpos( $payment_meta['post_meta']['_stripe_customer_id']['value'], 'cus_' ) ) {
389
-				throw new Exception( __( 'Invalid customer ID. A valid "Stripe Customer ID" must begin with "cus_".', 'woocommerce-gateway-stripe' ) );
386
+			if ( ! isset($payment_meta['post_meta']['_stripe_customer_id']['value']) || empty($payment_meta['post_meta']['_stripe_customer_id']['value'])) {
387
+				throw new Exception(__('A "Stripe Customer ID" value is required.', 'woocommerce-gateway-stripe'));
388
+			} elseif (0 !== strpos($payment_meta['post_meta']['_stripe_customer_id']['value'], 'cus_')) {
389
+				throw new Exception(__('Invalid customer ID. A valid "Stripe Customer ID" must begin with "cus_".', 'woocommerce-gateway-stripe'));
390 390
 			}
391 391
 
392 392
 			if (
393
-				( ! empty( $payment_meta['post_meta']['_stripe_source_id']['value'] )
394
-				&& 0 !== strpos( $payment_meta['post_meta']['_stripe_source_id']['value'], 'card_' ) )
395
-				&& ( ! empty( $payment_meta['post_meta']['_stripe_source_id']['value'] )
396
-				&& 0 !== strpos( $payment_meta['post_meta']['_stripe_source_id']['value'], 'src_' ) ) ) {
393
+				( ! empty($payment_meta['post_meta']['_stripe_source_id']['value'])
394
+				&& 0 !== strpos($payment_meta['post_meta']['_stripe_source_id']['value'], 'card_'))
395
+				&& ( ! empty($payment_meta['post_meta']['_stripe_source_id']['value'])
396
+				&& 0 !== strpos($payment_meta['post_meta']['_stripe_source_id']['value'], 'src_')) ) {
397 397
 
398
-				throw new Exception( __( 'Invalid source ID. A valid source "Stripe Source ID" must begin with "src_" or "card_".', 'woocommerce-gateway-stripe' ) );
398
+				throw new Exception(__('Invalid source ID. A valid source "Stripe Source ID" must begin with "src_" or "card_".', 'woocommerce-gateway-stripe'));
399 399
 			}
400 400
 		}
401 401
 	}
@@ -408,91 +408,91 @@  discard block
 block discarded – undo
408 408
 	 * @param WC_Subscription $subscription the subscription details
409 409
 	 * @return string the subscription payment method
410 410
 	 */
411
-	public function maybe_render_subscription_payment_method( $payment_method_to_display, $subscription ) {
411
+	public function maybe_render_subscription_payment_method($payment_method_to_display, $subscription) {
412 412
 		$customer_user = WC_Stripe_Helper::is_pre_30() ? $subscription->customer_user : $subscription->get_customer_id();
413 413
 
414 414
 		// bail for other payment methods
415
-		if ( ( WC_Stripe_Helper::is_pre_30() ? $subscription->payment_method : $subscription->get_payment_method() ) !== $this->id || ! $customer_user ) {
415
+		if ((WC_Stripe_Helper::is_pre_30() ? $subscription->payment_method : $subscription->get_payment_method()) !== $this->id || ! $customer_user) {
416 416
 			return $payment_method_to_display;
417 417
 		}
418 418
 
419
-		$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_source_id', true );
419
+		$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_source_id', true);
420 420
 
421 421
 		// For BW compat will remove in future.
422
-		if ( empty( $stripe_source_id ) ) {
423
-			$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_card_id', true );
422
+		if (empty($stripe_source_id)) {
423
+			$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_card_id', true);
424 424
 
425 425
 			// Take this opportunity to update the key name.
426
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $subscription->id, '_stripe_source_id', $stripe_source_id ) : update_post_meta( $subscription->get_id(), '_stripe_source_id', $stripe_source_id );
426
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($subscription->id, '_stripe_source_id', $stripe_source_id) : update_post_meta($subscription->get_id(), '_stripe_source_id', $stripe_source_id);
427 427
 		}
428 428
 
429 429
 		$stripe_customer    = new WC_Stripe_Customer();
430
-		$stripe_customer_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_customer_id', true );
430
+		$stripe_customer_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_customer_id', true);
431 431
 
432 432
 		// If we couldn't find a Stripe customer linked to the subscription, fallback to the user meta data.
433
-		if ( ! $stripe_customer_id || ! is_string( $stripe_customer_id ) ) {
433
+		if ( ! $stripe_customer_id || ! is_string($stripe_customer_id)) {
434 434
 			$user_id            = $customer_user;
435
-			$stripe_customer_id = get_user_meta( $user_id, '_stripe_customer_id', true );
436
-			$stripe_source_id   = get_user_meta( $user_id, '_stripe_source_id', true );
435
+			$stripe_customer_id = get_user_meta($user_id, '_stripe_customer_id', true);
436
+			$stripe_source_id   = get_user_meta($user_id, '_stripe_source_id', true);
437 437
 
438 438
 			// For BW compat will remove in future.
439
-			if ( empty( $stripe_source_id ) ) {
440
-				$stripe_source_id = get_user_meta( $user_id, '_stripe_card_id', true );
439
+			if (empty($stripe_source_id)) {
440
+				$stripe_source_id = get_user_meta($user_id, '_stripe_card_id', true);
441 441
 
442 442
 				// Take this opportunity to update the key name.
443
-				update_user_meta( $user_id, '_stripe_source_id', $stripe_source_id );
443
+				update_user_meta($user_id, '_stripe_source_id', $stripe_source_id);
444 444
 			}
445 445
 		}
446 446
 
447 447
 		// If we couldn't find a Stripe customer linked to the account, fallback to the order meta data.
448
-		if ( ( ! $stripe_customer_id || ! is_string( $stripe_customer_id ) ) && false !== $subscription->order ) {
449
-			$stripe_customer_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_customer_id', true );
450
-			$stripe_source_id   = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_source_id', true );
448
+		if (( ! $stripe_customer_id || ! is_string($stripe_customer_id)) && false !== $subscription->order) {
449
+			$stripe_customer_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_customer_id', true);
450
+			$stripe_source_id   = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_source_id', true);
451 451
 
452 452
 			// For BW compat will remove in future.
453
-			if ( empty( $stripe_source_id ) ) {
454
-				$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_card_id', true );
453
+			if (empty($stripe_source_id)) {
454
+				$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_card_id', true);
455 455
 
456 456
 				// Take this opportunity to update the key name.
457
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $subscription->order->id, '_stripe_source_id', $stripe_source_id ) : update_post_meta( $subscription->get_parent_id(), '_stripe_source_id', $stripe_source_id );
457
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($subscription->order->id, '_stripe_source_id', $stripe_source_id) : update_post_meta($subscription->get_parent_id(), '_stripe_source_id', $stripe_source_id);
458 458
 			}
459 459
 		}
460 460
 
461
-		$stripe_customer->set_id( $stripe_customer_id );
461
+		$stripe_customer->set_id($stripe_customer_id);
462 462
 		$sources = $stripe_customer->get_sources();
463 463
 
464
-		if ( $sources ) {
464
+		if ($sources) {
465 465
 			$found_source = false;
466
-			foreach ( $sources as $source ) {
467
-				if ( isset( $source->type ) && 'card' === $source->type ) {
466
+			foreach ($sources as $source) {
467
+				if (isset($source->type) && 'card' === $source->type) {
468 468
 					$card = $source->card;
469
-				} elseif ( isset( $source->object ) && 'card' === $source->object ) {
469
+				} elseif (isset($source->object) && 'card' === $source->object) {
470 470
 					$card = $source;
471 471
 				}
472 472
 
473
-				if ( $source->id === $stripe_source_id ) {
473
+				if ($source->id === $stripe_source_id) {
474 474
 					$found_source = true;
475 475
 
476
-					if ( $card ) {
476
+					if ($card) {
477 477
 						/* translators: 1) card brand 2) last 4 digits */
478
-						$payment_method_to_display = sprintf( __( 'Via %1$s card ending in %2$s', 'woocommerce-gateway-stripe' ), ( isset( $card->brand ) ? $card->brand : __( 'N/A', 'woocommerce-gateway-stripe' ) ), $card->last4 );
478
+						$payment_method_to_display = sprintf(__('Via %1$s card ending in %2$s', 'woocommerce-gateway-stripe'), (isset($card->brand) ? $card->brand : __('N/A', 'woocommerce-gateway-stripe')), $card->last4);
479 479
 					} else {
480
-						$payment_method_to_display = __( 'N/A', 'woocommerce-gateway-stripe' );
480
+						$payment_method_to_display = __('N/A', 'woocommerce-gateway-stripe');
481 481
 					}
482 482
 					break;
483 483
 				}
484 484
 			}
485 485
 
486
-			if ( ! $found_source ) {
487
-				if ( 'card' === $sources[0]->type ) {
486
+			if ( ! $found_source) {
487
+				if ('card' === $sources[0]->type) {
488 488
 					$card = $sources[0]->card;
489 489
 				}
490 490
 
491
-				if ( $card ) {
491
+				if ($card) {
492 492
 					/* translators: 1) card brand 2) last 4 digits */
493
-					$payment_method_to_display = sprintf( __( 'Via %1$s card ending in %2$s', 'woocommerce-gateway-stripe' ), ( isset( $card->brand ) ? $card->brand : __( 'N/A', 'woocommerce-gateway-stripe' ) ), $card->last4 );
493
+					$payment_method_to_display = sprintf(__('Via %1$s card ending in %2$s', 'woocommerce-gateway-stripe'), (isset($card->brand) ? $card->brand : __('N/A', 'woocommerce-gateway-stripe')), $card->last4);
494 494
 				} else {
495
-					$payment_method_to_display = __( 'N/A', 'woocommerce-gateway-stripe' );
495
+					$payment_method_to_display = __('N/A', 'woocommerce-gateway-stripe');
496 496
 				}
497 497
 			}
498 498
 		}
@@ -505,42 +505,42 @@  discard block
 block discarded – undo
505 505
 	 * @param int $order_id
506 506
 	 * @return array
507 507
 	 */
508
-	public function process_pre_order( $order_id, $retry, $force_save_source ) {
509
-		if ( WC_Pre_Orders_Order::order_requires_payment_tokenization( $order_id ) ) {
508
+	public function process_pre_order($order_id, $retry, $force_save_source) {
509
+		if (WC_Pre_Orders_Order::order_requires_payment_tokenization($order_id)) {
510 510
 			try {
511
-				$order = wc_get_order( $order_id );
511
+				$order = wc_get_order($order_id);
512 512
 
513
-				if ( $order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount() ) {
513
+				if ($order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount()) {
514 514
 					/* translators: minimum amount */
515
-					throw new Exception( 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 ) ) );
515
+					throw new Exception(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)));
516 516
 				}
517 517
 
518
-				$prepared_source = $this->prepare_source( get_current_user_id(), true );
518
+				$prepared_source = $this->prepare_source(get_current_user_id(), true);
519 519
 
520 520
 				// We need a source on file to continue.
521
-				if ( empty( $prepared_source->customer ) || empty( $prepared_source->source ) ) {
522
-					throw new Exception( __( 'Unable to store payment details. Please try again.', 'woocommerce-gateway-stripe' ) );
521
+				if (empty($prepared_source->customer) || empty($prepared_source->source)) {
522
+					throw new Exception(__('Unable to store payment details. Please try again.', 'woocommerce-gateway-stripe'));
523 523
 				}
524 524
 
525
-				$this->save_source_to_order( $order, $prepared_source );
525
+				$this->save_source_to_order($order, $prepared_source);
526 526
 
527 527
 				// Remove cart
528 528
 				WC()->cart->empty_cart();
529 529
 
530 530
 				// Is pre ordered!
531
-				WC_Pre_Orders_Order::mark_order_as_pre_ordered( $order );
531
+				WC_Pre_Orders_Order::mark_order_as_pre_ordered($order);
532 532
 
533 533
 				// Return thank you page redirect
534 534
 				return array(
535 535
 					'result'   => 'success',
536
-					'redirect' => $this->get_return_url( $order ),
536
+					'redirect' => $this->get_return_url($order),
537 537
 				);
538
-			} catch ( Exception $e ) {
539
-				wc_add_notice( $e->getMessage(), 'error' );
538
+			} catch (Exception $e) {
539
+				wc_add_notice($e->getMessage(), 'error');
540 540
 				return;
541 541
 			}
542 542
 		} else {
543
-			return parent::process_payment( $order_id, $retry, $force_save_source );
543
+			return parent::process_payment($order_id, $retry, $force_save_source);
544 544
 		}
545 545
 	}
546 546
 
@@ -549,7 +549,7 @@  discard block
 block discarded – undo
549 549
 	 * @param WC_Order $order
550 550
 	 * @return void
551 551
 	 */
552
-	public function process_pre_order_release_payment( $order ) {
552
+	public function process_pre_order_release_payment($order) {
553 553
 		try {
554 554
 			// Define some callbacks if the first attempt fails.
555 555
 			$retry_callbacks = array(
@@ -557,33 +557,33 @@  discard block
 block discarded – undo
557 557
 				'remove_order_customer_before_retry',
558 558
 			);
559 559
 
560
-			while ( 1 ) {
561
-				$source   = $this->prepare_order_source( $order );
562
-				$response = WC_Stripe_API::request( $this->generate_payment_request( $order, $source ) );
560
+			while (1) {
561
+				$source   = $this->prepare_order_source($order);
562
+				$response = WC_Stripe_API::request($this->generate_payment_request($order, $source));
563 563
 
564
-				if ( ! empty( $response->error ) ) {
565
-					if ( 0 === sizeof( $retry_callbacks ) ) {
566
-						throw new Exception( $response->error->message );
564
+				if ( ! empty($response->error)) {
565
+					if (0 === sizeof($retry_callbacks)) {
566
+						throw new Exception($response->error->message);
567 567
 					} else {
568
-						$retry_callback = array_shift( $retry_callbacks );
569
-						call_user_func( array( $this, $retry_callback ), $order );
568
+						$retry_callback = array_shift($retry_callbacks);
569
+						call_user_func(array($this, $retry_callback), $order);
570 570
 					}
571 571
 				} else {
572 572
 					// Successful
573
-					$this->process_response( $response, $order );
573
+					$this->process_response($response, $order);
574 574
 					break;
575 575
 				}
576 576
 			}
577
-		} catch ( Exception $e ) {
577
+		} catch (Exception $e) {
578 578
 			/* translators: error message */
579
-			$order_note = sprintf( __( 'Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe' ), $e->getMessage() );
579
+			$order_note = sprintf(__('Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe'), $e->getMessage());
580 580
 
581 581
 			// Mark order as failed if not already set,
582 582
 			// otherwise, make sure we add the order note so we can detect when someone fails to check out multiple times
583
-			if ( ! $order->has_status( 'failed' ) ) {
584
-				$order->update_status( 'failed', $order_note );
583
+			if ( ! $order->has_status('failed')) {
584
+				$order->update_status('failed', $order_note);
585 585
 			} else {
586
-				$order->add_order_note( $order_note );
586
+				$order->add_order_note($order_note);
587 587
 			}
588 588
 		}
589 589
 	}
Please login to merge, or discard this patch.
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   +173 added lines, -173 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,88 +151,88 @@  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 ) );
165
+			$response = WC_Stripe_API::request($this->generate_payment_request($order, $source_object));
166 166
 
167
-			if ( ! empty( $response->error ) ) {
167
+			if ( ! empty($response->error)) {
168 168
 				// We want to retry.
169
-				if ( $this->is_retryable_error( $response->error ) ) {
170
-					if ( $retry ) {
169
+				if ($this->is_retryable_error($response->error)) {
170
+					if ($retry) {
171 171
 						// Don't do anymore retries after this.
172
-						if ( 5 <= $this->retry_interval ) {
172
+						if (5 <= $this->retry_interval) {
173 173
 
174
-							return $this->process_webhook_payment( $notification, false );
174
+							return $this->process_webhook_payment($notification, false);
175 175
 						}
176 176
 
177
-						sleep( $this->retry_interval );
177
+						sleep($this->retry_interval);
178 178
 
179 179
 						$this->retry_interval++;
180
-						return $this->process_webhook_payment( $notification, true );
180
+						return $this->process_webhook_payment($notification, true);
181 181
 					} else {
182
-						$localized_message = __( 'On going requests error and retries exhausted.', 'woocommerce-gateway-stripe' );
183
-						$order->add_order_note( $localized_message );
184
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
182
+						$localized_message = __('On going requests error and retries exhausted.', 'woocommerce-gateway-stripe');
183
+						$order->add_order_note($localized_message);
184
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
185 185
 					}
186 186
 				}
187 187
 
188 188
 				// Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without.
189
-				if ( preg_match( '/No such customer/i', $response->error->message ) && $retry ) {
190
-					if ( WC_Stripe_Helper::is_pre_30() ) {
191
-						delete_user_meta( $order->customer_user, '_stripe_customer_id' );
192
-						delete_post_meta( $order_id, '_stripe_customer_id' );
189
+				if (preg_match('/No such customer/i', $response->error->message) && $retry) {
190
+					if (WC_Stripe_Helper::is_pre_30()) {
191
+						delete_user_meta($order->customer_user, '_stripe_customer_id');
192
+						delete_post_meta($order_id, '_stripe_customer_id');
193 193
 					} else {
194
-						delete_user_meta( $order->get_customer_id(), '_stripe_customer_id' );
195
-						$order->delete_meta_data( '_stripe_customer_id' );
194
+						delete_user_meta($order->get_customer_id(), '_stripe_customer_id');
195
+						$order->delete_meta_data('_stripe_customer_id');
196 196
 						$order->save();
197 197
 					}
198 198
 
199
-					return $this->process_webhook_payment( $notification, false );
199
+					return $this->process_webhook_payment($notification, false);
200 200
 
201
-				} elseif ( preg_match( '/No such token/i', $response->error->message ) && $source_object->token_id ) {
201
+				} elseif (preg_match('/No such token/i', $response->error->message) && $source_object->token_id) {
202 202
 					// Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message.
203
-					$wc_token = WC_Payment_Tokens::get( $source_object->token_id );
203
+					$wc_token = WC_Payment_Tokens::get($source_object->token_id);
204 204
 					$wc_token->delete();
205
-					$message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' );
206
-					$order->add_order_note( $message );
207
-					throw new WC_Stripe_Exception( print_r( $response, true ), $message );
205
+					$message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe');
206
+					$order->add_order_note($message);
207
+					throw new WC_Stripe_Exception(print_r($response, true), $message);
208 208
 				}
209 209
 
210 210
 				$localized_messages = WC_Stripe_Helper::get_localized_messages();
211 211
 
212
-				if ( 'card_error' === $response->error->type ) {
213
-					$localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
212
+				if ('card_error' === $response->error->type) {
213
+					$localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message;
214 214
 				} else {
215
-					$localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
215
+					$localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message;
216 216
 				}
217 217
 
218
-				$order->add_order_note( $localized_message );
218
+				$order->add_order_note($localized_message);
219 219
 
220
-				throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
220
+				throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
221 221
 			}
222 222
 
223
-			do_action( 'wc_gateway_stripe_process_webhook_payment', $response, $order );
223
+			do_action('wc_gateway_stripe_process_webhook_payment', $response, $order);
224 224
 
225
-			$this->process_response( $response, $order );
225
+			$this->process_response($response, $order);
226 226
 
227
-		} catch ( WC_Stripe_Exception $e ) {
228
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
227
+		} catch (WC_Stripe_Exception $e) {
228
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
229 229
 
230
-			do_action( 'wc_gateway_stripe_process_webhook_payment_error', $e, $order );
230
+			do_action('wc_gateway_stripe_process_webhook_payment_error', $e, $order);
231 231
 
232
-			$statuses = array( 'pending', 'failed' );
232
+			$statuses = array('pending', 'failed');
233 233
 
234
-			if ( $order->has_status( $statuses ) ) {
235
-				$this->send_failed_order_email( $order_id );
234
+			if ($order->has_status($statuses)) {
235
+				$this->send_failed_order_email($order_id);
236 236
 			}
237 237
 		}
238 238
 	}
@@ -245,21 +245,21 @@  discard block
 block discarded – undo
245 245
 	 * @since 4.0.0
246 246
 	 * @param object $notification
247 247
 	 */
248
-	public function process_webhook_dispute( $notification ) {
249
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->charge );
248
+	public function process_webhook_dispute($notification) {
249
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->charge);
250 250
 
251
-		if ( ! $order ) {
252
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->charge );
251
+		if ( ! $order) {
252
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->charge);
253 253
 			return;
254 254
 		}
255 255
 
256 256
 		/* translators: 1) The URL to the order. */
257
-		$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 ) ) );
257
+		$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)));
258 258
 
259
-		do_action( 'wc_gateway_stripe_process_webhook_payment_error', $order, $notification );
259
+		do_action('wc_gateway_stripe_process_webhook_payment_error', $order, $notification);
260 260
 
261 261
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
262
-		$this->send_failed_order_email( $order_id );
262
+		$this->send_failed_order_email($order_id);
263 263
 	}
264 264
 
265 265
 	/**
@@ -270,41 +270,41 @@  discard block
 block discarded – undo
270 270
 	 * @version 4.0.0
271 271
 	 * @param object $notification
272 272
 	 */
273
-	public function process_webhook_capture( $notification ) {
274
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->id );
273
+	public function process_webhook_capture($notification) {
274
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->id);
275 275
 
276
-		if ( ! $order ) {
277
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->id );
276
+		if ( ! $order) {
277
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->id);
278 278
 			return;
279 279
 		}
280 280
 
281 281
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
282 282
 
283
-		if ( 'stripe' === ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) ) {
284
-			$charge   = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_transaction_id', true ) : $order->get_transaction_id();
285
-			$captured = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_charge_captured', true ) : $order->get_meta( '_stripe_charge_captured', true );
283
+		if ('stripe' === (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method())) {
284
+			$charge   = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_transaction_id', true) : $order->get_transaction_id();
285
+			$captured = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_charge_captured', true) : $order->get_meta('_stripe_charge_captured', true);
286 286
 
287
-			if ( $charge && 'no' === $captured ) {
288
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_charge_captured', 'yes' ) : $order->update_meta_data( '_stripe_charge_captured', 'yes' );
287
+			if ($charge && 'no' === $captured) {
288
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_charge_captured', 'yes') : $order->update_meta_data('_stripe_charge_captured', 'yes');
289 289
 
290 290
 				// Store other data such as fees
291
-				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 );
291
+				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);
292 292
 
293
-				if ( isset( $notification->data->object->balance_transaction ) ) {
294
-					$this->update_fees( $order, $notification->data->object->balance_transaction );
293
+				if (isset($notification->data->object->balance_transaction)) {
294
+					$this->update_fees($order, $notification->data->object->balance_transaction);
295 295
 				}
296 296
 
297
-				if ( is_callable( array( $order, 'save' ) ) ) {
297
+				if (is_callable(array($order, 'save'))) {
298 298
 					$order->save();
299 299
 				}
300 300
 
301 301
 				/* translators: transaction id */
302
-				$order->update_status( $order->needs_processing() ? 'processing' : 'completed', sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $notification->data->object->id ) );
302
+				$order->update_status($order->needs_processing() ? 'processing' : 'completed', sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $notification->data->object->id));
303 303
 
304 304
 				// Check and see if capture is partial.
305
-				if ( $this->is_partial_capture( $notification ) ) {
306
-					$order->set_total( $this->get_partial_amount_to_charge( $notification ) );
307
-					$order->add_order_note( __( 'This charge was partially captured via Stripe Dashboard', 'woocommerce-gateway-stripe' ) );
305
+				if ($this->is_partial_capture($notification)) {
306
+					$order->set_total($this->get_partial_amount_to_charge($notification));
307
+					$order->add_order_note(__('This charge was partially captured via Stripe Dashboard', 'woocommerce-gateway-stripe'));
308 308
 					$order->save();
309 309
 				}
310 310
 			}
@@ -319,38 +319,38 @@  discard block
 block discarded – undo
319 319
 	 * @version 4.0.0
320 320
 	 * @param object $notification
321 321
 	 */
322
-	public function process_webhook_charge_succeeded( $notification ) {
322
+	public function process_webhook_charge_succeeded($notification) {
323 323
 		// The following payment methods are synchronous so does not need to be handle via webhook.
324
-		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 ) ) {
324
+		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)) {
325 325
 			return;
326 326
 		}
327 327
 
328
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->id );
328
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->id);
329 329
 
330
-		if ( ! $order ) {
331
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->id );
330
+		if ( ! $order) {
331
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->id);
332 332
 			return;
333 333
 		}
334 334
 
335 335
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
336 336
 
337
-		if ( 'on-hold' !== $order->get_status() ) {
337
+		if ('on-hold' !== $order->get_status()) {
338 338
 			return;
339 339
 		}
340 340
 
341 341
 		// Store other data such as fees
342
-		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 );
342
+		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);
343 343
 
344
-		if ( isset( $notification->data->object->balance_transaction ) ) {
345
-			$this->update_fees( $order, $notification->data->object->balance_transaction );
344
+		if (isset($notification->data->object->balance_transaction)) {
345
+			$this->update_fees($order, $notification->data->object->balance_transaction);
346 346
 		}
347 347
 
348
-		if ( is_callable( array( $order, 'save' ) ) ) {
348
+		if (is_callable(array($order, 'save'))) {
349 349
 			$order->save();
350 350
 		}
351 351
 
352 352
 		/* translators: transaction id */
353
-		$order->update_status( $order->needs_processing() ? 'processing' : 'completed', sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $notification->data->object->id ) );
353
+		$order->update_status($order->needs_processing() ? 'processing' : 'completed', sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $notification->data->object->id));
354 354
 	}
355 355
 
356 356
 	/**
@@ -361,23 +361,23 @@  discard block
 block discarded – undo
361 361
 	 * @version 4.0.0
362 362
 	 * @param object $notification
363 363
 	 */
364
-	public function process_webhook_charge_failed( $notification ) {
365
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->id );
364
+	public function process_webhook_charge_failed($notification) {
365
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->id);
366 366
 
367
-		if ( ! $order ) {
368
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->id );
367
+		if ( ! $order) {
368
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->id);
369 369
 			return;
370 370
 		}
371 371
 
372 372
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
373 373
 
374
-		if ( 'on-hold' !== $order->get_status() ) {
374
+		if ('on-hold' !== $order->get_status()) {
375 375
 			return;
376 376
 		}
377 377
 
378
-		$order->update_status( 'failed', __( 'This payment failed to clear.', 'woocommerce-gateway-stripe' ) );
378
+		$order->update_status('failed', __('This payment failed to clear.', 'woocommerce-gateway-stripe'));
379 379
 
380
-		do_action( 'wc_gateway_stripe_process_webhook_payment_error', $order, $notification );
380
+		do_action('wc_gateway_stripe_process_webhook_payment_error', $order, $notification);
381 381
 	}
382 382
 
383 383
 	/**
@@ -388,23 +388,23 @@  discard block
 block discarded – undo
388 388
 	 * @version 4.0.0
389 389
 	 * @param object $notification
390 390
 	 */
391
-	public function process_webhook_source_canceled( $notification ) {
392
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->id );
391
+	public function process_webhook_source_canceled($notification) {
392
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->id);
393 393
 
394
-		if ( ! $order ) {
395
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->id );
394
+		if ( ! $order) {
395
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->id);
396 396
 			return;
397 397
 		}
398 398
 
399 399
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
400 400
 
401
-		if ( 'on-hold' !== $order->get_status() || 'cancelled' !== $order->get_status() ) {
401
+		if ('on-hold' !== $order->get_status() || 'cancelled' !== $order->get_status()) {
402 402
 			return;
403 403
 		}
404 404
 
405
-		$order->update_status( 'cancelled', __( 'This payment has cancelled.', 'woocommerce-gateway-stripe' ) );
405
+		$order->update_status('cancelled', __('This payment has cancelled.', 'woocommerce-gateway-stripe'));
406 406
 
407
-		do_action( 'wc_gateway_stripe_process_webhook_payment_error', $order, $notification );
407
+		do_action('wc_gateway_stripe_process_webhook_payment_error', $order, $notification);
408 408
 	}
409 409
 
410 410
 	/**
@@ -415,42 +415,42 @@  discard block
 block discarded – undo
415 415
 	 * @version 4.0.0
416 416
 	 * @param object $notification
417 417
 	 */
418
-	public function process_webhook_refund( $notification ) {
419
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->id );
418
+	public function process_webhook_refund($notification) {
419
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->id);
420 420
 
421
-		if ( ! $order ) {
422
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->id );
421
+		if ( ! $order) {
422
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->id);
423 423
 			return;
424 424
 		}
425 425
 
426 426
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
427 427
 
428
-		if ( 'stripe' === ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) ) {
429
-			$charge    = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_transaction_id', true ) : $order->get_transaction_id();
430
-			$captured  = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_charge_captured', true ) : $order->get_meta( '_stripe_charge_captured', true );
431
-			$refund_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_refund_id', true ) : $order->get_meta( '_stripe_refund_id', true );
428
+		if ('stripe' === (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method())) {
429
+			$charge    = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_transaction_id', true) : $order->get_transaction_id();
430
+			$captured  = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_charge_captured', true) : $order->get_meta('_stripe_charge_captured', true);
431
+			$refund_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_refund_id', true) : $order->get_meta('_stripe_refund_id', true);
432 432
 
433 433
 			// If the refund ID matches, don't continue to prevent double refunding.
434
-			if ( $notification->data->object->refunds->data[0]->id === $refund_id ) {
434
+			if ($notification->data->object->refunds->data[0]->id === $refund_id) {
435 435
 				return;
436 436
 			}
437 437
 
438 438
 			// Only refund captured charge.
439
-			if ( $charge ) {
440
-				$reason = ( isset( $captured ) && 'yes' === $captured ) ? __( 'Refunded via Stripe Dashboard', 'woocommerce-gateway-stripe' ) : __( 'Pre-Authorization Released via Stripe Dashboard', 'woocommerce-gateway-stripe' );
439
+			if ($charge) {
440
+				$reason = (isset($captured) && 'yes' === $captured) ? __('Refunded via Stripe Dashboard', 'woocommerce-gateway-stripe') : __('Pre-Authorization Released via Stripe Dashboard', 'woocommerce-gateway-stripe');
441 441
 
442 442
 				// Create the refund.
443
-				$refund = wc_create_refund( array(
443
+				$refund = wc_create_refund(array(
444 444
 					'order_id'       => $order_id,
445
-					'amount'         => $this->get_refund_amount( $notification ),
445
+					'amount'         => $this->get_refund_amount($notification),
446 446
 					'reason'         => $reason,
447
-				) );
447
+				));
448 448
 
449
-				if ( is_wp_error( $refund ) ) {
450
-					WC_Stripe_Logger::log( $refund->get_error_message() );
449
+				if (is_wp_error($refund)) {
450
+					WC_Stripe_Logger::log($refund->get_error_message());
451 451
 				}
452 452
 
453
-				$order->add_order_note( $reason );
453
+				$order->add_order_note($reason);
454 454
 			}
455 455
 		}
456 456
 	}
@@ -461,21 +461,21 @@  discard block
 block discarded – undo
461 461
 	 * @since 4.0.6
462 462
 	 * @param object $notification
463 463
 	 */
464
-	public function process_review_opened( $notification ) {
465
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->charge );
464
+	public function process_review_opened($notification) {
465
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->charge);
466 466
 
467
-		if ( ! $order ) {
468
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->charge );
467
+		if ( ! $order) {
468
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->charge);
469 469
 			return;
470 470
 		}
471 471
 
472 472
 		/* translators: 1) The URL to the order. 2) The reason type. */
473
-		$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 );
473
+		$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);
474 474
 
475
-		if ( apply_filters( 'wc_stripe_webhook_review_change_order_status', true, $order, $notification ) ) {
476
-			$order->update_status( 'on-hold', $message );
475
+		if (apply_filters('wc_stripe_webhook_review_change_order_status', true, $order, $notification)) {
476
+			$order->update_status('on-hold', $message);
477 477
 		} else {
478
-			$order->add_order_note( $message );
478
+			$order->add_order_note($message);
479 479
 		}
480 480
 	}
481 481
 
@@ -485,25 +485,25 @@  discard block
 block discarded – undo
485 485
 	 * @since 4.0.6
486 486
 	 * @param object $notification
487 487
 	 */
488
-	public function process_review_closed( $notification ) {
489
-		$order = WC_Stripe_Helper::get_order_by_charge_id( $notification->data->object->charge );
488
+	public function process_review_closed($notification) {
489
+		$order = WC_Stripe_Helper::get_order_by_charge_id($notification->data->object->charge);
490 490
 
491
-		if ( ! $order ) {
492
-			WC_Stripe_Logger::log( 'Could not find order via charge ID: ' . $notification->data->object->charge );
491
+		if ( ! $order) {
492
+			WC_Stripe_Logger::log('Could not find order via charge ID: ' . $notification->data->object->charge);
493 493
 			return;
494 494
 		}
495 495
 
496 496
 		/* translators: 1) The reason type. */
497
-		$message = sprintf( __( 'The opened review for this order is now closed. Reason: (%s)', 'woocommerce-gateway-stripe' ), $notification->data->object->reason );
497
+		$message = sprintf(__('The opened review for this order is now closed. Reason: (%s)', 'woocommerce-gateway-stripe'), $notification->data->object->reason);
498 498
 
499
-		if ( 'on-hold' === $order->get_status() ) {
500
-			if ( apply_filters( 'wc_stripe_webhook_review_change_order_status', true, $order, $notification ) ) {
501
-				$order->update_status( 'processing', $message );
499
+		if ('on-hold' === $order->get_status()) {
500
+			if (apply_filters('wc_stripe_webhook_review_change_order_status', true, $order, $notification)) {
501
+				$order->update_status('processing', $message);
502 502
 			} else {
503
-				$order->add_order_note( $message );
503
+				$order->add_order_note($message);
504 504
 			}
505 505
 		} else {
506
-			$order->add_order_note( $message );
506
+			$order->add_order_note($message);
507 507
 		}
508 508
 	}
509 509
 
@@ -514,7 +514,7 @@  discard block
 block discarded – undo
514 514
 	 * @version 4.0.0
515 515
 	 * @param object $notification
516 516
 	 */
517
-	public function is_partial_capture( $notification ) {
517
+	public function is_partial_capture($notification) {
518 518
 		return 0 < $notification->data->object->amount_refunded;
519 519
 	}
520 520
 
@@ -525,11 +525,11 @@  discard block
 block discarded – undo
525 525
 	 * @version 4.0.0
526 526
 	 * @param object $notification
527 527
 	 */
528
-	public function get_refund_amount( $notification ) {
529
-		if ( $this->is_partial_capture( $notification ) ) {
528
+	public function get_refund_amount($notification) {
529
+		if ($this->is_partial_capture($notification)) {
530 530
 			$amount = $notification->data->object->amount_refunded / 100;
531 531
 
532
-			if ( in_array( strtolower( $notification->data->object->currency ), WC_Stripe_Helper::no_decimal_currencies() ) ) {
532
+			if (in_array(strtolower($notification->data->object->currency), WC_Stripe_Helper::no_decimal_currencies())) {
533 533
 				$amount = $notification->data->object->amount_refunded;
534 534
 			}
535 535
 
@@ -546,12 +546,12 @@  discard block
 block discarded – undo
546 546
 	 * @version 4.0.0
547 547
 	 * @param object $notification
548 548
 	 */
549
-	public function get_partial_amount_to_charge( $notification ) {
550
-		if ( $this->is_partial_capture( $notification ) ) {
551
-			$amount = ( $notification->data->object->amount - $notification->data->object->amount_refunded ) / 100;
549
+	public function get_partial_amount_to_charge($notification) {
550
+		if ($this->is_partial_capture($notification)) {
551
+			$amount = ($notification->data->object->amount - $notification->data->object->amount_refunded) / 100;
552 552
 
553
-			if ( in_array( strtolower( $notification->data->object->currency ), WC_Stripe_Helper::no_decimal_currencies() ) ) {
554
-				$amount = ( $notification->data->object->amount - $notification->data->object->amount_refunded );
553
+			if (in_array(strtolower($notification->data->object->currency), WC_Stripe_Helper::no_decimal_currencies())) {
554
+				$amount = ($notification->data->object->amount - $notification->data->object->amount_refunded);
555 555
 			}
556 556
 
557 557
 			return $amount;
@@ -567,44 +567,44 @@  discard block
 block discarded – undo
567 567
 	 * @version 4.0.0
568 568
 	 * @param string $request_body
569 569
 	 */
570
-	public function process_webhook( $request_body ) {
571
-		$notification = json_decode( $request_body );
570
+	public function process_webhook($request_body) {
571
+		$notification = json_decode($request_body);
572 572
 
573
-		switch ( $notification->type ) {
573
+		switch ($notification->type) {
574 574
 			case 'source.chargeable':
575
-				$this->process_webhook_payment( $notification );
575
+				$this->process_webhook_payment($notification);
576 576
 				break;
577 577
 
578 578
 			case 'source.canceled':
579
-				$this->process_webhook_source_canceled( $notification );
579
+				$this->process_webhook_source_canceled($notification);
580 580
 				break;
581 581
 
582 582
 			case 'charge.succeeded':
583
-				$this->process_webhook_charge_succeeded( $notification );
583
+				$this->process_webhook_charge_succeeded($notification);
584 584
 				break;
585 585
 
586 586
 			case 'charge.failed':
587
-				$this->process_webhook_charge_failed( $notification );
587
+				$this->process_webhook_charge_failed($notification);
588 588
 				break;
589 589
 
590 590
 			case 'charge.captured':
591
-				$this->process_webhook_capture( $notification );
591
+				$this->process_webhook_capture($notification);
592 592
 				break;
593 593
 
594 594
 			case 'charge.dispute.created':
595
-				$this->process_webhook_dispute( $notification );
595
+				$this->process_webhook_dispute($notification);
596 596
 				break;
597 597
 
598 598
 			case 'charge.refunded':
599
-				$this->process_webhook_refund( $notification );
599
+				$this->process_webhook_refund($notification);
600 600
 				break;
601 601
 
602 602
 			case 'review.opened':
603
-				$this->process_review_opened( $notification );
603
+				$this->process_review_opened($notification);
604 604
 				break;
605 605
 
606 606
 			case 'review.closed':
607
-				$this->process_review_closed( $notification );
607
+				$this->process_review_closed($notification);
608 608
 				break;
609 609
 
610 610
 		}
Please login to merge, or discard this patch.
includes/class-wc-gateway-stripe.php 1 patch
Spacing   +177 added lines, -177 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
 
@@ -106,9 +106,9 @@  discard block
 block discarded – undo
106 106
 	public function __construct() {
107 107
 		$this->retry_interval       = 1;
108 108
 		$this->id                   = 'stripe';
109
-		$this->method_title         = __( 'Stripe', 'woocommerce-gateway-stripe' );
109
+		$this->method_title         = __('Stripe', 'woocommerce-gateway-stripe');
110 110
 		/* translators: 1) link to Stripe register page 2) link to Stripe api keys page */
111
-		$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' );
111
+		$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');
112 112
 		$this->has_fields           = true;
113 113
 		$this->supports             = array(
114 114
 			'products',
@@ -135,32 +135,32 @@  discard block
 block discarded – undo
135 135
 		$this->init_settings();
136 136
 
137 137
 		// Get setting values.
138
-		$this->title                   = $this->get_option( 'title' );
139
-		$this->description             = $this->get_option( 'description' );
140
-		$this->enabled                 = $this->get_option( 'enabled' );
141
-		$this->testmode                = 'yes' === $this->get_option( 'testmode' );
142
-		$this->inline_cc_form          = 'yes' === $this->get_option( 'inline_cc_form' );
143
-		$this->capture                 = 'yes' === $this->get_option( 'capture', 'yes' );
144
-		$this->statement_descriptor    = WC_Stripe_Helper::clean_statement_descriptor( $this->get_option( 'statement_descriptor' ) );
145
-		$this->three_d_secure          = 'yes' === $this->get_option( 'three_d_secure' );
146
-		$this->stripe_checkout         = 'yes' === $this->get_option( 'stripe_checkout' );
147
-		$this->stripe_checkout_image   = $this->get_option( 'stripe_checkout_image', '' );
148
-		$this->saved_cards             = 'yes' === $this->get_option( 'saved_cards' );
149
-		$this->secret_key              = $this->testmode ? $this->get_option( 'test_secret_key' ) : $this->get_option( 'secret_key' );
150
-		$this->publishable_key         = $this->testmode ? $this->get_option( 'test_publishable_key' ) : $this->get_option( 'publishable_key' );
151
-		$this->bitcoin                 = 'USD' === strtoupper( get_woocommerce_currency() ) && 'yes' === $this->get_option( 'stripe_bitcoin' );
152
-		$this->payment_request         = 'yes' === $this->get_option( 'payment_request', 'yes' );
153
-
154
-		if ( $this->stripe_checkout ) {
155
-			$this->order_button_text = __( 'Continue to payment', 'woocommerce-gateway-stripe' );
138
+		$this->title                   = $this->get_option('title');
139
+		$this->description             = $this->get_option('description');
140
+		$this->enabled                 = $this->get_option('enabled');
141
+		$this->testmode                = 'yes' === $this->get_option('testmode');
142
+		$this->inline_cc_form          = 'yes' === $this->get_option('inline_cc_form');
143
+		$this->capture                 = 'yes' === $this->get_option('capture', 'yes');
144
+		$this->statement_descriptor    = WC_Stripe_Helper::clean_statement_descriptor($this->get_option('statement_descriptor'));
145
+		$this->three_d_secure          = 'yes' === $this->get_option('three_d_secure');
146
+		$this->stripe_checkout         = 'yes' === $this->get_option('stripe_checkout');
147
+		$this->stripe_checkout_image   = $this->get_option('stripe_checkout_image', '');
148
+		$this->saved_cards             = 'yes' === $this->get_option('saved_cards');
149
+		$this->secret_key              = $this->testmode ? $this->get_option('test_secret_key') : $this->get_option('secret_key');
150
+		$this->publishable_key         = $this->testmode ? $this->get_option('test_publishable_key') : $this->get_option('publishable_key');
151
+		$this->bitcoin                 = 'USD' === strtoupper(get_woocommerce_currency()) && 'yes' === $this->get_option('stripe_bitcoin');
152
+		$this->payment_request         = 'yes' === $this->get_option('payment_request', 'yes');
153
+
154
+		if ($this->stripe_checkout) {
155
+			$this->order_button_text = __('Continue to payment', 'woocommerce-gateway-stripe');
156 156
 		}
157 157
 
158
-		WC_Stripe_API::set_secret_key( $this->secret_key );
158
+		WC_Stripe_API::set_secret_key($this->secret_key);
159 159
 
160 160
 		// Hooks.
161
-		add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) );
162
-		add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
163
-		add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
161
+		add_action('wp_enqueue_scripts', array($this, 'payment_scripts'));
162
+		add_action('admin_enqueue_scripts', array($this, 'admin_scripts'));
163
+		add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options'));
164 164
 	}
165 165
 
166 166
 	/**
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 	 * @return bool
171 171
 	 */
172 172
 	public function are_keys_set() {
173
-		if ( empty( $this->secret_key ) || empty( $this->publishable_key ) ) {
173
+		if (empty($this->secret_key) || empty($this->publishable_key)) {
174 174
 			return false;
175 175
 		}
176 176
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 	 * @since 4.0.2
184 184
 	 */
185 185
 	public function is_available() {
186
-		if ( is_add_payment_method_page() && ! $this->saved_cards ) {
186
+		if (is_add_payment_method_page() && ! $this->saved_cards) {
187 187
 			return false;
188 188
 		}
189 189
 
@@ -206,24 +206,24 @@  discard block
 block discarded – undo
206 206
 		$icons_str .= $icons['amex'];
207 207
 		$icons_str .= $icons['mastercard'];
208 208
 
209
-		if ( 'USD' === get_woocommerce_currency() ) {
209
+		if ('USD' === get_woocommerce_currency()) {
210 210
 			$icons_str .= $icons['discover'];
211 211
 			$icons_str .= $icons['jcb'];
212 212
 			$icons_str .= $icons['diners'];
213 213
 		}
214 214
 
215
-		if ( $this->bitcoin && $this->stripe_checkout ) {
215
+		if ($this->bitcoin && $this->stripe_checkout) {
216 216
 			$icons_str .= $icons['bitcoin'];
217 217
 		}
218 218
 
219
-		return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id );
219
+		return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id);
220 220
 	}
221 221
 
222 222
 	/**
223 223
 	 * Initialise Gateway Settings Form Fields
224 224
 	 */
225 225
 	public function init_form_fields() {
226
-		$this->form_fields = require( dirname( __FILE__ ) . '/admin/stripe-settings.php' );
226
+		$this->form_fields = require(dirname(__FILE__) . '/admin/stripe-settings.php');
227 227
 	}
228 228
 
229 229
 	/**
@@ -231,68 +231,68 @@  discard block
 block discarded – undo
231 231
 	 */
232 232
 	public function payment_fields() {
233 233
 		$user                 = wp_get_current_user();
234
-		$display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards;
234
+		$display_tokenization = $this->supports('tokenization') && is_checkout() && $this->saved_cards;
235 235
 		$total                = WC()->cart->total;
236 236
 		$user_email           = '';
237 237
 
238 238
 		// If paying from order, we need to get total from order not cart.
239
-		if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
240
-			$order      = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) );
239
+		if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) {
240
+			$order      = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key'])));
241 241
 			$total      = $order->get_total();
242 242
 			$user_email = WC_Stripe_Helper::is_pre_30() ? $order->billing_email : $order->get_billing_email();
243 243
 		} else {
244
-			if ( $user->ID ) {
245
-				$user_email = get_user_meta( $user->ID, 'billing_email', true );
244
+			if ($user->ID) {
245
+				$user_email = get_user_meta($user->ID, 'billing_email', true);
246 246
 				$user_email = $user_email ? $user_email : $user->user_email;
247 247
 			}
248 248
 		}
249 249
 
250
-		if ( is_add_payment_method_page() ) {
251
-			$pay_button_text = __( 'Add Card', 'woocommerce-gateway-stripe' );
252
-			$total        = '';
250
+		if (is_add_payment_method_page()) {
251
+			$pay_button_text = __('Add Card', 'woocommerce-gateway-stripe');
252
+			$total = '';
253 253
 		} else {
254 254
 			$pay_button_text = '';
255 255
 		}
256 256
 
257 257
 		echo '<div
258 258
 			id="stripe-payment-data"
259
-			data-panel-label="' . esc_attr( $pay_button_text ) . '"
259
+			data-panel-label="' . esc_attr($pay_button_text) . '"
260 260
 			data-description=""
261
-			data-email="' . esc_attr( $user_email ) . '"
262
-			data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
263
-			data-name="' . esc_attr( $this->statement_descriptor ) . '"
264
-			data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '"
265
-			data-image="' . esc_attr( $this->stripe_checkout_image ) . '"
266
-			data-bitcoin="' . esc_attr( ( $this->bitcoin && $this->capture ) ? 'true' : 'false' ) . '"
267
-			data-locale="' . esc_attr( apply_filters( 'wc_stripe_checkout_locale', $this->get_locale() ) ) . '"
268
-			data-three-d-secure="' . esc_attr( $this->three_d_secure ? 'true' : 'false' ) . '"
269
-			data-allow-remember-me="' . esc_attr( $this->saved_cards ? 'true' : 'false' ) . '">';
270
-
271
-		if ( $this->description ) {
272
-			if ( $this->testmode ) {
261
+			data-email="' . esc_attr($user_email) . '"
262
+			data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '"
263
+			data-name="' . esc_attr($this->statement_descriptor) . '"
264
+			data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '"
265
+			data-image="' . esc_attr($this->stripe_checkout_image) . '"
266
+			data-bitcoin="' . esc_attr(($this->bitcoin && $this->capture) ? 'true' : 'false') . '"
267
+			data-locale="' . esc_attr(apply_filters('wc_stripe_checkout_locale', $this->get_locale())) . '"
268
+			data-three-d-secure="' . esc_attr($this->three_d_secure ? 'true' : 'false') . '"
269
+			data-allow-remember-me="' . esc_attr($this->saved_cards ? 'true' : 'false') . '">';
270
+
271
+		if ($this->description) {
272
+			if ($this->testmode) {
273 273
 				/* translators: link to Stripe testing page */
274
-				$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' );
275
-				$this->description  = trim( $this->description );
274
+				$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');
275
+				$this->description  = trim($this->description);
276 276
 			}
277
-			echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ) );
277
+			echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($this->description)));
278 278
 		}
279 279
 
280
-		if ( $display_tokenization ) {
280
+		if ($display_tokenization) {
281 281
 			$this->tokenization_script();
282 282
 			$this->saved_payment_methods();
283 283
 		}
284 284
 
285
-		if ( ! $this->stripe_checkout ) {
286
-			if ( apply_filters( 'wc_stripe_use_elements_checkout_form', true ) ) {
285
+		if ( ! $this->stripe_checkout) {
286
+			if (apply_filters('wc_stripe_use_elements_checkout_form', true)) {
287 287
 				$this->elements_form();
288 288
 			} else {
289
-				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!' );
289
+				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!');
290 290
 				$this->form();
291 291
 				echo '<div class="stripe-source-errors" role="alert"></div>';
292 292
 			}
293 293
 		}
294 294
 
295
-		if ( apply_filters( 'wc_stripe_display_save_payment_method_checkbox', $display_tokenization ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) ) {
295
+		if (apply_filters('wc_stripe_display_save_payment_method_checkbox', $display_tokenization) && ! is_add_payment_method_page() && ! isset($_GET['change_payment_method'])) {
296 296
 			$this->save_payment_method_checkbox();
297 297
 		}
298 298
 
@@ -307,12 +307,12 @@  discard block
 block discarded – undo
307 307
 	 */
308 308
 	public function elements_form() {
309 309
 		?>
310
-		<fieldset id="wc-<?php echo esc_attr( $this->id ); ?>-cc-form" class="wc-credit-card-form wc-payment-form" style="background:transparent;">
311
-			<?php do_action( 'woocommerce_credit_card_form_start', $this->id ); ?>
310
+		<fieldset id="wc-<?php echo esc_attr($this->id); ?>-cc-form" class="wc-credit-card-form wc-payment-form" style="background:transparent;">
311
+			<?php do_action('woocommerce_credit_card_form_start', $this->id); ?>
312 312
 
313
-			<?php if ( $this->inline_cc_form ) { ?>
313
+			<?php if ($this->inline_cc_form) { ?>
314 314
 				<label for="card-element">
315
-					<?php esc_html_e( 'Credit or debit card', 'woocommerce-gateway-stripe' ); ?>
315
+					<?php esc_html_e('Credit or debit card', 'woocommerce-gateway-stripe'); ?>
316 316
 				</label>
317 317
 
318 318
 				<div id="stripe-card-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
 				</div>
321 321
 			<?php } else { ?>
322 322
 				<div class="form-row form-row-wide">
323
-					<label><?php _e( 'Card Number', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
323
+					<label><?php _e('Card Number', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label>
324 324
 
325 325
 					<div id="stripe-card-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
326 326
 					<!-- a Stripe Element will be inserted here. -->
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
 				</div>
329 329
 
330 330
 				<div class="form-row form-row-first">
331
-					<label><?php _e( 'Expiry Date', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
331
+					<label><?php _e('Expiry Date', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label>
332 332
 
333 333
 					<div id="stripe-exp-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-last">
339
-					<label><?php _e( 'Card Code (CVC)', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
339
+					<label><?php _e('Card Code (CVC)', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label>
340 340
 				<div id="stripe-cvc-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
341 341
 				<!-- a Stripe Element will be inserted here. -->
342 342
 				</div>
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
 
347 347
 			<!-- Used to display form errors -->
348 348
 			<div class="stripe-source-errors" role="alert"></div>
349
-			<?php do_action( 'woocommerce_credit_card_form_end', $this->id ); ?>
349
+			<?php do_action('woocommerce_credit_card_form_end', $this->id); ?>
350 350
 			<div class="clear"></div>
351 351
 		</fieldset>
352 352
 		<?php
@@ -359,13 +359,13 @@  discard block
 block discarded – undo
359 359
 	 * @version 3.1.0
360 360
 	 */
361 361
 	public function admin_scripts() {
362
-		if ( 'woocommerce_page_wc-settings' !== get_current_screen()->id ) {
362
+		if ('woocommerce_page_wc-settings' !== get_current_screen()->id) {
363 363
 			return;
364 364
 		}
365 365
 
366
-		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
366
+		$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
367 367
 
368
-		wp_enqueue_script( 'woocommerce_stripe_admin', plugins_url( 'assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array(), WC_STRIPE_VERSION, true );
368
+		wp_enqueue_script('woocommerce_stripe_admin', plugins_url('assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array(), WC_STRIPE_VERSION, true);
369 369
 	}
370 370
 
371 371
 	/**
@@ -377,46 +377,46 @@  discard block
 block discarded – undo
377 377
 	 * @version 4.0.0
378 378
 	 */
379 379
 	public function payment_scripts() {
380
-		if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) ) {
380
+		if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page() && ! isset($_GET['change_payment_method'])) {
381 381
 			return;
382 382
 		}
383 383
 
384 384
 		// If Stripe is not enabled bail.
385
-		if ( 'no' === $this->enabled ) {
385
+		if ('no' === $this->enabled) {
386 386
 			return;
387 387
 		}
388 388
 
389 389
 		// If keys are not set bail.
390
-		if ( ! $this->are_keys_set() ) {
391
-			WC_Stripe_Logger::log( 'Keys are not set correctly.' );
390
+		if ( ! $this->are_keys_set()) {
391
+			WC_Stripe_Logger::log('Keys are not set correctly.');
392 392
 			return;
393 393
 		}
394 394
 
395 395
 		// If no SSL bail.
396
-		if ( ! $this->testmode && ! is_ssl() ) {
397
-			WC_Stripe_Logger::log( 'Stripe requires SSL.' );
396
+		if ( ! $this->testmode && ! is_ssl()) {
397
+			WC_Stripe_Logger::log('Stripe requires SSL.');
398 398
 			return;
399 399
 		}
400 400
 
401
-		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
401
+		$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
402 402
 
403
-		wp_register_style( 'stripe_paymentfonts', plugins_url( 'assets/css/stripe-paymentfonts.css', WC_STRIPE_MAIN_FILE ), array(), '1.2.5' );
404
-		wp_enqueue_style( 'stripe_paymentfonts' );
405
-		wp_register_script( 'stripe_checkout', 'https://checkout.stripe.com/checkout.js', '', WC_STRIPE_VERSION, true );
406
-		wp_register_script( 'stripev2', 'https://js.stripe.com/v2/', '', '2.0', true );
407
-		wp_register_script( 'stripe', 'https://js.stripe.com/v3/', '', '3.0', true );
408
-		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 );
403
+		wp_register_style('stripe_paymentfonts', plugins_url('assets/css/stripe-paymentfonts.css', WC_STRIPE_MAIN_FILE), array(), '1.2.5');
404
+		wp_enqueue_style('stripe_paymentfonts');
405
+		wp_register_script('stripe_checkout', 'https://checkout.stripe.com/checkout.js', '', WC_STRIPE_VERSION, true);
406
+		wp_register_script('stripev2', 'https://js.stripe.com/v2/', '', '2.0', true);
407
+		wp_register_script('stripe', 'https://js.stripe.com/v3/', '', '3.0', true);
408
+		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);
409 409
 
410 410
 		$stripe_params = array(
411 411
 			'key'                  => $this->publishable_key,
412
-			'i18n_terms'           => __( 'Please accept the terms and conditions first', 'woocommerce-gateway-stripe' ),
413
-			'i18n_required_fields' => __( 'Please fill in required checkout fields first', 'woocommerce-gateway-stripe' ),
412
+			'i18n_terms'           => __('Please accept the terms and conditions first', 'woocommerce-gateway-stripe'),
413
+			'i18n_required_fields' => __('Please fill in required checkout fields first', 'woocommerce-gateway-stripe'),
414 414
 		);
415 415
 
416 416
 		// If we're on the pay page we need to pass stripe.js the address of the order.
417
-		if ( isset( $_GET['pay_for_order'] ) && 'true' === $_GET['pay_for_order'] ) {
418
-			$order_id = wc_get_order_id_by_order_key( urldecode( $_GET['key'] ) );
419
-			$order    = wc_get_order( $order_id );
417
+		if (isset($_GET['pay_for_order']) && 'true' === $_GET['pay_for_order']) {
418
+			$order_id = wc_get_order_id_by_order_key(urldecode($_GET['key']));
419
+			$order    = wc_get_order($order_id);
420 420
 
421 421
 			$stripe_params['billing_first_name'] = WC_Stripe_Helper::is_pre_30() ? $order->billing_first_name : $order->get_billing_first_name();
422 422
 			$stripe_params['billing_last_name']  = WC_Stripe_Helper::is_pre_30() ? $order->billing_last_name : $order->get_billing_last_name();
@@ -428,39 +428,39 @@  discard block
 block discarded – undo
428 428
 			$stripe_params['billing_country']    = WC_Stripe_Helper::is_pre_30() ? $order->billing_country : $order->get_billing_country();
429 429
 		}
430 430
 
431
-		$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' );
432
-		$stripe_params['no_sepa_owner_msg']                       = __( 'Please enter your IBAN account name.', 'woocommerce-gateway-stripe' );
433
-		$stripe_params['no_sepa_iban_msg']                        = __( 'Please enter your IBAN account number.', 'woocommerce-gateway-stripe' );
434
-		$stripe_params['sepa_mandate_notification']               = apply_filters( 'wc_stripe_sepa_mandate_notification', 'email' );
435
-		$stripe_params['allow_prepaid_card']                      = apply_filters( 'wc_stripe_allow_prepaid_card', true ) ? 'yes' : 'no';
431
+		$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');
432
+		$stripe_params['no_sepa_owner_msg']                       = __('Please enter your IBAN account name.', 'woocommerce-gateway-stripe');
433
+		$stripe_params['no_sepa_iban_msg']                        = __('Please enter your IBAN account number.', 'woocommerce-gateway-stripe');
434
+		$stripe_params['sepa_mandate_notification']               = apply_filters('wc_stripe_sepa_mandate_notification', 'email');
435
+		$stripe_params['allow_prepaid_card']                      = apply_filters('wc_stripe_allow_prepaid_card', true) ? 'yes' : 'no';
436 436
 		$stripe_params['inline_cc_form']                          = $this->inline_cc_form ? 'yes' : 'no';
437
-		$stripe_params['stripe_checkout_require_billing_address'] = apply_filters( 'wc_stripe_checkout_require_billing_address', false ) ? 'yes' : 'no';
438
-		$stripe_params['is_checkout']                             = ( is_checkout() && empty( $_GET['pay_for_order'] ) ) ? 'yes' : 'no';
437
+		$stripe_params['stripe_checkout_require_billing_address'] = apply_filters('wc_stripe_checkout_require_billing_address', false) ? 'yes' : 'no';
438
+		$stripe_params['is_checkout']                             = (is_checkout() && empty($_GET['pay_for_order'])) ? 'yes' : 'no';
439 439
 		$stripe_params['return_url']                              = $this->get_stripe_return_url();
440
-		$stripe_params['ajaxurl']                                 = WC_AJAX::get_endpoint( '%%endpoint%%' );
441
-		$stripe_params['stripe_nonce']                            = wp_create_nonce( '_wc_stripe_nonce' );
440
+		$stripe_params['ajaxurl']                                 = WC_AJAX::get_endpoint('%%endpoint%%');
441
+		$stripe_params['stripe_nonce']                            = wp_create_nonce('_wc_stripe_nonce');
442 442
 		$stripe_params['statement_descriptor']                    = $this->statement_descriptor;
443
-		$stripe_params['use_elements']                            = apply_filters( 'wc_stripe_use_elements_checkout_form', true ) ? 'yes' : 'no';
444
-		$stripe_params['elements_options']                        = apply_filters( 'wc_stripe_elements_options', array() );
443
+		$stripe_params['use_elements']                            = apply_filters('wc_stripe_use_elements_checkout_form', true) ? 'yes' : 'no';
444
+		$stripe_params['elements_options']                        = apply_filters('wc_stripe_elements_options', array());
445 445
 		$stripe_params['is_stripe_checkout']                      = $this->stripe_checkout ? 'yes' : 'no';
446
-		$stripe_params['is_change_payment_page']                  = isset( $_GET['change_payment_method'] ) ? 'yes' : 'no';
447
-		$stripe_params['is_pay_for_order_page']                   = isset( $_GET['pay_for_order'] ) ? 'yes' : 'no';
448
-		$stripe_params['validate_modal_checkout']                 = apply_filters( 'wc_stripe_validate_modal_checkout', false ) ? 'yes' : 'no';
449
-		$stripe_params['elements_styling']                        = apply_filters( 'wc_stripe_elements_styling', false );
450
-		$stripe_params['elements_classes']                        = apply_filters( 'wc_stripe_elements_classes', false );
446
+		$stripe_params['is_change_payment_page']                  = isset($_GET['change_payment_method']) ? 'yes' : 'no';
447
+		$stripe_params['is_pay_for_order_page']                   = isset($_GET['pay_for_order']) ? 'yes' : 'no';
448
+		$stripe_params['validate_modal_checkout']                 = apply_filters('wc_stripe_validate_modal_checkout', false) ? 'yes' : 'no';
449
+		$stripe_params['elements_styling']                        = apply_filters('wc_stripe_elements_styling', false);
450
+		$stripe_params['elements_classes']                        = apply_filters('wc_stripe_elements_classes', false);
451 451
 
452 452
 		// merge localized messages to be use in JS
453
-		$stripe_params = array_merge( $stripe_params, WC_Stripe_Helper::get_localized_messages() );
453
+		$stripe_params = array_merge($stripe_params, WC_Stripe_Helper::get_localized_messages());
454 454
 
455
-		wp_localize_script( 'woocommerce_stripe', 'wc_stripe_params', apply_filters( 'wc_stripe_params', $stripe_params ) );
456
-		wp_localize_script( 'woocommerce_stripe_checkout', 'wc_stripe_params', apply_filters( 'wc_stripe_params', $stripe_params ) );
455
+		wp_localize_script('woocommerce_stripe', 'wc_stripe_params', apply_filters('wc_stripe_params', $stripe_params));
456
+		wp_localize_script('woocommerce_stripe_checkout', 'wc_stripe_params', apply_filters('wc_stripe_params', $stripe_params));
457 457
 
458
-		if ( $this->stripe_checkout ) {
459
-			wp_enqueue_script( 'stripe_checkout' );
458
+		if ($this->stripe_checkout) {
459
+			wp_enqueue_script('stripe_checkout');
460 460
 		}
461 461
 
462 462
 		$this->tokenization_script();
463
-		wp_enqueue_script( 'woocommerce_stripe' );
463
+		wp_enqueue_script('woocommerce_stripe');
464 464
 	}
465 465
 
466 466
 	/**
@@ -476,41 +476,41 @@  discard block
 block discarded – undo
476 476
 	 *
477 477
 	 * @return array|void
478 478
 	 */
479
-	public function process_payment( $order_id, $retry = true, $force_save_source = false ) {
479
+	public function process_payment($order_id, $retry = true, $force_save_source = false) {
480 480
 		try {
481
-			$order = wc_get_order( $order_id );
481
+			$order = wc_get_order($order_id);
482 482
 
483 483
 			// This comes from the create account checkbox in the checkout page.
484
-			$create_account = ! empty( $_POST['createaccount'] ) ? true : false;
484
+			$create_account = ! empty($_POST['createaccount']) ? true : false;
485 485
 
486
-			if ( $create_account ) {
486
+			if ($create_account) {
487 487
 				$new_customer_id     = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id();
488
-				$new_stripe_customer = new WC_Stripe_Customer( $new_customer_id );
488
+				$new_stripe_customer = new WC_Stripe_Customer($new_customer_id);
489 489
 				$new_stripe_customer->create_customer();
490 490
 			}
491 491
 
492
-			$prepared_source = $this->prepare_source( get_current_user_id(), $force_save_source );
492
+			$prepared_source = $this->prepare_source(get_current_user_id(), $force_save_source);
493 493
 			$source_object   = $prepared_source->source_object;
494 494
 
495 495
 			// Check if we don't allow prepaid credit cards.
496
-			if ( ! apply_filters( 'wc_stripe_allow_prepaid_card', true ) && $this->is_prepaid_card( $source_object ) ) {
497
-				$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' );
498
-				throw new WC_Stripe_Exception( print_r( $source_object, true ), $localized_message );
496
+			if ( ! apply_filters('wc_stripe_allow_prepaid_card', true) && $this->is_prepaid_card($source_object)) {
497
+				$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');
498
+				throw new WC_Stripe_Exception(print_r($source_object, true), $localized_message);
499 499
 			}
500 500
 
501
-			if ( empty( $prepared_source->source ) ) {
502
-				$localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
503
-				throw new WC_Stripe_Exception( print_r( $prepared_source, true ), $localized_message );
501
+			if (empty($prepared_source->source)) {
502
+				$localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe');
503
+				throw new WC_Stripe_Exception(print_r($prepared_source, true), $localized_message);
504 504
 			}
505 505
 
506
-			$this->save_source_to_order( $order, $prepared_source );
506
+			$this->save_source_to_order($order, $prepared_source);
507 507
 
508 508
 			// Result from Stripe API request.
509 509
 			$response = null;
510 510
 
511
-			if ( $order->get_total() > 0 ) {
511
+			if ($order->get_total() > 0) {
512 512
 				// This will throw exception if not valid.
513
-				$this->validate_minimum_order_amount( $order );
513
+				$this->validate_minimum_order_amount($order);
514 514
 
515 515
 				/*
516 516
 				 * Check if card 3DS is required or optional with 3DS setting.
@@ -519,105 +519,105 @@  discard block
 block discarded – undo
519 519
 				 * Note that if we need to save source, the original source must be first
520 520
 				 * attached to a customer in Stripe before it can be charged.
521 521
 				 */
522
-				if ( $this->is_3ds_required( $source_object ) ) {
523
-					$response = $this->create_3ds_source( $order, $source_object );
522
+				if ($this->is_3ds_required($source_object)) {
523
+					$response = $this->create_3ds_source($order, $source_object);
524 524
 
525
-					if ( ! empty( $response->error ) ) {
525
+					if ( ! empty($response->error)) {
526 526
 						$localized_message = $response->error->message;
527 527
 
528
-						$order->add_order_note( $localized_message );
528
+						$order->add_order_note($localized_message);
529 529
 
530
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
530
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
531 531
 					}
532 532
 
533 533
 					// Update order meta with 3DS source.
534
-					if ( WC_Stripe_Helper::is_pre_30() ) {
535
-						update_post_meta( $order_id, '_stripe_source_id', $response->id );
534
+					if (WC_Stripe_Helper::is_pre_30()) {
535
+						update_post_meta($order_id, '_stripe_source_id', $response->id);
536 536
 					} else {
537
-						$order->update_meta_data( '_stripe_source_id', $response->id );
537
+						$order->update_meta_data('_stripe_source_id', $response->id);
538 538
 						$order->save();
539 539
 					}
540 540
 
541
-					WC_Stripe_Logger::log( 'Info: Redirecting to 3DS...' );
541
+					WC_Stripe_Logger::log('Info: Redirecting to 3DS...');
542 542
 
543 543
 					return array(
544 544
 						'result'   => 'success',
545
-						'redirect' => esc_url_raw( $response->redirect->url ),
545
+						'redirect' => esc_url_raw($response->redirect->url),
546 546
 					);
547 547
 				}
548 548
 
549
-				WC_Stripe_Logger::log( "Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}" );
549
+				WC_Stripe_Logger::log("Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}");
550 550
 
551 551
 				/* If we're doing a retry and source is chargeable, we need to pass
552 552
 				 * a different idempotency key and retry for success.
553 553
 				 */
554
-				if ( 1 < $this->retry_interval && ! empty( $source_object ) && 'chargeable' === $source_object->status ) {
555
-					add_filter( 'wc_stripe_idempotency_key', array( $this, 'change_idempotency_key' ), 10, 2 );
554
+				if (1 < $this->retry_interval && ! empty($source_object) && 'chargeable' === $source_object->status) {
555
+					add_filter('wc_stripe_idempotency_key', array($this, 'change_idempotency_key'), 10, 2);
556 556
 				}
557 557
 
558 558
 				// Make the request.
559
-				$response = WC_Stripe_API::request( $this->generate_payment_request( $order, $prepared_source ) );
559
+				$response = WC_Stripe_API::request($this->generate_payment_request($order, $prepared_source));
560 560
 
561
-				if ( ! empty( $response->error ) ) {
561
+				if ( ! empty($response->error)) {
562 562
 					// Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without.
563
-					if ( preg_match( '/No such customer/i', $response->error->message ) && $retry ) {
564
-						if ( WC_Stripe_Helper::is_pre_30() ) {
565
-							delete_user_meta( $order->customer_user, '_stripe_customer_id' );
566
-							delete_post_meta( $order_id, '_stripe_customer_id' );
563
+					if (preg_match('/No such customer/i', $response->error->message) && $retry) {
564
+						if (WC_Stripe_Helper::is_pre_30()) {
565
+							delete_user_meta($order->customer_user, '_stripe_customer_id');
566
+							delete_post_meta($order_id, '_stripe_customer_id');
567 567
 						} else {
568
-							delete_user_meta( $order->get_customer_id(), '_stripe_customer_id' );
569
-							$order->delete_meta_data( '_stripe_customer_id' );
568
+							delete_user_meta($order->get_customer_id(), '_stripe_customer_id');
569
+							$order->delete_meta_data('_stripe_customer_id');
570 570
 							$order->save();
571 571
 						}
572 572
 
573
-						return $this->process_payment( $order_id, false, $force_save_source );
574
-					} elseif ( preg_match( '/No such token/i', $response->error->message ) && $prepared_source->token_id ) {
573
+						return $this->process_payment($order_id, false, $force_save_source);
574
+					} elseif (preg_match('/No such token/i', $response->error->message) && $prepared_source->token_id) {
575 575
 						// Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message.
576
-						$wc_token = WC_Payment_Tokens::get( $prepared_source->token_id );
576
+						$wc_token = WC_Payment_Tokens::get($prepared_source->token_id);
577 577
 						$wc_token->delete();
578
-						$localized_message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' );
579
-						$order->add_order_note( $localized_message );
580
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
578
+						$localized_message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe');
579
+						$order->add_order_note($localized_message);
580
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
581 581
 					}
582 582
 
583 583
 					// We want to retry.
584
-					if ( $this->is_retryable_error( $response->error ) ) {
585
-						if ( $retry ) {
584
+					if ($this->is_retryable_error($response->error)) {
585
+						if ($retry) {
586 586
 							// Don't do anymore retries after this.
587
-							if ( 5 <= $this->retry_interval ) {
587
+							if (5 <= $this->retry_interval) {
588 588
 
589
-								return $this->process_payment( $order_id, false, $force_save_source );
589
+								return $this->process_payment($order_id, false, $force_save_source);
590 590
 							}
591 591
 
592
-							sleep( $this->retry_interval );
592
+							sleep($this->retry_interval);
593 593
 
594 594
 							$this->retry_interval++;
595 595
 
596
-							return $this->process_payment( $order_id, true, $force_save_source );
596
+							return $this->process_payment($order_id, true, $force_save_source);
597 597
 						} else {
598
-							$localized_message = __( 'On going requests error and retries exhausted.', 'woocommerce-gateway-stripe' );
599
-							$order->add_order_note( $localized_message );
600
-							throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
598
+							$localized_message = __('On going requests error and retries exhausted.', 'woocommerce-gateway-stripe');
599
+							$order->add_order_note($localized_message);
600
+							throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
601 601
 						}
602 602
 					}
603 603
 
604 604
 					$localized_messages = WC_Stripe_Helper::get_localized_messages();
605 605
 
606
-					if ( 'card_error' === $response->error->type ) {
607
-						$localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
606
+					if ('card_error' === $response->error->type) {
607
+						$localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message;
608 608
 					} else {
609
-						$localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
609
+						$localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message;
610 610
 					}
611 611
 
612
-					$order->add_order_note( $localized_message );
612
+					$order->add_order_note($localized_message);
613 613
 
614
-					throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
614
+					throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
615 615
 				}
616 616
 
617
-				do_action( 'wc_gateway_stripe_process_payment', $response, $order );
617
+				do_action('wc_gateway_stripe_process_payment', $response, $order);
618 618
 
619 619
 				// Process valid response.
620
-				$this->process_response( $response, $order );
620
+				$this->process_response($response, $order);
621 621
 			} else {
622 622
 				$order->payment_complete();
623 623
 			}
@@ -628,20 +628,20 @@  discard block
 block discarded – undo
628 628
 			// Return thank you page redirect.
629 629
 			return array(
630 630
 				'result'   => 'success',
631
-				'redirect' => $this->get_return_url( $order ),
631
+				'redirect' => $this->get_return_url($order),
632 632
 			);
633 633
 
634
-		} catch ( WC_Stripe_Exception $e ) {
635
-			wc_add_notice( $e->getLocalizedMessage(), 'error' );
636
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
634
+		} catch (WC_Stripe_Exception $e) {
635
+			wc_add_notice($e->getLocalizedMessage(), 'error');
636
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
637 637
 
638
-			do_action( 'wc_gateway_stripe_process_payment_error', $e, $order );
638
+			do_action('wc_gateway_stripe_process_payment_error', $e, $order);
639 639
 
640 640
 			/* translators: error message */
641
-			$order->update_status( 'failed' );
641
+			$order->update_status('failed');
642 642
 
643
-			if ( $order->has_status( array( 'pending', 'failed' ) ) ) {
644
-				$this->send_failed_order_email( $order_id );
643
+			if ($order->has_status(array('pending', 'failed'))) {
644
+				$this->send_failed_order_email($order_id);
645 645
 			}
646 646
 
647 647
 			return array(
Please login to merge, or discard this patch.
includes/class-wc-stripe-order-handler.php 1 patch
Spacing   +96 added lines, -96 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,122 +75,122 @@  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 ) );
120
+			$response = WC_Stripe_API::request($this->generate_payment_request($order, $source_object));
121 121
 
122
-			if ( ! empty( $response->error ) ) {
122
+			if ( ! empty($response->error)) {
123 123
 				// Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without.
124
-				if ( preg_match( '/No such customer/i', $response->error->message ) && $retry ) {
125
-					if ( WC_Stripe_Helper::is_pre_30() ) {
126
-						delete_user_meta( $order->customer_user, '_stripe_customer_id' );
127
-						delete_post_meta( $order_id, '_stripe_customer_id' );
124
+				if (preg_match('/No such customer/i', $response->error->message) && $retry) {
125
+					if (WC_Stripe_Helper::is_pre_30()) {
126
+						delete_user_meta($order->customer_user, '_stripe_customer_id');
127
+						delete_post_meta($order_id, '_stripe_customer_id');
128 128
 					} else {
129
-						delete_user_meta( $order->get_customer_id(), '_stripe_customer_id' );
130
-						$order->delete_meta_data( '_stripe_customer_id' );
129
+						delete_user_meta($order->get_customer_id(), '_stripe_customer_id');
130
+						$order->delete_meta_data('_stripe_customer_id');
131 131
 						$order->save();
132 132
 					}
133 133
 
134
-					return $this->process_redirect_payment( $order_id, false );
134
+					return $this->process_redirect_payment($order_id, false);
135 135
 
136
-				} elseif ( preg_match( '/No such token/i', $response->error->message ) && $source_object->token_id ) {
136
+				} elseif (preg_match('/No such token/i', $response->error->message) && $source_object->token_id) {
137 137
 					// Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message.
138 138
 
139
-					$wc_token = WC_Payment_Tokens::get( $source_object->token_id );
139
+					$wc_token = WC_Payment_Tokens::get($source_object->token_id);
140 140
 					$wc_token->delete();
141
-					$message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' );
142
-					$order->add_order_note( $message );
143
-					throw new WC_Stripe_Exception( print_r( $response, true ), $message );
141
+					$message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe');
142
+					$order->add_order_note($message);
143
+					throw new WC_Stripe_Exception(print_r($response, true), $message);
144 144
 				}
145 145
 
146 146
 				// We want to retry.
147
-				if ( $this->is_retryable_error( $response->error ) ) {
148
-					if ( $retry ) {
147
+				if ($this->is_retryable_error($response->error)) {
148
+					if ($retry) {
149 149
 						// Don't do anymore retries after this.
150
-						if ( 5 <= $this->retry_interval ) {
151
-							return $this->process_redirect_payment( $order_id, false );
150
+						if (5 <= $this->retry_interval) {
151
+							return $this->process_redirect_payment($order_id, false);
152 152
 						}
153 153
 
154
-						sleep( $this->retry_interval );
154
+						sleep($this->retry_interval);
155 155
 
156 156
 						$this->retry_interval++;
157
-						return $this->process_redirect_payment( $order_id, true );
157
+						return $this->process_redirect_payment($order_id, true);
158 158
 					} else {
159
-						$localized_message = __( 'On going requests error and retries exhausted.', 'woocommerce-gateway-stripe' );
160
-						$order->add_order_note( $localized_message );
161
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
159
+						$localized_message = __('On going requests error and retries exhausted.', 'woocommerce-gateway-stripe');
160
+						$order->add_order_note($localized_message);
161
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
162 162
 					}
163 163
 				}
164 164
 
165 165
 				$localized_messages = WC_Stripe_Helper::get_localized_messages();
166 166
 
167
-				if ( 'card_error' === $response->error->type ) {
168
-					$message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
167
+				if ('card_error' === $response->error->type) {
168
+					$message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message;
169 169
 				} else {
170
-					$message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
170
+					$message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message;
171 171
 				}
172 172
 
173
-				throw new WC_Stripe_Exception( print_r( $response, true ), $message );
173
+				throw new WC_Stripe_Exception(print_r($response, true), $message);
174 174
 			}
175 175
 
176
-			do_action( 'wc_gateway_stripe_process_redirect_payment', $response, $order );
176
+			do_action('wc_gateway_stripe_process_redirect_payment', $response, $order);
177 177
 
178
-			$this->process_response( $response, $order );
178
+			$this->process_response($response, $order);
179 179
 
180
-		} catch ( WC_Stripe_Exception $e ) {
181
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
180
+		} catch (WC_Stripe_Exception $e) {
181
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
182 182
 
183
-			do_action( 'wc_gateway_stripe_process_redirect_payment_error', $e, $order );
183
+			do_action('wc_gateway_stripe_process_redirect_payment_error', $e, $order);
184 184
 
185 185
 			/* translators: error message */
186
-			$order->update_status( 'failed', sprintf( __( 'Stripe payment failed: %s', 'woocommerce-gateway-stripe' ), $e->getLocalizedMessage() ) );
186
+			$order->update_status('failed', sprintf(__('Stripe payment failed: %s', 'woocommerce-gateway-stripe'), $e->getLocalizedMessage()));
187 187
 
188
-			if ( $order->has_status( array( 'pending', 'failed' ) ) ) {
189
-				$this->send_failed_order_email( $order_id );
188
+			if ($order->has_status(array('pending', 'failed'))) {
189
+				$this->send_failed_order_email($order_id);
190 190
 			}
191 191
 
192
-			wc_add_notice( $e->getLocalizedMessage(), 'error' );
193
-			wp_safe_redirect( wc_get_checkout_url() );
192
+			wc_add_notice($e->getLocalizedMessage(), 'error');
193
+			wp_safe_redirect(wc_get_checkout_url());
194 194
 			exit;
195 195
 		}
196 196
 	}
@@ -202,13 +202,13 @@  discard block
 block discarded – undo
202 202
 	 * @version 4.0.0
203 203
 	 */
204 204
 	public function maybe_process_redirect_order() {
205
-		if ( ! is_order_received_page() || empty( $_GET['client_secret'] ) || empty( $_GET['source'] ) ) {
205
+		if ( ! is_order_received_page() || empty($_GET['client_secret']) || empty($_GET['source'])) {
206 206
 			return;
207 207
 		}
208 208
 
209
-		$order_id = wc_clean( $_GET['order_id'] );
209
+		$order_id = wc_clean($_GET['order_id']);
210 210
 
211
-		$this->process_redirect_payment( $order_id );
211
+		$this->process_redirect_payment($order_id);
212 212
 	}
213 213
 
214 214
 	/**
@@ -218,52 +218,52 @@  discard block
 block discarded – undo
218 218
 	 * @version 4.0.0
219 219
 	 * @param  int $order_id
220 220
 	 */
221
-	public function capture_payment( $order_id ) {
222
-		$order = wc_get_order( $order_id );
221
+	public function capture_payment($order_id) {
222
+		$order = wc_get_order($order_id);
223 223
 
224
-		if ( 'stripe' === ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) ) {
225
-			$charge   = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_transaction_id', true ) : $order->get_transaction_id();
226
-			$captured = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_charge_captured', true ) : $order->get_meta( '_stripe_charge_captured', true );
224
+		if ('stripe' === (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method())) {
225
+			$charge   = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_transaction_id', true) : $order->get_transaction_id();
226
+			$captured = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_charge_captured', true) : $order->get_meta('_stripe_charge_captured', true);
227 227
 
228
-			if ( $charge && 'no' === $captured ) {
228
+			if ($charge && 'no' === $captured) {
229 229
 				$order_total = $order->get_total();
230 230
 
231
-				if ( 0 < $order->get_total_refunded() ) {
231
+				if (0 < $order->get_total_refunded()) {
232 232
 					$order_total = $order_total - $order->get_total_refunded();
233 233
 				}
234 234
 
235
-				$result = WC_Stripe_API::request( array(
236
-					'amount'   => WC_Stripe_Helper::get_stripe_amount( $order_total ),
235
+				$result = WC_Stripe_API::request(array(
236
+					'amount'   => WC_Stripe_Helper::get_stripe_amount($order_total),
237 237
 					'expand[]' => 'balance_transaction',
238
-				), 'charges/' . $charge . '/capture' );
238
+				), 'charges/' . $charge . '/capture');
239 239
 
240
-				if ( ! empty( $result->error ) ) {
240
+				if ( ! empty($result->error)) {
241 241
 					/* translators: error message */
242
-					$order->update_status( 'failed', sprintf( __( 'Unable to capture charge! %s', 'woocommerce-gateway-stripe' ), $result->error->message ) );
242
+					$order->update_status('failed', sprintf(__('Unable to capture charge! %s', 'woocommerce-gateway-stripe'), $result->error->message));
243 243
 				} else {
244 244
 					/* translators: transaction id */
245
-					$order->add_order_note( sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $result->id ) );
246
-					WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_charge_captured', 'yes' ) : $order->update_meta_data( '_stripe_charge_captured', 'yes' );
245
+					$order->add_order_note(sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $result->id));
246
+					WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_charge_captured', 'yes') : $order->update_meta_data('_stripe_charge_captured', 'yes');
247 247
 
248 248
 					// Store other data such as fees
249
-					WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $result->id ) : $order->set_transaction_id( $result->id );
249
+					WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $result->id) : $order->set_transaction_id($result->id);
250 250
 
251
-					if ( isset( $result->balance_transaction ) && isset( $result->balance_transaction->fee ) ) {
251
+					if (isset($result->balance_transaction) && isset($result->balance_transaction->fee)) {
252 252
 						// Fees and Net needs to both come from Stripe to be accurate as the returned
253 253
 						// values are in the local currency of the Stripe account, not from WC.
254
-						$fee = ! empty( $result->balance_transaction->fee ) ? WC_Stripe_Helper::format_balance_fee( $result->balance_transaction, 'fee' ) : 0;
255
-						$net = ! empty( $result->balance_transaction->net ) ? WC_Stripe_Helper::format_balance_fee( $result->balance_transaction, 'net' ) : 0;
256
-						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 );
257
-						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 );
254
+						$fee = ! empty($result->balance_transaction->fee) ? WC_Stripe_Helper::format_balance_fee($result->balance_transaction, 'fee') : 0;
255
+						$net = ! empty($result->balance_transaction->net) ? WC_Stripe_Helper::format_balance_fee($result->balance_transaction, 'net') : 0;
256
+						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);
257
+						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);
258 258
 					}
259 259
 
260
-					if ( is_callable( array( $order, 'save' ) ) ) {
260
+					if (is_callable(array($order, 'save'))) {
261 261
 						$order->save();
262 262
 					}
263 263
 				}
264 264
 
265 265
 				// This hook fires when admin manually changes order status to processing or completed.
266
-				do_action( 'woocommerce_stripe_process_manual_capture', $order, $result );
266
+				do_action('woocommerce_stripe_process_manual_capture', $order, $result);
267 267
 			}
268 268
 		}
269 269
 	}
@@ -275,14 +275,14 @@  discard block
 block discarded – undo
275 275
 	 * @version 4.0.0
276 276
 	 * @param  int $order_id
277 277
 	 */
278
-	public function cancel_payment( $order_id ) {
279
-		$order = wc_get_order( $order_id );
278
+	public function cancel_payment($order_id) {
279
+		$order = wc_get_order($order_id);
280 280
 
281
-		if ( 'stripe' === ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) ) {
282
-			$this->process_refund( $order_id );
281
+		if ('stripe' === (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method())) {
282
+			$this->process_refund($order_id);
283 283
 
284 284
 			// This hook fires when admin manually changes order status to cancel.
285
-			do_action( 'woocommerce_stripe_process_manual_cancel', $order );
285
+			do_action('woocommerce_stripe_process_manual_cancel', $order);
286 286
 		}
287 287
 	}
288 288
 
@@ -293,8 +293,8 @@  discard block
 block discarded – undo
293 293
 	 * @version 4.0.0
294 294
 	 */
295 295
 	public function validate_checkout() {
296
-		if ( ! wp_verify_nonce( $_POST['nonce'], '_wc_stripe_nonce' ) ) {
297
-			wp_die( __( 'Cheatin&#8217; huh?', 'woocommerce-gateway-stripe' ) );
296
+		if ( ! wp_verify_nonce($_POST['nonce'], '_wc_stripe_nonce')) {
297
+			wp_die(__('Cheatin&#8217; huh?', 'woocommerce-gateway-stripe'));
298 298
 		}
299 299
 
300 300
 		/*
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
 		 * i.e. wp_send_json( 'success' ); // On successful validation.
303 303
 		 * i.e. For errors follow WC https://github.com/woocommerce/woocommerce/blob/master/includes/class-wc-checkout.php#L918-L938
304 304
 		 */
305
-		do_action( 'wc_stripe_validate_modal_checkout_action', $_POST['required_fields'], $_POST['all_fields'] );
305
+		do_action('wc_stripe_validate_modal_checkout_action', $_POST['required_fields'], $_POST['all_fields']);
306 306
 	}
307 307
 }
308 308
 
Please login to merge, or discard this patch.