Completed
Pull Request — master (#605)
by Roy
05:45
created
includes/compat/class-wc-stripe-sepa-subs-compat.php 1 patch
Spacing   +138 added lines, -138 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,19 +15,19 @@  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 33
 
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
 	 * @since 4.0.0
48 48
 	 * @version 4.0.0
49 49
 	 */
50
-	public function maybe_hide_save_checkbox( $display_tokenization ) {
51
-		if ( WC_Subscriptions_Cart::cart_contains_subscription() ) {
50
+	public function maybe_hide_save_checkbox($display_tokenization) {
51
+		if (WC_Subscriptions_Cart::cart_contains_subscription()) {
52 52
 			return false;
53 53
 		}
54 54
 
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
 	 * @param  int  $order_id
61 61
 	 * @return boolean
62 62
 	 */
63
-	public function has_subscription( $order_id ) {
64
-		return ( function_exists( 'wcs_order_contains_subscription' ) && ( wcs_order_contains_subscription( $order_id ) || wcs_is_subscription( $order_id ) || wcs_order_contains_renewal( $order_id ) ) );
63
+	public function has_subscription($order_id) {
64
+		return (function_exists('wcs_order_contains_subscription') && (wcs_order_contains_subscription($order_id) || wcs_is_subscription($order_id) || wcs_order_contains_renewal($order_id)));
65 65
 	}
66 66
 
67 67
 	/**
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 	 * @return bool
72 72
 	 */
73 73
 	public function is_subs_change_payment() {
74
-		return ( isset( $_GET['pay_for_order'] ) && isset( $_GET['change_payment_method'] ) );
74
+		return (isset($_GET['pay_for_order']) && isset($_GET['change_payment_method']));
75 75
 	}
76 76
 
77 77
 	/**
@@ -80,24 +80,24 @@  discard block
 block discarded – undo
80 80
 	 * @since 3.1.0
81 81
 	 * @version 4.0.0
82 82
 	 */
83
-	public function save_source_to_order( $order, $source ) {
84
-		parent::save_source_to_order( $order, $source );
83
+	public function save_source_to_order($order, $source) {
84
+		parent::save_source_to_order($order, $source);
85 85
 
86
-		$order_id  = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
86
+		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
87 87
 
88 88
 		// Also store it on the subscriptions being purchased or paid for in the order.
89
-		if ( function_exists( 'wcs_order_contains_subscription' ) && wcs_order_contains_subscription( $order_id ) ) {
90
-			$subscriptions = wcs_get_subscriptions_for_order( $order_id );
91
-		} elseif ( function_exists( 'wcs_order_contains_renewal' ) && wcs_order_contains_renewal( $order_id ) ) {
92
-			$subscriptions = wcs_get_subscriptions_for_renewal_order( $order_id );
89
+		if (function_exists('wcs_order_contains_subscription') && wcs_order_contains_subscription($order_id)) {
90
+			$subscriptions = wcs_get_subscriptions_for_order($order_id);
91
+		} elseif (function_exists('wcs_order_contains_renewal') && wcs_order_contains_renewal($order_id)) {
92
+			$subscriptions = wcs_get_subscriptions_for_renewal_order($order_id);
93 93
 		} else {
94 94
 			$subscriptions = array();
95 95
 		}
96 96
 
97
-		foreach ( $subscriptions as $subscription ) {
97
+		foreach ($subscriptions as $subscription) {
98 98
 			$subscription_id = WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id();
99
-			update_post_meta( $subscription_id, '_stripe_customer_id', $source->customer );
100
-			update_post_meta( $subscription_id, '_stripe_source_id', $source->source );
99
+			update_post_meta($subscription_id, '_stripe_customer_id', $source->customer);
100
+			update_post_meta($subscription_id, '_stripe_source_id', $source->source);
101 101
 		}
102 102
 	}
103 103
 
@@ -106,16 +106,16 @@  discard block
 block discarded – undo
106 106
 	 * @param  int $order_id
107 107
 	 * @return array
108 108
 	 */
109
-	public function process_payment( $order_id, $retry = true, $force_save_source = false, $previous_error = false ) {
110
-		if ( $this->has_subscription( $order_id ) ) {
111
-			if ( $this->is_subs_change_payment() ) {
112
-				return $this->change_subs_payment_method( $order_id );
109
+	public function process_payment($order_id, $retry = true, $force_save_source = false, $previous_error = false) {
110
+		if ($this->has_subscription($order_id)) {
111
+			if ($this->is_subs_change_payment()) {
112
+				return $this->change_subs_payment_method($order_id);
113 113
 			}
114 114
 
115 115
 			// Regular payment with force customer enabled
116
-			return parent::process_payment( $order_id, $retry, true, $previous_error );
116
+			return parent::process_payment($order_id, $retry, true, $previous_error);
117 117
 		} else {
118
-			return parent::process_payment( $order_id, $retry, $force_save_source, $previous_error );
118
+			return parent::process_payment($order_id, $retry, $force_save_source, $previous_error);
119 119
 		}
120 120
 	}
121 121
 
@@ -125,25 +125,25 @@  discard block
 block discarded – undo
125 125
 	 * @since 4.0.4
126 126
 	 * @param int $order_id
127 127
 	 */
128
-	public function change_subs_payment_method( $order_id ) {
128
+	public function change_subs_payment_method($order_id) {
129 129
 		try {
130
-			$subscription    = wc_get_order( $order_id );
131
-			$prepared_source = $this->prepare_source( get_current_user_id(), true );
130
+			$subscription    = wc_get_order($order_id);
131
+			$prepared_source = $this->prepare_source(get_current_user_id(), true);
132 132
 
133
-			if ( empty( $prepared_source->source ) ) {
134
-				$localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
135
-				throw new WC_Stripe_Exception( print_r( $prepared_source, true ), $localized_message );
133
+			if (empty($prepared_source->source)) {
134
+				$localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe');
135
+				throw new WC_Stripe_Exception(print_r($prepared_source, true), $localized_message);
136 136
 			}
137 137
 
138
-			$this->save_source_to_order( $subscription, $prepared_source );
138
+			$this->save_source_to_order($subscription, $prepared_source);
139 139
 
140 140
 			return array(
141 141
 				'result'   => 'success',
142
-				'redirect' => $this->get_return_url( $subscription ),
142
+				'redirect' => $this->get_return_url($subscription),
143 143
 			);
144
-		} catch ( WC_Stripe_Exception $e ) {
145
-			wc_add_notice( $e->getLocalizedMessage(), 'error' );
146
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
144
+		} catch (WC_Stripe_Exception $e) {
145
+			wc_add_notice($e->getLocalizedMessage(), 'error');
146
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
147 147
 		}
148 148
 	}
149 149
 
@@ -153,8 +153,8 @@  discard block
 block discarded – undo
153 153
 	 * @param $amount_to_charge float The amount to charge.
154 154
 	 * @param $renewal_order WC_Order A WC_Order object created to record the renewal payment.
155 155
 	 */
156
-	public function scheduled_subscription_payment( $amount_to_charge, $renewal_order ) {
157
-		$this->process_subscription_payment( $amount_to_charge, $renewal_order, true, false );
156
+	public function scheduled_subscription_payment($amount_to_charge, $renewal_order) {
157
+		$this->process_subscription_payment($amount_to_charge, $renewal_order, true, false);
158 158
 	}
159 159
 
160 160
 	/**
@@ -168,89 +168,89 @@  discard block
 block discarded – undo
168 168
 	 * @param bool $retry Should we retry the process?
169 169
 	 * @param object $previous_error
170 170
 	 */
171
-	public function process_subscription_payment( $amount = 0.0, $renewal_order, $retry = true, $previous_error ) {
171
+	public function process_subscription_payment($amount = 0.0, $renewal_order, $retry = true, $previous_error) {
172 172
 		try {
173
-			if ( $amount * 100 < WC_Stripe_Helper::get_minimum_amount() ) {
173
+			if ($amount * 100 < WC_Stripe_Helper::get_minimum_amount()) {
174 174
 				/* translators: minimum amount */
175
-				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 ) ) );
175
+				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)));
176 176
 			}
177 177
 
178 178
 			$order_id = WC_Stripe_Helper::is_pre_30() ? $renewal_order->id : $renewal_order->get_id();
179 179
 
180 180
 			// Get source from order
181
-			$prepared_source = $this->prepare_order_source( $renewal_order );
181
+			$prepared_source = $this->prepare_order_source($renewal_order);
182 182
 			$source_object   = $prepared_source->source_object;
183 183
 
184
-			if ( ! $prepared_source->customer ) {
185
-				return new WP_Error( 'stripe_error', __( 'Customer not found', 'woocommerce-gateway-stripe' ) );
184
+			if ( ! $prepared_source->customer) {
185
+				return new WP_Error('stripe_error', __('Customer not found', 'woocommerce-gateway-stripe'));
186 186
 			}
187 187
 
188
-			WC_Stripe_Logger::log( "Info: Begin processing subscription payment for order {$order_id} for the amount of {$amount}" );
188
+			WC_Stripe_Logger::log("Info: Begin processing subscription payment for order {$order_id} for the amount of {$amount}");
189 189
 
190 190
 			/* If we're doing a retry and source is chargeable, we need to pass
191 191
 			 * a different idempotency key and retry for success.
192 192
 			 */
193
-			if ( is_object( $source_object ) && empty( $source_object->error ) && $this->need_update_idempotency_key( $source_object, $previous_error ) ) {
194
-				add_filter( 'wc_stripe_idempotency_key', array( $this, 'change_idempotency_key' ), 10, 2 );
193
+			if (is_object($source_object) && empty($source_object->error) && $this->need_update_idempotency_key($source_object, $previous_error)) {
194
+				add_filter('wc_stripe_idempotency_key', array($this, 'change_idempotency_key'), 10, 2);
195 195
 			}
196 196
 
197
-			if ( ( $this->is_no_such_source_error( $previous_error ) || $this->is_no_linked_source_error( $previous_error ) ) && apply_filters( 'wc_stripe_use_default_customer_source', true ) ) {
197
+			if (($this->is_no_such_source_error($previous_error) || $this->is_no_linked_source_error($previous_error)) && apply_filters('wc_stripe_use_default_customer_source', true)) {
198 198
 				// Passing empty source will charge customer default.
199 199
 				$prepared_source->source = '';
200 200
 			}
201 201
 
202
-			$request            = $this->generate_payment_request( $renewal_order, $prepared_source );
202
+			$request            = $this->generate_payment_request($renewal_order, $prepared_source);
203 203
 			$request['capture'] = 'true';
204
-			$request['amount']  = WC_Stripe_Helper::get_stripe_amount( $amount, $request['currency'] );
205
-			$response           = WC_Stripe_API::request( $request );
204
+			$request['amount']  = WC_Stripe_Helper::get_stripe_amount($amount, $request['currency']);
205
+			$response           = WC_Stripe_API::request($request);
206 206
 
207
-			if ( ! empty( $response->error ) ) {
207
+			if ( ! empty($response->error)) {
208 208
 				// We want to retry.
209
-				if ( $this->is_retryable_error( $response->error ) ) {
210
-					if ( $retry ) {
209
+				if ($this->is_retryable_error($response->error)) {
210
+					if ($retry) {
211 211
 						// Don't do anymore retries after this.
212
-						if ( 5 <= $this->retry_interval ) {
213
-							return $this->process_subscription_payment( $amount, $renewal_order, false, $response->error );
212
+						if (5 <= $this->retry_interval) {
213
+							return $this->process_subscription_payment($amount, $renewal_order, false, $response->error);
214 214
 						}
215 215
 
216
-						sleep( $this->retry_interval );
216
+						sleep($this->retry_interval);
217 217
 
218 218
 						$this->retry_interval++;
219 219
 
220
-						return $this->process_subscription_payment( $amount, $renewal_order, true, $response->error );
220
+						return $this->process_subscription_payment($amount, $renewal_order, true, $response->error);
221 221
 					} else {
222
-						$localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' );
223
-						$renewal_order->add_order_note( $localized_message );
224
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
222
+						$localized_message = __('Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe');
223
+						$renewal_order->add_order_note($localized_message);
224
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
225 225
 					}
226 226
 				}
227 227
 
228 228
 				$localized_messages = WC_Stripe_Helper::get_localized_messages();
229 229
 
230
-				if ( 'card_error' === $response->error->type ) {
231
-					$localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
230
+				if ('card_error' === $response->error->type) {
231
+					$localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message;
232 232
 				} else {
233
-					$localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
233
+					$localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message;
234 234
 				}
235 235
 
236
-				$renewal_order->add_order_note( $localized_message );
236
+				$renewal_order->add_order_note($localized_message);
237 237
 
238
-				throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
238
+				throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
239 239
 			}
240 240
 
241
-			do_action( 'wc_gateway_stripe_process_payment', $response, $renewal_order );
241
+			do_action('wc_gateway_stripe_process_payment', $response, $renewal_order);
242 242
 
243
-			$this->process_response( $response, $renewal_order );
244
-		} catch ( WC_Stripe_Exception $e ) {
245
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
243
+			$this->process_response($response, $renewal_order);
244
+		} catch (WC_Stripe_Exception $e) {
245
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
246 246
 
247
-			do_action( 'wc_gateway_stripe_process_payment_error', $e, $renewal_order );
247
+			do_action('wc_gateway_stripe_process_payment_error', $e, $renewal_order);
248 248
 
249 249
 			/* translators: error message */
250
-			$renewal_order->update_status( 'failed' );
250
+			$renewal_order->update_status('failed');
251 251
 
252
-			if ( $renewal_order->has_status( array( 'pending', 'failed' ) ) ) {
253
-				$this->send_failed_order_email( $order_id );
252
+			if ($renewal_order->has_status(array('pending', 'failed'))) {
253
+				$this->send_failed_order_email($order_id);
254 254
 			}
255 255
 		}
256 256
 	}
@@ -259,21 +259,21 @@  discard block
 block discarded – undo
259 259
 	 * Don't transfer Stripe customer/token meta to resubscribe orders.
260 260
 	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
261 261
 	 */
262
-	public function delete_resubscribe_meta( $resubscribe_order ) {
263
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_customer_id' );
264
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_source_id' );
262
+	public function delete_resubscribe_meta($resubscribe_order) {
263
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_customer_id');
264
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_source_id');
265 265
 		// For BW compat will remove in future
266
-		delete_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id() ), '_stripe_card_id' );
267
-		$this->delete_renewal_meta( $resubscribe_order );
266
+		delete_post_meta((WC_Stripe_Helper::is_pre_30() ? $resubscribe_order->id : $resubscribe_order->get_id()), '_stripe_card_id');
267
+		$this->delete_renewal_meta($resubscribe_order);
268 268
 	}
269 269
 
270 270
 	/**
271 271
 	 * Don't transfer Stripe fee/ID meta to renewal orders.
272 272
 	 * @param int $resubscribe_order The order created for the customer to resubscribe to the old expired/cancelled subscription
273 273
 	 */
274
-	public function delete_renewal_meta( $renewal_order ) {
275
-		WC_Stripe_Helper::delete_stripe_fee( $renewal_order );
276
-		WC_Stripe_Helper::delete_stripe_net( $renewal_order );
274
+	public function delete_renewal_meta($renewal_order) {
275
+		WC_Stripe_Helper::delete_stripe_fee($renewal_order);
276
+		WC_Stripe_Helper::delete_stripe_net($renewal_order);
277 277
 
278 278
 		return $renewal_order;
279 279
 	}
@@ -287,14 +287,14 @@  discard block
 block discarded – undo
287 287
 	 * @param WC_Order $renewal_order The order which recorded the successful payment (to make up for the failed automatic payment).
288 288
 	 * @return void
289 289
 	 */
290
-	public function update_failing_payment_method( $subscription, $renewal_order ) {
291
-		if ( WC_Stripe_Helper::is_pre_30() ) {
292
-			update_post_meta( $subscription->id, '_stripe_customer_id', $renewal_order->stripe_customer_id );
293
-			update_post_meta( $subscription->id, '_stripe_source_id', $renewal_order->stripe_source_id );
290
+	public function update_failing_payment_method($subscription, $renewal_order) {
291
+		if (WC_Stripe_Helper::is_pre_30()) {
292
+			update_post_meta($subscription->id, '_stripe_customer_id', $renewal_order->stripe_customer_id);
293
+			update_post_meta($subscription->id, '_stripe_source_id', $renewal_order->stripe_source_id);
294 294
 
295 295
 		} else {
296
-			update_post_meta( $subscription->get_id(), '_stripe_customer_id', $renewal_order->get_meta( '_stripe_customer_id', true ) );
297
-			update_post_meta( $subscription->get_id(), '_stripe_source_id', $renewal_order->get_meta( '_stripe_source_id', true ) );
296
+			update_post_meta($subscription->get_id(), '_stripe_customer_id', $renewal_order->get_meta('_stripe_customer_id', true));
297
+			update_post_meta($subscription->get_id(), '_stripe_source_id', $renewal_order->get_meta('_stripe_source_id', true));
298 298
 		}
299 299
 	}
300 300
 
@@ -307,21 +307,21 @@  discard block
 block discarded – undo
307 307
 	 * @param WC_Subscription $subscription An instance of a subscription object
308 308
 	 * @return array
309 309
 	 */
310
-	public function add_subscription_payment_meta( $payment_meta, $subscription ) {
311
-		$source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_source_id', true );
310
+	public function add_subscription_payment_meta($payment_meta, $subscription) {
311
+		$source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_source_id', true);
312 312
 
313 313
 		// For BW compat will remove in future.
314
-		if ( empty( $source_id ) ) {
315
-			$source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_card_id', true );
314
+		if (empty($source_id)) {
315
+			$source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_card_id', true);
316 316
 
317 317
 			// Take this opportunity to update the key name.
318
-			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 );
318
+			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);
319 319
 		}
320 320
 
321
-		$payment_meta[ $this->id ] = array(
321
+		$payment_meta[$this->id] = array(
322 322
 			'post_meta' => array(
323 323
 				'_stripe_customer_id' => array(
324
-					'value' => get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_customer_id', true ),
324
+					'value' => get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_customer_id', true),
325 325
 					'label' => 'Stripe Customer ID',
326 326
 				),
327 327
 				'_stripe_source_id' => array(
@@ -342,22 +342,22 @@  discard block
 block discarded – undo
342 342
 	 * @param array $payment_meta associative array of meta data required for automatic payments
343 343
 	 * @return array
344 344
 	 */
345
-	public function validate_subscription_payment_meta( $payment_method_id, $payment_meta ) {
346
-		if ( $this->id === $payment_method_id ) {
345
+	public function validate_subscription_payment_meta($payment_method_id, $payment_meta) {
346
+		if ($this->id === $payment_method_id) {
347 347
 
348
-			if ( ! isset( $payment_meta['post_meta']['_stripe_customer_id']['value'] ) || empty( $payment_meta['post_meta']['_stripe_customer_id']['value'] ) ) {
349
-				throw new Exception( __( 'A "Stripe Customer ID" value is required.', 'woocommerce-gateway-stripe' ) );
350
-			} elseif ( 0 !== strpos( $payment_meta['post_meta']['_stripe_customer_id']['value'], 'cus_' ) ) {
351
-				throw new Exception( __( 'Invalid customer ID. A valid "Stripe Customer ID" must begin with "cus_".', 'woocommerce-gateway-stripe' ) );
348
+			if ( ! isset($payment_meta['post_meta']['_stripe_customer_id']['value']) || empty($payment_meta['post_meta']['_stripe_customer_id']['value'])) {
349
+				throw new Exception(__('A "Stripe Customer ID" value is required.', 'woocommerce-gateway-stripe'));
350
+			} elseif (0 !== strpos($payment_meta['post_meta']['_stripe_customer_id']['value'], 'cus_')) {
351
+				throw new Exception(__('Invalid customer ID. A valid "Stripe Customer ID" must begin with "cus_".', 'woocommerce-gateway-stripe'));
352 352
 			}
353 353
 
354 354
 			if (
355
-				( ! empty( $payment_meta['post_meta']['_stripe_source_id']['value'] )
356
-				&& 0 !== strpos( $payment_meta['post_meta']['_stripe_source_id']['value'], 'card_' ) )
357
-				&& ( ! empty( $payment_meta['post_meta']['_stripe_source_id']['value'] )
358
-				&& 0 !== strpos( $payment_meta['post_meta']['_stripe_source_id']['value'], 'src_' ) ) ) {
355
+				( ! empty($payment_meta['post_meta']['_stripe_source_id']['value'])
356
+				&& 0 !== strpos($payment_meta['post_meta']['_stripe_source_id']['value'], 'card_'))
357
+				&& ( ! empty($payment_meta['post_meta']['_stripe_source_id']['value'])
358
+				&& 0 !== strpos($payment_meta['post_meta']['_stripe_source_id']['value'], 'src_')) ) {
359 359
 
360
-				throw new Exception( __( 'Invalid source ID. A valid source "Stripe Source ID" must begin with "src_" or "card_".', 'woocommerce-gateway-stripe' ) );
360
+				throw new Exception(__('Invalid source ID. A valid source "Stripe Source ID" must begin with "src_" or "card_".', 'woocommerce-gateway-stripe'));
361 361
 			}
362 362
 		}
363 363
 	}
@@ -370,67 +370,67 @@  discard block
 block discarded – undo
370 370
 	 * @param WC_Subscription $subscription the subscription details
371 371
 	 * @return string the subscription payment method
372 372
 	 */
373
-	public function maybe_render_subscription_payment_method( $payment_method_to_display, $subscription ) {
373
+	public function maybe_render_subscription_payment_method($payment_method_to_display, $subscription) {
374 374
 		$customer_user = WC_Stripe_Helper::is_pre_30() ? $subscription->customer_user : $subscription->get_customer_id();
375 375
 
376 376
 		// bail for other payment methods
377
-		if ( ( WC_Stripe_Helper::is_pre_30() ? $subscription->payment_method : $subscription->get_payment_method() ) !== $this->id || ! $customer_user ) {
377
+		if ((WC_Stripe_Helper::is_pre_30() ? $subscription->payment_method : $subscription->get_payment_method()) !== $this->id || ! $customer_user) {
378 378
 			return $payment_method_to_display;
379 379
 		}
380 380
 
381
-		$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_source_id', true );
381
+		$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_source_id', true);
382 382
 
383 383
 		// For BW compat will remove in future.
384
-		if ( empty( $stripe_source_id ) ) {
385
-			$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_card_id', true );
384
+		if (empty($stripe_source_id)) {
385
+			$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_card_id', true);
386 386
 
387 387
 			// Take this opportunity to update the key name.
388
-			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 );
388
+			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);
389 389
 		}
390 390
 
391 391
 		$stripe_customer    = new WC_Stripe_Customer();
392
-		$stripe_customer_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id() ), '_stripe_customer_id', true );
392
+		$stripe_customer_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->id : $subscription->get_id()), '_stripe_customer_id', true);
393 393
 
394 394
 		// If we couldn't find a Stripe customer linked to the subscription, fallback to the user meta data.
395
-		if ( ! $stripe_customer_id || ! is_string( $stripe_customer_id ) ) {
395
+		if ( ! $stripe_customer_id || ! is_string($stripe_customer_id)) {
396 396
 			$user_id            = $customer_user;
397
-			$stripe_customer_id = get_user_meta( $user_id, '_stripe_customer_id', true );
398
-			$stripe_source_id   = get_user_meta( $user_id, '_stripe_source_id', true );
397
+			$stripe_customer_id = get_user_meta($user_id, '_stripe_customer_id', true);
398
+			$stripe_source_id   = get_user_meta($user_id, '_stripe_source_id', true);
399 399
 
400 400
 			// For BW compat will remove in future.
401
-			if ( empty( $stripe_source_id ) ) {
402
-				$stripe_source_id = get_user_meta( $user_id, '_stripe_card_id', true );
401
+			if (empty($stripe_source_id)) {
402
+				$stripe_source_id = get_user_meta($user_id, '_stripe_card_id', true);
403 403
 
404 404
 				// Take this opportunity to update the key name.
405
-				update_user_meta( $user_id, '_stripe_source_id', $stripe_source_id );
405
+				update_user_meta($user_id, '_stripe_source_id', $stripe_source_id);
406 406
 			}
407 407
 		}
408 408
 
409 409
 		// If we couldn't find a Stripe customer linked to the account, fallback to the order meta data.
410
-		if ( ( ! $stripe_customer_id || ! is_string( $stripe_customer_id ) ) && false !== $subscription->order ) {
411
-			$stripe_customer_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_customer_id', true );
412
-			$stripe_source_id   = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_source_id', true );
410
+		if (( ! $stripe_customer_id || ! is_string($stripe_customer_id)) && false !== $subscription->order) {
411
+			$stripe_customer_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_customer_id', true);
412
+			$stripe_source_id   = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_source_id', true);
413 413
 
414 414
 			// For BW compat will remove in future.
415
-			if ( empty( $stripe_source_id ) ) {
416
-				$stripe_source_id = get_post_meta( ( WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id() ), '_stripe_card_id', true );
415
+			if (empty($stripe_source_id)) {
416
+				$stripe_source_id = get_post_meta((WC_Stripe_Helper::is_pre_30() ? $subscription->order->id : $subscription->get_parent_id()), '_stripe_card_id', true);
417 417
 
418 418
 				// Take this opportunity to update the key name.
419
-				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 );
419
+				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);
420 420
 			}
421 421
 		}
422 422
 
423
-		$stripe_customer->set_id( $stripe_customer_id );
423
+		$stripe_customer->set_id($stripe_customer_id);
424 424
 		$sources = $stripe_customer->get_sources();
425 425
 
426
-		if ( $sources ) {
427
-			foreach ( $sources as $source ) {
428
-				if ( $source->id === $stripe_source_id ) {
429
-					if ( $source->sepa_debit ) {
426
+		if ($sources) {
427
+			foreach ($sources as $source) {
428
+				if ($source->id === $stripe_source_id) {
429
+					if ($source->sepa_debit) {
430 430
 						/* translators: 1) last 4 digits of SEPA Direct Debit */
431
-						$payment_method_to_display = sprintf( __( 'Via SEPA Direct Debit ending in %1$s', 'woocommerce-gateway-stripe' ), $source->sepa_debit->last4 );
431
+						$payment_method_to_display = sprintf(__('Via SEPA Direct Debit ending in %1$s', 'woocommerce-gateway-stripe'), $source->sepa_debit->last4);
432 432
 					} else {
433
-						$payment_method_to_display = __( 'N/A', 'woocommerce-gateway-stripe' );
433
+						$payment_method_to_display = __('N/A', 'woocommerce-gateway-stripe');
434 434
 					}
435 435
 					break;
436 436
 				}
Please login to merge, or discard this patch.
woocommerce-gateway-stripe.php 1 patch
Spacing   +83 added lines, -83 removed lines patch added patch discarded remove patch
@@ -15,20 +15,20 @@  discard block
 block discarded – undo
15 15
  *
16 16
  */
17 17
 
18
-if ( ! defined( 'ABSPATH' ) ) {
18
+if ( ! defined('ABSPATH')) {
19 19
 	exit;
20 20
 }
21 21
 
22
-if ( ! class_exists( 'WC_Stripe' ) ) :
22
+if ( ! class_exists('WC_Stripe')) :
23 23
 	/**
24 24
 	 * Required minimums and constants
25 25
 	 */
26
-	define( 'WC_STRIPE_VERSION', '4.1.0' );
27
-	define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' );
28
-	define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' );
29
-	define( 'WC_STRIPE_MAIN_FILE', __FILE__ );
30
-	define( 'WC_STRIPE_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
31
-	define( 'WC_STRIPE_PLUGIN_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
26
+	define('WC_STRIPE_VERSION', '4.1.0');
27
+	define('WC_STRIPE_MIN_PHP_VER', '5.6.0');
28
+	define('WC_STRIPE_MIN_WC_VER', '2.6.0');
29
+	define('WC_STRIPE_MAIN_FILE', __FILE__);
30
+	define('WC_STRIPE_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__))));
31
+	define('WC_STRIPE_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__)));
32 32
 
33 33
 	class WC_Stripe {
34 34
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 		 * @return Singleton The *Singleton* instance.
49 49
 		 */
50 50
 		public static function get_instance() {
51
-			if ( null === self::$instance ) {
51
+			if (null === self::$instance) {
52 52
 				self::$instance = new self();
53 53
 			}
54 54
 			return self::$instance;
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
 		 * *Singleton* via the `new` operator from outside of this class.
76 76
 		 */
77 77
 		private function __construct() {
78
-			add_action( 'admin_init', array( $this, 'install' ) );
79
-			add_action( 'plugins_loaded', array( $this, 'init' ) );
78
+			add_action('admin_init', array($this, 'install'));
79
+			add_action('plugins_loaded', array($this, 'init'));
80 80
 		}
81 81
 
82 82
 		/**
@@ -86,51 +86,51 @@  discard block
 block discarded – undo
86 86
 		 * @version 4.0.0
87 87
 		 */
88 88
 		public function init() {
89
-			if ( function_exists( 'is_woocommerce_active' ) && ! is_woocommerce_active() ) {
90
-				add_action( 'admin_notices', array( $this, 'woocommerce_missing_notice' ) );
89
+			if (function_exists('is_woocommerce_active') && ! is_woocommerce_active()) {
90
+				add_action('admin_notices', array($this, 'woocommerce_missing_notice'));
91 91
 				return;
92 92
 			}
93 93
 
94
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-exception.php' );
95
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-logger.php' );
96
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-helper.php' );
97
-			include_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-api.php' );
94
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-exception.php');
95
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-logger.php');
96
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-helper.php');
97
+			include_once(dirname(__FILE__) . '/includes/class-wc-stripe-api.php');
98 98
 
99
-			load_plugin_textdomain( 'woocommerce-gateway-stripe', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' );
99
+			load_plugin_textdomain('woocommerce-gateway-stripe', false, plugin_basename(dirname(__FILE__)) . '/languages');
100 100
 
101
-			require_once( dirname( __FILE__ ) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php' );
102
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-webhook-handler.php' );
103
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-sepa-payment-token.php' );
104
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-apple-pay-registration.php' );
105
-			require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-pre-orders-compat.php' );
106
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-gateway-stripe.php' );
107
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php' );
108
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php' );
109
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php' );
110
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php' );
111
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php' );
112
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php' );
113
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php' );
114
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php' );
115
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bitcoin.php' );
116
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php' );
117
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-payment-request.php' );
118
-			require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-subs-compat.php' );
119
-			require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php' );
120
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-order-handler.php' );
121
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-payment-tokens.php' );
122
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-customer.php' );
101
+			require_once(dirname(__FILE__) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php');
102
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-webhook-handler.php');
103
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-sepa-payment-token.php');
104
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-apple-pay-registration.php');
105
+			require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-pre-orders-compat.php');
106
+			require_once(dirname(__FILE__) . '/includes/class-wc-gateway-stripe.php');
107
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php');
108
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php');
109
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php');
110
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php');
111
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php');
112
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php');
113
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php');
114
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php');
115
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-bitcoin.php');
116
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php');
117
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-stripe-payment-request.php');
118
+			require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-subs-compat.php');
119
+			require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php');
120
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-order-handler.php');
121
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-payment-tokens.php');
122
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-customer.php');
123 123
 
124
-			if ( is_admin() ) {
125
-				require_once( dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-admin-notices.php' );
124
+			if (is_admin()) {
125
+				require_once(dirname(__FILE__) . '/includes/admin/class-wc-stripe-admin-notices.php');
126 126
 			}
127 127
 
128 128
 			// REMOVE IN THE FUTURE.
129
-			require_once( dirname( __FILE__ ) . '/includes/deprecated/class-wc-stripe-apple-pay.php' );
129
+			require_once(dirname(__FILE__) . '/includes/deprecated/class-wc-stripe-apple-pay.php');
130 130
 
131
-			add_filter( 'woocommerce_payment_gateways', array( $this, 'add_gateways' ) );
132
-			add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'plugin_action_links' ) );
133
-			add_filter( 'woocommerce_get_sections_checkout', array( $this, 'filter_gateway_order_admin' ) );
131
+			add_filter('woocommerce_payment_gateways', array($this, 'add_gateways'));
132
+			add_filter('plugin_action_links_' . plugin_basename(__FILE__), array($this, 'plugin_action_links'));
133
+			add_filter('woocommerce_get_sections_checkout', array($this, 'filter_gateway_order_admin'));
134 134
 		}
135 135
 
136 136
 		/**
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 		 * @return string
141 141
 		 */
142 142
 		public function woocommerce_missing_notice() {
143
-			echo '<div class="error"><p><strong>' . sprintf( esc_html__( 'Stripe requires WooCommerce to be installed and active. You can download %s here.', 'woocommerce-gateway-stripe' ), '<a href="https://woocommerce.com/" target="_blank">WooCommerce</a>' ) . '</strong></p></div>';
143
+			echo '<div class="error"><p><strong>' . sprintf(esc_html__('Stripe requires WooCommerce to be installed and active. You can download %s here.', 'woocommerce-gateway-stripe'), '<a href="https://woocommerce.com/" target="_blank">WooCommerce</a>') . '</strong></p></div>';
144 144
 		}
145 145
 
146 146
 		/**
@@ -150,8 +150,8 @@  discard block
 block discarded – undo
150 150
 		 * @version 4.0.0
151 151
 		 */
152 152
 		public function update_plugin_version() {
153
-			delete_option( 'wc_stripe_version' );
154
-			update_option( 'wc_stripe_version', WC_STRIPE_VERSION );
153
+			delete_option('wc_stripe_version');
154
+			update_option('wc_stripe_version', WC_STRIPE_VERSION);
155 155
 		}
156 156
 
157 157
 		/**
@@ -161,15 +161,15 @@  discard block
 block discarded – undo
161 161
 		 * @version 3.1.0
162 162
 		 */
163 163
 		public function install() {
164
-			if ( ! is_plugin_active( plugin_basename( __FILE__ ) ) ) {
164
+			if ( ! is_plugin_active(plugin_basename(__FILE__))) {
165 165
 				return;
166 166
 			}
167 167
 
168
-			if ( ! defined( 'IFRAME_REQUEST' ) && ( WC_STRIPE_VERSION !== get_option( 'wc_stripe_version' ) ) ) {
169
-				do_action( 'woocommerce_stripe_updated' );
168
+			if ( ! defined('IFRAME_REQUEST') && (WC_STRIPE_VERSION !== get_option('wc_stripe_version'))) {
169
+				do_action('woocommerce_stripe_updated');
170 170
 
171
-				if ( ! defined( 'WC_STRIPE_INSTALLING' ) ) {
172
-					define( 'WC_STRIPE_INSTALLING', true );
171
+				if ( ! defined('WC_STRIPE_INSTALLING')) {
172
+					define('WC_STRIPE_INSTALLING', true);
173 173
 				}
174 174
 
175 175
 				$this->update_plugin_version();
@@ -182,13 +182,13 @@  discard block
 block discarded – undo
182 182
 		 * @since 1.0.0
183 183
 		 * @version 4.0.0
184 184
 		 */
185
-		public function plugin_action_links( $links ) {
185
+		public function plugin_action_links($links) {
186 186
 			$plugin_links = array(
187
-				'<a href="admin.php?page=wc-settings&tab=checkout&section=stripe">' . esc_html__( 'Settings', 'woocommerce-gateway-stripe' ) . '</a>',
188
-				'<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__( 'Docs', 'woocommerce-gateway-stripe' ) . '</a>',
189
-				'<a href="https://woocommerce.com/contact-us/">' . esc_html__( 'Support', 'woocommerce-gateway-stripe' ) . '</a>',
187
+				'<a href="admin.php?page=wc-settings&tab=checkout&section=stripe">' . esc_html__('Settings', 'woocommerce-gateway-stripe') . '</a>',
188
+				'<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__('Docs', 'woocommerce-gateway-stripe') . '</a>',
189
+				'<a href="https://woocommerce.com/contact-us/">' . esc_html__('Support', 'woocommerce-gateway-stripe') . '</a>',
190 190
 			);
191
-			return array_merge( $plugin_links, $links );
191
+			return array_merge($plugin_links, $links);
192 192
 		}
193 193
 
194 194
 		/**
@@ -197,8 +197,8 @@  discard block
 block discarded – undo
197 197
 		 * @since 1.0.0
198 198
 		 * @version 4.0.0
199 199
 		 */
200
-		public function add_gateways( $methods ) {
201
-			if ( class_exists( 'WC_Subscriptions_Order' ) && function_exists( 'wcs_create_renewal_order' ) ) {
200
+		public function add_gateways($methods) {
201
+			if (class_exists('WC_Subscriptions_Order') && function_exists('wcs_create_renewal_order')) {
202 202
 				$methods[] = 'WC_Stripe_Subs_Compat';
203 203
 				$methods[] = 'WC_Stripe_Sepa_Subs_Compat';
204 204
 			} else {
@@ -225,30 +225,30 @@  discard block
 block discarded – undo
225 225
 		 * @since 4.0.0
226 226
 		 * @version 4.0.0
227 227
 		 */
228
-		public function filter_gateway_order_admin( $sections ) {
229
-			unset( $sections['stripe'] );
230
-			unset( $sections['stripe_bancontact'] );
231
-			unset( $sections['stripe_sofort'] );
232
-			unset( $sections['stripe_giropay'] );
233
-			unset( $sections['stripe_eps'] );
234
-			unset( $sections['stripe_ideal'] );
235
-			unset( $sections['stripe_p24'] );
236
-			unset( $sections['stripe_alipay'] );
237
-			unset( $sections['stripe_sepa'] );
238
-			unset( $sections['stripe_bitcoin'] );
239
-			unset( $sections['stripe_multibanco'] );
228
+		public function filter_gateway_order_admin($sections) {
229
+			unset($sections['stripe']);
230
+			unset($sections['stripe_bancontact']);
231
+			unset($sections['stripe_sofort']);
232
+			unset($sections['stripe_giropay']);
233
+			unset($sections['stripe_eps']);
234
+			unset($sections['stripe_ideal']);
235
+			unset($sections['stripe_p24']);
236
+			unset($sections['stripe_alipay']);
237
+			unset($sections['stripe_sepa']);
238
+			unset($sections['stripe_bitcoin']);
239
+			unset($sections['stripe_multibanco']);
240 240
 
241 241
 			$sections['stripe']            = 'Stripe';
242
-			$sections['stripe_bancontact'] = __( 'Stripe Bancontact', 'woocommerce-gateway-stripe' );
243
-			$sections['stripe_sofort']     = __( 'Stripe SOFORT', 'woocommerce-gateway-stripe' );
244
-			$sections['stripe_giropay']    = __( 'Stripe Giropay', 'woocommerce-gateway-stripe' );
245
-			$sections['stripe_eps']        = __( 'Stripe EPS', 'woocommerce-gateway-stripe' );
246
-			$sections['stripe_ideal']      = __( 'Stripe iDeal', 'woocommerce-gateway-stripe' );
247
-			$sections['stripe_p24']        = __( 'Stripe P24', 'woocommerce-gateway-stripe' );
248
-			$sections['stripe_alipay']     = __( 'Stripe Alipay', 'woocommerce-gateway-stripe' );
249
-			$sections['stripe_sepa']       = __( 'Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe' );
250
-			$sections['stripe_bitcoin']    = __( 'Stripe Bitcoin', 'woocommerce-gateway-stripe' );
251
-			$sections['stripe_multibanco'] = __( 'Stripe Multibanco', 'woocommerce-gateway-stripe' );
242
+			$sections['stripe_bancontact'] = __('Stripe Bancontact', 'woocommerce-gateway-stripe');
243
+			$sections['stripe_sofort']     = __('Stripe SOFORT', 'woocommerce-gateway-stripe');
244
+			$sections['stripe_giropay']    = __('Stripe Giropay', 'woocommerce-gateway-stripe');
245
+			$sections['stripe_eps']        = __('Stripe EPS', 'woocommerce-gateway-stripe');
246
+			$sections['stripe_ideal']      = __('Stripe iDeal', 'woocommerce-gateway-stripe');
247
+			$sections['stripe_p24']        = __('Stripe P24', 'woocommerce-gateway-stripe');
248
+			$sections['stripe_alipay']     = __('Stripe Alipay', 'woocommerce-gateway-stripe');
249
+			$sections['stripe_sepa']       = __('Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe');
250
+			$sections['stripe_bitcoin']    = __('Stripe Bitcoin', 'woocommerce-gateway-stripe');
251
+			$sections['stripe_multibanco'] = __('Stripe Multibanco', 'woocommerce-gateway-stripe');
252 252
 
253 253
 			return $sections;
254 254
 		}
Please login to merge, or discard this patch.
includes/class-wc-stripe-logger.php 1 patch
Spacing   +13 added lines, -13 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; // Exit if accessed directly
4 4
 }
5 5
 
@@ -20,28 +20,28 @@  discard block
 block discarded – undo
20 20
 	 * @since 4.0.0
21 21
 	 * @version 4.0.0
22 22
 	 */
23
-	public static function log( $message, $start_time = null, $end_time = null ) {
24
-		if ( ! class_exists( 'WC_Logger' ) ) {
23
+	public static function log($message, $start_time = null, $end_time = null) {
24
+		if ( ! class_exists('WC_Logger')) {
25 25
 			return;
26 26
 		}
27 27
 
28
-		if ( apply_filters( 'wc_stripe_logging', true, $message ) ) {
29
-			if ( empty( self::$logger ) ) {
28
+		if (apply_filters('wc_stripe_logging', true, $message)) {
29
+			if (empty(self::$logger)) {
30 30
 				self::$logger = new WC_Logger();
31 31
 			}
32 32
 
33
-			$settings = get_option( 'woocommerce_stripe_settings' );
33
+			$settings = get_option('woocommerce_stripe_settings');
34 34
 
35
-			if ( empty( $settings ) || isset( $settings['logging'] ) && 'yes' !== $settings['logging'] ) {
35
+			if (empty($settings) || isset($settings['logging']) && 'yes' !== $settings['logging']) {
36 36
 				return;
37 37
 			}
38 38
 
39
-			if ( ! is_null( $start_time ) ) {
39
+			if ( ! is_null($start_time)) {
40 40
 
41
-				$formatted_start_time = date_i18n( get_option( 'date_format' ) . ' g:ia', $start_time );
42
-				$end_time             = is_null( $end_time ) ? current_time( 'timestamp' ) : $end_time;
43
-				$formatted_end_time   = date_i18n( get_option( 'date_format' ) . ' g:ia', $end_time );
44
-				$elapsed_time         = round( abs( $end_time - $start_time ) / 60, 2 );
41
+				$formatted_start_time = date_i18n(get_option('date_format') . ' g:ia', $start_time);
42
+				$end_time             = is_null($end_time) ? current_time('timestamp') : $end_time;
43
+				$formatted_end_time   = date_i18n(get_option('date_format') . ' g:ia', $end_time);
44
+				$elapsed_time         = round(abs($end_time - $start_time) / 60, 2);
45 45
 
46 46
 				$log_entry = "\n" . '====Stripe Version: ' . WC_STRIPE_VERSION . '====' . "\n";
47 47
 				$log_entry .= '====Start Log ' . $formatted_start_time . '====' . "\n" . $message . "\n";
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
 			}
55 55
 
56
-			self::$logger->add( self::WC_LOG_FILENAME, $log_entry );
56
+			self::$logger->add(self::WC_LOG_FILENAME, $log_entry);
57 57
 		}
58 58
 	}
59 59
 }
Please login to merge, or discard this patch.
includes/abstracts/abstract-wc-stripe-payment-gateway.php 1 patch
Spacing   +250 added lines, -251 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
 
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 	 */
20 20
 	public function display_admin_settings_webhook_description() {
21 21
 		/* translators: 1) webhook url */
22
-		return sprintf( __( 'You must add the following webhook endpoint <strong style="background-color:#ddd;">&nbsp;%s&nbsp;</strong> to your <a href="https://dashboard.stripe.com/account/webhooks" target="_blank">Stripe account settings</a>. This will enable you to receive notifications on the charge statuses.', 'woocommerce-gateway-stripe' ), WC_Stripe_Helper::get_webhook_url() );
22
+		return sprintf(__('You must add the following webhook endpoint <strong style="background-color:#ddd;">&nbsp;%s&nbsp;</strong> to your <a href="https://dashboard.stripe.com/account/webhooks" target="_blank">Stripe account settings</a>. This will enable you to receive notifications on the charge statuses.', 'woocommerce-gateway-stripe'), WC_Stripe_Helper::get_webhook_url());
23 23
 	}
24 24
 
25 25
 	/**
@@ -33,8 +33,8 @@  discard block
 block discarded – undo
33 33
 				<input id="wc-%1$s-new-payment-method" name="wc-%1$s-new-payment-method" type="checkbox" value="true" style="width:auto;" />
34 34
 				<label for="wc-%1$s-new-payment-method" style="display:inline;">%2$s</label>
35 35
 			</p>',
36
-			esc_attr( $this->id ),
37
-			esc_html( apply_filters( 'wc_stripe_save_to_account_text', __( 'Save payment information to my account for future purchases.', 'woocommerce-gateway-stripe' ) ) )
36
+			esc_attr($this->id),
37
+			esc_html(apply_filters('wc_stripe_save_to_account_text', __('Save payment information to my account for future purchases.', 'woocommerce-gateway-stripe')))
38 38
 		);
39 39
 	}
40 40
 
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 	 * @since 4.0.5
46 46
 	 * @param array $error
47 47
 	 */
48
-	public function is_retryable_error( $error ) {
48
+	public function is_retryable_error($error) {
49 49
 		return (
50 50
 			'invalid_request_error' === $error->type ||
51 51
 			'idempotency_error' === $error->type ||
@@ -62,11 +62,11 @@  discard block
 block discarded – undo
62 62
 	 * @since 4.1.0
63 63
 	 * @param array $error
64 64
 	 */
65
-	public function is_same_idempotency_error( $error ) {
65
+	public function is_same_idempotency_error($error) {
66 66
 		return (
67 67
 			$error &&
68 68
 			'idempotency_error' === $error->type &&
69
-			preg_match( '/Keys for idempotent requests can only be used with the same parameters they were first used with./i', $error->message )
69
+			preg_match('/Keys for idempotent requests can only be used with the same parameters they were first used with./i', $error->message)
70 70
 		);
71 71
 	}
72 72
 
@@ -77,11 +77,11 @@  discard block
 block discarded – undo
77 77
 	 * @since 4.1.0
78 78
 	 * @param array $error
79 79
 	 */
80
-	public function is_source_already_consumed_error( $error ) {
80
+	public function is_source_already_consumed_error($error) {
81 81
 		return (
82 82
 			$error &&
83 83
 			'invalid_request_error' === $error->type &&
84
-			preg_match( '/The reusable source you provided is consumed because it was previously charged without being attached to a customer or was detached from a customer. To charge a reusable source multiple time you must attach it to a customer first./i', $error->message )
84
+			preg_match('/The reusable source you provided is consumed because it was previously charged without being attached to a customer or was detached from a customer. To charge a reusable source multiple time you must attach it to a customer first./i', $error->message)
85 85
 		);
86 86
 	}
87 87
 
@@ -92,11 +92,11 @@  discard block
 block discarded – undo
92 92
 	 * @since 4.1.0
93 93
 	 * @param array $error
94 94
 	 */
95
-	public function is_no_such_customer_error( $error ) {
95
+	public function is_no_such_customer_error($error) {
96 96
 		return (
97 97
 			$error &&
98 98
 			'invalid_request_error' === $error->type &&
99
-			preg_match( '/No such customer/i', $error->message )
99
+			preg_match('/No such customer/i', $error->message)
100 100
 		);
101 101
 	}
102 102
 
@@ -107,11 +107,11 @@  discard block
 block discarded – undo
107 107
 	 * @since 4.1.0
108 108
 	 * @param array $error
109 109
 	 */
110
-	public function is_no_such_token_error( $error ) {
110
+	public function is_no_such_token_error($error) {
111 111
 		return (
112 112
 			$error &&
113 113
 			'invalid_request_error' === $error->type &&
114
-			preg_match( '/No such token/i', $error->message )
114
+			preg_match('/No such token/i', $error->message)
115 115
 		);
116 116
 	}
117 117
 
@@ -122,11 +122,11 @@  discard block
 block discarded – undo
122 122
 	 * @since 4.1.0
123 123
 	 * @param array $error
124 124
 	 */
125
-	public function is_no_such_source_error( $error ) {
125
+	public function is_no_such_source_error($error) {
126 126
 		return (
127 127
 			$error &&
128 128
 			'invalid_request_error' === $error->type &&
129
-			preg_match( '/No such source/i', $error->message )
129
+			preg_match('/No such source/i', $error->message)
130 130
 		);
131 131
 	}
132 132
 
@@ -137,11 +137,11 @@  discard block
 block discarded – undo
137 137
 	 * @since 4.1.0
138 138
 	 * @param array $error
139 139
 	 */
140
-	public function is_no_linked_source_error( $error ) {
140
+	public function is_no_linked_source_error($error) {
141 141
 		return (
142 142
 			$error &&
143 143
 			'invalid_request_error' === $error->type &&
144
-			preg_match( '/does not have a linked source with ID/i', $error->message )
144
+			preg_match('/does not have a linked source with ID/i', $error->message)
145 145
 		);
146 146
 	}
147 147
 
@@ -154,13 +154,13 @@  discard block
 block discarded – undo
154 154
 	 * @param object $error
155 155
 	 * @return bool
156 156
 	 */
157
-	public function need_update_idempotency_key( $source_object, $error ) {
157
+	public function need_update_idempotency_key($source_object, $error) {
158 158
 		return (
159 159
 			$error &&
160 160
 			1 < $this->retry_interval &&
161
-			! empty( $source_object ) &&
161
+			! empty($source_object) &&
162 162
 			'chargeable' === $source_object->status &&
163
-			self::is_same_idempotency_error( $error )
163
+			self::is_same_idempotency_error($error)
164 164
 		);
165 165
 	}
166 166
 
@@ -168,8 +168,8 @@  discard block
 block discarded – undo
168 168
 	 * Check if this gateway is enabled
169 169
 	 */
170 170
 	public function is_available() {
171
-		if ( 'yes' === $this->enabled ) {
172
-			if ( ! $this->secret_key || ! $this->publishable_key ) {
171
+		if ('yes' === $this->enabled) {
172
+			if ( ! $this->secret_key || ! $this->publishable_key) {
173 173
 				return false;
174 174
 			}
175 175
 			return true;
@@ -186,12 +186,12 @@  discard block
 block discarded – undo
186 186
 	 * @param int $order_id
187 187
 	 * @return bool
188 188
 	 */
189
-	public function maybe_process_pre_orders( $order_id ) {
189
+	public function maybe_process_pre_orders($order_id) {
190 190
 		return (
191 191
 			WC_Stripe_Helper::is_pre_orders_exists() &&
192
-			$this->pre_orders->is_pre_order( $order_id ) &&
193
-			WC_Pre_Orders_Order::order_requires_payment_tokenization( $order_id ) &&
194
-			! is_wc_endpoint_url( 'order-pay' )
192
+			$this->pre_orders->is_pre_order($order_id) &&
193
+			WC_Pre_Orders_Order::order_requires_payment_tokenization($order_id) &&
194
+			! is_wc_endpoint_url('order-pay')
195 195
 		);
196 196
 	}
197 197
 
@@ -201,8 +201,8 @@  discard block
 block discarded – undo
201 201
 	 * @since 1.0.0
202 202
 	 * @version 4.0.0
203 203
 	 */
204
-	public function add_admin_notice( $slug, $class, $message, $dismissible = false ) {
205
-		$this->notices[ $slug ] = array(
204
+	public function add_admin_notice($slug, $class, $message, $dismissible = false) {
205
+		$this->notices[$slug] = array(
206 206
 			'class'       => $class,
207 207
 			'message'     => $message,
208 208
 			'dismissible' => $dismissible,
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
 	 * @return array
219 219
 	 */
220 220
 	public function payment_icons() {
221
-		return apply_filters( 'wc_stripe_payment_icons', array(
221
+		return apply_filters('wc_stripe_payment_icons', array(
222 222
 			'visa'       => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/visa.svg" class="stripe-visa-icon stripe-icon" alt="Visa" />',
223 223
 			'amex'       => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/amex.svg" class="stripe-amex-icon stripe-icon" alt="American Express" />',
224 224
 			'mastercard' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/mastercard.svg" class="stripe-mastercard-icon stripe-icon" alt="Mastercard" />',
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
 			'multibanco' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/multibanco.svg" class="stripe-multibanco-icon stripe-icon" alt="Multibanco" />',
237 237
 			'sofort'     => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/sofort.svg" class="stripe-sofort-icon stripe-icon" alt="SOFORT" />',
238 238
 			'sepa'       => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/sepa.svg" class="stripe-sepa-icon stripe-icon" alt="SEPA" />',
239
-		) );
239
+		));
240 240
 	}
241 241
 
242 242
 	/**
@@ -247,10 +247,10 @@  discard block
 block discarded – undo
247 247
 	 * @version 4.0.0
248 248
 	 * @param object $order
249 249
 	 */
250
-	public function validate_minimum_order_amount( $order ) {
251
-		if ( $order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount() ) {
250
+	public function validate_minimum_order_amount($order) {
251
+		if ($order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount()) {
252 252
 			/* translators: 1) dollar amount */
253
-			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 ) ) );
253
+			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)));
254 254
 		}
255 255
 	}
256 256
 
@@ -260,14 +260,14 @@  discard block
 block discarded – undo
260 260
 	 * @since 4.0.0
261 261
 	 * @version 4.0.0
262 262
 	 */
263
-	public function get_transaction_url( $order ) {
264
-		if ( $this->testmode ) {
263
+	public function get_transaction_url($order) {
264
+		if ($this->testmode) {
265 265
 			$this->view_transaction_url = 'https://dashboard.stripe.com/test/payments/%s';
266 266
 		} else {
267 267
 			$this->view_transaction_url = 'https://dashboard.stripe.com/payments/%s';
268 268
 		}
269 269
 
270
-		return parent::get_transaction_url( $order );
270
+		return parent::get_transaction_url($order);
271 271
 	}
272 272
 
273 273
 	/**
@@ -276,15 +276,15 @@  discard block
 block discarded – undo
276 276
 	 * @since 4.0.0
277 277
 	 * @version 4.0.0
278 278
 	 */
279
-	public function get_stripe_customer_id( $order ) {
280
-		$customer = get_user_meta( WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(), '_stripe_customer_id', true );
279
+	public function get_stripe_customer_id($order) {
280
+		$customer = get_user_meta(WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(), '_stripe_customer_id', true);
281 281
 
282
-		if ( empty( $customer ) ) {
282
+		if (empty($customer)) {
283 283
 			// Try to get it via the order.
284
-			if ( WC_Stripe_Helper::is_pre_30() ) {
285
-				return get_post_meta( $order->id, '_stripe_customer_id', true );
284
+			if (WC_Stripe_Helper::is_pre_30()) {
285
+				return get_post_meta($order->id, '_stripe_customer_id', true);
286 286
 			} else {
287
-				return $order->get_meta( '_stripe_customer_id', true );
287
+				return $order->get_meta('_stripe_customer_id', true);
288 288
 			}
289 289
 		} else {
290 290
 			return $customer;
@@ -301,9 +301,9 @@  discard block
 block discarded – undo
301 301
 	 * @param object $order
302 302
 	 * @param int $id Stripe session id.
303 303
 	 */
304
-	public function get_stripe_return_url( $order = null, $id = null ) {
305
-		if ( is_object( $order ) ) {
306
-			if ( empty( $id ) ) {
304
+	public function get_stripe_return_url($order = null, $id = null) {
305
+		if (is_object($order)) {
306
+			if (empty($id)) {
307 307
 				$id = uniqid();
308 308
 			}
309 309
 
@@ -314,10 +314,10 @@  discard block
 block discarded – undo
314 314
 				'order_id'       => $order_id,
315 315
 			);
316 316
 
317
-			return esc_url_raw( add_query_arg( $args, $this->get_return_url( $order ) ) );
317
+			return esc_url_raw(add_query_arg($args, $this->get_return_url($order)));
318 318
 		}
319 319
 
320
-		return esc_url_raw( add_query_arg( array( 'utm_nooverride' => '1' ), $this->get_return_url() ) );
320
+		return esc_url_raw(add_query_arg(array('utm_nooverride' => '1'), $this->get_return_url()));
321 321
 	}
322 322
 
323 323
 	/**
@@ -325,8 +325,8 @@  discard block
 block discarded – undo
325 325
 	 * @param  int  $order_id
326 326
 	 * @return boolean
327 327
 	 */
328
-	public function has_subscription( $order_id ) {
329
-		return ( function_exists( 'wcs_order_contains_subscription' ) && ( wcs_order_contains_subscription( $order_id ) || wcs_is_subscription( $order_id ) || wcs_order_contains_renewal( $order_id ) ) );
328
+	public function has_subscription($order_id) {
329
+		return (function_exists('wcs_order_contains_subscription') && (wcs_order_contains_subscription($order_id) || wcs_is_subscription($order_id) || wcs_order_contains_renewal($order_id)));
330 330
 	}
331 331
 
332 332
 	/**
@@ -338,34 +338,33 @@  discard block
 block discarded – undo
338 338
 	 * @param  object $prepared_source
339 339
 	 * @return array()
340 340
 	 */
341
-	public function generate_payment_request( $order, $prepared_source ) {
342
-		$settings                          = get_option( 'woocommerce_stripe_settings', array() );
343
-		$statement_descriptor              = ! empty( $settings['statement_descriptor'] ) ? str_replace( "'", '', $settings['statement_descriptor'] ) : '';
344
-		$capture                           = ! empty( $settings['capture'] ) && 'yes' === $settings['capture'] ? true : false;
341
+	public function generate_payment_request($order, $prepared_source) {
342
+		$settings                          = get_option('woocommerce_stripe_settings', array());
343
+		$statement_descriptor              = ! empty($settings['statement_descriptor']) ? str_replace("'", '', $settings['statement_descriptor']) : '';
344
+		$capture                           = ! empty($settings['capture']) && 'yes' === $settings['capture'] ? true : false;
345 345
 		$post_data                         = array();
346
-		$post_data['currency']             = strtolower( WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency() );
347
-		$post_data['amount']               = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $post_data['currency'] );
346
+		$post_data['currency']             = strtolower(WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency());
347
+		$post_data['amount']               = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $post_data['currency']);
348 348
 		/* translators: 1) blog name 2) order number */
349
-		$post_data['description']          = sprintf( __( '%1$s - Order %2$s', 'woocommerce-gateway-stripe' ), wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ), $order->get_order_number() );
349
+		$post_data['description']          = sprintf(__('%1$s - Order %2$s', 'woocommerce-gateway-stripe'), wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES), $order->get_order_number());
350 350
 		$billing_email      = WC_Stripe_Helper::is_pre_30() ? $order->billing_email : $order->get_billing_email();
351 351
 		$billing_first_name = WC_Stripe_Helper::is_pre_30() ? $order->billing_first_name : $order->get_billing_first_name();
352 352
 		$billing_last_name  = WC_Stripe_Helper::is_pre_30() ? $order->billing_last_name : $order->get_billing_last_name();
353 353
 
354
-		if ( ! empty( $billing_email ) && apply_filters( 'wc_stripe_send_stripe_receipt', false ) ) {
354
+		if ( ! empty($billing_email) && apply_filters('wc_stripe_send_stripe_receipt', false)) {
355 355
 			$post_data['receipt_email'] = $billing_email;
356 356
 		}
357 357
 
358
-		switch ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) {
359
-			case 'stripe':
360
-				if ( ! empty( $statement_descriptor ) ) {
361
-					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor );
358
+		switch (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method()) {
359
+			case 'stripe' : if ( ! empty($statement_descriptor)) {
360
+					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor);
362 361
 				}
363 362
 
364 363
 				$post_data['capture'] = $capture ? 'true' : 'false';
365 364
 				break;
366 365
 			case 'stripe_sepa':
367
-				if ( ! empty( $statement_descriptor ) ) {
368
-					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor );
366
+				if ( ! empty($statement_descriptor)) {
367
+					$post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor);
369 368
 				}
370 369
 				break;
371 370
 		}
@@ -373,25 +372,25 @@  discard block
 block discarded – undo
373 372
 		$post_data['expand[]'] = 'balance_transaction';
374 373
 
375 374
 		$metadata = array(
376
-			__( 'customer_name', 'woocommerce-gateway-stripe' ) => sanitize_text_field( $billing_first_name ) . ' ' . sanitize_text_field( $billing_last_name ),
377
-			__( 'customer_email', 'woocommerce-gateway-stripe' ) => sanitize_email( $billing_email ),
375
+			__('customer_name', 'woocommerce-gateway-stripe') => sanitize_text_field($billing_first_name) . ' ' . sanitize_text_field($billing_last_name),
376
+			__('customer_email', 'woocommerce-gateway-stripe') => sanitize_email($billing_email),
378 377
 			'order_id' => $order->get_order_number(),
379 378
 		);
380 379
 
381
-		if ( $this->has_subscription( WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id() ) ) {
380
+		if ($this->has_subscription(WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id())) {
382 381
 			$metadata += array(
383 382
 				'payment_type' => 'recurring',
384
-				'site_url'     => esc_url( get_site_url() ),
383
+				'site_url'     => esc_url(get_site_url()),
385 384
 			);
386 385
 		}
387 386
 
388
-		$post_data['metadata'] = apply_filters( 'wc_stripe_payment_metadata', $metadata, $order, $prepared_source );
387
+		$post_data['metadata'] = apply_filters('wc_stripe_payment_metadata', $metadata, $order, $prepared_source);
389 388
 
390
-		if ( $prepared_source->customer ) {
389
+		if ($prepared_source->customer) {
391 390
 			$post_data['customer'] = $prepared_source->customer;
392 391
 		}
393 392
 
394
-		if ( $prepared_source->source ) {
393
+		if ($prepared_source->source) {
395 394
 			$post_data['source'] = $prepared_source->source;
396 395
 		}
397 396
 
@@ -403,83 +402,83 @@  discard block
 block discarded – undo
403 402
 		 * @param WC_Order $order
404 403
 		 * @param object $source
405 404
 		 */
406
-		return apply_filters( 'wc_stripe_generate_payment_request', $post_data, $order, $prepared_source );
405
+		return apply_filters('wc_stripe_generate_payment_request', $post_data, $order, $prepared_source);
407 406
 	}
408 407
 
409 408
 	/**
410 409
 	 * Store extra meta data for an order from a Stripe Response.
411 410
 	 */
412
-	public function process_response( $response, $order ) {
413
-		WC_Stripe_Logger::log( 'Processing response: ' . print_r( $response, true ) );
411
+	public function process_response($response, $order) {
412
+		WC_Stripe_Logger::log('Processing response: ' . print_r($response, true));
414 413
 
415 414
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
416 415
 
417
-		$captured = ( isset( $response->captured ) && $response->captured ) ? 'yes' : 'no';
416
+		$captured = (isset($response->captured) && $response->captured) ? 'yes' : 'no';
418 417
 
419 418
 		// Store charge data.
420
-		WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_charge_captured', $captured ) : $order->update_meta_data( '_stripe_charge_captured', $captured );
419
+		WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_charge_captured', $captured) : $order->update_meta_data('_stripe_charge_captured', $captured);
421 420
 
422 421
 		// Store other data such as fees.
423
-		if ( isset( $response->balance_transaction ) && isset( $response->balance_transaction->fee ) ) {
422
+		if (isset($response->balance_transaction) && isset($response->balance_transaction->fee)) {
424 423
 			// Fees and Net needs to both come from Stripe to be accurate as the returned
425 424
 			// values are in the local currency of the Stripe account, not from WC.
426
-			$fee = ! empty( $response->balance_transaction->fee ) ? WC_Stripe_Helper::format_balance_fee( $response->balance_transaction, 'fee' ) : 0;
427
-			$net = ! empty( $response->balance_transaction->net ) ? WC_Stripe_Helper::format_balance_fee( $response->balance_transaction, 'net' ) : 0;
428
-			WC_Stripe_Helper::update_stripe_fee( $order, $fee );
429
-			WC_Stripe_Helper::update_stripe_net( $order, $net );
425
+			$fee = ! empty($response->balance_transaction->fee) ? WC_Stripe_Helper::format_balance_fee($response->balance_transaction, 'fee') : 0;
426
+			$net = ! empty($response->balance_transaction->net) ? WC_Stripe_Helper::format_balance_fee($response->balance_transaction, 'net') : 0;
427
+			WC_Stripe_Helper::update_stripe_fee($order, $fee);
428
+			WC_Stripe_Helper::update_stripe_net($order, $net);
430 429
 
431 430
 			// Store currency stripe.
432
-			$currency = ! empty( $response->balance_transaction->currency ) ? strtoupper( $response->balance_transaction->currency ) : null;
433
-			WC_Stripe_Helper::update_stripe_currency( $order, $currency );
431
+			$currency = ! empty($response->balance_transaction->currency) ? strtoupper($response->balance_transaction->currency) : null;
432
+			WC_Stripe_Helper::update_stripe_currency($order, $currency);
434 433
 		}
435 434
 
436
-		if ( 'yes' === $captured ) {
435
+		if ('yes' === $captured) {
437 436
 			/**
438 437
 			 * Charge can be captured but in a pending state. Payment methods
439 438
 			 * that are asynchronous may take couple days to clear. Webhook will
440 439
 			 * take care of the status changes.
441 440
 			 */
442
-			if ( 'pending' === $response->status ) {
443
-				$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 );
441
+			if ('pending' === $response->status) {
442
+				$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);
444 443
 
445
-				if ( ! $order_stock_reduced ) {
446
-					WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels( $order_id );
444
+				if ( ! $order_stock_reduced) {
445
+					WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels($order_id);
447 446
 				}
448 447
 
449
-				WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $response->id ) : $order->set_transaction_id( $response->id );
448
+				WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $response->id) : $order->set_transaction_id($response->id);
450 449
 				/* translators: transaction id */
451
-				$order->update_status( 'on-hold', sprintf( __( 'Stripe charge awaiting payment: %s.', 'woocommerce-gateway-stripe' ), $response->id ) );
450
+				$order->update_status('on-hold', sprintf(__('Stripe charge awaiting payment: %s.', 'woocommerce-gateway-stripe'), $response->id));
452 451
 			}
453 452
 
454
-			if ( 'succeeded' === $response->status ) {
455
-				$order->payment_complete( $response->id );
453
+			if ('succeeded' === $response->status) {
454
+				$order->payment_complete($response->id);
456 455
 
457 456
 				/* translators: transaction id */
458
-				$message = sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $response->id );
459
-				$order->add_order_note( $message );
457
+				$message = sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $response->id);
458
+				$order->add_order_note($message);
460 459
 			}
461 460
 
462
-			if ( 'failed' === $response->status ) {
463
-				$localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
464
-				$order->add_order_note( $localized_message );
465
-				throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
461
+			if ('failed' === $response->status) {
462
+				$localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe');
463
+				$order->add_order_note($localized_message);
464
+				throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
466 465
 			}
467 466
 		} else {
468
-			WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $response->id ) : $order->set_transaction_id( $response->id );
467
+			WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $response->id) : $order->set_transaction_id($response->id);
469 468
 
470
-			if ( $order->has_status( array( 'pending', 'failed' ) ) ) {
471
-				WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels( $order_id );
469
+			if ($order->has_status(array('pending', 'failed'))) {
470
+				WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels($order_id);
472 471
 			}
473 472
 
474 473
 			/* translators: transaction id */
475
-			$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 ) );
474
+			$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));
476 475
 		}
477 476
 
478
-		if ( is_callable( array( $order, 'save' ) ) ) {
477
+		if (is_callable(array($order, 'save'))) {
479 478
 			$order->save();
480 479
 		}
481 480
 
482
-		do_action( 'wc_gateway_stripe_process_response', $response, $order );
481
+		do_action('wc_gateway_stripe_process_response', $response, $order);
483 482
 
484 483
 		return $response;
485 484
 	}
@@ -492,10 +491,10 @@  discard block
 block discarded – undo
492 491
 	 * @param int $order_id
493 492
 	 * @return null
494 493
 	 */
495
-	public function send_failed_order_email( $order_id ) {
494
+	public function send_failed_order_email($order_id) {
496 495
 		$emails = WC()->mailer()->get_emails();
497
-		if ( ! empty( $emails ) && ! empty( $order_id ) ) {
498
-			$emails['WC_Email_Failed_Order']->trigger( $order_id );
496
+		if ( ! empty($emails) && ! empty($order_id)) {
497
+			$emails['WC_Email_Failed_Order']->trigger($order_id);
499 498
 		}
500 499
 	}
501 500
 
@@ -507,7 +506,7 @@  discard block
 block discarded – undo
507 506
 	 * @param object $order
508 507
 	 * @return object $details
509 508
 	 */
510
-	public function get_owner_details( $order ) {
509
+	public function get_owner_details($order) {
511 510
 		$billing_first_name = WC_Stripe_Helper::is_pre_30() ? $order->billing_first_name : $order->get_billing_first_name();
512 511
 		$billing_last_name  = WC_Stripe_Helper::is_pre_30() ? $order->billing_last_name : $order->get_billing_last_name();
513 512
 
@@ -517,15 +516,15 @@  discard block
 block discarded – undo
517 516
 		$email = WC_Stripe_Helper::is_pre_30() ? $order->billing_email : $order->get_billing_email();
518 517
 		$phone = WC_Stripe_Helper::is_pre_30() ? $order->billing_phone : $order->get_billing_phone();
519 518
 
520
-		if ( ! empty( $phone ) ) {
519
+		if ( ! empty($phone)) {
521 520
 			$details['phone'] = $phone;
522 521
 		}
523 522
 
524
-		if ( ! empty( $name ) ) {
523
+		if ( ! empty($name)) {
525 524
 			$details['name'] = $name;
526 525
 		}
527 526
 
528
-		if ( ! empty( $email ) ) {
527
+		if ( ! empty($email)) {
529 528
 			$details['email'] = $email;
530 529
 		}
531 530
 
@@ -536,7 +535,7 @@  discard block
 block discarded – undo
536 535
 		$details['address']['postal_code'] = WC_Stripe_Helper::is_pre_30() ? $order->billing_postcode : $order->get_billing_postcode();
537 536
 		$details['address']['country']     = WC_Stripe_Helper::is_pre_30() ? $order->billing_country : $order->get_billing_country();
538 537
 
539
-		return (object) apply_filters( 'wc_stripe_owner_details', $details, $order );
538
+		return (object) apply_filters('wc_stripe_owner_details', $details, $order);
540 539
 	}
541 540
 
542 541
 	/**
@@ -545,15 +544,15 @@  discard block
 block discarded – undo
545 544
 	 * @since 4.0.3
546 545
 	 * @param string $source_id The source ID to get source object for.
547 546
 	 */
548
-	public function get_source_object( $source_id = '' ) {
549
-		if ( empty( $source_id ) ) {
547
+	public function get_source_object($source_id = '') {
548
+		if (empty($source_id)) {
550 549
 			return '';
551 550
 		}
552 551
 
553
-		$source_object = WC_Stripe_API::retrieve( 'sources/' . $source_id );
552
+		$source_object = WC_Stripe_API::retrieve('sources/' . $source_id);
554 553
 
555
-		if ( ! empty( $source_object->error ) ) {
556
-			throw new WC_Stripe_Exception( print_r( $source_object, true ), $source_object->error->message );
554
+		if ( ! empty($source_object->error)) {
555
+			throw new WC_Stripe_Exception(print_r($source_object, true), $source_object->error->message);
557 556
 		}
558 557
 
559 558
 		return $source_object;
@@ -567,12 +566,12 @@  discard block
 block discarded – undo
567 566
 	 * @param object $source_object
568 567
 	 * @return bool
569 568
 	 */
570
-	public function is_3ds_required( $source_object ) {
571
-		return apply_filters( 'wc_stripe_require_3ds', (
572
-			$source_object && ! empty( $source_object->card ) ) &&
573
-			( 'card' === $source_object->type && 'required' === $source_object->card->three_d_secure ||
574
-			( $this->three_d_secure && 'recommended' === $source_object->card->three_d_secure )
575
-		), $source_object, $this->three_d_secure );
569
+	public function is_3ds_required($source_object) {
570
+		return apply_filters('wc_stripe_require_3ds', (
571
+			$source_object && ! empty($source_object->card) ) &&
572
+			('card' === $source_object->type && 'required' === $source_object->card->three_d_secure ||
573
+			($this->three_d_secure && 'recommended' === $source_object->card->three_d_secure)
574
+		), $source_object, $this->three_d_secure);
576 575
 	}
577 576
 
578 577
 	/**
@@ -582,8 +581,8 @@  discard block
 block discarded – undo
582 581
 	 * @param object $source_object
583 582
 	 * @return bool
584 583
 	 */
585
-	public function is_3ds_card( $source_object ) {
586
-		return ( $source_object && 'three_d_secure' === $source_object->type );
584
+	public function is_3ds_card($source_object) {
585
+		return ($source_object && 'three_d_secure' === $source_object->type);
587 586
 	}
588 587
 
589 588
 	/**
@@ -593,8 +592,8 @@  discard block
 block discarded – undo
593 592
 	 * @param object $source_object
594 593
 	 * @return bool
595 594
 	 */
596
-	public function is_prepaid_card( $source_object ) {
597
-		return ( $source_object && 'token' === $source_object->object && 'prepaid' === $source_object->card->funding );
595
+	public function is_prepaid_card($source_object) {
596
+		return ($source_object && 'token' === $source_object->object && 'prepaid' === $source_object->card->funding);
598 597
 	}
599 598
 
600 599
 	/**
@@ -604,8 +603,8 @@  discard block
 block discarded – undo
604 603
 	 * @param string $source_id
605 604
 	 * @return bool
606 605
 	 */
607
-	public function is_type_legacy_card( $source_id ) {
608
-		return ( preg_match( '/^card_/', $source_id ) );
606
+	public function is_type_legacy_card($source_id) {
607
+		return (preg_match('/^card_/', $source_id));
609 608
 	}
610 609
 
611 610
 	/**
@@ -615,9 +614,9 @@  discard block
 block discarded – undo
615 614
 	 * @return bool
616 615
 	 */
617 616
 	public function is_using_saved_payment_method() {
618
-		$payment_method = isset( $_POST['payment_method'] ) ? wc_clean( $_POST['payment_method'] ) : 'stripe';
617
+		$payment_method = isset($_POST['payment_method']) ? wc_clean($_POST['payment_method']) : 'stripe';
619 618
 
620
-		return ( isset( $_POST[ 'wc-' . $payment_method . '-payment-token' ] ) && 'new' !== $_POST[ 'wc-' . $payment_method . '-payment-token' ] );
619
+		return (isset($_POST['wc-' . $payment_method . '-payment-token']) && 'new' !== $_POST['wc-' . $payment_method . '-payment-token']);
621 620
 	}
622 621
 
623 622
 	/**
@@ -630,22 +629,22 @@  discard block
 block discarded – undo
630 629
 	 * @param string $return_url
631 630
 	 * @return mixed
632 631
 	 */
633
-	public function create_3ds_source( $order, $source_object, $return_url = '' ) {
632
+	public function create_3ds_source($order, $source_object, $return_url = '') {
634 633
 		$currency                    = WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency();
635 634
 		$order_id                    = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
636
-		$return_url                  = empty( $return_url ) ? $this->get_stripe_return_url( $order ) : $return_url;
635
+		$return_url                  = empty($return_url) ? $this->get_stripe_return_url($order) : $return_url;
637 636
 
638 637
 		$post_data                   = array();
639
-		$post_data['amount']         = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency );
640
-		$post_data['currency']       = strtolower( $currency );
638
+		$post_data['amount']         = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency);
639
+		$post_data['currency']       = strtolower($currency);
641 640
 		$post_data['type']           = 'three_d_secure';
642
-		$post_data['owner']          = $this->get_owner_details( $order );
643
-		$post_data['three_d_secure'] = array( 'card' => $source_object->id );
644
-		$post_data['redirect']       = array( 'return_url' => $return_url );
641
+		$post_data['owner']          = $this->get_owner_details($order);
642
+		$post_data['three_d_secure'] = array('card' => $source_object->id);
643
+		$post_data['redirect']       = array('return_url' => $return_url);
645 644
 
646
-		WC_Stripe_Logger::log( 'Info: Begin creating 3DS source...' );
645
+		WC_Stripe_Logger::log('Info: Begin creating 3DS source...');
647 646
 
648
-		return WC_Stripe_API::request( apply_filters( 'wc_stripe_3ds_source', $post_data, $order ), 'sources' );
647
+		return WC_Stripe_API::request(apply_filters('wc_stripe_3ds_source', $post_data, $order), 'sources');
649 648
 	}
650 649
 
651 650
 	/**
@@ -661,61 +660,61 @@  discard block
 block discarded – undo
661 660
 	 * @throws Exception When card was not added or for and invalid card.
662 661
 	 * @return object
663 662
 	 */
664
-	public function prepare_source( $user_id, $force_save_source = false ) {
665
-		$customer           = new WC_Stripe_Customer( $user_id );
663
+	public function prepare_source($user_id, $force_save_source = false) {
664
+		$customer           = new WC_Stripe_Customer($user_id);
666 665
 		$set_customer       = true;
667
-		$force_save_source  = apply_filters( 'wc_stripe_force_save_source', $force_save_source, $customer );
666
+		$force_save_source  = apply_filters('wc_stripe_force_save_source', $force_save_source, $customer);
668 667
 		$source_object      = '';
669 668
 		$source_id          = '';
670 669
 		$wc_token_id        = false;
671
-		$payment_method     = isset( $_POST['payment_method'] ) ? wc_clean( $_POST['payment_method'] ) : 'stripe';
670
+		$payment_method     = isset($_POST['payment_method']) ? wc_clean($_POST['payment_method']) : 'stripe';
672 671
 		$is_token           = false;
673 672
 
674 673
 		// New CC info was entered and we have a new source to process.
675
-		if ( ! empty( $_POST['stripe_source'] ) ) {
676
-			$source_object = self::get_source_object( wc_clean( $_POST['stripe_source'] ) );
674
+		if ( ! empty($_POST['stripe_source'])) {
675
+			$source_object = self::get_source_object(wc_clean($_POST['stripe_source']));
677 676
 			$source_id     = $source_object->id;
678 677
 
679 678
 			// This checks to see if customer opted to save the payment method to file.
680
-			$maybe_saved_card = isset( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] ) && ! empty( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] );
679
+			$maybe_saved_card = isset($_POST['wc-' . $payment_method . '-new-payment-method']) && ! empty($_POST['wc-' . $payment_method . '-new-payment-method']);
681 680
 
682 681
 			/**
683 682
 			 * This is true if the user wants to store the card to their account.
684 683
 			 * Criteria to save to file is they are logged in, they opted to save or product requirements and the source is
685 684
 			 * actually reusable. Either that or force_save_source is true.
686 685
 			 */
687
-			if ( ( $user_id && $this->saved_cards && $maybe_saved_card && 'reusable' === $source_object->usage ) || $force_save_source ) {
688
-				$response = $customer->add_source( $source_object->id );
686
+			if (($user_id && $this->saved_cards && $maybe_saved_card && 'reusable' === $source_object->usage) || $force_save_source) {
687
+				$response = $customer->add_source($source_object->id);
689 688
 
690
-				if ( ! empty( $response->error ) ) {
691
-					throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message );
689
+				if ( ! empty($response->error)) {
690
+					throw new WC_Stripe_Exception(print_r($response, true), $response->error->message);
692 691
 				}
693 692
 			}
694
-		} elseif ( $this->is_using_saved_payment_method() ) {
693
+		} elseif ($this->is_using_saved_payment_method()) {
695 694
 			// Use an existing token, and then process the payment.
696
-			$wc_token_id = wc_clean( $_POST[ 'wc-' . $payment_method . '-payment-token' ] );
697
-			$wc_token    = WC_Payment_Tokens::get( $wc_token_id );
695
+			$wc_token_id = wc_clean($_POST['wc-' . $payment_method . '-payment-token']);
696
+			$wc_token    = WC_Payment_Tokens::get($wc_token_id);
698 697
 
699
-			if ( ! $wc_token || $wc_token->get_user_id() !== get_current_user_id() ) {
700
-				WC()->session->set( 'refresh_totals', true );
701
-				throw new WC_Stripe_Exception( 'Invalid payment method', __( 'Invalid payment method. Please input a new card number.', 'woocommerce-gateway-stripe' ) );
698
+			if ( ! $wc_token || $wc_token->get_user_id() !== get_current_user_id()) {
699
+				WC()->session->set('refresh_totals', true);
700
+				throw new WC_Stripe_Exception('Invalid payment method', __('Invalid payment method. Please input a new card number.', 'woocommerce-gateway-stripe'));
702 701
 			}
703 702
 
704 703
 			$source_id = $wc_token->get_token();
705 704
 
706
-			if ( $this->is_type_legacy_card( $source_id ) ) {
705
+			if ($this->is_type_legacy_card($source_id)) {
707 706
 				$is_token = true;
708 707
 			}
709
-		} elseif ( isset( $_POST['stripe_token'] ) && 'new' !== $_POST['stripe_token'] ) {
710
-			$stripe_token     = wc_clean( $_POST['stripe_token'] );
711
-			$maybe_saved_card = isset( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] ) && ! empty( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] );
708
+		} elseif (isset($_POST['stripe_token']) && 'new' !== $_POST['stripe_token']) {
709
+			$stripe_token     = wc_clean($_POST['stripe_token']);
710
+			$maybe_saved_card = isset($_POST['wc-' . $payment_method . '-new-payment-method']) && ! empty($_POST['wc-' . $payment_method . '-new-payment-method']);
712 711
 
713 712
 			// This is true if the user wants to store the card to their account.
714
-			if ( ( $user_id && $this->saved_cards && $maybe_saved_card ) || $force_save_source ) {
715
-				$response = $customer->add_source( $stripe_token );
713
+			if (($user_id && $this->saved_cards && $maybe_saved_card) || $force_save_source) {
714
+				$response = $customer->add_source($stripe_token);
716 715
 
717
-				if ( ! empty( $response->error ) ) {
718
-					throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message );
716
+				if ( ! empty($response->error)) {
717
+					throw new WC_Stripe_Exception(print_r($response, true), $response->error->message);
719 718
 				}
720 719
 			} else {
721 720
 				$set_customer = false;
@@ -724,14 +723,14 @@  discard block
 block discarded – undo
724 723
 			}
725 724
 		}
726 725
 
727
-		if ( ! $set_customer ) {
726
+		if ( ! $set_customer) {
728 727
 			$customer_id = false;
729 728
 		} else {
730 729
 			$customer_id = $customer->get_id() ? $customer->get_id() : false;
731 730
 		}
732 731
 
733
-		if ( empty( $source_object ) && ! $is_token ) {
734
-			$source_object = self::get_source_object( $source_id );
732
+		if (empty($source_object) && ! $is_token) {
733
+			$source_object = self::get_source_object($source_id);
735 734
 		}
736 735
 
737 736
 		return (object) array(
@@ -755,39 +754,39 @@  discard block
 block discarded – undo
755 754
 	 * @param object $order
756 755
 	 * @return object
757 756
 	 */
758
-	public function prepare_order_source( $order = null ) {
757
+	public function prepare_order_source($order = null) {
759 758
 		$stripe_customer = new WC_Stripe_Customer();
760 759
 		$stripe_source   = false;
761 760
 		$token_id        = false;
762 761
 		$source_object   = false;
763 762
 
764
-		if ( $order ) {
763
+		if ($order) {
765 764
 			$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
766 765
 
767
-			$stripe_customer_id = get_post_meta( $order_id, '_stripe_customer_id', true );
766
+			$stripe_customer_id = get_post_meta($order_id, '_stripe_customer_id', true);
768 767
 
769
-			if ( $stripe_customer_id ) {
770
-				$stripe_customer->set_id( $stripe_customer_id );
768
+			if ($stripe_customer_id) {
769
+				$stripe_customer->set_id($stripe_customer_id);
771 770
 			}
772 771
 
773
-			$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_source_id', true ) : $order->get_meta( '_stripe_source_id', true );
772
+			$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_source_id', true) : $order->get_meta('_stripe_source_id', true);
774 773
 
775 774
 			// Since 4.0.0, we changed card to source so we need to account for that.
776
-			if ( empty( $source_id ) ) {
777
-				$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_card_id', true ) : $order->get_meta( '_stripe_card_id', true );
775
+			if (empty($source_id)) {
776
+				$source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_card_id', true) : $order->get_meta('_stripe_card_id', true);
778 777
 
779 778
 				// Take this opportunity to update the key name.
780
-				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 );
779
+				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);
781 780
 
782
-				if ( is_callable( array( $order, 'save' ) ) ) {
781
+				if (is_callable(array($order, 'save'))) {
783 782
 					$order->save();
784 783
 				}
785 784
 			}
786 785
 
787
-			if ( $source_id ) {
786
+			if ($source_id) {
788 787
 				$stripe_source = $source_id;
789
-				$source_object = WC_Stripe_API::retrieve( 'sources/' . $source_id );
790
-			} elseif ( apply_filters( 'wc_stripe_use_default_customer_source', true ) ) {
788
+				$source_object = WC_Stripe_API::retrieve('sources/' . $source_id);
789
+			} elseif (apply_filters('wc_stripe_use_default_customer_source', true)) {
791 790
 				/*
792 791
 				 * We can attempt to charge the customer's default source
793 792
 				 * by sending empty source id.
@@ -812,27 +811,27 @@  discard block
 block discarded – undo
812 811
 	 * @param WC_Order $order For to which the source applies.
813 812
 	 * @param stdClass $source Source information.
814 813
 	 */
815
-	public function save_source_to_order( $order, $source ) {
814
+	public function save_source_to_order($order, $source) {
816 815
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
817 816
 
818 817
 		// Store source in the order.
819
-		if ( $source->customer ) {
820
-			if ( WC_Stripe_Helper::is_pre_30() ) {
821
-				update_post_meta( $order_id, '_stripe_customer_id', $source->customer );
818
+		if ($source->customer) {
819
+			if (WC_Stripe_Helper::is_pre_30()) {
820
+				update_post_meta($order_id, '_stripe_customer_id', $source->customer);
822 821
 			} else {
823
-				$order->update_meta_data( '_stripe_customer_id', $source->customer );
822
+				$order->update_meta_data('_stripe_customer_id', $source->customer);
824 823
 			}
825 824
 		}
826 825
 
827
-		if ( $source->source ) {
828
-			if ( WC_Stripe_Helper::is_pre_30() ) {
829
-				update_post_meta( $order_id, '_stripe_source_id', $source->source );
826
+		if ($source->source) {
827
+			if (WC_Stripe_Helper::is_pre_30()) {
828
+				update_post_meta($order_id, '_stripe_source_id', $source->source);
830 829
 			} else {
831
-				$order->update_meta_data( '_stripe_source_id', $source->source );
830
+				$order->update_meta_data('_stripe_source_id', $source->source);
832 831
 			}
833 832
 		}
834 833
 
835
-		if ( is_callable( array( $order, 'save' ) ) ) {
834
+		if (is_callable(array($order, 'save'))) {
836 835
 			$order->save();
837 836
 		}
838 837
 	}
@@ -846,35 +845,35 @@  discard block
 block discarded – undo
846 845
 	 * @param object $order The order object
847 846
 	 * @param int $balance_transaction_id
848 847
 	 */
849
-	public function update_fees( $order, $balance_transaction_id ) {
848
+	public function update_fees($order, $balance_transaction_id) {
850 849
 		$order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id();
851 850
 
852
-		$balance_transaction = WC_Stripe_API::retrieve( 'balance/history/' . $balance_transaction_id );
851
+		$balance_transaction = WC_Stripe_API::retrieve('balance/history/' . $balance_transaction_id);
853 852
 
854
-		if ( empty( $balance_transaction->error ) ) {
855
-			if ( isset( $balance_transaction ) && isset( $balance_transaction->fee ) ) {
853
+		if (empty($balance_transaction->error)) {
854
+			if (isset($balance_transaction) && isset($balance_transaction->fee)) {
856 855
 				// Fees and Net needs to both come from Stripe to be accurate as the returned
857 856
 				// values are in the local currency of the Stripe account, not from WC.
858
-				$fee_refund = ! empty( $balance_transaction->fee ) ? WC_Stripe_Helper::format_balance_fee( $balance_transaction, 'fee' ) : 0;
859
-				$net_refund = ! empty( $balance_transaction->net ) ? WC_Stripe_Helper::format_balance_fee( $balance_transaction, 'net' ) : 0;
857
+				$fee_refund = ! empty($balance_transaction->fee) ? WC_Stripe_Helper::format_balance_fee($balance_transaction, 'fee') : 0;
858
+				$net_refund = ! empty($balance_transaction->net) ? WC_Stripe_Helper::format_balance_fee($balance_transaction, 'net') : 0;
860 859
 
861 860
 				// Current data fee & net.
862
-				$fee_current = WC_Stripe_Helper::get_stripe_fee( $order );
863
-				$net_current = WC_Stripe_Helper::get_stripe_net( $order );
861
+				$fee_current = WC_Stripe_Helper::get_stripe_fee($order);
862
+				$net_current = WC_Stripe_Helper::get_stripe_net($order);
864 863
 
865 864
 				// Calculation.
866 865
 				$fee = (float) $fee_current + (float) $fee_refund;
867 866
 				$net = (float) $net_current + (float) $net_refund;
868 867
 
869
-				WC_Stripe_Helper::update_stripe_fee( $order, $fee );
870
-				WC_Stripe_Helper::update_stripe_net( $order, $net );
868
+				WC_Stripe_Helper::update_stripe_fee($order, $fee);
869
+				WC_Stripe_Helper::update_stripe_net($order, $net);
871 870
 
872
-				if ( is_callable( array( $order, 'save' ) ) ) {
871
+				if (is_callable(array($order, 'save'))) {
873 872
 					$order->save();
874 873
 				}
875 874
 			}
876 875
 		} else {
877
-			WC_Stripe_Logger::log( "Unable to update fees/net meta for order: {$order_id}" );
876
+			WC_Stripe_Logger::log("Unable to update fees/net meta for order: {$order_id}");
878 877
 		}
879 878
 	}
880 879
 
@@ -887,33 +886,33 @@  discard block
 block discarded – undo
887 886
 	 * @param  float $amount
888 887
 	 * @return bool
889 888
 	 */
890
-	public function process_refund( $order_id, $amount = null, $reason = '' ) {
891
-		$order = wc_get_order( $order_id );
889
+	public function process_refund($order_id, $amount = null, $reason = '') {
890
+		$order = wc_get_order($order_id);
892 891
 
893
-		if ( ! $order || ! $order->get_transaction_id() ) {
892
+		if ( ! $order || ! $order->get_transaction_id()) {
894 893
 			return false;
895 894
 		}
896 895
 
897 896
 		$request = array();
898 897
 
899
-		if ( WC_Stripe_Helper::is_pre_30() ) {
900
-			$order_currency = get_post_meta( $order_id, '_order_currency', true );
901
-			$captured       = get_post_meta( $order_id, '_stripe_charge_captured', true );
898
+		if (WC_Stripe_Helper::is_pre_30()) {
899
+			$order_currency = get_post_meta($order_id, '_order_currency', true);
900
+			$captured       = get_post_meta($order_id, '_stripe_charge_captured', true);
902 901
 		} else {
903 902
 			$order_currency = $order->get_currency();
904
-			$captured       = $order->get_meta( '_stripe_charge_captured', true );
903
+			$captured       = $order->get_meta('_stripe_charge_captured', true);
905 904
 		}
906 905
 
907
-		if ( ! is_null( $amount ) ) {
908
-			$request['amount'] = WC_Stripe_Helper::get_stripe_amount( $amount, $order_currency );
906
+		if ( ! is_null($amount)) {
907
+			$request['amount'] = WC_Stripe_Helper::get_stripe_amount($amount, $order_currency);
909 908
 		}
910 909
 
911 910
 		// If order is only authorized, don't pass amount.
912
-		if ( 'yes' !== $captured ) {
913
-			unset( $request['amount'] );
911
+		if ('yes' !== $captured) {
912
+			unset($request['amount']);
914 913
 		}
915 914
 
916
-		if ( $reason ) {
915
+		if ($reason) {
917 916
 			$request['metadata'] = array(
918 917
 				'reason' => $reason,
919 918
 			);
@@ -921,35 +920,35 @@  discard block
 block discarded – undo
921 920
 
922 921
 		$request['charge'] = $order->get_transaction_id();
923 922
 
924
-		WC_Stripe_Logger::log( "Info: Beginning refund for order {$order->get_transaction_id()} for the amount of {$amount}" );
923
+		WC_Stripe_Logger::log("Info: Beginning refund for order {$order->get_transaction_id()} for the amount of {$amount}");
925 924
 
926
-		$request = apply_filters( 'wc_stripe_refund_request', $request, $order );
925
+		$request = apply_filters('wc_stripe_refund_request', $request, $order);
927 926
 
928
-		$response = WC_Stripe_API::request( $request, 'refunds' );
927
+		$response = WC_Stripe_API::request($request, 'refunds');
929 928
 
930
-		if ( ! empty( $response->error ) ) {
931
-			WC_Stripe_Logger::log( 'Error: ' . $response->error->message );
929
+		if ( ! empty($response->error)) {
930
+			WC_Stripe_Logger::log('Error: ' . $response->error->message);
932 931
 
933 932
 			return $response;
934 933
 
935
-		} elseif ( ! empty( $response->id ) ) {
936
-			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 );
934
+		} elseif ( ! empty($response->id)) {
935
+			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);
937 936
 
938
-			$amount = wc_price( $response->amount / 100 );
937
+			$amount = wc_price($response->amount / 100);
939 938
 
940
-			if ( in_array( strtolower( $order->get_currency() ), WC_Stripe_Helper::no_decimal_currencies() ) ) {
941
-				$amount = wc_price( $response->amount );
939
+			if (in_array(strtolower($order->get_currency()), WC_Stripe_Helper::no_decimal_currencies())) {
940
+				$amount = wc_price($response->amount);
942 941
 			}
943 942
 
944
-			if ( isset( $response->balance_transaction ) ) {
945
-				$this->update_fees( $order, $response->balance_transaction );
943
+			if (isset($response->balance_transaction)) {
944
+				$this->update_fees($order, $response->balance_transaction);
946 945
 			}
947 946
 
948 947
 			/* translators: 1) dollar amount 2) transaction id 3) refund message */
949
-			$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' );
948
+			$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');
950 949
 
951
-			$order->add_order_note( $refund_message );
952
-			WC_Stripe_Logger::log( 'Success: ' . html_entity_decode( strip_tags( $refund_message ) ) );
950
+			$order->add_order_note($refund_message);
951
+			WC_Stripe_Logger::log('Success: ' . html_entity_decode(strip_tags($refund_message)));
953 952
 
954 953
 			return true;
955 954
 		}
@@ -964,44 +963,44 @@  discard block
 block discarded – undo
964 963
 	 */
965 964
 	public function add_payment_method() {
966 965
 		$error     = false;
967
-		$error_msg = __( 'There was a problem adding the card.', 'woocommerce-gateway-stripe' );
966
+		$error_msg = __('There was a problem adding the card.', 'woocommerce-gateway-stripe');
968 967
 		$source_id = '';
969 968
 
970
-		if ( empty( $_POST['stripe_source'] ) && empty( $_POST['stripe_token'] ) || ! is_user_logged_in() ) {
969
+		if (empty($_POST['stripe_source']) && empty($_POST['stripe_token']) || ! is_user_logged_in()) {
971 970
 			$error = true;
972 971
 		}
973 972
 
974
-		$stripe_customer = new WC_Stripe_Customer( get_current_user_id() );
973
+		$stripe_customer = new WC_Stripe_Customer(get_current_user_id());
975 974
 
976
-		$source = ! empty( $_POST['stripe_source'] ) ? wc_clean( $_POST['stripe_source'] ) : '';
975
+		$source = ! empty($_POST['stripe_source']) ? wc_clean($_POST['stripe_source']) : '';
977 976
 
978
-		$source_object = WC_Stripe_API::retrieve( 'sources/' . $source );
977
+		$source_object = WC_Stripe_API::retrieve('sources/' . $source);
979 978
 
980
-		if ( isset( $source_object ) ) {
981
-			if ( ! empty( $source_object->error ) ) {
979
+		if (isset($source_object)) {
980
+			if ( ! empty($source_object->error)) {
982 981
 				$error = true;
983 982
 			}
984 983
 
985 984
 			$source_id = $source_object->id;
986
-		} elseif ( isset( $_POST['stripe_token'] ) ) {
987
-			$source_id = wc_clean( $_POST['stripe_token'] );
985
+		} elseif (isset($_POST['stripe_token'])) {
986
+			$source_id = wc_clean($_POST['stripe_token']);
988 987
 		}
989 988
 
990
-		$response = $stripe_customer->add_source( $source_id );
989
+		$response = $stripe_customer->add_source($source_id);
991 990
 
992
-		if ( ! $response || is_wp_error( $response ) || ! empty( $response->error ) ) {
991
+		if ( ! $response || is_wp_error($response) || ! empty($response->error)) {
993 992
 			$error = true;
994 993
 		}
995 994
 
996
-		if ( $error ) {
997
-			wc_add_notice( $error_msg, 'error' );
998
-			WC_Stripe_Logger::log( 'Add payment method Error: ' . $error_msg );
995
+		if ($error) {
996
+			wc_add_notice($error_msg, 'error');
997
+			WC_Stripe_Logger::log('Add payment method Error: ' . $error_msg);
999 998
 			return;
1000 999
 		}
1001 1000
 
1002 1001
 		return array(
1003 1002
 			'result'   => 'success',
1004
-			'redirect' => wc_get_endpoint_url( 'payment-methods' ),
1003
+			'redirect' => wc_get_endpoint_url('payment-methods'),
1005 1004
 		);
1006 1005
 	}
1007 1006
 
@@ -1018,10 +1017,10 @@  discard block
 block discarded – undo
1018 1017
 		 * Stripe expects Norwegian to only be passed NO.
1019 1018
 		 * But WP has different dialects.
1020 1019
 		 */
1021
-		if ( 'NO' === substr( $locale, 3, 2 ) ) {
1020
+		if ('NO' === substr($locale, 3, 2)) {
1022 1021
 			$locale = 'no';
1023 1022
 		} else {
1024
-			$locale = substr( get_locale(), 0, 2 );
1023
+			$locale = substr(get_locale(), 0, 2);
1025 1024
 		}
1026 1025
 
1027 1026
 		return $locale;
@@ -1035,9 +1034,9 @@  discard block
 block discarded – undo
1035 1034
 	 * @param string $idempotency_key
1036 1035
 	 * @param array $request
1037 1036
 	 */
1038
-	public function change_idempotency_key( $idempotency_key, $request ) {
1039
-		$customer = ! empty( $request['customer'] ) ? $request['customer'] : '';
1040
-		$source   = ! empty( $request['source'] ) ? $request['source'] : $customer;
1037
+	public function change_idempotency_key($idempotency_key, $request) {
1038
+		$customer = ! empty($request['customer']) ? $request['customer'] : '';
1039
+		$source   = ! empty($request['source']) ? $request['source'] : $customer;
1041 1040
 		$count    = $this->retry_interval;
1042 1041
 
1043 1042
 		return $request['metadata']['order_id'] . '-' . $count . '-' . $source;
@@ -1051,8 +1050,8 @@  discard block
 block discarded – undo
1051 1050
 	 * @since 4.0.6
1052 1051
 	 * @param array $headers
1053 1052
 	 */
1054
-	public function is_original_request( $headers ) {
1055
-		if ( $headers['original-request'] === $headers['request-id'] ) {
1053
+	public function is_original_request($headers) {
1054
+		if ($headers['original-request'] === $headers['request-id']) {
1056 1055
 			return true;
1057 1056
 		}
1058 1057
 
Please login to merge, or discard this patch.
includes/class-wc-gateway-stripe.php 1 patch
Spacing   +261 added lines, -261 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
 
@@ -120,9 +120,9 @@  discard block
 block discarded – undo
120 120
 	public function __construct() {
121 121
 		$this->retry_interval       = 1;
122 122
 		$this->id                   = 'stripe';
123
-		$this->method_title         = __( 'Stripe', 'woocommerce-gateway-stripe' );
123
+		$this->method_title         = __('Stripe', 'woocommerce-gateway-stripe');
124 124
 		/* translators: 1) link to Stripe register page 2) link to Stripe api keys page */
125
-		$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' );
125
+		$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');
126 126
 		$this->has_fields           = true;
127 127
 		$this->supports             = array(
128 128
 			'products',
@@ -149,43 +149,43 @@  discard block
 block discarded – undo
149 149
 		$this->init_settings();
150 150
 
151 151
 		// Get setting values.
152
-		$this->title                       = $this->get_option( 'title' );
153
-		$this->description                 = $this->get_option( 'description' );
154
-		$this->enabled                     = $this->get_option( 'enabled' );
155
-		$this->testmode                    = 'yes' === $this->get_option( 'testmode' );
156
-		$this->inline_cc_form              = 'yes' === $this->get_option( 'inline_cc_form' );
157
-		$this->capture                     = 'yes' === $this->get_option( 'capture', 'yes' );
158
-		$this->statement_descriptor        = WC_Stripe_Helper::clean_statement_descriptor( $this->get_option( 'statement_descriptor' ) );
159
-		$this->three_d_secure              = 'yes' === $this->get_option( 'three_d_secure' );
160
-		$this->stripe_checkout             = 'yes' === $this->get_option( 'stripe_checkout' );
161
-		$this->stripe_checkout_image       = $this->get_option( 'stripe_checkout_image', '' );
162
-		$this->stripe_checkout_description = $this->get_option( 'stripe_checkout_description' );
163
-		$this->saved_cards                 = 'yes' === $this->get_option( 'saved_cards' );
164
-		$this->secret_key                  = $this->testmode ? $this->get_option( 'test_secret_key' ) : $this->get_option( 'secret_key' );
165
-		$this->publishable_key             = $this->testmode ? $this->get_option( 'test_publishable_key' ) : $this->get_option( 'publishable_key' );
166
-		$this->bitcoin                     = 'USD' === strtoupper( get_woocommerce_currency() ) && 'yes' === $this->get_option( 'stripe_bitcoin' );
167
-		$this->payment_request             = 'yes' === $this->get_option( 'payment_request', 'yes' );
168
-
169
-		if ( $this->stripe_checkout ) {
170
-			$this->order_button_text = __( 'Continue to payment', 'woocommerce-gateway-stripe' );
171
-		}
172
-
173
-		WC_Stripe_API::set_secret_key( $this->secret_key );
152
+		$this->title                       = $this->get_option('title');
153
+		$this->description                 = $this->get_option('description');
154
+		$this->enabled                     = $this->get_option('enabled');
155
+		$this->testmode                    = 'yes' === $this->get_option('testmode');
156
+		$this->inline_cc_form              = 'yes' === $this->get_option('inline_cc_form');
157
+		$this->capture                     = 'yes' === $this->get_option('capture', 'yes');
158
+		$this->statement_descriptor        = WC_Stripe_Helper::clean_statement_descriptor($this->get_option('statement_descriptor'));
159
+		$this->three_d_secure              = 'yes' === $this->get_option('three_d_secure');
160
+		$this->stripe_checkout             = 'yes' === $this->get_option('stripe_checkout');
161
+		$this->stripe_checkout_image       = $this->get_option('stripe_checkout_image', '');
162
+		$this->stripe_checkout_description = $this->get_option('stripe_checkout_description');
163
+		$this->saved_cards                 = 'yes' === $this->get_option('saved_cards');
164
+		$this->secret_key                  = $this->testmode ? $this->get_option('test_secret_key') : $this->get_option('secret_key');
165
+		$this->publishable_key             = $this->testmode ? $this->get_option('test_publishable_key') : $this->get_option('publishable_key');
166
+		$this->bitcoin                     = 'USD' === strtoupper(get_woocommerce_currency()) && 'yes' === $this->get_option('stripe_bitcoin');
167
+		$this->payment_request             = 'yes' === $this->get_option('payment_request', 'yes');
168
+
169
+		if ($this->stripe_checkout) {
170
+			$this->order_button_text = __('Continue to payment', 'woocommerce-gateway-stripe');
171
+		}
172
+
173
+		WC_Stripe_API::set_secret_key($this->secret_key);
174 174
 
175 175
 		// Hooks.
176
-		add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) );
177
-		add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
178
-		add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
179
-		add_action( 'woocommerce_admin_order_totals_after_total', array( $this, 'display_order_fee' ), 10, 1 );
180
-		add_action( 'woocommerce_admin_order_totals_after_total', array( $this, 'display_order_payout' ), 20, 1 );
181
-		add_action( 'woocommerce_customer_save_address', array( $this, 'show_update_card_notice' ), 10, 2 );
182
-		add_action( 'woocommerce_receipt_stripe', array( $this, 'stripe_checkout_receipt_page' ) );
183
-		add_action( 'woocommerce_api_' . strtolower( get_class( $this ) ), array( $this, 'stripe_checkout_return_handler' ) );
184
-
185
-		if ( WC_Stripe_Helper::is_pre_orders_exists() ) {
176
+		add_action('wp_enqueue_scripts', array($this, 'payment_scripts'));
177
+		add_action('admin_enqueue_scripts', array($this, 'admin_scripts'));
178
+		add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options'));
179
+		add_action('woocommerce_admin_order_totals_after_total', array($this, 'display_order_fee'), 10, 1);
180
+		add_action('woocommerce_admin_order_totals_after_total', array($this, 'display_order_payout'), 20, 1);
181
+		add_action('woocommerce_customer_save_address', array($this, 'show_update_card_notice'), 10, 2);
182
+		add_action('woocommerce_receipt_stripe', array($this, 'stripe_checkout_receipt_page'));
183
+		add_action('woocommerce_api_' . strtolower(get_class($this)), array($this, 'stripe_checkout_return_handler'));
184
+
185
+		if (WC_Stripe_Helper::is_pre_orders_exists()) {
186 186
 			$this->pre_orders = new WC_Stripe_Pre_Orders_Compat();
187 187
 
188
-			add_action( 'wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array( $this->pre_orders, 'process_pre_order_release_payment' ) );
188
+			add_action('wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array($this->pre_orders, 'process_pre_order_release_payment'));
189 189
 		}
190 190
 	}
191 191
 
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
 	 * @return bool
197 197
 	 */
198 198
 	public function are_keys_set() {
199
-		if ( empty( $this->secret_key ) || empty( $this->publishable_key ) ) {
199
+		if (empty($this->secret_key) || empty($this->publishable_key)) {
200 200
 			return false;
201 201
 		}
202 202
 
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
 	 * @since 4.0.2
210 210
 	 */
211 211
 	public function is_available() {
212
-		if ( is_add_payment_method_page() && ! $this->saved_cards ) {
212
+		if (is_add_payment_method_page() && ! $this->saved_cards) {
213 213
 			return false;
214 214
 		}
215 215
 
@@ -223,13 +223,13 @@  discard block
 block discarded – undo
223 223
 	 * @param int $user_id
224 224
 	 * @param array $load_address
225 225
 	 */
226
-	public function show_update_card_notice( $user_id, $load_address ) {
227
-		if ( ! $this->saved_cards || ! WC_Stripe_Payment_Tokens::customer_has_saved_methods( $user_id ) || 'billing' !== $load_address ) {
226
+	public function show_update_card_notice($user_id, $load_address) {
227
+		if ( ! $this->saved_cards || ! WC_Stripe_Payment_Tokens::customer_has_saved_methods($user_id) || 'billing' !== $load_address) {
228 228
 			return;
229 229
 		}
230 230
 
231 231
 		/* translators: 1) Opening anchor tag 2) closing anchor tag */
232
-		wc_add_notice( sprintf( __( 'If your billing address has been changed for saved payment methods, be sure to remove any %1$ssaved payment methods%2$s on file and re-add them.', 'woocommerce-gateway-stripe' ), '<a href="' . esc_url( wc_get_endpoint_url( 'payment-methods' ) ) . '" class="wc-stripe-update-card-notice" style="text-decoration:underline;">', '</a>' ), 'notice' );
232
+		wc_add_notice(sprintf(__('If your billing address has been changed for saved payment methods, be sure to remove any %1$ssaved payment methods%2$s on file and re-add them.', 'woocommerce-gateway-stripe'), '<a href="' . esc_url(wc_get_endpoint_url('payment-methods')) . '" class="wc-stripe-update-card-notice" style="text-decoration:underline;">', '</a>'), 'notice');
233 233
 	}
234 234
 
235 235
 	/**
@@ -248,24 +248,24 @@  discard block
 block discarded – undo
248 248
 		$icons_str .= $icons['amex'];
249 249
 		$icons_str .= $icons['mastercard'];
250 250
 
251
-		if ( 'USD' === get_woocommerce_currency() ) {
251
+		if ('USD' === get_woocommerce_currency()) {
252 252
 			$icons_str .= $icons['discover'];
253 253
 			$icons_str .= $icons['jcb'];
254 254
 			$icons_str .= $icons['diners'];
255 255
 		}
256 256
 
257
-		if ( $this->bitcoin && $this->stripe_checkout ) {
257
+		if ($this->bitcoin && $this->stripe_checkout) {
258 258
 			$icons_str .= $icons['bitcoin'];
259 259
 		}
260 260
 
261
-		return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id );
261
+		return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id);
262 262
 	}
263 263
 
264 264
 	/**
265 265
 	 * Initialise Gateway Settings Form Fields
266 266
 	 */
267 267
 	public function init_form_fields() {
268
-		$this->form_fields = require( dirname( __FILE__ ) . '/admin/stripe-settings.php' );
268
+		$this->form_fields = require(dirname(__FILE__) . '/admin/stripe-settings.php');
269 269
 	}
270 270
 
271 271
 	/**
@@ -273,27 +273,27 @@  discard block
 block discarded – undo
273 273
 	 */
274 274
 	public function payment_fields() {
275 275
 		$user                 = wp_get_current_user();
276
-		$display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards;
276
+		$display_tokenization = $this->supports('tokenization') && is_checkout() && $this->saved_cards;
277 277
 		$total                = WC()->cart->total;
278 278
 		$user_email           = '';
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
 			$user_email = WC_Stripe_Helper::is_pre_30() ? $order->billing_email : $order->get_billing_email();
285 285
 		} else {
286
-			if ( $user->ID ) {
287
-				$user_email = get_user_meta( $user->ID, 'billing_email', true );
286
+			if ($user->ID) {
287
+				$user_email = get_user_meta($user->ID, 'billing_email', true);
288 288
 				$user_email = $user_email ? $user_email : $user->user_email;
289 289
 			}
290 290
 		}
291 291
 
292
-		if ( is_add_payment_method_page() ) {
293
-			$pay_button_text = __( 'Add Card', 'woocommerce-gateway-stripe' );
292
+		if (is_add_payment_method_page()) {
293
+			$pay_button_text = __('Add Card', 'woocommerce-gateway-stripe');
294 294
 			$total        = '';
295
-		} elseif ( function_exists( 'wcs_order_contains_subscription' ) && isset( $_GET['change_payment_method'] ) ) {
296
-			$pay_button_text = __( 'Change Payment Method', 'woocommerce-gateway-stripe' );
295
+		} elseif (function_exists('wcs_order_contains_subscription') && isset($_GET['change_payment_method'])) {
296
+			$pay_button_text = __('Change Payment Method', 'woocommerce-gateway-stripe');
297 297
 			$total        = '';
298 298
 		} else {
299 299
 			$pay_button_text = '';
@@ -303,45 +303,45 @@  discard block
 block discarded – undo
303 303
 
304 304
 		echo '<div
305 305
 			id="stripe-payment-data"
306
-			data-panel-label="' . esc_attr( $pay_button_text ) . '"
307
-			data-description="' . esc_attr( strip_tags( $this->stripe_checkout_description ) ) . '"
308
-			data-email="' . esc_attr( $user_email ) . '"
309
-			data-verify-zip="' . esc_attr( apply_filters( 'wc_stripe_checkout_verify_zip', false ) ? 'true' : 'false' ) . '"
310
-			data-billing-address="' . esc_attr( apply_filters( 'wc_stripe_checkout_require_billing_address', false ) ? 'true' : 'false' ) . '"
311
-			data-shipping-address="' . esc_attr( apply_filters( 'wc_stripe_checkout_require_shipping_address', false ) ? 'true' : 'false' ) . '" 
312
-			data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
313
-			data-name="' . esc_attr( $this->statement_descriptor ) . '"
314
-			data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '"
315
-			data-image="' . esc_attr( $this->stripe_checkout_image ) . '"
316
-			data-bitcoin="' . esc_attr( ( $this->bitcoin && $this->capture ) ? 'true' : 'false' ) . '"
317
-			data-locale="' . esc_attr( apply_filters( 'wc_stripe_checkout_locale', $this->get_locale() ) ) . '"
318
-			data-three-d-secure="' . esc_attr( $this->three_d_secure ? 'true' : 'false' ) . '"
319
-			data-allow-remember-me="' . esc_attr( apply_filters( 'wc_stripe_allow_remember_me', true ) ? 'true' : 'false' ) . '">';
320
-
321
-		if ( $this->description ) {
322
-			if ( $this->testmode ) {
306
+			data-panel-label="' . esc_attr($pay_button_text) . '"
307
+			data-description="' . esc_attr(strip_tags($this->stripe_checkout_description)) . '"
308
+			data-email="' . esc_attr($user_email) . '"
309
+			data-verify-zip="' . esc_attr(apply_filters('wc_stripe_checkout_verify_zip', false) ? 'true' : 'false') . '"
310
+			data-billing-address="' . esc_attr(apply_filters('wc_stripe_checkout_require_billing_address', false) ? 'true' : 'false') . '"
311
+			data-shipping-address="' . esc_attr(apply_filters('wc_stripe_checkout_require_shipping_address', false) ? 'true' : 'false') . '" 
312
+			data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '"
313
+			data-name="' . esc_attr($this->statement_descriptor) . '"
314
+			data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '"
315
+			data-image="' . esc_attr($this->stripe_checkout_image) . '"
316
+			data-bitcoin="' . esc_attr(($this->bitcoin && $this->capture) ? 'true' : 'false') . '"
317
+			data-locale="' . esc_attr(apply_filters('wc_stripe_checkout_locale', $this->get_locale())) . '"
318
+			data-three-d-secure="' . esc_attr($this->three_d_secure ? 'true' : 'false') . '"
319
+			data-allow-remember-me="' . esc_attr(apply_filters('wc_stripe_allow_remember_me', true) ? 'true' : 'false') . '">';
320
+
321
+		if ($this->description) {
322
+			if ($this->testmode) {
323 323
 				/* translators: link to Stripe testing page */
324
-				$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 <a href="%s" target="_blank">Testing Stripe documentation</a> for more card numbers.', 'woocommerce-gateway-stripe' ), 'https://stripe.com/docs/testing' );
325
-				$this->description  = trim( $this->description );
324
+				$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 <a href="%s" target="_blank">Testing Stripe documentation</a> for more card numbers.', 'woocommerce-gateway-stripe'), 'https://stripe.com/docs/testing');
325
+				$this->description  = trim($this->description);
326 326
 			}
327 327
 
328
-			echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ), $this->id );
328
+			echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($this->description)), $this->id);
329 329
 		}
330 330
 
331
-		if ( $display_tokenization ) {
331
+		if ($display_tokenization) {
332 332
 			$this->tokenization_script();
333 333
 			$this->saved_payment_methods();
334 334
 		}
335 335
 
336
-		if ( ! $this->stripe_checkout ) {
336
+		if ( ! $this->stripe_checkout) {
337 337
 			$this->elements_form();
338 338
 		}
339 339
 
340
-		if ( apply_filters( 'wc_stripe_display_save_payment_method_checkbox', $display_tokenization ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) ) {
340
+		if (apply_filters('wc_stripe_display_save_payment_method_checkbox', $display_tokenization) && ! is_add_payment_method_page() && ! isset($_GET['change_payment_method'])) {
341 341
 
342
-			if ( ! $this->stripe_checkout ) {
342
+			if ( ! $this->stripe_checkout) {
343 343
 				$this->save_payment_method_checkbox();
344
-			} elseif ( $this->stripe_checkout && isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
344
+			} elseif ($this->stripe_checkout && isset($_GET['pay_for_order']) && ! empty($_GET['key'])) {
345 345
 				$this->save_payment_method_checkbox();
346 346
 			}
347 347
 		}
@@ -359,12 +359,12 @@  discard block
 block discarded – undo
359 359
 	 */
360 360
 	public function elements_form() {
361 361
 		?>
362
-		<fieldset id="wc-<?php echo esc_attr( $this->id ); ?>-cc-form" class="wc-credit-card-form wc-payment-form" style="background:transparent;">
363
-			<?php do_action( 'woocommerce_credit_card_form_start', $this->id ); ?>
362
+		<fieldset id="wc-<?php echo esc_attr($this->id); ?>-cc-form" class="wc-credit-card-form wc-payment-form" style="background:transparent;">
363
+			<?php do_action('woocommerce_credit_card_form_start', $this->id); ?>
364 364
 
365
-			<?php if ( $this->inline_cc_form ) { ?>
365
+			<?php if ($this->inline_cc_form) { ?>
366 366
 				<label for="card-element">
367
-					<?php esc_html_e( 'Credit or debit card', 'woocommerce-gateway-stripe' ); ?>
367
+					<?php esc_html_e('Credit or debit card', 'woocommerce-gateway-stripe'); ?>
368 368
 				</label>
369 369
 
370 370
 				<div id="stripe-card-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
 				</div>
373 373
 			<?php } else { ?>
374 374
 				<div class="form-row form-row-wide">
375
-					<label><?php esc_html_e( 'Card Number', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
375
+					<label><?php esc_html_e('Card Number', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label>
376 376
 					<div class="stripe-card-group">
377 377
 						<div id="stripe-card-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
378 378
 						<!-- a Stripe Element will be inserted here. -->
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
 				</div>
384 384
 
385 385
 				<div class="form-row form-row-first">
386
-					<label><?php esc_html_e( 'Expiry Date', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
386
+					<label><?php esc_html_e('Expiry Date', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label>
387 387
 
388 388
 					<div id="stripe-exp-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
389 389
 					<!-- a Stripe Element will be inserted here. -->
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
 				</div>
392 392
 
393 393
 				<div class="form-row form-row-last">
394
-					<label><?php esc_html_e( 'Card Code (CVC)', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
394
+					<label><?php esc_html_e('Card Code (CVC)', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label>
395 395
 				<div id="stripe-cvc-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
396 396
 				<!-- a Stripe Element will be inserted here. -->
397 397
 				</div>
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
 
402 402
 			<!-- Used to display form errors -->
403 403
 			<div class="stripe-source-errors" role="alert"></div>
404
-			<?php do_action( 'woocommerce_credit_card_form_end', $this->id ); ?>
404
+			<?php do_action('woocommerce_credit_card_form_end', $this->id); ?>
405 405
 			<div class="clear"></div>
406 406
 		</fieldset>
407 407
 		<?php
@@ -414,13 +414,13 @@  discard block
 block discarded – undo
414 414
 	 * @version 3.1.0
415 415
 	 */
416 416
 	public function admin_scripts() {
417
-		if ( 'woocommerce_page_wc-settings' !== get_current_screen()->id ) {
417
+		if ('woocommerce_page_wc-settings' !== get_current_screen()->id) {
418 418
 			return;
419 419
 		}
420 420
 
421
-		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
421
+		$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
422 422
 
423
-		wp_enqueue_script( 'woocommerce_stripe_admin', plugins_url( 'assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array(), WC_STRIPE_VERSION, true );
423
+		wp_enqueue_script('woocommerce_stripe_admin', plugins_url('assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array(), WC_STRIPE_VERSION, true);
424 424
 	}
425 425
 
426 426
 	/**
@@ -432,44 +432,44 @@  discard block
 block discarded – undo
432 432
 	 * @version 4.0.0
433 433
 	 */
434 434
 	public function payment_scripts() {
435
-		if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) ) {
435
+		if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page() && ! isset($_GET['change_payment_method'])) {
436 436
 			return;
437 437
 		}
438 438
 
439 439
 		// If Stripe is not enabled bail.
440
-		if ( 'no' === $this->enabled ) {
440
+		if ('no' === $this->enabled) {
441 441
 			return;
442 442
 		}
443 443
 
444 444
 		// If keys are not set bail.
445
-		if ( ! $this->are_keys_set() ) {
446
-			WC_Stripe_Logger::log( 'Keys are not set correctly.' );
445
+		if ( ! $this->are_keys_set()) {
446
+			WC_Stripe_Logger::log('Keys are not set correctly.');
447 447
 			return;
448 448
 		}
449 449
 
450 450
 		// If no SSL bail.
451
-		if ( ! $this->testmode && ! is_ssl() ) {
452
-			WC_Stripe_Logger::log( 'Stripe live mode requires SSL.' );
451
+		if ( ! $this->testmode && ! is_ssl()) {
452
+			WC_Stripe_Logger::log('Stripe live mode requires SSL.');
453 453
 		}
454 454
 
455
-		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
455
+		$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
456 456
 
457
-		wp_register_style( 'stripe_styles', plugins_url( 'assets/css/stripe-styles.css', WC_STRIPE_MAIN_FILE ), array(), WC_STRIPE_VERSION );
458
-		wp_enqueue_style( 'stripe_styles' );
459
-		wp_register_script( 'stripe_checkout', 'https://checkout.stripe.com/checkout.js', '', WC_STRIPE_VERSION, true );
460
-		wp_register_script( 'stripe', 'https://js.stripe.com/v3/', '', '3.0', true );
461
-		wp_register_script( 'woocommerce_stripe', plugins_url( 'assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array( 'jquery-payment', 'stripe' ), WC_STRIPE_VERSION, true );
457
+		wp_register_style('stripe_styles', plugins_url('assets/css/stripe-styles.css', WC_STRIPE_MAIN_FILE), array(), WC_STRIPE_VERSION);
458
+		wp_enqueue_style('stripe_styles');
459
+		wp_register_script('stripe_checkout', 'https://checkout.stripe.com/checkout.js', '', WC_STRIPE_VERSION, true);
460
+		wp_register_script('stripe', 'https://js.stripe.com/v3/', '', '3.0', true);
461
+		wp_register_script('woocommerce_stripe', plugins_url('assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array('jquery-payment', 'stripe'), WC_STRIPE_VERSION, true);
462 462
 
463 463
 		$stripe_params = array(
464 464
 			'key'                  => $this->publishable_key,
465
-			'i18n_terms'           => __( 'Please accept the terms and conditions first', 'woocommerce-gateway-stripe' ),
466
-			'i18n_required_fields' => __( 'Please fill in required checkout fields first', 'woocommerce-gateway-stripe' ),
465
+			'i18n_terms'           => __('Please accept the terms and conditions first', 'woocommerce-gateway-stripe'),
466
+			'i18n_required_fields' => __('Please fill in required checkout fields first', 'woocommerce-gateway-stripe'),
467 467
 		);
468 468
 
469 469
 		// If we're on the pay page we need to pass stripe.js the address of the order.
470
-		if ( isset( $_GET['pay_for_order'] ) && 'true' === $_GET['pay_for_order'] ) {
471
-			$order_id = wc_get_order_id_by_order_key( urldecode( $_GET['key'] ) );
472
-			$order    = wc_get_order( $order_id );
470
+		if (isset($_GET['pay_for_order']) && 'true' === $_GET['pay_for_order']) {
471
+			$order_id = wc_get_order_id_by_order_key(urldecode($_GET['key']));
472
+			$order    = wc_get_order($order_id);
473 473
 
474 474
 			$stripe_params['billing_first_name'] = WC_Stripe_Helper::is_pre_30() ? $order->billing_first_name : $order->get_billing_first_name();
475 475
 			$stripe_params['billing_last_name']  = WC_Stripe_Helper::is_pre_30() ? $order->billing_last_name : $order->get_billing_last_name();
@@ -481,38 +481,38 @@  discard block
 block discarded – undo
481 481
 			$stripe_params['billing_country']    = WC_Stripe_Helper::is_pre_30() ? $order->billing_country : $order->get_billing_country();
482 482
 		}
483 483
 
484
-		$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' );
485
-		$stripe_params['no_sepa_owner_msg']                       = __( 'Please enter your IBAN account name.', 'woocommerce-gateway-stripe' );
486
-		$stripe_params['no_sepa_iban_msg']                        = __( 'Please enter your IBAN account number.', 'woocommerce-gateway-stripe' );
487
-		$stripe_params['sepa_mandate_notification']               = apply_filters( 'wc_stripe_sepa_mandate_notification', 'email' );
488
-		$stripe_params['allow_prepaid_card']                      = apply_filters( 'wc_stripe_allow_prepaid_card', true ) ? 'yes' : 'no';
484
+		$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');
485
+		$stripe_params['no_sepa_owner_msg']                       = __('Please enter your IBAN account name.', 'woocommerce-gateway-stripe');
486
+		$stripe_params['no_sepa_iban_msg']                        = __('Please enter your IBAN account number.', 'woocommerce-gateway-stripe');
487
+		$stripe_params['sepa_mandate_notification']               = apply_filters('wc_stripe_sepa_mandate_notification', 'email');
488
+		$stripe_params['allow_prepaid_card']                      = apply_filters('wc_stripe_allow_prepaid_card', true) ? 'yes' : 'no';
489 489
 		$stripe_params['inline_cc_form']                          = $this->inline_cc_form ? 'yes' : 'no';
490
-		$stripe_params['stripe_checkout_require_billing_address'] = apply_filters( 'wc_stripe_checkout_require_billing_address', false ) ? 'yes' : 'no';
491
-		$stripe_params['is_checkout']                             = ( is_checkout() && empty( $_GET['pay_for_order'] ) ) ? 'yes' : 'no';
490
+		$stripe_params['stripe_checkout_require_billing_address'] = apply_filters('wc_stripe_checkout_require_billing_address', false) ? 'yes' : 'no';
491
+		$stripe_params['is_checkout']                             = (is_checkout() && empty($_GET['pay_for_order'])) ? 'yes' : 'no';
492 492
 		$stripe_params['return_url']                              = $this->get_stripe_return_url();
493
-		$stripe_params['ajaxurl']                                 = WC_AJAX::get_endpoint( '%%endpoint%%' );
494
-		$stripe_params['stripe_nonce']                            = wp_create_nonce( '_wc_stripe_nonce' );
493
+		$stripe_params['ajaxurl']                                 = WC_AJAX::get_endpoint('%%endpoint%%');
494
+		$stripe_params['stripe_nonce']                            = wp_create_nonce('_wc_stripe_nonce');
495 495
 		$stripe_params['statement_descriptor']                    = $this->statement_descriptor;
496
-		$stripe_params['elements_options']                        = apply_filters( 'wc_stripe_elements_options', array() );
496
+		$stripe_params['elements_options']                        = apply_filters('wc_stripe_elements_options', array());
497 497
 		$stripe_params['is_stripe_checkout']                      = $this->stripe_checkout ? 'yes' : 'no';
498
-		$stripe_params['is_change_payment_page']                  = isset( $_GET['change_payment_method'] ) ? 'yes' : 'no';
499
-		$stripe_params['is_add_payment_page']                     = is_wc_endpoint_url( 'add-payment-method' ) ? 'yes' : 'no';
500
-		$stripe_params['is_pay_for_order_page']                   = is_wc_endpoint_url( 'order-pay' ) ? 'yes' : 'no';
501
-		$stripe_params['elements_styling']                        = apply_filters( 'wc_stripe_elements_styling', false );
502
-		$stripe_params['elements_classes']                        = apply_filters( 'wc_stripe_elements_classes', false );
498
+		$stripe_params['is_change_payment_page']                  = isset($_GET['change_payment_method']) ? 'yes' : 'no';
499
+		$stripe_params['is_add_payment_page']                     = is_wc_endpoint_url('add-payment-method') ? 'yes' : 'no';
500
+		$stripe_params['is_pay_for_order_page']                   = is_wc_endpoint_url('order-pay') ? 'yes' : 'no';
501
+		$stripe_params['elements_styling']                        = apply_filters('wc_stripe_elements_styling', false);
502
+		$stripe_params['elements_classes']                        = apply_filters('wc_stripe_elements_classes', false);
503 503
 
504 504
 		// merge localized messages to be use in JS
505
-		$stripe_params = array_merge( $stripe_params, WC_Stripe_Helper::get_localized_messages() );
505
+		$stripe_params = array_merge($stripe_params, WC_Stripe_Helper::get_localized_messages());
506 506
 
507
-		wp_localize_script( 'woocommerce_stripe', 'wc_stripe_params', apply_filters( 'wc_stripe_params', $stripe_params ) );
508
-		wp_localize_script( 'woocommerce_stripe_checkout', 'wc_stripe_params', apply_filters( 'wc_stripe_params', $stripe_params ) );
507
+		wp_localize_script('woocommerce_stripe', 'wc_stripe_params', apply_filters('wc_stripe_params', $stripe_params));
508
+		wp_localize_script('woocommerce_stripe_checkout', 'wc_stripe_params', apply_filters('wc_stripe_params', $stripe_params));
509 509
 
510
-		if ( $this->stripe_checkout ) {
511
-			wp_enqueue_script( 'stripe_checkout' );
510
+		if ($this->stripe_checkout) {
511
+			wp_enqueue_script('stripe_checkout');
512 512
 		}
513 513
 
514 514
 		$this->tokenization_script();
515
-		wp_enqueue_script( 'woocommerce_stripe' );
515
+		wp_enqueue_script('woocommerce_stripe');
516 516
 	}
517 517
 
518 518
 	/**
@@ -520,71 +520,71 @@  discard block
 block discarded – undo
520 520
 	 *
521 521
 	 * @since 4.1.0
522 522
 	 */
523
-	public function stripe_checkout_receipt_page( $order_id ) {
524
-		if ( ! $this->stripe_checkout ) {
523
+	public function stripe_checkout_receipt_page($order_id) {
524
+		if ( ! $this->stripe_checkout) {
525 525
 			return;
526 526
 		}
527 527
 
528 528
 		$user                 = wp_get_current_user();
529 529
 		$total                = WC()->cart->total;
530 530
 		$user_email           = '';
531
-		$display_tokenization = $this->supports( 'tokenization' ) && $this->saved_cards;
531
+		$display_tokenization = $this->supports('tokenization') && $this->saved_cards;
532 532
 
533 533
 		// If paying from order, we need to get total from order not cart.
534
-		if ( ! empty( $_GET['key'] ) ) {
535
-			$order      = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) );
534
+		if ( ! empty($_GET['key'])) {
535
+			$order      = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key'])));
536 536
 			$total      = $order->get_total();
537 537
 			$user_email = WC_Stripe_Helper::is_pre_30() ? $order->billing_email : $order->get_billing_email();
538 538
 		} else {
539
-			if ( $user->ID ) {
540
-				$user_email = get_user_meta( $user->ID, 'billing_email', true );
539
+			if ($user->ID) {
540
+				$user_email = get_user_meta($user->ID, 'billing_email', true);
541 541
 				$user_email = $user_email ? $user_email : $user->user_email;
542 542
 			}
543 543
 		}
544 544
 
545 545
 		ob_start();
546 546
 
547
-		do_action( 'wc_stripe_checkout_receipt_page_before_form' );
547
+		do_action('wc_stripe_checkout_receipt_page_before_form');
548 548
 
549
-		echo '<form method="post" class="woocommerce-checkout" action="' . WC()->api_request_url( get_class( $this ) ) . '">';
549
+		echo '<form method="post" class="woocommerce-checkout" action="' . WC()->api_request_url(get_class($this)) . '">';
550 550
 		echo '<div
551 551
 			id="stripe-payment-data"
552
-			data-panel-label="' . esc_attr( apply_filters( 'wc_stripe_checkout_label', '' ) ) . '"
553
-			data-description="' . esc_attr( strip_tags( $this->stripe_checkout_description ) ) . '"
554
-			data-email="' . esc_attr( $user_email ) . '"
555
-			data-verify-zip="' . esc_attr( apply_filters( 'wc_stripe_checkout_verify_zip', false ) ? 'true' : 'false' ) . '"
556
-			data-billing-address="' . esc_attr( apply_filters( 'wc_stripe_checkout_require_billing_address', false ) ? 'true' : 'false' ) . '"
557
-			data-shipping-address="' . esc_attr( apply_filters( 'wc_stripe_checkout_require_shipping_address', false ) ? 'true' : 'false' ) . '" 
558
-			data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
559
-			data-name="' . esc_attr( $this->statement_descriptor ) . '"
560
-			data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '"
561
-			data-image="' . esc_attr( $this->stripe_checkout_image ) . '"
562
-			data-bitcoin="' . esc_attr( ( $this->bitcoin && $this->capture ) ? 'true' : 'false' ) . '"
563
-			data-locale="' . esc_attr( apply_filters( 'wc_stripe_checkout_locale', $this->get_locale() ) ) . '"
564
-			data-three-d-secure="' . esc_attr( $this->three_d_secure ? 'true' : 'false' ) . '"
565
-			data-allow-remember-me="' . esc_attr( apply_filters( 'wc_stripe_allow_remember_me', true ) ? 'true' : 'false' ) . '">';
566
-		echo '<input type="hidden" name="order_id" value="' . esc_attr( $order_id ) . '" />';
552
+			data-panel-label="' . esc_attr(apply_filters('wc_stripe_checkout_label', '')) . '"
553
+			data-description="' . esc_attr(strip_tags($this->stripe_checkout_description)) . '"
554
+			data-email="' . esc_attr($user_email) . '"
555
+			data-verify-zip="' . esc_attr(apply_filters('wc_stripe_checkout_verify_zip', false) ? 'true' : 'false') . '"
556
+			data-billing-address="' . esc_attr(apply_filters('wc_stripe_checkout_require_billing_address', false) ? 'true' : 'false') . '"
557
+			data-shipping-address="' . esc_attr(apply_filters('wc_stripe_checkout_require_shipping_address', false) ? 'true' : 'false') . '" 
558
+			data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '"
559
+			data-name="' . esc_attr($this->statement_descriptor) . '"
560
+			data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '"
561
+			data-image="' . esc_attr($this->stripe_checkout_image) . '"
562
+			data-bitcoin="' . esc_attr(($this->bitcoin && $this->capture) ? 'true' : 'false') . '"
563
+			data-locale="' . esc_attr(apply_filters('wc_stripe_checkout_locale', $this->get_locale())) . '"
564
+			data-three-d-secure="' . esc_attr($this->three_d_secure ? 'true' : 'false') . '"
565
+			data-allow-remember-me="' . esc_attr(apply_filters('wc_stripe_allow_remember_me', true) ? 'true' : 'false') . '">';
566
+		echo '<input type="hidden" name="order_id" value="' . esc_attr($order_id) . '" />';
567 567
 		echo '<input type="hidden" name="stripe_checkout_order" value="yes" />';
568 568
 
569 569
 		if (
570
-			apply_filters( 'wc_stripe_display_save_payment_method_checkbox', $display_tokenization ) &&
571
-			( ! function_exists( 'wcs_order_contains_subscription' ) || ( function_exists( 'wcs_order_contains_subscription' ) && ! WC_Subscriptions_Cart::cart_contains_subscription() ) ) &&
572
-			( ! WC_Stripe_Helper::is_pre_orders_exists() || ( WC_Stripe_Helper::is_pre_orders_exists() && ! $this->pre_orders->is_pre_order( $order_id ) ) )
570
+			apply_filters('wc_stripe_display_save_payment_method_checkbox', $display_tokenization) &&
571
+			( ! function_exists('wcs_order_contains_subscription') || (function_exists('wcs_order_contains_subscription') && ! WC_Subscriptions_Cart::cart_contains_subscription())) &&
572
+			( ! WC_Stripe_Helper::is_pre_orders_exists() || (WC_Stripe_Helper::is_pre_orders_exists() && ! $this->pre_orders->is_pre_order($order_id)))
573 573
 		) {
574 574
 			$this->save_payment_method_checkbox();
575 575
 		}
576 576
 
577
-		wp_nonce_field( 'stripe-checkout-process', 'stripe_checkout_process_nonce' );
577
+		wp_nonce_field('stripe-checkout-process', 'stripe_checkout_process_nonce');
578 578
 
579
-		do_action( 'wc_stripe_checkout_receipt_page_before_form_submit' );
579
+		do_action('wc_stripe_checkout_receipt_page_before_form_submit');
580 580
 
581
-		echo '<button type="submit" class="wc-stripe-checkout-button">' . __( 'Place Order', 'woocommerce-gateway-stripe' ) . '</button>';
581
+		echo '<button type="submit" class="wc-stripe-checkout-button">' . __('Place Order', 'woocommerce-gateway-stripe') . '</button>';
582 582
 
583
-		do_action( 'wc_stripe_checkout_receipt_page_after_form_submit' );
583
+		do_action('wc_stripe_checkout_receipt_page_after_form_submit');
584 584
 
585 585
 		echo '</form>';
586 586
 
587
-		do_action( 'wc_stripe_checkout_receipt_page_after_form' );
587
+		do_action('wc_stripe_checkout_receipt_page_after_form');
588 588
 
589 589
 		echo '</div>';
590 590
 
@@ -597,32 +597,32 @@  discard block
 block discarded – undo
597 597
 	 * @since 4.1.0
598 598
 	 */
599 599
 	public function stripe_checkout_return_handler() {
600
-		if ( ! $this->stripe_checkout ) {
600
+		if ( ! $this->stripe_checkout) {
601 601
 			return;
602 602
 		}
603 603
 
604
-		if ( ! wp_verify_nonce( $_POST['stripe_checkout_process_nonce'], 'stripe-checkout-process' ) ) {
604
+		if ( ! wp_verify_nonce($_POST['stripe_checkout_process_nonce'], 'stripe-checkout-process')) {
605 605
 			return;
606 606
 		}
607 607
 
608
-		$order_id = wc_clean( $_POST['order_id'] );
609
-		$order    = wc_get_order( $order_id );
608
+		$order_id = wc_clean($_POST['order_id']);
609
+		$order    = wc_get_order($order_id);
610 610
 
611
-		do_action( 'wc_stripe_checkout_return_handler', $order );
611
+		do_action('wc_stripe_checkout_return_handler', $order);
612 612
 
613
-		if ( WC_Stripe_Helper::is_pre_orders_exists() && $this->pre_orders->is_pre_order( $order_id ) && WC_Pre_Orders_Order::order_requires_payment_tokenization( $order_id ) ) {
614
-			$result = $this->pre_orders->process_pre_order( $order_id );
613
+		if (WC_Stripe_Helper::is_pre_orders_exists() && $this->pre_orders->is_pre_order($order_id) && WC_Pre_Orders_Order::order_requires_payment_tokenization($order_id)) {
614
+			$result = $this->pre_orders->process_pre_order($order_id);
615 615
 		} else {
616
-			$result = $this->process_payment( $order_id );
616
+			$result = $this->process_payment($order_id);
617 617
 		}
618 618
 
619
-		if ( 'success' === $result['result'] ) {
620
-			wp_redirect( $result['redirect'] );
619
+		if ('success' === $result['result']) {
620
+			wp_redirect($result['redirect']);
621 621
 			exit;
622 622
 		}
623 623
 
624 624
 		// Redirects back to pay order page.
625
-		wp_safe_redirect( $order->get_checkout_payment_url( true ) );
625
+		wp_safe_redirect($order->get_checkout_payment_url(true));
626 626
 		exit;
627 627
 	}
628 628
 
@@ -635,9 +635,9 @@  discard block
 block discarded – undo
635 635
 	public function maybe_redirect_stripe_checkout() {
636 636
 		return (
637 637
 			$this->stripe_checkout &&
638
-			! isset( $_POST['stripe_checkout_order'] ) &&
638
+			! isset($_POST['stripe_checkout_order']) &&
639 639
 			! $this->is_using_saved_payment_method() &&
640
-			! is_wc_endpoint_url( 'order-pay' )
640
+			! is_wc_endpoint_url('order-pay')
641 641
 		);
642 642
 	}
643 643
 
@@ -655,54 +655,54 @@  discard block
 block discarded – undo
655 655
 	 *
656 656
 	 * @return array|void
657 657
 	 */
658
-	public function process_payment( $order_id, $retry = true, $force_save_source = false, $previous_error = false ) {
658
+	public function process_payment($order_id, $retry = true, $force_save_source = false, $previous_error = false) {
659 659
 		try {
660
-			$order = wc_get_order( $order_id );
660
+			$order = wc_get_order($order_id);
661 661
 
662
-			if ( $this->maybe_redirect_stripe_checkout() ) {
663
-				WC_Stripe_Logger::log( sprintf( 'Redirecting to Stripe Checkout page for order %s', $order_id ) );
662
+			if ($this->maybe_redirect_stripe_checkout()) {
663
+				WC_Stripe_Logger::log(sprintf('Redirecting to Stripe Checkout page for order %s', $order_id));
664 664
 
665 665
 				return array(
666 666
 					'result'   => 'success',
667
-					'redirect' => $order->get_checkout_payment_url( true ),
667
+					'redirect' => $order->get_checkout_payment_url(true),
668 668
 				);
669 669
 			}
670 670
 
671
-			if ( $this->maybe_process_pre_orders( $order_id ) ) {
672
-				return $this->pre_orders->process_pre_order( $order_id );
671
+			if ($this->maybe_process_pre_orders($order_id)) {
672
+				return $this->pre_orders->process_pre_order($order_id);
673 673
 			}
674 674
 
675 675
 			// This comes from the create account checkbox in the checkout page.
676
-			$create_account = ! empty( $_POST['createaccount'] ) ? true : false;
676
+			$create_account = ! empty($_POST['createaccount']) ? true : false;
677 677
 
678
-			if ( $create_account ) {
678
+			if ($create_account) {
679 679
 				$new_customer_id     = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id();
680
-				$new_stripe_customer = new WC_Stripe_Customer( $new_customer_id );
680
+				$new_stripe_customer = new WC_Stripe_Customer($new_customer_id);
681 681
 				$new_stripe_customer->create_customer();
682 682
 			}
683 683
 
684
-			$prepared_source = $this->prepare_source( get_current_user_id(), $force_save_source );
684
+			$prepared_source = $this->prepare_source(get_current_user_id(), $force_save_source);
685 685
 			$source_object   = $prepared_source->source_object;
686 686
 
687 687
 			// Check if we don't allow prepaid credit cards.
688
-			if ( ! apply_filters( 'wc_stripe_allow_prepaid_card', true ) && $this->is_prepaid_card( $source_object ) ) {
689
-				$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' );
690
-				throw new WC_Stripe_Exception( print_r( $source_object, true ), $localized_message );
688
+			if ( ! apply_filters('wc_stripe_allow_prepaid_card', true) && $this->is_prepaid_card($source_object)) {
689
+				$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');
690
+				throw new WC_Stripe_Exception(print_r($source_object, true), $localized_message);
691 691
 			}
692 692
 
693
-			if ( empty( $prepared_source->source ) ) {
694
-				$localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
695
-				throw new WC_Stripe_Exception( print_r( $prepared_source, true ), $localized_message );
693
+			if (empty($prepared_source->source)) {
694
+				$localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe');
695
+				throw new WC_Stripe_Exception(print_r($prepared_source, true), $localized_message);
696 696
 			}
697 697
 
698
-			$this->save_source_to_order( $order, $prepared_source );
698
+			$this->save_source_to_order($order, $prepared_source);
699 699
 
700 700
 			// Result from Stripe API request.
701 701
 			$response = null;
702 702
 
703
-			if ( $order->get_total() > 0 ) {
703
+			if ($order->get_total() > 0) {
704 704
 				// This will throw exception if not valid.
705
-				$this->validate_minimum_order_amount( $order );
705
+				$this->validate_minimum_order_amount($order);
706 706
 
707 707
 				/*
708 708
 				 * Check if card 3DS is required or optional with 3DS setting.
@@ -711,104 +711,104 @@  discard block
 block discarded – undo
711 711
 				 * Note that if we need to save source, the original source must be first
712 712
 				 * attached to a customer in Stripe before it can be charged.
713 713
 				 */
714
-				if ( $this->is_3ds_required( $source_object ) ) {
715
-					$response = $this->create_3ds_source( $order, $source_object );
714
+				if ($this->is_3ds_required($source_object)) {
715
+					$response = $this->create_3ds_source($order, $source_object);
716 716
 
717
-					if ( ! empty( $response->error ) ) {
717
+					if ( ! empty($response->error)) {
718 718
 						$localized_message = $response->error->message;
719 719
 
720
-						$order->add_order_note( $localized_message );
720
+						$order->add_order_note($localized_message);
721 721
 
722
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
722
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
723 723
 					}
724 724
 
725 725
 					// Update order meta with 3DS source.
726
-					if ( WC_Stripe_Helper::is_pre_30() ) {
727
-						update_post_meta( $order_id, '_stripe_source_id', $response->id );
726
+					if (WC_Stripe_Helper::is_pre_30()) {
727
+						update_post_meta($order_id, '_stripe_source_id', $response->id);
728 728
 					} else {
729
-						$order->update_meta_data( '_stripe_source_id', $response->id );
729
+						$order->update_meta_data('_stripe_source_id', $response->id);
730 730
 						$order->save();
731 731
 					}
732 732
 
733
-					WC_Stripe_Logger::log( 'Info: Redirecting to 3DS...' );
733
+					WC_Stripe_Logger::log('Info: Redirecting to 3DS...');
734 734
 
735 735
 					return array(
736 736
 						'result'   => 'success',
737
-						'redirect' => esc_url_raw( $response->redirect->url ),
737
+						'redirect' => esc_url_raw($response->redirect->url),
738 738
 					);
739 739
 				}
740 740
 
741
-				WC_Stripe_Logger::log( "Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}" );
741
+				WC_Stripe_Logger::log("Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}");
742 742
 
743 743
 				/* If we're doing a retry and source is chargeable, we need to pass
744 744
 				 * a different idempotency key and retry for success.
745 745
 				 */
746
-				if ( $this->need_update_idempotency_key( $source_object, $previous_error ) ) {
747
-					add_filter( 'wc_stripe_idempotency_key', array( $this, 'change_idempotency_key' ), 10, 2 );
746
+				if ($this->need_update_idempotency_key($source_object, $previous_error)) {
747
+					add_filter('wc_stripe_idempotency_key', array($this, 'change_idempotency_key'), 10, 2);
748 748
 				}
749 749
 
750 750
 				// Make the request.
751
-				$response = WC_Stripe_API::request( $this->generate_payment_request( $order, $prepared_source ) );
751
+				$response = WC_Stripe_API::request($this->generate_payment_request($order, $prepared_source));
752 752
 
753
-				if ( ! empty( $response->error ) ) {
753
+				if ( ! empty($response->error)) {
754 754
 					// Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without.
755
-					if ( $this->is_no_such_customer_error( $response->error ) ) {
756
-						if ( WC_Stripe_Helper::is_pre_30() ) {
757
-							delete_user_meta( $order->customer_user, '_stripe_customer_id' );
758
-							delete_post_meta( $order_id, '_stripe_customer_id' );
755
+					if ($this->is_no_such_customer_error($response->error)) {
756
+						if (WC_Stripe_Helper::is_pre_30()) {
757
+							delete_user_meta($order->customer_user, '_stripe_customer_id');
758
+							delete_post_meta($order_id, '_stripe_customer_id');
759 759
 						} else {
760
-							delete_user_meta( $order->get_customer_id(), '_stripe_customer_id' );
761
-							$order->delete_meta_data( '_stripe_customer_id' );
760
+							delete_user_meta($order->get_customer_id(), '_stripe_customer_id');
761
+							$order->delete_meta_data('_stripe_customer_id');
762 762
 							$order->save();
763 763
 						}
764 764
 					}
765 765
 
766
-					if ( $this->is_no_such_token_error( $response->error ) && $prepared_source->token_id ) {
766
+					if ($this->is_no_such_token_error($response->error) && $prepared_source->token_id) {
767 767
 						// Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message.
768
-						$wc_token = WC_Payment_Tokens::get( $prepared_source->token_id );
768
+						$wc_token = WC_Payment_Tokens::get($prepared_source->token_id);
769 769
 						$wc_token->delete();
770
-						$localized_message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' );
771
-						$order->add_order_note( $localized_message );
772
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
770
+						$localized_message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe');
771
+						$order->add_order_note($localized_message);
772
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
773 773
 					}
774 774
 
775 775
 					// We want to retry.
776
-					if ( $this->is_retryable_error( $response->error ) ) {
777
-						if ( $retry ) {
776
+					if ($this->is_retryable_error($response->error)) {
777
+						if ($retry) {
778 778
 							// Don't do anymore retries after this.
779
-							if ( 5 <= $this->retry_interval ) {
780
-								return $this->process_payment( $order_id, false, $force_save_source, $response->error );
779
+							if (5 <= $this->retry_interval) {
780
+								return $this->process_payment($order_id, false, $force_save_source, $response->error);
781 781
 							}
782 782
 
783
-							sleep( $this->retry_interval );
783
+							sleep($this->retry_interval);
784 784
 
785 785
 							$this->retry_interval++;
786 786
 
787
-							return $this->process_payment( $order_id, true, $force_save_source, $response->error );
787
+							return $this->process_payment($order_id, true, $force_save_source, $response->error);
788 788
 						} else {
789
-							$localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' );
790
-							$order->add_order_note( $localized_message );
791
-							throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
789
+							$localized_message = __('Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe');
790
+							$order->add_order_note($localized_message);
791
+							throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
792 792
 						}
793 793
 					}
794 794
 
795 795
 					$localized_messages = WC_Stripe_Helper::get_localized_messages();
796 796
 
797
-					if ( 'card_error' === $response->error->type ) {
798
-						$localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
797
+					if ('card_error' === $response->error->type) {
798
+						$localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message;
799 799
 					} else {
800
-						$localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
800
+						$localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message;
801 801
 					}
802 802
 
803
-					$order->add_order_note( $localized_message );
803
+					$order->add_order_note($localized_message);
804 804
 
805
-					throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
805
+					throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
806 806
 				}
807 807
 
808
-				do_action( 'wc_gateway_stripe_process_payment', $response, $order );
808
+				do_action('wc_gateway_stripe_process_payment', $response, $order);
809 809
 
810 810
 				// Process valid response.
811
-				$this->process_response( $response, $order );
811
+				$this->process_response($response, $order);
812 812
 			} else {
813 813
 				$order->payment_complete();
814 814
 			}
@@ -819,20 +819,20 @@  discard block
 block discarded – undo
819 819
 			// Return thank you page redirect.
820 820
 			return array(
821 821
 				'result'   => 'success',
822
-				'redirect' => $this->get_return_url( $order ),
822
+				'redirect' => $this->get_return_url($order),
823 823
 			);
824 824
 
825
-		} catch ( WC_Stripe_Exception $e ) {
826
-			wc_add_notice( $e->getLocalizedMessage(), 'error' );
827
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
825
+		} catch (WC_Stripe_Exception $e) {
826
+			wc_add_notice($e->getLocalizedMessage(), 'error');
827
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
828 828
 
829
-			do_action( 'wc_gateway_stripe_process_payment_error', $e, $order );
829
+			do_action('wc_gateway_stripe_process_payment_error', $e, $order);
830 830
 
831 831
 			/* translators: error message */
832
-			$order->update_status( 'failed' );
832
+			$order->update_status('failed');
833 833
 
834
-			if ( $order->has_status( array( 'pending', 'failed' ) ) ) {
835
-				$this->send_failed_order_email( $order_id );
834
+			if ($order->has_status(array('pending', 'failed'))) {
835
+				$this->send_failed_order_email($order_id);
836 836
 			}
837 837
 
838 838
 			return array(
@@ -849,17 +849,17 @@  discard block
 block discarded – undo
849 849
 	 *
850 850
 	 * @param int $order_id
851 851
 	 */
852
-	public function display_order_fee( $order_id ) {
853
-		if ( apply_filters( 'wc_stripe_hide_display_order_fee', false, $order_id ) ) {
852
+	public function display_order_fee($order_id) {
853
+		if (apply_filters('wc_stripe_hide_display_order_fee', false, $order_id)) {
854 854
 			return;
855 855
 		}
856 856
 
857
-		$order = wc_get_order( $order_id );
857
+		$order = wc_get_order($order_id);
858 858
 
859
-		$fee      = WC_Stripe_Helper::get_stripe_fee( $order );
860
-		$currency = WC_Stripe_Helper::get_stripe_currency( $order );
859
+		$fee      = WC_Stripe_Helper::get_stripe_fee($order);
860
+		$currency = WC_Stripe_Helper::get_stripe_currency($order);
861 861
 
862
-		if ( ! $fee || ! $currency ) {
862
+		if ( ! $fee || ! $currency) {
863 863
 			return;
864 864
 		}
865 865
 
@@ -867,12 +867,12 @@  discard block
 block discarded – undo
867 867
 
868 868
 		<tr>
869 869
 			<td class="label stripe-fee">
870
-				<?php echo wc_help_tip( __( 'This represents the fee Stripe collects for the transaction.', 'woocommerce-gateway-stripe' ) ); ?>
871
-				<?php esc_html_e( 'Stripe Fee:', 'woocommerce-gateway-stripe' ); ?>
870
+				<?php echo wc_help_tip(__('This represents the fee Stripe collects for the transaction.', 'woocommerce-gateway-stripe')); ?>
871
+				<?php esc_html_e('Stripe Fee:', 'woocommerce-gateway-stripe'); ?>
872 872
 			</td>
873 873
 			<td width="1%"></td>
874 874
 			<td class="total">
875
-				-&nbsp;<?php echo wc_price( $fee, array( 'currency' => $currency ) ); ?>
875
+				-&nbsp;<?php echo wc_price($fee, array('currency' => $currency)); ?>
876 876
 			</td>
877 877
 		</tr>
878 878
 
@@ -886,17 +886,17 @@  discard block
 block discarded – undo
886 886
 	 *
887 887
 	 * @param int $order_id
888 888
 	 */
889
-	public function display_order_payout( $order_id ) {
890
-		if ( apply_filters( 'wc_stripe_hide_display_order_payout', false, $order_id ) ) {
889
+	public function display_order_payout($order_id) {
890
+		if (apply_filters('wc_stripe_hide_display_order_payout', false, $order_id)) {
891 891
 			return;
892 892
 		}
893 893
 
894
-		$order = wc_get_order( $order_id );
894
+		$order = wc_get_order($order_id);
895 895
 
896
-		$net      = WC_Stripe_Helper::get_stripe_net( $order );
897
-		$currency = WC_Stripe_Helper::get_stripe_currency( $order );
896
+		$net      = WC_Stripe_Helper::get_stripe_net($order);
897
+		$currency = WC_Stripe_Helper::get_stripe_currency($order);
898 898
 
899
-		if ( ! $net || ! $currency ) {
899
+		if ( ! $net || ! $currency) {
900 900
 			return;
901 901
 		}
902 902
 
@@ -904,12 +904,12 @@  discard block
 block discarded – undo
904 904
 
905 905
 		<tr>
906 906
 			<td class="label stripe-payout">
907
-				<?php echo wc_help_tip( __( 'This represents the net total that will be credited to your Stripe bank account. This may be in the currency that is set in your Stripe account.', 'woocommerce-gateway-stripe' ) ); ?>
908
-				<?php esc_html_e( 'Stripe Payout:', 'woocommerce-gateway-stripe' ); ?>
907
+				<?php echo wc_help_tip(__('This represents the net total that will be credited to your Stripe bank account. This may be in the currency that is set in your Stripe account.', 'woocommerce-gateway-stripe')); ?>
908
+				<?php esc_html_e('Stripe Payout:', 'woocommerce-gateway-stripe'); ?>
909 909
 			</td>
910 910
 			<td width="1%"></td>
911 911
 			<td class="total">
912
-				<?php echo wc_price( $net, array( 'currency' => $currency ) ); ?>
912
+				<?php echo wc_price($net, array('currency' => $currency)); ?>
913 913
 			</td>
914 914
 		</tr>
915 915
 
Please login to merge, or discard this patch.
includes/admin/class-wc-stripe-admin-notices.php 1 patch
Spacing   +80 added lines, -80 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,8 +21,8 @@  discard block
 block discarded – undo
21 21
 	 * @since 4.1.0
22 22
 	 */
23 23
 	public function __construct() {
24
-		add_action( 'admin_notices', array( $this, 'admin_notices' ) );
25
-		add_action( 'wp_loaded', array( $this, 'hide_notices' ) );
24
+		add_action('admin_notices', array($this, 'admin_notices'));
25
+		add_action('wp_loaded', array($this, 'hide_notices'));
26 26
 	}
27 27
 
28 28
 	/**
@@ -31,8 +31,8 @@  discard block
 block discarded – undo
31 31
 	 * @since 1.0.0
32 32
 	 * @version 4.0.0
33 33
 	 */
34
-	public function add_admin_notice( $slug, $class, $message, $dismissible = false ) {
35
-		$this->notices[ $slug ] = array(
34
+	public function add_admin_notice($slug, $class, $message, $dismissible = false) {
35
+		$this->notices[$slug] = array(
36 36
 			'class'       => $class,
37 37
 			'message'     => $message,
38 38
 			'dismissible' => $dismissible,
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 	 * @version 4.0.0
47 47
 	 */
48 48
 	public function admin_notices() {
49
-		if ( ! current_user_can( 'manage_woocommerce' ) ) {
49
+		if ( ! current_user_can('manage_woocommerce')) {
50 50
 			return;
51 51
 		}
52 52
 
@@ -56,17 +56,17 @@  discard block
 block discarded – undo
56 56
 		// All other payment methods.
57 57
 		$this->payment_methods_check_environment();
58 58
 
59
-		foreach ( (array) $this->notices as $notice_key => $notice ) {
60
-			echo '<div class="' . esc_attr( $notice['class'] ) . '" style="position:relative;">';
59
+		foreach ((array) $this->notices as $notice_key => $notice) {
60
+			echo '<div class="' . esc_attr($notice['class']) . '" style="position:relative;">';
61 61
 
62
-			if ( $notice['dismissible'] ) {
62
+			if ($notice['dismissible']) {
63 63
 			?>
64
-				<a href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'wc-stripe-hide-notice', $notice_key ), 'wc_stripe_hide_notices_nonce', '_wc_stripe_notice_nonce' ) ); ?>" class="woocommerce-message-close notice-dismiss" style="position:absolute;right:1px;padding:9px;text-decoration:none;"></a>
64
+				<a href="<?php echo esc_url(wp_nonce_url(add_query_arg('wc-stripe-hide-notice', $notice_key), 'wc_stripe_hide_notices_nonce', '_wc_stripe_notice_nonce')); ?>" class="woocommerce-message-close notice-dismiss" style="position:absolute;right:1px;padding:9px;text-decoration:none;"></a>
65 65
 			<?php
66 66
 			}
67 67
 
68 68
 			echo '<p>';
69
-			echo wp_kses( $notice['message'], array( 'a' => array( 'href' => array() ) ) );
69
+			echo wp_kses($notice['message'], array('a' => array('href' => array())));
70 70
 			echo '</p></div>';
71 71
 		}
72 72
 	}
@@ -100,85 +100,85 @@  discard block
 block discarded – undo
100 100
 	 * @version 4.0.0
101 101
 	 */
102 102
 	public function stripe_check_environment() {
103
-		$show_ssl_notice    = get_option( 'wc_stripe_show_ssl_notice' );
104
-		$show_keys_notice   = get_option( 'wc_stripe_show_keys_notice' );
105
-		$show_phpver_notice = get_option( 'wc_stripe_show_phpver_notice' );
106
-		$show_wcver_notice  = get_option( 'wc_stripe_show_wcver_notice' );
107
-		$show_curl_notice   = get_option( 'wc_stripe_show_curl_notice' );
108
-		$options            = get_option( 'woocommerce_stripe_settings' );
109
-		$testmode           = ( isset( $options['testmode'] ) && 'yes' === $options['testmode'] ) ? true : false;
110
-		$test_pub_key       = isset( $options['test_publishable_key'] ) ? $options['test_publishable_key'] : '';
111
-		$test_secret_key    = isset( $options['test_secret_key'] ) ? $options['test_secret_key'] : '';
112
-		$live_pub_key       = isset( $options['publishable_key'] ) ? $options['publishable_key'] : '';
113
-		$live_secret_key    = isset( $options['secret_key'] ) ? $options['secret_key'] : '';
114
-
115
-		if ( isset( $options['enabled'] ) && 'yes' === $options['enabled'] ) {
116
-			if ( empty( $show_phpver_notice ) ) {
117
-				if ( version_compare( phpversion(), WC_STRIPE_MIN_PHP_VER, '<' ) ) {
103
+		$show_ssl_notice    = get_option('wc_stripe_show_ssl_notice');
104
+		$show_keys_notice   = get_option('wc_stripe_show_keys_notice');
105
+		$show_phpver_notice = get_option('wc_stripe_show_phpver_notice');
106
+		$show_wcver_notice  = get_option('wc_stripe_show_wcver_notice');
107
+		$show_curl_notice   = get_option('wc_stripe_show_curl_notice');
108
+		$options            = get_option('woocommerce_stripe_settings');
109
+		$testmode           = (isset($options['testmode']) && 'yes' === $options['testmode']) ? true : false;
110
+		$test_pub_key       = isset($options['test_publishable_key']) ? $options['test_publishable_key'] : '';
111
+		$test_secret_key    = isset($options['test_secret_key']) ? $options['test_secret_key'] : '';
112
+		$live_pub_key       = isset($options['publishable_key']) ? $options['publishable_key'] : '';
113
+		$live_secret_key    = isset($options['secret_key']) ? $options['secret_key'] : '';
114
+
115
+		if (isset($options['enabled']) && 'yes' === $options['enabled']) {
116
+			if (empty($show_phpver_notice)) {
117
+				if (version_compare(phpversion(), WC_STRIPE_MIN_PHP_VER, '<')) {
118 118
 					/* translators: 1) int version 2) int version */
119
-					$message = __( 'WooCommerce Stripe - The minimum PHP version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe' );
119
+					$message = __('WooCommerce Stripe - The minimum PHP version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe');
120 120
 
121
-					$this->add_admin_notice( 'phpver', 'error', sprintf( $message, WC_STRIPE_MIN_PHP_VER, phpversion() ), true );
121
+					$this->add_admin_notice('phpver', 'error', sprintf($message, WC_STRIPE_MIN_PHP_VER, phpversion()), true);
122 122
 
123 123
 					return;
124 124
 				}
125 125
 			}
126 126
 
127
-			if ( empty( $show_wcver_notice ) ) {
128
-				if ( version_compare( WC_VERSION, WC_STRIPE_MIN_WC_VER, '<' ) ) {
127
+			if (empty($show_wcver_notice)) {
128
+				if (version_compare(WC_VERSION, WC_STRIPE_MIN_WC_VER, '<')) {
129 129
 					/* translators: 1) int version 2) int version */
130
-					$message = __( 'WooCommerce Stripe - The minimum WooCommerce version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe' );
130
+					$message = __('WooCommerce Stripe - The minimum WooCommerce version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe');
131 131
 
132
-					$this->add_admin_notice( 'wcver', 'notice notice-warning', sprintf( $message, WC_STRIPE_MIN_WC_VER, WC_VERSION ), true );
132
+					$this->add_admin_notice('wcver', 'notice notice-warning', sprintf($message, WC_STRIPE_MIN_WC_VER, WC_VERSION), true);
133 133
 
134 134
 					return;
135 135
 				}
136 136
 			}
137 137
 
138
-			if ( empty( $show_curl_notice ) ) {
139
-				if ( ! function_exists( 'curl_init' ) ) {
140
-					$this->add_admin_notice( 'curl', 'notice notice-warning', __( 'WooCommerce Stripe - cURL is not installed.', 'woocommerce-gateway-stripe' ), true );
138
+			if (empty($show_curl_notice)) {
139
+				if ( ! function_exists('curl_init')) {
140
+					$this->add_admin_notice('curl', 'notice notice-warning', __('WooCommerce Stripe - cURL is not installed.', 'woocommerce-gateway-stripe'), true);
141 141
 				}
142 142
 			}
143 143
 
144
-			if ( empty( $show_keys_notice ) ) {
144
+			if (empty($show_keys_notice)) {
145 145
 				$secret = WC_Stripe_API::get_secret_key();
146 146
 
147
-				if ( empty( $secret ) && ! ( isset( $_GET['page'], $_GET['section'] ) && 'wc-settings' === $_GET['page'] && 'stripe' === $_GET['section'] ) ) {
147
+				if (empty($secret) && ! (isset($_GET['page'], $_GET['section']) && 'wc-settings' === $_GET['page'] && 'stripe' === $_GET['section'])) {
148 148
 					$setting_link = $this->get_setting_link();
149 149
 					/* translators: 1) link */
150
-					$this->add_admin_notice( 'keys', 'notice notice-warning', sprintf( __( 'Stripe is almost ready. To get started, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), $setting_link ), true );
150
+					$this->add_admin_notice('keys', 'notice notice-warning', sprintf(__('Stripe is almost ready. To get started, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe'), $setting_link), true);
151 151
 				}
152 152
 
153 153
 				// Check if keys are entered properly per live/test mode.
154
-				if ( $testmode ) {
154
+				if ($testmode) {
155 155
 					if (
156
-						! empty( $test_pub_key ) && ! preg_match( '/^pk_test_/', $test_pub_key )
157
-						|| ( ! empty( $test_secret_key ) && ! preg_match( '/^sk_test_/', $test_secret_key )
158
-						&& ! empty( $test_secret_key ) && ! preg_match( '/^rk_test_/', $test_secret_key ) ) )
156
+						! empty($test_pub_key) && ! preg_match('/^pk_test_/', $test_pub_key)
157
+						|| ( ! empty($test_secret_key) && ! preg_match('/^sk_test_/', $test_secret_key)
158
+						&& ! empty($test_secret_key) && ! preg_match('/^rk_test_/', $test_secret_key)) )
159 159
 					{
160 160
 						$setting_link = $this->get_setting_link();
161 161
 						/* translators: 1) link */
162
-						$this->add_admin_notice( 'keys', 'notice notice-error', sprintf( __( 'Stripe is in test mode however your test keys may not be valid. Test keys start with pk_test and sk_test or rk_test. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), $setting_link ), true );
162
+						$this->add_admin_notice('keys', 'notice notice-error', sprintf(__('Stripe is in test mode however your test keys may not be valid. Test keys start with pk_test and sk_test or rk_test. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe'), $setting_link), true);
163 163
 					}
164 164
 				} else {
165 165
 					if (
166
-						! empty( $live_pub_key ) && ! preg_match( '/^pk_live_/', $live_pub_key )
167
-						|| ( ! empty( $live_secret_key ) && ! preg_match( '/^sk_live_/', $live_secret_key )
168
-						&& ! empty( $live_secret_key ) && ! preg_match( '/^rk_live_/', $live_secret_key ) ) )
166
+						! empty($live_pub_key) && ! preg_match('/^pk_live_/', $live_pub_key)
167
+						|| ( ! empty($live_secret_key) && ! preg_match('/^sk_live_/', $live_secret_key)
168
+						&& ! empty($live_secret_key) && ! preg_match('/^rk_live_/', $live_secret_key)) )
169 169
 					{
170 170
 						$setting_link = $this->get_setting_link();
171 171
 						/* translators: 1) link */
172
-						$this->add_admin_notice( 'keys', 'notice notice-error', sprintf( __( 'Stripe is in live mode however your test keys may not be valid. Live keys start with pk_live and sk_live or rk_live. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), $setting_link ), true );
172
+						$this->add_admin_notice('keys', 'notice notice-error', sprintf(__('Stripe is in live mode however your test keys may not be valid. Live keys start with pk_live and sk_live or rk_live. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe'), $setting_link), true);
173 173
 					}
174 174
 				}
175 175
 			}
176 176
 
177
-			if ( empty( $show_ssl_notice ) ) {
177
+			if (empty($show_ssl_notice)) {
178 178
 				// Show message if enabled and FORCE SSL is disabled and WordpressHTTPS plugin is not detected.
179
-				if ( ( function_exists( 'wc_site_is_https' ) && ! wc_site_is_https() ) && ( 'no' === get_option( 'woocommerce_force_ssl_checkout' ) && ! class_exists( 'WordPressHTTPS' ) ) ) {
179
+				if ((function_exists('wc_site_is_https') && ! wc_site_is_https()) && ('no' === get_option('woocommerce_force_ssl_checkout') && ! class_exists('WordPressHTTPS'))) {
180 180
 					/* translators: 1) link 2) link */
181
-					$this->add_admin_notice( 'ssl', 'notice notice-warning', sprintf( __( 'Stripe is enabled, but the <a href="%1$s">force SSL option</a> is disabled; your checkout may not be secure! Please enable SSL and ensure your server has a valid <a href="%2$s" target="_blank">SSL certificate</a> - Stripe will only work in test mode.', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout' ), 'https://en.wikipedia.org/wiki/Transport_Layer_Security' ), true );
181
+					$this->add_admin_notice('ssl', 'notice notice-warning', sprintf(__('Stripe is enabled, but the <a href="%1$s">force SSL option</a> is disabled; your checkout may not be secure! Please enable SSL and ensure your server has a valid <a href="%2$s" target="_blank">SSL certificate</a> - Stripe will only work in test mode.', 'woocommerce-gateway-stripe'), admin_url('admin.php?page=wc-settings&tab=checkout'), 'https://en.wikipedia.org/wiki/Transport_Layer_Security'), true);
182 182
 				}
183 183
 			}
184 184
 		}
@@ -192,16 +192,16 @@  discard block
 block discarded – undo
192 192
 	public function payment_methods_check_environment() {
193 193
 		$payment_methods = $this->get_payment_methods();
194 194
 
195
-		foreach ( $payment_methods as $method => $class ) {
196
-			$show_notice = get_option( 'wc_stripe_show_' . strtolower( $method ) . '_notice' );
195
+		foreach ($payment_methods as $method => $class) {
196
+			$show_notice = get_option('wc_stripe_show_' . strtolower($method) . '_notice');
197 197
 			$gateway     = new $class();
198 198
 
199
-			if ( 'yes' !== $gateway->enabled || 'no' === $show_notice ) {
199
+			if ('yes' !== $gateway->enabled || 'no' === $show_notice) {
200 200
 				continue;
201 201
 			}
202 202
 
203
-			if ( ! in_array( get_woocommerce_currency(), $gateway->get_supported_currency() ) ) {
204
-				$this->add_admin_notice( $method, 'notice notice-error', sprintf( __( '%s is enabled - it requires store currency to be set to %s', 'woocommerce-gateway-stripe' ), $method, implode( ', ', $gateway->get_supported_currency() ) ), true );
203
+			if ( ! in_array(get_woocommerce_currency(), $gateway->get_supported_currency())) {
204
+				$this->add_admin_notice($method, 'notice notice-error', sprintf(__('%s is enabled - it requires store currency to be set to %s', 'woocommerce-gateway-stripe'), $method, implode(', ', $gateway->get_supported_currency())), true);
205 205
 			}
206 206
 		}
207 207
 	}
@@ -213,62 +213,62 @@  discard block
 block discarded – undo
213 213
 	 * @version 4.0.0
214 214
 	 */
215 215
 	public function hide_notices() {
216
-		if ( isset( $_GET['wc-stripe-hide-notice'] ) && isset( $_GET['_wc_stripe_notice_nonce'] ) ) {
217
-			if ( ! wp_verify_nonce( $_GET['_wc_stripe_notice_nonce'], 'wc_stripe_hide_notices_nonce' ) ) {
218
-				wp_die( __( 'Action failed. Please refresh the page and retry.', 'woocommerce-gateway-stripe' ) );
216
+		if (isset($_GET['wc-stripe-hide-notice']) && isset($_GET['_wc_stripe_notice_nonce'])) {
217
+			if ( ! wp_verify_nonce($_GET['_wc_stripe_notice_nonce'], 'wc_stripe_hide_notices_nonce')) {
218
+				wp_die(__('Action failed. Please refresh the page and retry.', 'woocommerce-gateway-stripe'));
219 219
 			}
220 220
 
221
-			if ( ! current_user_can( 'manage_woocommerce' ) ) {
222
-				wp_die( __( 'Cheatin&#8217; huh?', 'woocommerce-gateway-stripe' ) );
221
+			if ( ! current_user_can('manage_woocommerce')) {
222
+				wp_die(__('Cheatin&#8217; huh?', 'woocommerce-gateway-stripe'));
223 223
 			}
224 224
 
225
-			$notice = wc_clean( $_GET['wc-stripe-hide-notice'] );
225
+			$notice = wc_clean($_GET['wc-stripe-hide-notice']);
226 226
 
227
-			switch ( $notice ) {
227
+			switch ($notice) {
228 228
 				case 'phpver':
229
-					update_option( 'wc_stripe_show_phpver_notice', 'no' );
229
+					update_option('wc_stripe_show_phpver_notice', 'no');
230 230
 					break;
231 231
 				case 'wcver':
232
-					update_option( 'wc_stripe_show_wcver_notice', 'no' );
232
+					update_option('wc_stripe_show_wcver_notice', 'no');
233 233
 					break;
234 234
 				case 'curl':
235
-					update_option( 'wc_stripe_show_curl_notice', 'no' );
235
+					update_option('wc_stripe_show_curl_notice', 'no');
236 236
 					break;
237 237
 				case 'ssl':
238
-					update_option( 'wc_stripe_show_ssl_notice', 'no' );
238
+					update_option('wc_stripe_show_ssl_notice', 'no');
239 239
 					break;
240 240
 				case 'keys':
241
-					update_option( 'wc_stripe_show_keys_notice', 'no' );
241
+					update_option('wc_stripe_show_keys_notice', 'no');
242 242
 					break;
243 243
 				case 'Alipay':
244
-					update_option( 'wc_stripe_show_alipay_notice', 'no' );
244
+					update_option('wc_stripe_show_alipay_notice', 'no');
245 245
 					break;
246 246
 				case 'Bancontact':
247
-					update_option( 'wc_stripe_show_bancontact_notice', 'no' );
247
+					update_option('wc_stripe_show_bancontact_notice', 'no');
248 248
 					break;
249 249
 				case 'Bitcoin':
250
-					update_option( 'wc_stripe_show_bitcoin_notice', 'no' );
250
+					update_option('wc_stripe_show_bitcoin_notice', 'no');
251 251
 					break;
252 252
 				case 'EPS':
253
-					update_option( 'wc_stripe_show_eps_notice', 'no' );
253
+					update_option('wc_stripe_show_eps_notice', 'no');
254 254
 					break;
255 255
 				case 'Giropay':
256
-					update_option( 'wc_stripe_show_giropay_notice', 'no' );
256
+					update_option('wc_stripe_show_giropay_notice', 'no');
257 257
 					break;
258 258
 				case 'iDeal':
259
-					update_option( 'wc_stripe_show_ideal_notice', 'no' );
259
+					update_option('wc_stripe_show_ideal_notice', 'no');
260 260
 					break;
261 261
 				case 'Multibanco':
262
-					update_option( 'wc_stripe_show_multibanco_notice', 'no' );
262
+					update_option('wc_stripe_show_multibanco_notice', 'no');
263 263
 					break;
264 264
 				case 'P24':
265
-					update_option( 'wc_stripe_show_p24_notice', 'no' );
265
+					update_option('wc_stripe_show_p24_notice', 'no');
266 266
 					break;
267 267
 				case 'SEPA':
268
-					update_option( 'wc_stripe_show_sepa_notice', 'no' );
268
+					update_option('wc_stripe_show_sepa_notice', 'no');
269 269
 					break;
270 270
 				case 'SOFORT':
271
-					update_option( 'wc_stripe_show_sofort_notice', 'no' );
271
+					update_option('wc_stripe_show_sofort_notice', 'no');
272 272
 					break;
273 273
 			}
274 274
 		}
@@ -282,11 +282,11 @@  discard block
 block discarded – undo
282 282
 	 * @return string Setting link
283 283
 	 */
284 284
 	public function get_setting_link() {
285
-		$use_id_as_section = function_exists( 'WC' ) ? version_compare( WC()->version, '2.6', '>=' ) : false;
285
+		$use_id_as_section = function_exists('WC') ? version_compare(WC()->version, '2.6', '>=') : false;
286 286
 
287
-		$section_slug = $use_id_as_section ? 'stripe' : strtolower( 'WC_Gateway_Stripe' );
287
+		$section_slug = $use_id_as_section ? 'stripe' : strtolower('WC_Gateway_Stripe');
288 288
 
289
-		return admin_url( 'admin.php?page=wc-settings&tab=checkout&section=' . $section_slug );
289
+		return admin_url('admin.php?page=wc-settings&tab=checkout&section=' . $section_slug);
290 290
 	}
291 291
 }
292 292
 
Please login to merge, or discard this patch.