Completed
Push — master ( c65d7a...b092c7 )
by Roy
02:31
created
includes/class-wc-gateway-stripe.php 1 patch
Spacing   +285 added lines, -285 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,8 +120,8 @@  discard block
 block discarded – undo
120 120
 	 */
121 121
 	public function __construct() {
122 122
 		$this->id                   = 'stripe';
123
-		$this->method_title         = __( 'Stripe', 'woocommerce-gateway-stripe' );
124
-		$this->method_description   = __( 'Stripe works by adding credit card fields on the checkout and then sending the details to Stripe for verification.', 'woocommerce-gateway-stripe' );
123
+		$this->method_title         = __('Stripe', 'woocommerce-gateway-stripe');
124
+		$this->method_description   = __('Stripe works by adding credit card fields on the checkout and then sending the details to Stripe for verification.', 'woocommerce-gateway-stripe');
125 125
 		$this->has_fields           = true;
126 126
 		$this->view_transaction_url = 'https://dashboard.stripe.com/payments/%s';
127 127
 		$this->supports             = array(
@@ -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->capture                 = 'yes' === $this->get_option( 'capture', 'yes' );
157
-		$this->statement_descriptor    = $this->get_option( 'statement_descriptor', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) );
158
-		$this->stripe_checkout         = 'yes' === $this->get_option( 'stripe_checkout' );
159
-		$this->stripe_checkout_locale  = $this->get_option( 'stripe_checkout_locale' );
160
-		$this->stripe_checkout_image   = $this->get_option( 'stripe_checkout_image', '' );
161
-		$this->saved_cards             = 'yes' === $this->get_option( 'saved_cards' );
162
-		$this->secret_key              = $this->testmode ? $this->get_option( 'test_secret_key' ) : $this->get_option( 'secret_key' );
163
-		$this->publishable_key         = $this->testmode ? $this->get_option( 'test_publishable_key' ) : $this->get_option( 'publishable_key' );
164
-		$this->bitcoin                 = 'USD' === strtoupper( get_woocommerce_currency() ) && 'yes' === $this->get_option( 'stripe_bitcoin' );
165
-		$this->apple_pay               = 'yes' === $this->get_option( 'apple_pay', 'yes' );
166
-		$this->apple_pay_domain_set    = 'yes' === $this->get_option( 'apple_pay_domain_set', 'no' );
167
-		$this->apple_pay_button        = $this->get_option( 'apple_pay_button', 'black' );
168
-		$this->logging                 = 'yes' === $this->get_option( 'logging' );
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->capture                 = 'yes' === $this->get_option('capture', 'yes');
157
+		$this->statement_descriptor    = $this->get_option('statement_descriptor', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES));
158
+		$this->stripe_checkout         = 'yes' === $this->get_option('stripe_checkout');
159
+		$this->stripe_checkout_locale  = $this->get_option('stripe_checkout_locale');
160
+		$this->stripe_checkout_image   = $this->get_option('stripe_checkout_image', '');
161
+		$this->saved_cards             = 'yes' === $this->get_option('saved_cards');
162
+		$this->secret_key              = $this->testmode ? $this->get_option('test_secret_key') : $this->get_option('secret_key');
163
+		$this->publishable_key         = $this->testmode ? $this->get_option('test_publishable_key') : $this->get_option('publishable_key');
164
+		$this->bitcoin                 = 'USD' === strtoupper(get_woocommerce_currency()) && 'yes' === $this->get_option('stripe_bitcoin');
165
+		$this->apple_pay               = 'yes' === $this->get_option('apple_pay', 'yes');
166
+		$this->apple_pay_domain_set    = 'yes' === $this->get_option('apple_pay_domain_set', 'no');
167
+		$this->apple_pay_button        = $this->get_option('apple_pay_button', 'black');
168
+		$this->logging                 = 'yes' === $this->get_option('logging');
169 169
 		$this->apple_pay_verify_notice = '';
170 170
 
171
-		if ( $this->stripe_checkout ) {
172
-			$this->order_button_text = __( 'Continue to payment', 'woocommerce-gateway-stripe' );
171
+		if ($this->stripe_checkout) {
172
+			$this->order_button_text = __('Continue to payment', 'woocommerce-gateway-stripe');
173 173
 		}
174 174
 
175
-		if ( $this->testmode ) {
176
-			$this->description .= ' ' . sprintf( __( 'TEST MODE ENABLED. In test mode, you can use the card number 4242424242424242 with any CVC and a valid expiration date or check the documentation "<a href="%s">Testing Stripe</a>" for more card numbers.', 'woocommerce-gateway-stripe' ), 'https://stripe.com/docs/testing' );
177
-			$this->description  = trim( $this->description );
175
+		if ($this->testmode) {
176
+			$this->description .= ' ' . sprintf(__('TEST MODE ENABLED. In test mode, you can use the card number 4242424242424242 with any CVC and a valid expiration date or check the documentation "<a href="%s">Testing Stripe</a>" for more card numbers.', 'woocommerce-gateway-stripe'), 'https://stripe.com/docs/testing');
177
+			$this->description  = trim($this->description);
178 178
 		}
179 179
 
180
-		WC_Stripe_API::set_secret_key( $this->secret_key );
180
+		WC_Stripe_API::set_secret_key($this->secret_key);
181 181
 
182 182
 		$this->init_apple_pay();
183 183
 
184 184
 		// Hooks.
185
-		add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) );
186
-		add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
187
-		add_action( 'admin_notices', array( $this, 'admin_notices' ) );
188
-		add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
185
+		add_action('wp_enqueue_scripts', array($this, 'payment_scripts'));
186
+		add_action('admin_enqueue_scripts', array($this, 'admin_scripts'));
187
+		add_action('admin_notices', array($this, 'admin_notices'));
188
+		add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options'));
189 189
 	}
190 190
 
191 191
 	/**
@@ -195,26 +195,26 @@  discard block
 block discarded – undo
195 195
 	 * @return string
196 196
 	 */
197 197
 	public function get_icon() {
198
-		$ext   = version_compare( WC()->version, '2.6', '>=' ) ? '.svg' : '.png';
199
-		$style = version_compare( WC()->version, '2.6', '>=' ) ? 'style="margin-left: 0.3em"' : '';
198
+		$ext   = version_compare(WC()->version, '2.6', '>=') ? '.svg' : '.png';
199
+		$style = version_compare(WC()->version, '2.6', '>=') ? 'style="margin-left: 0.3em"' : '';
200 200
 
201
-		$icon  = '<img src="' . WC_HTTPS::force_https_url( WC()->plugin_url() . '/assets/images/icons/credit-cards/visa' . $ext ) . '" alt="Visa" width="32" ' . $style . ' />';
202
-		$icon .= '<img src="' . WC_HTTPS::force_https_url( WC()->plugin_url() . '/assets/images/icons/credit-cards/mastercard' . $ext ) . '" alt="Mastercard" width="32" ' . $style . ' />';
203
-		$icon .= '<img src="' . WC_HTTPS::force_https_url( WC()->plugin_url() . '/assets/images/icons/credit-cards/amex' . $ext ) . '" alt="Amex" width="32" ' . $style . ' />';
201
+		$icon  = '<img src="' . WC_HTTPS::force_https_url(WC()->plugin_url() . '/assets/images/icons/credit-cards/visa' . $ext) . '" alt="Visa" width="32" ' . $style . ' />';
202
+		$icon .= '<img src="' . WC_HTTPS::force_https_url(WC()->plugin_url() . '/assets/images/icons/credit-cards/mastercard' . $ext) . '" alt="Mastercard" width="32" ' . $style . ' />';
203
+		$icon .= '<img src="' . WC_HTTPS::force_https_url(WC()->plugin_url() . '/assets/images/icons/credit-cards/amex' . $ext) . '" alt="Amex" width="32" ' . $style . ' />';
204 204
 
205 205
 		$base_location = wc_get_base_location();
206 206
 
207
-		if ( 'US' === $base_location['country'] ) {
208
-			$icon .= '<img src="' . WC_HTTPS::force_https_url( WC()->plugin_url() . '/assets/images/icons/credit-cards/discover' . $ext ) . '" alt="Discover" width="32" ' . $style . ' />';
209
-			$icon .= '<img src="' . WC_HTTPS::force_https_url( WC()->plugin_url() . '/assets/images/icons/credit-cards/jcb' . $ext ) . '" alt="JCB" width="32" ' . $style . ' />';
210
-			$icon .= '<img src="' . WC_HTTPS::force_https_url( WC()->plugin_url() . '/assets/images/icons/credit-cards/diners' . $ext ) . '" alt="Diners" width="32" ' . $style . ' />';
207
+		if ('US' === $base_location['country']) {
208
+			$icon .= '<img src="' . WC_HTTPS::force_https_url(WC()->plugin_url() . '/assets/images/icons/credit-cards/discover' . $ext) . '" alt="Discover" width="32" ' . $style . ' />';
209
+			$icon .= '<img src="' . WC_HTTPS::force_https_url(WC()->plugin_url() . '/assets/images/icons/credit-cards/jcb' . $ext) . '" alt="JCB" width="32" ' . $style . ' />';
210
+			$icon .= '<img src="' . WC_HTTPS::force_https_url(WC()->plugin_url() . '/assets/images/icons/credit-cards/diners' . $ext) . '" alt="Diners" width="32" ' . $style . ' />';
211 211
 		}
212 212
 
213
-		if ( $this->bitcoin && $this->stripe_checkout ) {
214
-			$icon .= '<img src="' . WC_HTTPS::force_https_url( plugins_url( '/assets/images/bitcoin' . $ext, WC_STRIPE_MAIN_FILE ) ) . '" alt="Bitcoin" width="24" ' . $style . ' />';
213
+		if ($this->bitcoin && $this->stripe_checkout) {
214
+			$icon .= '<img src="' . WC_HTTPS::force_https_url(plugins_url('/assets/images/bitcoin' . $ext, WC_STRIPE_MAIN_FILE)) . '" alt="Bitcoin" width="24" ' . $style . ' />';
215 215
 		}
216 216
 
217
-		return apply_filters( 'woocommerce_gateway_icon', $icon, $this->id );
217
+		return apply_filters('woocommerce_gateway_icon', $icon, $this->id);
218 218
 	}
219 219
 
220 220
 	/**
@@ -225,11 +225,11 @@  discard block
 block discarded – undo
225 225
 	 *
226 226
 	 * @return float|int
227 227
 	 */
228
-	public function get_stripe_amount( $total, $currency = '' ) {
229
-		if ( ! $currency ) {
228
+	public function get_stripe_amount($total, $currency = '') {
229
+		if ( ! $currency) {
230 230
 			$currency = get_woocommerce_currency();
231 231
 		}
232
-		switch ( strtoupper( $currency ) ) {
232
+		switch (strtoupper($currency)) {
233 233
 			// Zero decimal currencies.
234 234
 			case 'BIF' :
235 235
 			case 'CLP' :
@@ -246,10 +246,10 @@  discard block
 block discarded – undo
246 246
 			case 'XAF' :
247 247
 			case 'XOF' :
248 248
 			case 'XPF' :
249
-				$total = absint( $total );
249
+				$total = absint($total);
250 250
 				break;
251 251
 			default :
252
-				$total = round( $total, 2 ) * 100; // In cents.
252
+				$total = round($total, 2) * 100; // In cents.
253 253
 				break;
254 254
 		}
255 255
 		return $total;
@@ -264,9 +264,9 @@  discard block
 block discarded – undo
264 264
 	public function init_apple_pay() {
265 265
 		if (
266 266
 			is_admin() &&
267
-			isset( $_GET['page'] ) && 'wc-settings' === $_GET['page'] &&
268
-			isset( $_GET['tab'] ) && 'checkout' === $_GET['tab'] &&
269
-			isset( $_GET['section'] ) && 'stripe' === $_GET['section'] &&
267
+			isset($_GET['page']) && 'wc-settings' === $_GET['page'] &&
268
+			isset($_GET['tab']) && 'checkout' === $_GET['tab'] &&
269
+			isset($_GET['section']) && 'stripe' === $_GET['section'] &&
270 270
 			$this->apple_pay
271 271
 		) {
272 272
 			$this->process_apple_pay_verification();
@@ -280,9 +280,9 @@  discard block
 block discarded – undo
280 280
 	 * @version 3.1.0
281 281
 	 * @param string $secret_key
282 282
 	 */
283
-	private function register_apple_pay_domain( $secret_key = '' ) {
284
-		if ( empty( $secret_key ) ) {
285
-			throw new Exception( __( 'Unable to verify domain - missing secret key.', 'woocommerce-gateway-stripe' ) );
283
+	private function register_apple_pay_domain($secret_key = '') {
284
+		if (empty($secret_key)) {
285
+			throw new Exception(__('Unable to verify domain - missing secret key.', 'woocommerce-gateway-stripe'));
286 286
 		}
287 287
 
288 288
 		$endpoint = 'https://api.stripe.com/v1/apple_pay/domains';
@@ -296,21 +296,21 @@  discard block
 block discarded – undo
296 296
 			'Authorization' => 'Bearer ' . $secret_key,
297 297
 		);
298 298
 
299
-		$response = wp_remote_post( $endpoint, array(
299
+		$response = wp_remote_post($endpoint, array(
300 300
 			'headers' => $headers,
301
-			'body'    => http_build_query( $data ),
302
-		) );
301
+			'body'    => http_build_query($data),
302
+		));
303 303
 
304
-		if ( is_wp_error( $response ) ) {
305
-			throw new Exception( sprintf( __( 'Unable to verify domain - %s', 'woocommerce-gateway-stripe' ), $response->get_error_message() ) );
304
+		if (is_wp_error($response)) {
305
+			throw new Exception(sprintf(__('Unable to verify domain - %s', 'woocommerce-gateway-stripe'), $response->get_error_message()));
306 306
 		}
307 307
 
308
-		if ( 200 !== $response['response']['code'] ) {
309
-			$parsed_response = json_decode( $response['body'] );
308
+		if (200 !== $response['response']['code']) {
309
+			$parsed_response = json_decode($response['body']);
310 310
 
311 311
 			$this->apple_pay_verify_notice = $parsed_response->error->message;
312 312
 
313
-			throw new Exception( sprintf( __( 'Unable to verify domain - %s', 'woocommerce-gateway-stripe' ), $parsed_response->error->message ) );
313
+			throw new Exception(sprintf(__('Unable to verify domain - %s', 'woocommerce-gateway-stripe'), $parsed_response->error->message));
314 314
 		}
315 315
 	}
316 316
 
@@ -321,48 +321,48 @@  discard block
 block discarded – undo
321 321
 	 * @version 3.1.0
322 322
 	 */
323 323
 	public function process_apple_pay_verification() {
324
-		$gateway_settings = get_option( 'woocommerce_stripe_settings', '' );
324
+		$gateway_settings = get_option('woocommerce_stripe_settings', '');
325 325
 
326 326
 		try {
327
-			$path     = untrailingslashit( preg_replace( "!${_SERVER['SCRIPT_NAME']}$!", '', $_SERVER['SCRIPT_FILENAME'] ) );
327
+			$path     = untrailingslashit(preg_replace("!${_SERVER['SCRIPT_NAME']}$!", '', $_SERVER['SCRIPT_FILENAME']));
328 328
 			$dir      = '.well-known';
329 329
 			$file     = 'apple-developer-merchantid-domain-association';
330 330
 			$fullpath = $path . '/' . $dir . '/' . $file;
331 331
 
332
-			if ( ! empty( $gateway_settings['apple_pay_domain_set'] ) && 'yes' === $gateway_settings['apple_pay_domain_set'] && file_exists( $fullpath ) ) {
332
+			if ( ! empty($gateway_settings['apple_pay_domain_set']) && 'yes' === $gateway_settings['apple_pay_domain_set'] && file_exists($fullpath)) {
333 333
 				return;
334 334
 			}
335 335
 
336
-			if ( ! file_exists( $path . '/' . $dir ) ) {
337
-				if ( ! @mkdir( $path . '/' . $dir, 0755 ) ) {
338
-					throw new Exception( __( 'Unable to create domain association folder to domain root.', 'woocommerce-gateway-stripe' ) );
336
+			if ( ! file_exists($path . '/' . $dir)) {
337
+				if ( ! @mkdir($path . '/' . $dir, 0755)) {
338
+					throw new Exception(__('Unable to create domain association folder to domain root.', 'woocommerce-gateway-stripe'));
339 339
 				}
340 340
 			}
341 341
 
342
-			if ( ! file_exists( $fullpath ) ) {
343
-				if ( ! @copy( WC_STRIPE_PLUGIN_PATH . '/' . $file, $fullpath ) ) {
344
-					throw new Exception( __( 'Unable to copy domain association file to domain root.', 'woocommerce-gateway-stripe' ) );
342
+			if ( ! file_exists($fullpath)) {
343
+				if ( ! @copy(WC_STRIPE_PLUGIN_PATH . '/' . $file, $fullpath)) {
344
+					throw new Exception(__('Unable to copy domain association file to domain root.', 'woocommerce-gateway-stripe'));
345 345
 				}
346 346
 			}
347 347
 
348 348
 			// At this point then the domain association folder and file should be available.
349 349
 			// Proceed to verify/and or verify again.
350
-			$this->register_apple_pay_domain( $this->secret_key );
350
+			$this->register_apple_pay_domain($this->secret_key);
351 351
 
352 352
 			// No errors to this point, verification success!
353 353
 			$gateway_settings['apple_pay_domain_set'] = 'yes';
354 354
 			$this->apple_pay_domain_set = true;
355 355
 
356
-			update_option( 'woocommerce_stripe_settings', $gateway_settings );
356
+			update_option('woocommerce_stripe_settings', $gateway_settings);
357 357
 
358
-			$this->log( __( 'Your domain has been verified with Apple Pay!', 'woocommerce-gateway-stripe' ) );
358
+			$this->log(__('Your domain has been verified with Apple Pay!', 'woocommerce-gateway-stripe'));
359 359
 
360
-		} catch ( Exception $e ) {
360
+		} catch (Exception $e) {
361 361
 			$gateway_settings['apple_pay_domain_set'] = 'no';
362 362
 
363
-			update_option( 'woocommerce_stripe_settings', $gateway_settings );
363
+			update_option('woocommerce_stripe_settings', $gateway_settings);
364 364
 
365
-			$this->log( sprintf( __( 'Error: %s', 'woocommerce-gateway-stripe' ), $e->getMessage() ) );
365
+			$this->log(sprintf(__('Error: %s', 'woocommerce-gateway-stripe'), $e->getMessage()));
366 366
 		}
367 367
 	}
368 368
 
@@ -370,11 +370,11 @@  discard block
 block discarded – undo
370 370
 	 * Check if SSL is enabled and notify the user
371 371
 	 */
372 372
 	public function admin_notices() {
373
-		if ( 'no' === $this->enabled ) {
373
+		if ('no' === $this->enabled) {
374 374
 			return;
375 375
 		}
376 376
 
377
-		if ( $this->apple_pay && ! empty( $this->apple_pay_verify_notice ) ) {
377
+		if ($this->apple_pay && ! empty($this->apple_pay_verify_notice)) {
378 378
 			$allowed_html = array(
379 379
 				'a' => array(
380 380
 					'href' => array(),
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
 				),
383 383
 			);
384 384
 
385
-			echo '<div class="error stripe-apple-pay-message"><p>' . wp_kses( make_clickable( $this->apple_pay_verify_notice ), $allowed_html ) . '</p></div>';
385
+			echo '<div class="error stripe-apple-pay-message"><p>' . wp_kses(make_clickable($this->apple_pay_verify_notice), $allowed_html) . '</p></div>';
386 386
 		}
387 387
 
388 388
 		/**
@@ -390,13 +390,13 @@  discard block
 block discarded – undo
390 390
 		 * when setting screen is displayed. So if domain verification is not set,
391 391
 		 * something went wrong so lets notify user.
392 392
 		 */
393
-		if ( ! empty( $this->secret_key ) && $this->apple_pay && ! $this->apple_pay_domain_set ) {
394
-			echo '<div class="error stripe-apple-pay-message"><p>' . sprintf( __( 'Apple Pay domain verification failed. Please check the %1$slog%2$s to see the issue. (Logging must be enabled to see recorded logs)', 'woocommerce-gateway-stripe' ), '<a href="' . admin_url( 'admin.php?page=wc-status&tab=logs' ) . '">', '</a>' ) . '</p></div>';
393
+		if ( ! empty($this->secret_key) && $this->apple_pay && ! $this->apple_pay_domain_set) {
394
+			echo '<div class="error stripe-apple-pay-message"><p>' . sprintf(__('Apple Pay domain verification failed. Please check the %1$slog%2$s to see the issue. (Logging must be enabled to see recorded logs)', 'woocommerce-gateway-stripe'), '<a href="' . admin_url('admin.php?page=wc-status&tab=logs') . '">', '</a>') . '</p></div>';
395 395
 		}
396 396
 
397 397
 		// Show message if enabled and FORCE SSL is disabled and WordpressHTTPS plugin is not detected.
398
-		if ( ( function_exists( 'wc_site_is_https' ) && ! wc_site_is_https() ) && ( 'no' === get_option( 'woocommerce_force_ssl_checkout' ) && ! class_exists( 'WordPressHTTPS' ) ) ) {
399
-			echo '<div class="error stripe-ssl-message"><p>' . sprintf( __( 'Stripe is enabled, but the <a href="%s">force SSL option</a> is disabled; your checkout may not be secure! Please enable SSL and ensure your server has a valid SSL certificate - Stripe will only work in test mode.', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout' ) ) . '</p></div>';
398
+		if ((function_exists('wc_site_is_https') && ! wc_site_is_https()) && ('no' === get_option('woocommerce_force_ssl_checkout') && ! class_exists('WordPressHTTPS'))) {
399
+			echo '<div class="error stripe-ssl-message"><p>' . sprintf(__('Stripe is enabled, but the <a href="%s">force SSL option</a> is disabled; your checkout may not be secure! Please enable SSL and ensure your server has a valid SSL certificate - Stripe will only work in test mode.', 'woocommerce-gateway-stripe'), admin_url('admin.php?page=wc-settings&tab=checkout')) . '</p></div>';
400 400
 		}
401 401
 	}
402 402
 
@@ -404,11 +404,11 @@  discard block
 block discarded – undo
404 404
 	 * Check if this gateway is enabled
405 405
 	 */
406 406
 	public function is_available() {
407
-		if ( 'yes' === $this->enabled ) {
408
-			if ( ! $this->testmode && is_checkout() && ! is_ssl() ) {
407
+		if ('yes' === $this->enabled) {
408
+			if ( ! $this->testmode && is_checkout() && ! is_ssl()) {
409 409
 				return false;
410 410
 			}
411
-			if ( ! $this->secret_key || ! $this->publishable_key ) {
411
+			if ( ! $this->secret_key || ! $this->publishable_key) {
412 412
 				return false;
413 413
 			}
414 414
 			return true;
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
 	 * Initialise Gateway Settings Form Fields
421 421
 	 */
422 422
 	public function init_form_fields() {
423
-		$this->form_fields = include( 'settings-stripe.php' );
423
+		$this->form_fields = include('settings-stripe.php');
424 424
 	}
425 425
 
426 426
 	/**
@@ -428,54 +428,54 @@  discard block
 block discarded – undo
428 428
 	 */
429 429
 	public function payment_fields() {
430 430
 		$user                 = wp_get_current_user();
431
-		$display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards;
431
+		$display_tokenization = $this->supports('tokenization') && is_checkout() && $this->saved_cards;
432 432
 		$total                = WC()->cart->total;
433 433
 
434 434
 		// If paying from order, we need to get total from order not cart.
435
-		if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
436
-			$order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) );
435
+		if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) {
436
+			$order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key'])));
437 437
 			$total = $order->get_total();
438 438
 		}
439 439
 
440
-		if ( $user->ID ) {
441
-			$user_email = get_user_meta( $user->ID, 'billing_email', true );
440
+		if ($user->ID) {
441
+			$user_email = get_user_meta($user->ID, 'billing_email', true);
442 442
 			$user_email = $user_email ? $user_email : $user->user_email;
443 443
 		} else {
444 444
 			$user_email = '';
445 445
 		}
446 446
 
447
-		if ( is_add_payment_method_page() ) {
448
-			$pay_button_text = __( 'Add Card', 'woocommerce-gateway-stripe' );
447
+		if (is_add_payment_method_page()) {
448
+			$pay_button_text = __('Add Card', 'woocommerce-gateway-stripe');
449 449
 		} else {
450 450
 			$pay_button_text = '';
451 451
 		}
452 452
 
453 453
 		echo '<div
454 454
 			id="stripe-payment-data"
455
-			data-panel-label="' . esc_attr( $pay_button_text ) . '"
455
+			data-panel-label="' . esc_attr($pay_button_text) . '"
456 456
 			data-description=""
457
-			data-email="' . esc_attr( $user_email ) . '"
458
-			data-amount="' . esc_attr( $this->get_stripe_amount( $total ) ) . '"
459
-			data-name="' . esc_attr( $this->statement_descriptor ) . '"
460
-			data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '"
461
-			data-image="' . esc_attr( $this->stripe_checkout_image ) . '"
462
-			data-bitcoin="' . esc_attr( $this->bitcoin ? 'true' : 'false' ) . '"
463
-			data-locale="' . esc_attr( $this->stripe_checkout_locale ? $this->stripe_checkout_locale : 'en' ) . '"
464
-			data-allow-remember-me="' . esc_attr( $this->saved_cards ? 'true' : 'false' ) . '">';
457
+			data-email="' . esc_attr($user_email) . '"
458
+			data-amount="' . esc_attr($this->get_stripe_amount($total)) . '"
459
+			data-name="' . esc_attr($this->statement_descriptor) . '"
460
+			data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '"
461
+			data-image="' . esc_attr($this->stripe_checkout_image) . '"
462
+			data-bitcoin="' . esc_attr($this->bitcoin ? 'true' : 'false') . '"
463
+			data-locale="' . esc_attr($this->stripe_checkout_locale ? $this->stripe_checkout_locale : 'en') . '"
464
+			data-allow-remember-me="' . esc_attr($this->saved_cards ? 'true' : 'false') . '">';
465 465
 
466
-		if ( $this->description ) {
467
-			echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ) );
466
+		if ($this->description) {
467
+			echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($this->description)));
468 468
 		}
469 469
 
470
-		if ( $display_tokenization ) {
470
+		if ($display_tokenization) {
471 471
 			$this->tokenization_script();
472 472
 			$this->saved_payment_methods();
473 473
 		}
474 474
 
475
-		if ( ! $this->stripe_checkout ) {
475
+		if ( ! $this->stripe_checkout) {
476 476
 			$this->form();
477 477
 
478
-			if ( apply_filters( 'wc_stripe_display_save_payment_method_checkbox', $display_tokenization ) ) {
478
+			if (apply_filters('wc_stripe_display_save_payment_method_checkbox', $display_tokenization)) {
479 479
 				$this->save_payment_method_checkbox();
480 480
 			}
481 481
 		}
@@ -491,20 +491,20 @@  discard block
 block discarded – undo
491 491
 	 * @return array
492 492
 	 */
493 493
 	public function get_localized_messages() {
494
-		return apply_filters( 'wc_stripe_localized_messages', array(
495
-			'invalid_number'        => __( 'The card number is not a valid credit card number.', 'woocommerce-gateway-stripe' ),
496
-			'invalid_expiry_month'  => __( 'The card\'s expiration month is invalid.', 'woocommerce-gateway-stripe' ),
497
-			'invalid_expiry_year'   => __( 'The card\'s expiration year is invalid.', 'woocommerce-gateway-stripe' ),
498
-			'invalid_cvc'           => __( 'The card\'s security code is invalid.', 'woocommerce-gateway-stripe' ),
499
-			'incorrect_number'      => __( 'The card number is incorrect.', 'woocommerce-gateway-stripe' ),
500
-			'expired_card'          => __( 'The card has expired.', 'woocommerce-gateway-stripe' ),
501
-			'incorrect_cvc'         => __( 'The card\'s security code is incorrect.', 'woocommerce-gateway-stripe' ),
502
-			'incorrect_zip'         => __( 'The card\'s zip code failed validation.', 'woocommerce-gateway-stripe' ),
503
-			'card_declined'         => __( 'The card was declined.', 'woocommerce-gateway-stripe' ),
504
-			'missing'               => __( 'There is no card on a customer that is being charged.', 'woocommerce-gateway-stripe' ),
505
-			'processing_error'      => __( 'An error occurred while processing the card.', 'woocommerce-gateway-stripe' ),
506
-			'invalid_request_error' => __( 'Could not find payment information.', 'woocommerce-gateway-stripe' ),
507
-		) );
494
+		return apply_filters('wc_stripe_localized_messages', array(
495
+			'invalid_number'        => __('The card number is not a valid credit card number.', 'woocommerce-gateway-stripe'),
496
+			'invalid_expiry_month'  => __('The card\'s expiration month is invalid.', 'woocommerce-gateway-stripe'),
497
+			'invalid_expiry_year'   => __('The card\'s expiration year is invalid.', 'woocommerce-gateway-stripe'),
498
+			'invalid_cvc'           => __('The card\'s security code is invalid.', 'woocommerce-gateway-stripe'),
499
+			'incorrect_number'      => __('The card number is incorrect.', 'woocommerce-gateway-stripe'),
500
+			'expired_card'          => __('The card has expired.', 'woocommerce-gateway-stripe'),
501
+			'incorrect_cvc'         => __('The card\'s security code is incorrect.', 'woocommerce-gateway-stripe'),
502
+			'incorrect_zip'         => __('The card\'s zip code failed validation.', 'woocommerce-gateway-stripe'),
503
+			'card_declined'         => __('The card was declined.', 'woocommerce-gateway-stripe'),
504
+			'missing'               => __('There is no card on a customer that is being charged.', 'woocommerce-gateway-stripe'),
505
+			'processing_error'      => __('An error occurred while processing the card.', 'woocommerce-gateway-stripe'),
506
+			'invalid_request_error' => __('Could not find payment information.', 'woocommerce-gateway-stripe'),
507
+		));
508 508
 	}
509 509
 
510 510
 	/**
@@ -514,28 +514,28 @@  discard block
 block discarded – undo
514 514
 	 * @version 3.1.0
515 515
 	 */
516 516
 	public function admin_scripts() {
517
-		if ( 'woocommerce_page_wc-settings' !== get_current_screen()->id ) {
517
+		if ('woocommerce_page_wc-settings' !== get_current_screen()->id) {
518 518
 			return;
519 519
 		}
520 520
 
521
-		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
521
+		$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
522 522
 
523
-		wp_enqueue_script( 'woocommerce_stripe_admin', plugins_url( 'assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array(), WC_STRIPE_VERSION, true );
523
+		wp_enqueue_script('woocommerce_stripe_admin', plugins_url('assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array(), WC_STRIPE_VERSION, true);
524 524
 
525 525
 		$stripe_admin_params = array(
526 526
 			'localized_messages' => array(
527
-				'not_valid_live_key_msg' => __( 'This is not a valid live key. Live keys start with "sk_live_" and "pk_live_".', 'woocommerce-gateway-stripe' ),
528
-				'not_valid_test_key_msg' => __( 'This is not a valid test key. Test keys start with "sk_test_" and "pk_test_".', 'woocommerce-gateway-stripe' ),
529
-				're_verify_button_text'  => __( 'Re-verify Domain', 'woocommerce-gateway-stripe' ),
530
-				'missing_secret_key'     => __( 'Missing Secret Key. Please set the secret key field above and re-try.', 'woocommerce-gateway-stripe' ),
527
+				'not_valid_live_key_msg' => __('This is not a valid live key. Live keys start with "sk_live_" and "pk_live_".', 'woocommerce-gateway-stripe'),
528
+				'not_valid_test_key_msg' => __('This is not a valid test key. Test keys start with "sk_test_" and "pk_test_".', 'woocommerce-gateway-stripe'),
529
+				're_verify_button_text'  => __('Re-verify Domain', 'woocommerce-gateway-stripe'),
530
+				'missing_secret_key'     => __('Missing Secret Key. Please set the secret key field above and re-try.', 'woocommerce-gateway-stripe'),
531 531
 			),
532
-			'ajaxurl'            => admin_url( 'admin-ajax.php' ),
532
+			'ajaxurl'            => admin_url('admin-ajax.php'),
533 533
 			'nonce'              => array(
534
-				'apple_pay_domain_nonce' => wp_create_nonce( '_wc_stripe_apple_pay_domain_nonce' ),
534
+				'apple_pay_domain_nonce' => wp_create_nonce('_wc_stripe_apple_pay_domain_nonce'),
535 535
 			),
536 536
 		);
537 537
 
538
-		wp_localize_script( 'woocommerce_stripe_admin', 'wc_stripe_admin_params', apply_filters( 'wc_stripe_admin_params', $stripe_admin_params ) );
538
+		wp_localize_script('woocommerce_stripe_admin', 'wc_stripe_admin_params', apply_filters('wc_stripe_admin_params', $stripe_admin_params));
539 539
 	}
540 540
 
541 541
 	/**
@@ -546,49 +546,49 @@  discard block
 block discarded – undo
546 546
 	 * @access public
547 547
 	 */
548 548
 	public function payment_scripts() {
549
-		if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) {
549
+		if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) {
550 550
 			return;
551 551
 		}
552 552
 
553
-		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
553
+		$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
554 554
 
555
-		if ( $this->stripe_checkout ) {
556
-			wp_enqueue_script( 'stripe_checkout', 'https://checkout.stripe.com/v2/checkout.js', '', '2.0', true );
557
-			wp_enqueue_script( 'woocommerce_stripe', plugins_url( 'assets/js/stripe-checkout' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array( 'stripe_checkout' ), WC_STRIPE_VERSION, true );
555
+		if ($this->stripe_checkout) {
556
+			wp_enqueue_script('stripe_checkout', 'https://checkout.stripe.com/v2/checkout.js', '', '2.0', true);
557
+			wp_enqueue_script('woocommerce_stripe', plugins_url('assets/js/stripe-checkout' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array('stripe_checkout'), WC_STRIPE_VERSION, true);
558 558
 		} else {
559
-			wp_enqueue_script( 'stripe', 'https://js.stripe.com/v2/', '', '1.0', true );
560
-			wp_enqueue_script( 'woocommerce_stripe', plugins_url( 'assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array( 'jquery-payment', 'stripe' ), WC_STRIPE_VERSION, true );
559
+			wp_enqueue_script('stripe', 'https://js.stripe.com/v2/', '', '1.0', true);
560
+			wp_enqueue_script('woocommerce_stripe', plugins_url('assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array('jquery-payment', 'stripe'), WC_STRIPE_VERSION, true);
561 561
 		}
562 562
 
563 563
 		$stripe_params = array(
564 564
 			'key'                  => $this->publishable_key,
565
-			'i18n_terms'           => __( 'Please accept the terms and conditions first', 'woocommerce-gateway-stripe' ),
566
-			'i18n_required_fields' => __( 'Please fill in required checkout fields first', 'woocommerce-gateway-stripe' ),
565
+			'i18n_terms'           => __('Please accept the terms and conditions first', 'woocommerce-gateway-stripe'),
566
+			'i18n_required_fields' => __('Please fill in required checkout fields first', 'woocommerce-gateway-stripe'),
567 567
 		);
568 568
 
569 569
 		// If we're on the pay page we need to pass stripe.js the address of the order.
570
-		if ( isset( $_GET['pay_for_order'] ) && 'true' === $_GET['pay_for_order'] ) {
571
-			$order_id = wc_get_order_id_by_order_key( urldecode( $_GET['key'] ) );
572
-			$order    = wc_get_order( $order_id );
570
+		if (isset($_GET['pay_for_order']) && 'true' === $_GET['pay_for_order']) {
571
+			$order_id = wc_get_order_id_by_order_key(urldecode($_GET['key']));
572
+			$order    = wc_get_order($order_id);
573 573
 
574
-			$stripe_params['billing_first_name'] = version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->billing_first_name : $order->get_billing_first_name();
575
-			$stripe_params['billing_last_name']  = version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->billing_last_name : $order->get_billing_last_name();
576
-			$stripe_params['billing_address_1']  = version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->billing_address_1 : $order->get_billing_address_1();
577
-			$stripe_params['billing_address_2']  = version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->billing_address_2 : $order->get_billing_address_2();
578
-			$stripe_params['billing_state']      = version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->billing_state : $order->get_billing_state();
579
-			$stripe_params['billing_city']       = version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->billing_city : $order->get_billing_city();
580
-			$stripe_params['billing_postcode']   = version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->billing_postcode : $order->get_billing_postcode();
581
-			$stripe_params['billing_country']    = version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->billing_country : $order->get_billing_country();
574
+			$stripe_params['billing_first_name'] = version_compare(WC_VERSION, '3.0.0', '<') ? $order->billing_first_name : $order->get_billing_first_name();
575
+			$stripe_params['billing_last_name']  = version_compare(WC_VERSION, '3.0.0', '<') ? $order->billing_last_name : $order->get_billing_last_name();
576
+			$stripe_params['billing_address_1']  = version_compare(WC_VERSION, '3.0.0', '<') ? $order->billing_address_1 : $order->get_billing_address_1();
577
+			$stripe_params['billing_address_2']  = version_compare(WC_VERSION, '3.0.0', '<') ? $order->billing_address_2 : $order->get_billing_address_2();
578
+			$stripe_params['billing_state']      = version_compare(WC_VERSION, '3.0.0', '<') ? $order->billing_state : $order->get_billing_state();
579
+			$stripe_params['billing_city']       = version_compare(WC_VERSION, '3.0.0', '<') ? $order->billing_city : $order->get_billing_city();
580
+			$stripe_params['billing_postcode']   = version_compare(WC_VERSION, '3.0.0', '<') ? $order->billing_postcode : $order->get_billing_postcode();
581
+			$stripe_params['billing_country']    = version_compare(WC_VERSION, '3.0.0', '<') ? $order->billing_country : $order->get_billing_country();
582 582
 		}
583 583
 
584
-		$stripe_params['no_prepaid_card_msg']                     = __( 'Sorry, we\'re not accepting prepaid cards at this time.', 'woocommerce-gateway-stripe' );
585
-		$stripe_params['allow_prepaid_card']                      = apply_filters( 'wc_stripe_allow_prepaid_card', true ) ? 'yes' : 'no';
586
-		$stripe_params['stripe_checkout_require_billing_address'] = apply_filters( 'wc_stripe_checkout_require_billing_address', false ) ? 'yes' : 'no';
584
+		$stripe_params['no_prepaid_card_msg']                     = __('Sorry, we\'re not accepting prepaid cards at this time.', 'woocommerce-gateway-stripe');
585
+		$stripe_params['allow_prepaid_card']                      = apply_filters('wc_stripe_allow_prepaid_card', true) ? 'yes' : 'no';
586
+		$stripe_params['stripe_checkout_require_billing_address'] = apply_filters('wc_stripe_checkout_require_billing_address', false) ? 'yes' : 'no';
587 587
 
588 588
 		// merge localized messages to be use in JS
589
-		$stripe_params = array_merge( $stripe_params, $this->get_localized_messages() );
589
+		$stripe_params = array_merge($stripe_params, $this->get_localized_messages());
590 590
 
591
-		wp_localize_script( 'woocommerce_stripe', 'wc_stripe_params', apply_filters( 'wc_stripe_params', $stripe_params ) );
591
+		wp_localize_script('woocommerce_stripe', 'wc_stripe_params', apply_filters('wc_stripe_params', $stripe_params));
592 592
 	}
593 593
 
594 594
 	/**
@@ -597,35 +597,35 @@  discard block
 block discarded – undo
597 597
 	 * @param  object $source
598 598
 	 * @return array()
599 599
 	 */
600
-	protected function generate_payment_request( $order, $source ) {
600
+	protected function generate_payment_request($order, $source) {
601 601
 		$post_data                = array();
602
-		$post_data['currency']    = strtolower( version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->get_order_currency() : $order->get_currency() );
603
-		$post_data['amount']      = $this->get_stripe_amount( $order->get_total(), $post_data['currency'] );
604
-		$post_data['description'] = sprintf( __( '%1$s - Order %2$s', 'woocommerce-gateway-stripe' ), $this->statement_descriptor, $order->get_order_number() );
602
+		$post_data['currency']    = strtolower(version_compare(WC_VERSION, '3.0.0', '<') ? $order->get_order_currency() : $order->get_currency());
603
+		$post_data['amount']      = $this->get_stripe_amount($order->get_total(), $post_data['currency']);
604
+		$post_data['description'] = sprintf(__('%1$s - Order %2$s', 'woocommerce-gateway-stripe'), $this->statement_descriptor, $order->get_order_number());
605 605
 		$post_data['capture']     = $this->capture ? 'true' : 'false';
606 606
 
607
-		$billing_email      = version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->billing_email : $order->get_billing_email();
608
-		$billing_first_name = version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->billing_first_name : $order->get_billing_first_name();
609
-		$billing_last_name  = version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->billing_last_name : $order->get_billing_last_name();
607
+		$billing_email      = version_compare(WC_VERSION, '3.0.0', '<') ? $order->billing_email : $order->get_billing_email();
608
+		$billing_first_name = version_compare(WC_VERSION, '3.0.0', '<') ? $order->billing_first_name : $order->get_billing_first_name();
609
+		$billing_last_name  = version_compare(WC_VERSION, '3.0.0', '<') ? $order->billing_last_name : $order->get_billing_last_name();
610 610
 
611
-		if ( ! empty( $billing_email ) && apply_filters( 'wc_stripe_send_stripe_receipt', false ) ) {
611
+		if ( ! empty($billing_email) && apply_filters('wc_stripe_send_stripe_receipt', false)) {
612 612
 			$post_data['receipt_email'] = $billing_email;
613 613
 		}
614 614
 
615
-		$post_data['expand[]']    = 'balance_transaction';
615
+		$post_data['expand[]'] = 'balance_transaction';
616 616
 
617 617
 		$metadata = array(
618
-			__( 'Customer Name', 'woocommerce-gateway-stripe' ) => sanitize_text_field( $billing_first_name ) . ' ' . sanitize_text_field( $billing_last_name ),
619
-			__( 'Customer Email', 'woocommerce-gateway-stripe' ) => sanitize_email( $billing_email ),
618
+			__('Customer Name', 'woocommerce-gateway-stripe') => sanitize_text_field($billing_first_name) . ' ' . sanitize_text_field($billing_last_name),
619
+			__('Customer Email', 'woocommerce-gateway-stripe') => sanitize_email($billing_email),
620 620
 		);
621 621
 
622
-		$post_data['metadata'] = apply_filters( 'wc_stripe_payment_metadata', $metadata, $order, $source );
622
+		$post_data['metadata'] = apply_filters('wc_stripe_payment_metadata', $metadata, $order, $source);
623 623
 
624
-		if ( $source->customer ) {
624
+		if ($source->customer) {
625 625
 			$post_data['customer'] = $source->customer;
626 626
 		}
627 627
 
628
-		if ( $source->source ) {
628
+		if ($source->source) {
629 629
 			$post_data['source'] = $source->source;
630 630
 		}
631 631
 
@@ -637,7 +637,7 @@  discard block
 block discarded – undo
637 637
 		 * @param WC_Order $order
638 638
 		 * @param object $source
639 639
 		 */
640
-		return apply_filters( 'wc_stripe_generate_payment_request', $post_data, $order, $source );
640
+		return apply_filters('wc_stripe_generate_payment_request', $post_data, $order, $source);
641 641
 	}
642 642
 
643 643
 	/**
@@ -649,38 +649,38 @@  discard block
 block discarded – undo
649 649
 	 * @throws Exception When card was not added or for and invalid card.
650 650
 	 * @return object
651 651
 	 */
652
-	protected function get_source( $user_id, $force_customer = false ) {
653
-		$stripe_customer = new WC_Stripe_Customer( $user_id );
654
-		$force_customer  = apply_filters( 'wc_stripe_force_customer_creation', $force_customer, $stripe_customer );
652
+	protected function get_source($user_id, $force_customer = false) {
653
+		$stripe_customer = new WC_Stripe_Customer($user_id);
654
+		$force_customer  = apply_filters('wc_stripe_force_customer_creation', $force_customer, $stripe_customer);
655 655
 		$stripe_source   = false;
656 656
 		$token_id        = false;
657 657
 
658 658
 		// New CC info was entered and we have a new token to process
659
-		if ( isset( $_POST['stripe_token'] ) ) {
660
-			$stripe_token     = wc_clean( $_POST['stripe_token'] );
661
-			$maybe_saved_card = isset( $_POST['wc-stripe-new-payment-method'] ) && ! empty( $_POST['wc-stripe-new-payment-method'] );
659
+		if (isset($_POST['stripe_token'])) {
660
+			$stripe_token     = wc_clean($_POST['stripe_token']);
661
+			$maybe_saved_card = isset($_POST['wc-stripe-new-payment-method']) && ! empty($_POST['wc-stripe-new-payment-method']);
662 662
 
663 663
 			// This is true if the user wants to store the card to their account.
664
-			if ( ( $user_id && $this->saved_cards && $maybe_saved_card ) || $force_customer ) {
665
-				$stripe_source = $stripe_customer->add_card( $stripe_token );
664
+			if (($user_id && $this->saved_cards && $maybe_saved_card) || $force_customer) {
665
+				$stripe_source = $stripe_customer->add_card($stripe_token);
666 666
 
667
-				if ( is_wp_error( $stripe_source ) ) {
668
-					throw new Exception( $stripe_source->get_error_message() );
667
+				if (is_wp_error($stripe_source)) {
668
+					throw new Exception($stripe_source->get_error_message());
669 669
 				}
670 670
 			} else {
671 671
 				// Not saving token, so don't define customer either.
672 672
 				$stripe_source   = $stripe_token;
673 673
 				$stripe_customer = false;
674 674
 			}
675
-		} elseif ( isset( $_POST['wc-stripe-payment-token'] ) && 'new' !== $_POST['wc-stripe-payment-token'] ) {
675
+		} elseif (isset($_POST['wc-stripe-payment-token']) && 'new' !== $_POST['wc-stripe-payment-token']) {
676 676
 			// Use an existing token, and then process the payment
677 677
 
678
-			$token_id = wc_clean( $_POST['wc-stripe-payment-token'] );
679
-			$token    = WC_Payment_Tokens::get( $token_id );
678
+			$token_id = wc_clean($_POST['wc-stripe-payment-token']);
679
+			$token    = WC_Payment_Tokens::get($token_id);
680 680
 
681
-			if ( ! $token || $token->get_user_id() !== get_current_user_id() ) {
682
-				WC()->session->set( 'refresh_totals', true );
683
-				throw new Exception( __( 'Invalid payment method. Please input a new card number.', 'woocommerce-gateway-stripe' ) );
681
+			if ( ! $token || $token->get_user_id() !== get_current_user_id()) {
682
+				WC()->session->set('refresh_totals', true);
683
+				throw new Exception(__('Invalid payment method. Please input a new card number.', 'woocommerce-gateway-stripe'));
684 684
 			}
685 685
 
686 686
 			$stripe_source = $token->get_token();
@@ -704,19 +704,19 @@  discard block
 block discarded – undo
704 704
 	 * @param object $order
705 705
 	 * @return object
706 706
 	 */
707
-	protected function get_order_source( $order = null ) {
707
+	protected function get_order_source($order = null) {
708 708
 		$stripe_customer = new WC_Stripe_Customer();
709 709
 		$stripe_source   = false;
710 710
 		$token_id        = false;
711 711
 
712
-		if ( $order ) {
713
-			$order_id = version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->id : $order->get_id();
712
+		if ($order) {
713
+			$order_id = version_compare(WC_VERSION, '3.0.0', '<') ? $order->id : $order->get_id();
714 714
 
715
-			if ( $meta_value = get_post_meta( $order_id, '_stripe_customer_id', true ) ) {
716
-				$stripe_customer->set_id( $meta_value );
715
+			if ($meta_value = get_post_meta($order_id, '_stripe_customer_id', true)) {
716
+				$stripe_customer->set_id($meta_value);
717 717
 			}
718 718
 
719
-			if ( $meta_value = get_post_meta( $order_id, '_stripe_card_id', true ) ) {
719
+			if ($meta_value = get_post_meta($order_id, '_stripe_card_id', true)) {
720 720
 				$stripe_source = $meta_value;
721 721
 			}
722 722
 		}
@@ -739,60 +739,60 @@  discard block
 block discarded – undo
739 739
 	 *
740 740
 	 * @return array|void
741 741
 	 */
742
-	public function process_payment( $order_id, $retry = true, $force_customer = false ) {
742
+	public function process_payment($order_id, $retry = true, $force_customer = false) {
743 743
 		try {
744
-			$order  = wc_get_order( $order_id );
745
-			$source = $this->get_source( get_current_user_id(), $force_customer );
744
+			$order  = wc_get_order($order_id);
745
+			$source = $this->get_source(get_current_user_id(), $force_customer);
746 746
 
747
-			if ( empty( $source->source ) && empty( $source->customer ) ) {
748
-				$error_msg = __( 'Please enter your card details to make a payment.', 'woocommerce-gateway-stripe' );
749
-				$error_msg .= ' ' . __( 'Developers: Please make sure that you are including jQuery and there are no JavaScript errors on the page.', 'woocommerce-gateway-stripe' );
750
-				throw new Exception( $error_msg );
747
+			if (empty($source->source) && empty($source->customer)) {
748
+				$error_msg = __('Please enter your card details to make a payment.', 'woocommerce-gateway-stripe');
749
+				$error_msg .= ' ' . __('Developers: Please make sure that you are including jQuery and there are no JavaScript errors on the page.', 'woocommerce-gateway-stripe');
750
+				throw new Exception($error_msg);
751 751
 			}
752 752
 
753 753
 			// Store source to order meta.
754
-			$this->save_source( $order, $source );
754
+			$this->save_source($order, $source);
755 755
 
756 756
 			// Result from Stripe API request.
757 757
 			$response = null;
758 758
 
759 759
 			// Handle payment.
760
-			if ( $order->get_total() > 0 ) {
760
+			if ($order->get_total() > 0) {
761 761
 
762
-				if ( $order->get_total() * 100 < WC_Stripe::get_minimum_amount() ) {
763
-					throw new Exception( sprintf( __( 'Sorry, the minimum allowed order total is %1$s to use this payment method.', 'woocommerce-gateway-stripe' ), wc_price( WC_Stripe::get_minimum_amount() / 100 ) ) );
762
+				if ($order->get_total() * 100 < WC_Stripe::get_minimum_amount()) {
763
+					throw new Exception(sprintf(__('Sorry, the minimum allowed order total is %1$s to use this payment method.', 'woocommerce-gateway-stripe'), wc_price(WC_Stripe::get_minimum_amount() / 100)));
764 764
 				}
765 765
 
766
-				$this->log( "Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}" );
766
+				$this->log("Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}");
767 767
 
768 768
 				// Make the request.
769
-				$response = WC_Stripe_API::request( $this->generate_payment_request( $order, $source ) );
769
+				$response = WC_Stripe_API::request($this->generate_payment_request($order, $source));
770 770
 
771
-				if ( is_wp_error( $response ) ) {
771
+				if (is_wp_error($response)) {
772 772
 					// Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without.
773
-					if ( 'customer' === $response->get_error_code() && $retry ) {
774
-						delete_user_meta( get_current_user_id(), '_stripe_customer_id' );
775
-						return $this->process_payment( $order_id, false, $force_customer );
773
+					if ('customer' === $response->get_error_code() && $retry) {
774
+						delete_user_meta(get_current_user_id(), '_stripe_customer_id');
775
+						return $this->process_payment($order_id, false, $force_customer);
776 776
 						// Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message.
777
-					} elseif ( 'source' === $response->get_error_code() && $source->token_id ) {
778
-						$token = WC_Payment_Tokens::get( $source->token_id );
777
+					} elseif ('source' === $response->get_error_code() && $source->token_id) {
778
+						$token = WC_Payment_Tokens::get($source->token_id);
779 779
 						$token->delete();
780
-						$message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' );
781
-						$order->add_order_note( $message );
782
-						throw new Exception( $message );
780
+						$message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe');
781
+						$order->add_order_note($message);
782
+						throw new Exception($message);
783 783
 					}
784 784
 
785 785
 					$localized_messages = $this->get_localized_messages();
786 786
 
787
-					$message = isset( $localized_messages[ $response->get_error_code() ] ) ? $localized_messages[ $response->get_error_code() ] : $response->get_error_message();
787
+					$message = isset($localized_messages[$response->get_error_code()]) ? $localized_messages[$response->get_error_code()] : $response->get_error_message();
788 788
 
789
-					$order->add_order_note( $message );
789
+					$order->add_order_note($message);
790 790
 
791
-					throw new Exception( $message );
791
+					throw new Exception($message);
792 792
 				}
793 793
 
794 794
 				// Process valid response.
795
-				$this->process_response( $response, $order );
795
+				$this->process_response($response, $order);
796 796
 			} else {
797 797
 				$order->payment_complete();
798 798
 			}
@@ -800,23 +800,23 @@  discard block
 block discarded – undo
800 800
 			// Remove cart.
801 801
 			WC()->cart->empty_cart();
802 802
 
803
-			do_action( 'wc_gateway_stripe_process_payment', $response, $order );
803
+			do_action('wc_gateway_stripe_process_payment', $response, $order);
804 804
 
805 805
 			// Return thank you page redirect.
806 806
 			return array(
807 807
 				'result'   => 'success',
808
-				'redirect' => $this->get_return_url( $order ),
808
+				'redirect' => $this->get_return_url($order),
809 809
 			);
810 810
 
811
-		} catch ( Exception $e ) {
812
-			wc_add_notice( $e->getMessage(), 'error' );
813
-			$this->log( sprintf( __( 'Error: %s', 'woocommerce-gateway-stripe' ), $e->getMessage() ) );
811
+		} catch (Exception $e) {
812
+			wc_add_notice($e->getMessage(), 'error');
813
+			$this->log(sprintf(__('Error: %s', 'woocommerce-gateway-stripe'), $e->getMessage()));
814 814
 
815
-			if ( $order->has_status( array( 'pending', 'failed' ) ) ) {
816
-				$this->send_failed_order_email( $order_id );
815
+			if ($order->has_status(array('pending', 'failed'))) {
816
+				$this->send_failed_order_email($order_id);
817 817
 			}
818 818
 
819
-			do_action( 'wc_gateway_stripe_process_payment_error', $e, $order );
819
+			do_action('wc_gateway_stripe_process_payment_error', $e, $order);
820 820
 
821 821
 			return array(
822 822
 				'result'   => 'fail',
@@ -831,56 +831,56 @@  discard block
 block discarded – undo
831 831
 	 * @param WC_Order $order For to which the source applies.
832 832
 	 * @param stdClass $source Source information.
833 833
 	 */
834
-	protected function save_source( $order, $source ) {
835
-		$order_id = version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->id : $order->get_id();
834
+	protected function save_source($order, $source) {
835
+		$order_id = version_compare(WC_VERSION, '3.0.0', '<') ? $order->id : $order->get_id();
836 836
 
837 837
 		// Store source in the order.
838
-		if ( $source->customer ) {
839
-			update_post_meta( $order_id, '_stripe_customer_id', $source->customer );
838
+		if ($source->customer) {
839
+			update_post_meta($order_id, '_stripe_customer_id', $source->customer);
840 840
 		}
841
-		if ( $source->source ) {
842
-			update_post_meta( $order_id, '_stripe_card_id', $source->source );
841
+		if ($source->source) {
842
+			update_post_meta($order_id, '_stripe_card_id', $source->source);
843 843
 		}
844 844
 	}
845 845
 
846 846
 	/**
847 847
 	 * Store extra meta data for an order from a Stripe Response.
848 848
 	 */
849
-	public function process_response( $response, $order ) {
850
-		$this->log( 'Processing response: ' . print_r( $response, true ) );
849
+	public function process_response($response, $order) {
850
+		$this->log('Processing response: ' . print_r($response, true));
851 851
 
852
-		$order_id = version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->id : $order->get_id();
852
+		$order_id = version_compare(WC_VERSION, '3.0.0', '<') ? $order->id : $order->get_id();
853 853
 
854 854
 		// Store charge data
855
-		update_post_meta( $order_id, '_stripe_charge_id', $response->id );
856
-		update_post_meta( $order_id, '_stripe_charge_captured', $response->captured ? 'yes' : 'no' );
855
+		update_post_meta($order_id, '_stripe_charge_id', $response->id);
856
+		update_post_meta($order_id, '_stripe_charge_captured', $response->captured ? 'yes' : 'no');
857 857
 
858 858
 		// Store other data such as fees
859
-		if ( isset( $response->balance_transaction ) && isset( $response->balance_transaction->fee ) ) {
859
+		if (isset($response->balance_transaction) && isset($response->balance_transaction->fee)) {
860 860
 			// Fees and Net needs to both come from Stripe to be accurate as the returned
861 861
 			// values are in the local currency of the Stripe account, not from WC.
862
-			$fee = ! empty( $response->balance_transaction->fee ) ? WC_Stripe::format_number( $response->balance_transaction, 'fee' ) : 0;
863
-			$net = ! empty( $response->balance_transaction->net ) ? WC_Stripe::format_number( $response->balance_transaction, 'net' ) : 0;
864
-			update_post_meta( $order_id, 'Stripe Fee', $fee );
865
-			update_post_meta( $order_id, 'Net Revenue From Stripe', $net );
862
+			$fee = ! empty($response->balance_transaction->fee) ? WC_Stripe::format_number($response->balance_transaction, 'fee') : 0;
863
+			$net = ! empty($response->balance_transaction->net) ? WC_Stripe::format_number($response->balance_transaction, 'net') : 0;
864
+			update_post_meta($order_id, 'Stripe Fee', $fee);
865
+			update_post_meta($order_id, 'Net Revenue From Stripe', $net);
866 866
 		}
867 867
 
868
-		if ( $response->captured ) {
869
-			$order->payment_complete( $response->id );
868
+		if ($response->captured) {
869
+			$order->payment_complete($response->id);
870 870
 
871
-			$message = sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $response->id );
872
-			$order->add_order_note( $message );
873
-			$this->log( 'Success: ' . $message );
871
+			$message = sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $response->id);
872
+			$order->add_order_note($message);
873
+			$this->log('Success: ' . $message);
874 874
 
875 875
 		} else {
876
-			add_post_meta( $order_id, '_transaction_id', $response->id, true );
876
+			add_post_meta($order_id, '_transaction_id', $response->id, true);
877 877
 
878
-			if ( $order->has_status( array( 'pending', 'failed' ) ) ) {
879
-				version_compare( WC_VERSION, '3.0.0', '<' ) ? $order->reduce_order_stock() : wc_reduce_stock_levels( $order_id );
878
+			if ($order->has_status(array('pending', 'failed'))) {
879
+				version_compare(WC_VERSION, '3.0.0', '<') ? $order->reduce_order_stock() : wc_reduce_stock_levels($order_id);
880 880
 			}
881 881
 
882
-			$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 ) );
883
-			$this->log( "Successful auth: $response->id" );
882
+			$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));
883
+			$this->log("Successful auth: $response->id");
884 884
 		}
885 885
 
886 886
 		return $response;
@@ -892,32 +892,32 @@  discard block
 block discarded – undo
892 892
 	 * @since 3.0.0
893 893
 	 */
894 894
 	public function add_payment_method() {
895
-		if ( empty( $_POST['stripe_token'] ) || ! is_user_logged_in() ) {
896
-			wc_add_notice( __( 'There was a problem adding the card.', 'woocommerce-gateway-stripe' ), 'error' );
895
+		if (empty($_POST['stripe_token']) || ! is_user_logged_in()) {
896
+			wc_add_notice(__('There was a problem adding the card.', 'woocommerce-gateway-stripe'), 'error');
897 897
 			return;
898 898
 		}
899 899
 
900
-		$stripe_customer = new WC_Stripe_Customer( get_current_user_id() );
901
-		$card            = $stripe_customer->add_card( wc_clean( $_POST['stripe_token'] ) );
900
+		$stripe_customer = new WC_Stripe_Customer(get_current_user_id());
901
+		$card            = $stripe_customer->add_card(wc_clean($_POST['stripe_token']));
902 902
 
903
-		if ( is_wp_error( $card ) ) {
903
+		if (is_wp_error($card)) {
904 904
 			$localized_messages = $this->get_localized_messages();
905
-			$error_msg = __( 'There was a problem adding the card.', 'woocommerce-gateway-stripe' );
905
+			$error_msg = __('There was a problem adding the card.', 'woocommerce-gateway-stripe');
906 906
 
907 907
 			// loop through the errors to find matching localized message
908
-			foreach ( $card->errors as $error => $msg ) {
909
-				if ( isset( $localized_messages[ $error ] ) ) {
910
-					$error_msg = $localized_messages[ $error ];
908
+			foreach ($card->errors as $error => $msg) {
909
+				if (isset($localized_messages[$error])) {
910
+					$error_msg = $localized_messages[$error];
911 911
 				}
912 912
 			}
913 913
 
914
-			wc_add_notice( $error_msg, 'error' );
914
+			wc_add_notice($error_msg, 'error');
915 915
 			return;
916 916
 		}
917 917
 
918 918
 		return array(
919 919
 			'result'   => 'success',
920
-			'redirect' => wc_get_endpoint_url( 'payment-methods' ),
920
+			'redirect' => wc_get_endpoint_url('payment-methods'),
921 921
 		);
922 922
 	}
923 923
 
@@ -927,36 +927,36 @@  discard block
 block discarded – undo
927 927
 	 * @param  float $amount
928 928
 	 * @return bool
929 929
 	 */
930
-	public function process_refund( $order_id, $amount = null, $reason = '' ) {
931
-		$order = wc_get_order( $order_id );
930
+	public function process_refund($order_id, $amount = null, $reason = '') {
931
+		$order = wc_get_order($order_id);
932 932
 
933
-		if ( ! $order || ! $order->get_transaction_id() ) {
933
+		if ( ! $order || ! $order->get_transaction_id()) {
934 934
 			return false;
935 935
 		}
936 936
 
937 937
 		$body = array();
938 938
 
939
-		if ( ! is_null( $amount ) ) {
940
-			$body['amount']	= $this->get_stripe_amount( $amount );
939
+		if ( ! is_null($amount)) {
940
+			$body['amount'] = $this->get_stripe_amount($amount);
941 941
 		}
942 942
 
943
-		if ( $reason ) {
943
+		if ($reason) {
944 944
 			$body['metadata'] = array(
945 945
 				'reason'	=> $reason,
946 946
 			);
947 947
 		}
948 948
 
949
-		$this->log( "Info: Beginning refund for order $order_id for the amount of {$amount}" );
949
+		$this->log("Info: Beginning refund for order $order_id for the amount of {$amount}");
950 950
 
951
-		$response = WC_Stripe_API::request( $body, 'charges/' . $order->get_transaction_id() . '/refunds' );
951
+		$response = WC_Stripe_API::request($body, 'charges/' . $order->get_transaction_id() . '/refunds');
952 952
 
953
-		if ( is_wp_error( $response ) ) {
954
-			$this->log( 'Error: ' . $response->get_error_message() );
953
+		if (is_wp_error($response)) {
954
+			$this->log('Error: ' . $response->get_error_message());
955 955
 			return $response;
956
-		} elseif ( ! empty( $response->id ) ) {
957
-			$refund_message = sprintf( __( 'Refunded %1$s - Refund ID: %2$s - Reason: %3$s', 'woocommerce-gateway-stripe' ), wc_price( $response->amount / 100 ), $response->id, $reason );
958
-			$order->add_order_note( $refund_message );
959
-			$this->log( 'Success: ' . html_entity_decode( strip_tags( $refund_message ) ) );
956
+		} elseif ( ! empty($response->id)) {
957
+			$refund_message = sprintf(__('Refunded %1$s - Refund ID: %2$s - Reason: %3$s', 'woocommerce-gateway-stripe'), wc_price($response->amount / 100), $response->id, $reason);
958
+			$order->add_order_note($refund_message);
959
+			$this->log('Success: ' . html_entity_decode(strip_tags($refund_message)));
960 960
 			return true;
961 961
 		}
962 962
 	}
@@ -969,10 +969,10 @@  discard block
 block discarded – undo
969 969
 	 * @param int $order_id
970 970
 	 * @return null
971 971
 	 */
972
-	public function send_failed_order_email( $order_id ) {
972
+	public function send_failed_order_email($order_id) {
973 973
 		$emails = WC()->mailer()->get_emails();
974
-		if ( ! empty( $emails ) && ! empty( $order_id ) ) {
975
-			$emails['WC_Email_Failed_Order']->trigger( $order_id );
974
+		if ( ! empty($emails) && ! empty($order_id)) {
975
+			$emails['WC_Email_Failed_Order']->trigger($order_id);
976 976
 		}
977 977
 	}
978 978
 
@@ -984,9 +984,9 @@  discard block
 block discarded – undo
984 984
 	 *
985 985
 	 * @param string $message
986 986
 	 */
987
-	public function log( $message ) {
988
-		if ( $this->logging ) {
989
-			WC_Stripe::log( $message );
987
+	public function log($message) {
988
+		if ($this->logging) {
989
+			WC_Stripe::log($message);
990 990
 		}
991 991
 	}
992 992
 }
Please login to merge, or discard this patch.