Completed
Pull Request — master (#1267)
by
unknown
01:46
created

WC_Gateway_Stripe::init_form_fields()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
if ( ! defined( 'ABSPATH' ) ) {
3
	exit;
4
}
5
6
/**
7
 * WC_Gateway_Stripe class.
8
 *
9
 * @extends WC_Payment_Gateway
10
 */
11
class WC_Gateway_Stripe extends WC_Stripe_Payment_Gateway {
12
	/**
13
	 * The delay between retries.
14
	 *
15
	 * @var int
16
	 */
17
	public $retry_interval;
18
19
	/**
20
	 * Should we capture Credit cards
21
	 *
22
	 * @var bool
23
	 */
24
	public $capture;
25
26
	/**
27
	 * Alternate credit card statement name
28
	 *
29
	 * @var bool
30
	 */
31
	public $statement_descriptor;
32
33
	/**
34
	 * Should we store the users credit cards?
35
	 *
36
	 * @var bool
37
	 */
38
	public $saved_cards;
39
40
	/**
41
	 * API access secret key
42
	 *
43
	 * @var string
44
	 */
45
	public $secret_key;
46
47
	/**
48
	 * Api access publishable key
49
	 *
50
	 * @var string
51
	 */
52
	public $publishable_key;
53
54
	/**
55
	 * Do we accept Payment Request?
56
	 *
57
	 * @var bool
58
	 */
59
	public $payment_request;
60
61
	/**
62
	 * Is test mode active?
63
	 *
64
	 * @var bool
65
	 */
66
	public $testmode;
67
68
	/**
69
	 * Inline CC form styling
70
	 *
71
	 * @var string
72
	 */
73
	public $inline_cc_form;
74
75
	/**
76
	 * Pre Orders Object
77
	 *
78
	 * @var object
79
	 */
80
	public $pre_orders;
81
82
	/**
83
	 * Constructor
84
	 */
85
	public function __construct() {
86
		$this->retry_interval = 1;
87
		$this->id             = 'stripe';
88
		$this->method_title   = __( 'Stripe', 'woocommerce-gateway-stripe' );
89
		/* translators: 1) link to Stripe register page 2) link to Stripe api keys page */
90
		$this->method_description = __( 'Stripe works by adding payment fields on the checkout and then sending the details to Stripe for verification.', 'woocommerce-gateway-stripe' );
91
		$this->has_fields         = true;
92
		$this->supports           = array(
93
			'products',
94
			'refunds',
95
			'tokenization',
96
			'add_payment_method',
97
			'subscriptions',
98
			'subscription_cancellation',
99
			'subscription_suspension',
100
			'subscription_reactivation',
101
			'subscription_amount_changes',
102
			'subscription_date_changes',
103
			'subscription_payment_method_change',
104
			'subscription_payment_method_change_customer',
105
			'subscription_payment_method_change_admin',
106
			'multiple_subscriptions',
107
			'pre-orders',
108
		);
109
110
		// Load the form fields.
111
		$this->init_form_fields();
112
113
		// Load the settings.
114
		$this->init_settings();
115
116
		// Get setting values.
117
		$this->title                = $this->get_option( 'title' );
118
		$this->description          = $this->get_option( 'description' );
119
		$this->enabled              = $this->get_option( 'enabled' );
120
		$this->testmode             = 'yes' === $this->get_option( 'testmode' );
121
		$this->inline_cc_form       = 'yes' === $this->get_option( 'inline_cc_form' );
0 ignored issues
show
Documentation Bug introduced by
The property $inline_cc_form was declared of type string, but 'yes' === $this->get_option('inline_cc_form') is of type boolean. Maybe add a type cast?

This check looks for assignments to scalar types that may be of the wrong type.

To ensure the code behaves as expected, it may be a good idea to add an explicit type cast.

$answer = 42;

$correct = false;

$correct = (bool) $answer;
Loading history...
122
		$this->capture              = 'yes' === $this->get_option( 'capture', 'yes' );
123
		$this->statement_descriptor = WC_Stripe_Helper::clean_statement_descriptor( $this->get_option( 'statement_descriptor' ) );
0 ignored issues
show
Documentation Bug introduced by
The property $statement_descriptor was declared of type boolean, but \WC_Stripe_Helper::clean...statement_descriptor')) is of type string. Maybe add a type cast?

This check looks for assignments to scalar types that may be of the wrong type.

To ensure the code behaves as expected, it may be a good idea to add an explicit type cast.

$answer = 42;

$correct = false;

$correct = (bool) $answer;
Loading history...
124
		$this->saved_cards          = 'yes' === $this->get_option( 'saved_cards' );
125
		$this->secret_key           = $this->testmode ? $this->get_option( 'test_secret_key' ) : $this->get_option( 'secret_key' );
126
		$this->publishable_key      = $this->testmode ? $this->get_option( 'test_publishable_key' ) : $this->get_option( 'publishable_key' );
127
		$this->payment_request      = 'yes' === $this->get_option( 'payment_request', 'yes' );
128
129
		WC_Stripe_API::set_secret_key( $this->secret_key );
130
131
		// Hooks.
132
		add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) );
133
		add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
134
		add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
135
		add_action( 'woocommerce_admin_order_totals_after_total', array( $this, 'display_order_fee' ) );
136
		add_action( 'woocommerce_admin_order_totals_after_total', array( $this, 'display_order_payout' ), 20 );
137
		add_action( 'woocommerce_customer_save_address', array( $this, 'show_update_card_notice' ), 10, 2 );
138
		add_filter( 'woocommerce_available_payment_gateways', array( $this, 'prepare_order_pay_page' ) );
139
		add_action( 'woocommerce_account_view-order_endpoint', array( $this, 'check_intent_status_on_order_page' ), 1 );
140
		add_filter( 'woocommerce_payment_successful_result', array( $this, 'modify_successful_payment_result' ), 99999, 2 );
141
		add_action( 'set_logged_in_cookie', array( $this, 'set_cookie_on_current_request' ) );
142
		add_filter( 'woocommerce_get_checkout_payment_url', array( $this, 'get_checkout_payment_url' ), 10, 2 );
143
144
		// Note: display error is in the parent class.
145
		add_action( 'admin_notices', array( $this, 'display_errors' ), 9999 );
146
147 View Code Duplication
		if ( WC_Stripe_Helper::is_pre_orders_exists() ) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
148
			$this->pre_orders = new WC_Stripe_Pre_Orders_Compat();
149
150
			add_action( 'wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array( $this->pre_orders, 'process_pre_order_release_payment' ) );
151
		}
152
	}
153
154
	/**
155
	 * Checks if gateway should be available to use.
156
	 *
157
	 * @since 4.0.2
158
	 */
159
	public function is_available() {
160
		if ( is_add_payment_method_page() && ! $this->saved_cards ) {
161
			return false;
162
		}
163
164
		return parent::is_available();
165
	}
166
167
	/**
168
	 * Adds a notice for customer when they update their billing address.
169
	 *
170
	 * @since 4.1.0
171
	 * @param int    $user_id      The ID of the current user.
172
	 * @param string $load_address The address to load.
173
	 */
174
	public function show_update_card_notice( $user_id, $load_address ) {
175
		if ( ! $this->saved_cards || ! WC_Stripe_Payment_Tokens::customer_has_saved_methods( $user_id ) || 'billing' !== $load_address ) {
176
			return;
177
		}
178
179
		/* translators: 1) Opening anchor tag 2) closing anchor tag */
180
		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' );
181
	}
182
183
	/**
184
	 * Get_icon function.
185
	 *
186
	 * @since 1.0.0
187
	 * @version 4.0.0
188
	 * @return string
189
	 */
190
	public function get_icon() {
191
		$icons = $this->payment_icons();
192
193
		$icons_str = '';
194
195
		$icons_str .= isset( $icons['visa'] ) ? $icons['visa'] : '';
196
		$icons_str .= isset( $icons['amex'] ) ? $icons['amex'] : '';
197
		$icons_str .= isset( $icons['mastercard'] ) ? $icons['mastercard'] : '';
198
199
		if ( 'USD' === get_woocommerce_currency() ) {
200
			$icons_str .= isset( $icons['discover'] ) ? $icons['discover'] : '';
201
			$icons_str .= isset( $icons['jcb'] ) ? $icons['jcb'] : '';
202
			$icons_str .= isset( $icons['diners'] ) ? $icons['diners'] : '';
203
		}
204
205
		return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id );
206
	}
207
208
	/**
209
	 * Initialise Gateway Settings Form Fields
210
	 */
211
	public function init_form_fields() {
212
		$this->form_fields = require( dirname( __FILE__ ) . '/admin/stripe-settings.php' );
213
	}
214
215
	/**
216
	 * Payment form on checkout page
217
	 */
218
	public function payment_fields() {
219
		global $wp;
220
		$user                 = wp_get_current_user();
221
		$display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards;
222
		$total                = WC()->cart->total;
0 ignored issues
show
Unused Code introduced by
$total is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
223
		$user_email           = '';
224
		$description          = $this->get_description();
225
		$description          = ! empty( $description ) ? $description : '';
226
		$firstname            = '';
227
		$lastname             = '';
228
229
		// If paying from order, we need to get total from order not cart.
230
		if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { // wpcs: csrf ok.
231
			$order      = wc_get_order( wc_clean( $wp->query_vars['order-pay'] ) ); // wpcs: csrf ok, sanitization ok.
232
			$total      = $order->get_total();
0 ignored issues
show
Unused Code introduced by
$total is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
233
			$user_email = $order->get_billing_email();
234
		} else {
235
			if ( $user->ID ) {
236
				$user_email = get_user_meta( $user->ID, 'billing_email', true );
237
				$user_email = $user_email ? $user_email : $user->user_email;
238
			}
239
		}
240
241
		if ( is_add_payment_method_page() ) {
242
			$firstname       = $user->user_firstname;
243
			$lastname        = $user->user_lastname;
244
		}
245
246
		ob_start();
247
248
		echo '<div
249
			id="stripe-payment-data"
250
			data-email="' . esc_attr( $user_email ) . '"
251
			data-full-name="' . esc_attr( $firstname . ' ' . $lastname ) . '"
252
			data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '"
253
		>';
254
255
		if ( $this->testmode ) {
256
			/* translators: link to Stripe testing page */
257
			$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' );
258
		}
259
260
		$description = trim( $description );
261
262
		echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); // wpcs: xss ok.
263
264
		if ( $display_tokenization ) {
265
			$this->tokenization_script();
266
			$this->saved_payment_methods();
267
		}
268
269
		$this->elements_form();
270
271 View Code Duplication
		if ( apply_filters( 'wc_stripe_display_save_payment_method_checkbox', $display_tokenization ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) ) { // wpcs: csrf ok.
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
272
273
			$this->save_payment_method_checkbox();
274
		}
275
276
		do_action( 'wc_stripe_cards_payment_fields', $this->id );
277
278
		echo '</div>';
279
280
		ob_end_flush();
281
	}
282
283
	/**
284
	 * Renders the Stripe elements form.
285
	 *
286
	 * @since 4.0.0
287
	 * @version 4.0.0
288
	 */
289
	public function elements_form() {
290
		?>
291
		<fieldset id="wc-<?php echo esc_attr( $this->id ); ?>-cc-form" class="wc-credit-card-form wc-payment-form" style="background:transparent;">
292
			<?php do_action( 'woocommerce_credit_card_form_start', $this->id ); ?>
293
294
			<?php if ( $this->inline_cc_form ) { ?>
295
				<label for="card-element">
296
					<?php esc_html_e( 'Credit or debit card', 'woocommerce-gateway-stripe' ); ?>
297
				</label>
298
299
				<div id="stripe-card-element" class="wc-stripe-elements-field">
300
				<!-- a Stripe Element will be inserted here. -->
301
				</div>
302
			<?php } else { ?>
303
				<div class="form-row form-row-wide">
304
					<label for="stripe-card-element"><?php esc_html_e( 'Card Number', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
305
					<div class="stripe-card-group">
306
						<div id="stripe-card-element" class="wc-stripe-elements-field">
307
						<!-- a Stripe Element will be inserted here. -->
308
						</div>
309
310
						<i class="stripe-credit-card-brand stripe-card-brand" alt="Credit Card"></i>
311
					</div>
312
				</div>
313
314
				<div class="form-row form-row-first">
315
					<label for="stripe-exp-element"><?php esc_html_e( 'Expiry Date', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
316
317
					<div id="stripe-exp-element" class="wc-stripe-elements-field">
318
					<!-- a Stripe Element will be inserted here. -->
319
					</div>
320
				</div>
321
322
				<div class="form-row form-row-last">
323
					<label for="stripe-cvc-element"><?php esc_html_e( 'Card Code (CVC)', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
324
				<div id="stripe-cvc-element" class="wc-stripe-elements-field">
325
				<!-- a Stripe Element will be inserted here. -->
326
				</div>
327
				</div>
328
				<div class="clear"></div>
329
			<?php } ?>
330
331
			<!-- Used to display form errors -->
332
			<div class="stripe-source-errors" role="alert"></div>
333
			<br />
334
			<?php do_action( 'woocommerce_credit_card_form_end', $this->id ); ?>
335
			<div class="clear"></div>
336
		</fieldset>
337
		<?php
338
	}
339
340
	/**
341
	 * Load admin scripts.
342
	 *
343
	 * @since 3.1.0
344
	 * @version 3.1.0
345
	 */
346
	public function admin_scripts() {
347
		if ( 'woocommerce_page_wc-settings' !== get_current_screen()->id ) {
348
			return;
349
		}
350
351
		$suffix         = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
352
		$oauth_endpoint = $this->secret_key && $this->publishable_key ? 'wc_stripe_clear_keys' : 'wc_stripe_oauth_init';
353
		$oauth_text     = array(
354
			'wc_stripe_clear_keys' => sprintf(
355
				/* translators: 1) opening anchor tag 2) closing anchor tag */
356
				__( '%1$sReset Stripe account keys%2$s', 'woocommerce-gateway-stripe' ),
357
				'<a href="#" class="button button-secondary">',
358
				'</a>'
359
			),
360
			'wc_stripe_oauth_init' => sprintf(
361
				/* translators: 1) opening anchor tag 2) closing anchor tag */
362
				__( '%1$sSetup or link an existing Stripe Account%2$s or manually enter Stripe keys below.', 'woocommerce-gateway-stripe' ),
363
				'<a href="#" class="button button-primary">',
364
				'</a>'
365
			),
366
		);
367
368
		wp_enqueue_script( 'woocommerce_stripe_admin', plugins_url( 'assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array(), WC_STRIPE_VERSION, true );
369
		wp_localize_script(
370
			'woocommerce_stripe_admin',
371
			'woocommerce_stripe_admin',
372
			array(
373
				'ajax_url'                  => WC_AJAX::get_endpoint( $oauth_endpoint ),
374
				'wc_stripe_admin_nonce'     => wp_create_nonce( '_wc_stripe_admin_nonce' ),
375
				'wc_stripe_api_button_text' => $oauth_text[ $oauth_endpoint ],
376
			)
377
		);
378
	}
379
380
	/**
381
	 * Payment_scripts function.
382
	 *
383
	 * Outputs scripts used for stripe payment
384
	 *
385
	 * @since 3.1.0
386
	 * @version 4.0.0
387
	 */
388
	public function payment_scripts() {
389
		global $wp;
390
		if (
391
			! is_product()
392
			&& ! is_cart()
393
			&& ! is_checkout()
394
			&& ! isset( $_GET['pay_for_order'] ) // wpcs: csrf ok.
395
			&& ! is_add_payment_method_page()
396
			&& ! isset( $_GET['change_payment_method'] ) // wpcs: csrf ok.
397
			&& ! ( ! empty( get_query_var( 'view-subscription' ) ) && is_callable( 'WCS_Early_Renewal_Manager::is_early_renewal_via_modal_enabled' ) && WCS_Early_Renewal_Manager::is_early_renewal_via_modal_enabled() )
398
			|| ( is_order_received_page() )
399
		) {
400
			return;
401
		}
402
403
		// If Stripe is not enabled bail.
404
		if ( 'no' === $this->enabled ) {
405
			return;
406
		}
407
408
		// If keys are not set bail.
409
		if ( ! $this->are_keys_set() ) {
410
			WC_Stripe_Logger::log( 'Keys are not set correctly.' );
411
			return;
412
		}
413
414
		// If no SSL bail.
415
		if ( ! $this->testmode && ! is_ssl() ) {
416
			WC_Stripe_Logger::log( 'Stripe live mode requires SSL.' );
417
			return;
418
		}
419
420
		$current_theme = wp_get_theme();
0 ignored issues
show
Unused Code introduced by
$current_theme is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
421
422
		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
423
424
		wp_register_style( 'stripe_styles', plugins_url( 'assets/css/stripe-styles.css', WC_STRIPE_MAIN_FILE ), array(), WC_STRIPE_VERSION );
425
		wp_enqueue_style( 'stripe_styles' );
426
427
		wp_register_script( 'stripe', 'https://js.stripe.com/v3/', '', '3.0', true );
428
		wp_register_script( 'woocommerce_stripe', plugins_url( 'assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array( 'jquery-payment', 'stripe' ), WC_STRIPE_VERSION, true );
429
430
		$stripe_params = array(
431
			'key'                  => $this->publishable_key,
432
			'i18n_terms'           => __( 'Please accept the terms and conditions first', 'woocommerce-gateway-stripe' ),
433
			'i18n_required_fields' => __( 'Please fill in required checkout fields first', 'woocommerce-gateway-stripe' ),
434
		);
435
436
		// If we're on the pay page we need to pass stripe.js the address of the order.
437
		if ( isset( $_GET['pay_for_order'] ) && 'true' === $_GET['pay_for_order'] ) { // wpcs: csrf ok.
438
			$order_id = wc_clean( $wp->query_vars['order-pay'] ); // wpcs: csrf ok, sanitization ok, xss ok.
439
			$order    = wc_get_order( $order_id );
440
441
			if ( is_a( $order, 'WC_Order' ) ) {
442
				$stripe_params['billing_first_name'] = $order->get_billing_first_name();
443
				$stripe_params['billing_last_name']  = $order->get_billing_last_name();
444
				$stripe_params['billing_address_1']  = $order->get_billing_address_1();
445
				$stripe_params['billing_address_2']  = $order->get_billing_address_2();
446
				$stripe_params['billing_state']      = $order->get_billing_state();
447
				$stripe_params['billing_city']       = $order->get_billing_city();
448
				$stripe_params['billing_postcode']   = $order->get_billing_postcode();
449
				$stripe_params['billing_country']    = $order->get_billing_country();
450
			}
451
		}
452
453
		$sepa_elements_options = apply_filters(
454
			'wc_stripe_sepa_elements_options',
455
			array(
456
				'supportedCountries' => array( 'SEPA' ),
457
				'placeholderCountry' => WC()->countries->get_base_country(),
458
				'style'              => array( 'base' => array( 'fontSize' => '15px' ) ),
459
			)
460
		);
461
462
		$stripe_params['no_prepaid_card_msg']       = __( 'Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charged. Please try with alternative payment method.', 'woocommerce-gateway-stripe' );
463
		$stripe_params['no_sepa_owner_msg']         = __( 'Please enter your IBAN account name.', 'woocommerce-gateway-stripe' );
464
		$stripe_params['no_sepa_iban_msg']          = __( 'Please enter your IBAN account number.', 'woocommerce-gateway-stripe' );
465
		$stripe_params['payment_intent_error']      = __( 'We couldn\'t initiate the payment. Please try again.', 'woocommerce-gateway-stripe' );
466
		$stripe_params['sepa_mandate_notification'] = apply_filters( 'wc_stripe_sepa_mandate_notification', 'email' );
467
		$stripe_params['allow_prepaid_card']        = apply_filters( 'wc_stripe_allow_prepaid_card', true ) ? 'yes' : 'no';
468
		$stripe_params['inline_cc_form']            = $this->inline_cc_form ? 'yes' : 'no';
469
		$stripe_params['is_checkout']               = ( is_checkout() && empty( $_GET['pay_for_order'] ) ) ? 'yes' : 'no'; // wpcs: csrf ok.
470
		$stripe_params['return_url']                = $this->get_stripe_return_url();
471
		$stripe_params['ajaxurl']                   = WC_AJAX::get_endpoint( '%%endpoint%%' );
472
		$stripe_params['stripe_nonce']              = wp_create_nonce( '_wc_stripe_nonce' );
473
		$stripe_params['statement_descriptor']      = $this->statement_descriptor;
474
		$stripe_params['elements_options']          = apply_filters( 'wc_stripe_elements_options', array() );
475
		$stripe_params['sepa_elements_options']     = $sepa_elements_options;
476
		$stripe_params['invalid_owner_name']        = __( 'Billing First Name and Last Name are required.', 'woocommerce-gateway-stripe' );
477
		$stripe_params['is_change_payment_page']    = isset( $_GET['change_payment_method'] ) ? 'yes' : 'no'; // wpcs: csrf ok.
478
		$stripe_params['is_add_payment_page']       = is_wc_endpoint_url( 'add-payment-method' ) ? 'yes' : 'no';
479
		$stripe_params['is_pay_for_order_page']     = is_wc_endpoint_url( 'order-pay' ) ? 'yes' : 'no';
480
		$stripe_params['elements_styling']          = apply_filters( 'wc_stripe_elements_styling', false );
481
		$stripe_params['elements_classes']          = apply_filters( 'wc_stripe_elements_classes', false );
482
483
		// Merge localized messages to be use in JS.
484
		$stripe_params = array_merge( $stripe_params, WC_Stripe_Helper::get_localized_messages() );
485
486
		wp_localize_script( 'woocommerce_stripe', 'wc_stripe_params', apply_filters( 'wc_stripe_params', $stripe_params ) );
487
488
		$this->tokenization_script();
489
		wp_enqueue_script( 'woocommerce_stripe' );
490
	}
491
492
	/**
493
	 * Checks if a source object represents a prepaid credit card and
494
	 * throws an exception if it is one, but that is not allowed.
495
	 *
496
	 * @since 4.2.0
497
	 * @param object $prepared_source The object with source details.
498
	 * @throws WC_Stripe_Exception An exception if the card is prepaid, but prepaid cards are not allowed.
499
	 */
500
	public function maybe_disallow_prepaid_card( $prepared_source ) {
501
		// Check if we don't allow prepaid credit cards.
502
		if ( apply_filters( 'wc_stripe_allow_prepaid_card', true ) || ! $this->is_prepaid_card( $prepared_source->source_object ) ) {
503
			return;
504
		}
505
506
		$localized_message = __( 'Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charged. Please try with alternative payment method.', 'woocommerce-gateway-stripe' );
507
		throw new WC_Stripe_Exception( print_r( $prepared_source->source_object, true ), $localized_message );
508
	}
509
510
	/**
511
	 * Checks whether a source exists.
512
	 *
513
	 * @since 4.2.0
514
	 * @param  object $prepared_source The source that should be verified.
515
	 * @throws WC_Stripe_Exception     An exception if the source ID is missing.
516
	 */
517
	public function check_source( $prepared_source ) {
518 View Code Duplication
		if ( empty( $prepared_source->source ) ) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
519
			$localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
520
			throw new WC_Stripe_Exception( print_r( $prepared_source, true ), $localized_message );
521
		}
522
	}
523
524
	/**
525
	 * Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without.
526
	 *
527
	 * @since 4.2.0
528
	 * @param object   $error The error that was returned from Stripe's API.
529
	 * @param WC_Order $order The order those payment is being processed.
530
	 * @return bool           A flag that indicates that the customer does not exist and should be removed.
531
	 */
532
	public function maybe_remove_non_existent_customer( $error, $order ) {
533
		if ( ! $this->is_no_such_customer_error( $error ) ) {
534
			return false;
535
		}
536
537
		delete_user_option( $order->get_customer_id(), '_stripe_customer_id' );
538
		$order->delete_meta_data( '_stripe_customer_id' );
539
		$order->save();
540
541
		return true;
542
	}
543
544
	/**
545
	 * Completes an order without a positive value.
546
	 *
547
	 * @since 4.2.0
548
	 * @param WC_Order $order             The order to complete.
549
	 * @param WC_Order $prepared_source   Payment source and customer data.
550
	 * @param boolean  $force_save_source Whether the payment source must be saved, like when dealing with a Subscription setup.
551
	 * @return array                      Redirection data for `process_payment`.
552
	 */
553
	public function complete_free_order( $order, $prepared_source, $force_save_source ) {
554
		if ( $force_save_source ) {
555
			$intent_secret = $this->setup_intent( $order, $prepared_source );
556
557
			if ( ! empty( $intent_secret ) ) {
558
				// `get_return_url()` must be called immediately before returning a value.
559
				return array(
560
					'result'              => 'success',
561
					'redirect'            => $this->get_return_url( $order ),
562
					'setup_intent_secret' => $intent_secret,
563
				);
564
			}
565
		}
566
567
		// Remove cart.
568
		WC()->cart->empty_cart();
569
570
		$order->payment_complete();
571
572
		// Return thank you page redirect.
573
		return array(
574
			'result'   => 'success',
575
			'redirect' => $this->get_return_url( $order ),
576
		);
577
	}
578
579
	/**
580
	 * Process the payment
581
	 *
582
	 * @since 1.0.0
583
	 * @since 4.1.0 Add 4th parameter to track previous error.
584
	 * @param int  $order_id Reference.
585
	 * @param bool $retry Should we retry on fail.
586
	 * @param bool $force_save_source Force save the payment source.
587
	 * @param mix  $previous_error Any error message from previous request.
588
	 * @param bool $use_order_source Whether to use the source, which should already be attached to the order.
589
	 *
590
	 * @throws Exception If payment will not be accepted.
591
	 * @return array|void
592
	 */
593
	public function process_payment( $order_id, $retry = true, $force_save_source = false, $previous_error = false, $use_order_source = false ) {
594
		try {
595
			$order = wc_get_order( $order_id );
596
597
			// ToDo: `process_pre_order` saves the source to the order for a later payment.
598
			// This might not work well with PaymentIntents.
599
			if ( $this->maybe_process_pre_orders( $order_id ) ) {
600
				return $this->pre_orders->process_pre_order( $order_id );
601
			}
602
603
			// Check whether there is an existing intent.
604
			$intent = $this->get_intent_from_order( $order );
605
			if ( isset( $intent->object ) && 'setup_intent' === $intent->object ) {
606
				$intent = false; // This function can only deal with *payment* intents
607
			}
608
609
			$stripe_customer_id = null;
610
			if ( $intent && ! empty( $intent->customer ) ) {
611
				$stripe_customer_id = $intent->customer;
612
			}
613
614
			// For some payments the source should already be present in the order.
615
			if ( $use_order_source ) {
616
				$prepared_source = $this->prepare_order_source( $order );
617
			} else {
618
				$prepared_source = $this->prepare_source( get_current_user_id(), $force_save_source, $stripe_customer_id );
619
			}
620
621
			$this->maybe_disallow_prepaid_card( $prepared_source );
622
			$this->check_source( $prepared_source );
623
			$this->save_source_to_order( $order, $prepared_source );
624
625
			if ( 0 >= $order->get_total() ) {
626
				return $this->complete_free_order( $order, $prepared_source, $force_save_source );
627
			}
628
629
			// This will throw exception if not valid.
630
			$this->validate_minimum_order_amount( $order );
631
632
			WC_Stripe_Logger::log( "Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}" );
633
634
			if ( $intent ) {
635
				$intent = $this->update_existing_intent( $intent, $order, $prepared_source );
636
			} else {
637
				$intent = $this->create_intent( $order, $prepared_source );
638
			}
639
640
			// Confirm the intent after locking the order to make sure webhooks will not interfere.
641
			if ( empty( $intent->error ) ) {
642
				$this->lock_order_payment( $order, $intent );
643
				$intent = $this->confirm_intent( $intent, $order, $prepared_source );
644
			}
645
646
			if ( ! empty( $intent->error ) ) {
647
				$this->maybe_remove_non_existent_customer( $intent->error, $order );
648
649
				// We want to retry.
650
				if ( $this->is_retryable_error( $intent->error ) ) {
651
					return $this->retry_after_error( $intent, $order, $retry, $force_save_source, $previous_error, $use_order_source );
652
				}
653
654
				$this->unlock_order_payment( $order );
655
				$this->throw_localized_message( $intent, $order );
656
			}
657
658
			if ( ! empty( $intent ) ) {
659
				// Use the last charge within the intent to proceed.
660
				$response = end( $intent->charges->data );
661
662
				// If the intent requires a 3DS flow, redirect to it.
663
				if ( 'requires_action' === $intent->status ) {
664
					$this->unlock_order_payment( $order );
665
666
					if ( is_wc_endpoint_url( 'order-pay' ) ) {
667
						$redirect_url = add_query_arg( 'wc-stripe-confirmation', 1, $order->get_checkout_payment_url( false ) );
668
669
						return array(
670
							'result'   => 'success',
671
							'redirect' => $redirect_url,
672
						);
673
					} else {
674
						/**
675
						 * This URL contains only a hash, which will be sent to `checkout.js` where it will be set like this:
676
						 * `window.location = result.redirect`
677
						 * Once this redirect is sent to JS, the `onHashChange` function will execute `handleCardPayment`.
678
						 */
679
680
						return array(
681
							'result'                => 'success',
682
							'redirect'              => $this->get_return_url( $order ),
683
							'payment_intent_secret' => $intent->client_secret,
684
						);
685
					}
686
				}
687
			}
688
689
			// Process valid response.
690
			$this->process_response( $response, $order );
0 ignored issues
show
Bug introduced by
The variable $response does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
691
692
			// Remove cart.
693
			if ( isset( WC()->cart ) ) {
694
				WC()->cart->empty_cart();
695
			}
696
697
			// Unlock the order.
698
			$this->unlock_order_payment( $order );
699
700
			// Return thank you page redirect.
701
			return array(
702
				'result'   => 'success',
703
				'redirect' => $this->get_return_url( $order ),
704
			);
705
706
		} catch ( WC_Stripe_Exception $e ) {
707
			wc_add_notice( $e->getLocalizedMessage(), 'error' );
708
			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
709
710
			do_action( 'wc_gateway_stripe_process_payment_error', $e, $order );
711
712
			/* translators: error message */
713
			$order->update_status( 'failed' );
714
715
			return array(
716
				'result'   => 'fail',
717
				'redirect' => '',
718
			);
719
		}
720
	}
721
722
	/**
723
	 * Displays the Stripe fee
724
	 *
725
	 * @since 4.1.0
726
	 *
727
	 * @param int $order_id The ID of the order.
728
	 */
729 View Code Duplication
	public function display_order_fee( $order_id ) {
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
730
		if ( apply_filters( 'wc_stripe_hide_display_order_fee', false, $order_id ) ) {
731
			return;
732
		}
733
734
		$order = wc_get_order( $order_id );
735
736
		$fee      = WC_Stripe_Helper::get_stripe_fee( $order );
737
		$currency = WC_Stripe_Helper::get_stripe_currency( $order );
738
739
		if ( ! $fee || ! $currency ) {
740
			return;
741
		}
742
743
		?>
744
745
		<tr>
746
			<td class="label stripe-fee">
747
				<?php echo wc_help_tip( __( 'This represents the fee Stripe collects for the transaction.', 'woocommerce-gateway-stripe' ) ); // wpcs: xss ok. ?>
748
				<?php esc_html_e( 'Stripe Fee:', 'woocommerce-gateway-stripe' ); ?>
749
			</td>
750
			<td width="1%"></td>
751
			<td class="total">
752
				-&nbsp;<?php echo wc_price( $fee, array( 'currency' => $currency ) ); // wpcs: xss ok. ?>
753
			</td>
754
		</tr>
755
756
		<?php
757
	}
758
759
	/**
760
	 * Displays the net total of the transaction without the charges of Stripe.
761
	 *
762
	 * @since 4.1.0
763
	 *
764
	 * @param int $order_id The ID of the order.
765
	 */
766 View Code Duplication
	public function display_order_payout( $order_id ) {
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
767
		if ( apply_filters( 'wc_stripe_hide_display_order_payout', false, $order_id ) ) {
768
			return;
769
		}
770
771
		$order = wc_get_order( $order_id );
772
773
		$net      = WC_Stripe_Helper::get_stripe_net( $order );
774
		$currency = WC_Stripe_Helper::get_stripe_currency( $order );
775
776
		if ( ! $net || ! $currency ) {
777
			return;
778
		}
779
780
		?>
781
782
		<tr>
783
			<td class="label stripe-payout">
784
				<?php echo wc_help_tip( __( 'This represents the net total that will be credited to your Stripe bank account. This may be in the currency that is set in your Stripe account.', 'woocommerce-gateway-stripe' ) ); // wpcs: xss ok. ?>
785
				<?php esc_html_e( 'Stripe Payout:', 'woocommerce-gateway-stripe' ); ?>
786
			</td>
787
			<td width="1%"></td>
788
			<td class="total">
789
				<?php echo wc_price( $net, array( 'currency' => $currency ) ); // wpcs: xss ok. ?>
790
			</td>
791
		</tr>
792
793
		<?php
794
	}
795
796
	/**
797
	 * Generates a localized message for an error from a response.
798
	 *
799
	 * @since 4.3.2
800
	 *
801
	 * @param stdClass $response The response from the Stripe API.
802
	 *
803
	 * @return string The localized error message.
804
	 */
805
	public function get_localized_error_message_from_response( $response ) {
806
		$localized_messages = WC_Stripe_Helper::get_localized_messages();
807
808
		if ( 'card_error' === $response->error->type ) {
809
			$localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
810
		} else {
811
			$localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
812
		}
813
814
		return $localized_message;
815
	}
816
817
	/**
818
	 * Gets a localized message for an error from a response, adds it as a note to the order, and throws it.
819
	 *
820
	 * @since 4.2.0
821
	 * @param  stdClass $response  The response from the Stripe API.
822
	 * @param  WC_Order $order     The order to add a note to.
823
	 * @throws WC_Stripe_Exception An exception with the right message.
824
	 */
825
	public function throw_localized_message( $response, $order ) {
826
		$localized_message = $this->get_localized_error_message_from_response( $response );
827
828
		$order->add_order_note( $localized_message );
829
830
		throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
831
	}
832
833
	/**
834
	 * Retries the payment process once an error occured.
835
	 *
836
	 * @since 4.2.0
837
	 * @param object   $response          The response from the Stripe API.
838
	 * @param WC_Order $order             An order that is being paid for.
839
	 * @param bool     $retry             A flag that indicates whether another retry should be attempted.
840
	 * @param bool     $force_save_source Force save the payment source.
841
	 * @param mixed    $previous_error    Any error message from previous request.
842
	 * @param bool     $use_order_source  Whether to use the source, which should already be attached to the order.
843
	 * @throws WC_Stripe_Exception        If the payment is not accepted.
844
	 * @return array|void
845
	 */
846
	public function retry_after_error( $response, $order, $retry, $force_save_source, $previous_error, $use_order_source ) {
847
		if ( ! $retry ) {
848
			$localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' );
849
			$order->add_order_note( $localized_message );
850
			throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.
851
		}
852
853
		// Don't do anymore retries after this.
854
		if ( 5 <= $this->retry_interval ) {
855
			return $this->process_payment( $order->get_id(), false, $force_save_source, $response->error, $previous_error );
856
		}
857
858
		sleep( $this->retry_interval );
859
		$this->retry_interval++;
860
861
		return $this->process_payment( $order->get_id(), true, $force_save_source, $response->error, $previous_error, $use_order_source );
862
	}
863
864
	/**
865
	 * Adds the necessary hooks to modify the "Pay for order" page in order to clean
866
	 * it up and prepare it for the Stripe PaymentIntents modal to confirm a payment.
867
	 *
868
	 * @since 4.2
869
	 * @param WC_Payment_Gateway[] $gateways A list of all available gateways.
870
	 * @return WC_Payment_Gateway[]          Either the same list or an empty one in the right conditions.
871
	 */
872
	public function prepare_order_pay_page( $gateways ) {
873
		if ( ! is_wc_endpoint_url( 'order-pay' ) || ! isset( $_GET['wc-stripe-confirmation'] ) ) { // wpcs: csrf ok.
874
			return $gateways;
875
		}
876
877
		try {
878
			$this->prepare_intent_for_order_pay_page();
879
		} catch ( WC_Stripe_Exception $e ) {
880
			// Just show the full order pay page if there was a problem preparing the Payment Intent
881
			return $gateways;
882
		}
883
884
		add_filter( 'woocommerce_checkout_show_terms', '__return_false' );
885
		add_filter( 'woocommerce_pay_order_button_html', '__return_false' );
886
		add_filter( 'woocommerce_available_payment_gateways', '__return_empty_array' );
887
		add_filter( 'woocommerce_no_available_payment_methods_message', array( $this, 'change_no_available_methods_message' ) );
888
		add_action( 'woocommerce_pay_order_after_submit', array( $this, 'render_payment_intent_inputs' ) );
889
890
		return array();
891
	}
892
893
	/**
894
	 * Changes the text of the "No available methods" message to one that indicates
895
	 * the need for a PaymentIntent to be confirmed.
896
	 *
897
	 * @since 4.2
898
	 * @return string the new message.
899
	 */
900
	public function change_no_available_methods_message() {
901
		return wpautop( __( "Almost there!\n\nYour order has already been created, the only thing that still needs to be done is for you to authorize the payment with your bank.", 'woocommerce-gateway-stripe' ) );
902
	}
903
904
	/**
905
	 * Prepares the Payment Intent for it to be completed in the "Pay for Order" page.
906
	 *
907
	 * @param WC_Order|null $order Order object, or null to get the order from the "order-pay" URL parameter
908
	 *
909
	 * @throws WC_Stripe_Exception
910
	 * @since 4.3
911
	 */
912
	public function prepare_intent_for_order_pay_page( $order = null ) {
913 View Code Duplication
		if ( ! isset( $order ) || empty( $order ) ) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
914
			$order = wc_get_order( absint( get_query_var( 'order-pay' ) ) );
915
		}
916
		$intent = $this->get_intent_from_order( $order );
917
918
		if ( ! $intent ) {
919
			throw new WC_Stripe_Exception( 'Payment Intent not found', __( 'Payment Intent not found for order #' . $order->get_id(), 'woocommerce-gateway-stripe' ) );
920
		}
921
922
		if ( 'requires_payment_method' === $intent->status && isset( $intent->last_payment_error )
923
		     && 'authentication_required' === $intent->last_payment_error->code ) {
924
			$level3_data = $this->get_level3_data_from_order( $order );
925
			$intent      = WC_Stripe_API::request_with_level3_data(
926
				array(
927
					'payment_method' => $intent->last_payment_error->source->id,
928
				),
929
				'payment_intents/' . $intent->id . '/confirm',
930
				$level3_data,
931
				$order
932
			);
933
934
			if ( isset( $intent->error ) ) {
935
				throw new WC_Stripe_Exception( print_r( $intent, true ), $intent->error->message );
936
			}
937
		}
938
939
		$this->order_pay_intent = $intent;
940
	}
941
942
	/**
943
	 * Renders hidden inputs on the "Pay for Order" page in order to let Stripe handle PaymentIntents.
944
	 *
945
	 * @param WC_Order|null $order Order object, or null to get the order from the "order-pay" URL parameter
946
	 *
947
	 * @throws WC_Stripe_Exception
948
	 * @since 4.2
949
	 */
950
	public function render_payment_intent_inputs( $order = null ) {
951 View Code Duplication
		if ( ! isset( $order ) || empty( $order ) ) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
952
			$order = wc_get_order( absint( get_query_var( 'order-pay' ) ) );
953
		}
954
		if ( ! isset( $this->order_pay_intent ) ) {
955
			$this->prepare_intent_for_order_pay_page( $order );
956
		}
957
958
		$verification_url = add_query_arg(
959
			array(
960
				'order'            => $order->get_id(),
961
				'nonce'            => wp_create_nonce( 'wc_stripe_confirm_pi' ),
962
				'redirect_to'      => rawurlencode( $this->get_return_url( $order ) ),
963
				'is_pay_for_order' => true,
964
			),
965
			WC_AJAX::get_endpoint( 'wc_stripe_verify_intent' )
966
		);
967
968
		echo '<input type="hidden" id="stripe-intent-id" value="' . esc_attr( $this->order_pay_intent->client_secret ) . '" />';
969
		echo '<input type="hidden" id="stripe-intent-return" value="' . esc_attr( $verification_url ) . '" />';
970
	}
971
972
	/**
973
	 * Adds an error message wrapper to each saved method.
974
	 *
975
	 * @since 4.2.0
976
	 * @param WC_Payment_Token $token Payment Token.
977
	 * @return string                 Generated payment method HTML
978
	 */
979
	public function get_saved_payment_method_option_html( $token ) {
980
		$html          = parent::get_saved_payment_method_option_html( $token );
981
		$error_wrapper = '<div class="stripe-source-errors" role="alert"></div>';
982
983
		return preg_replace( '~</(\w+)>\s*$~', "$error_wrapper</$1>", $html );
984
	}
985
986
	/**
987
	 * Attempt to manually complete the payment process for orders, which are still pending
988
	 * before displaying the View Order page. This is useful in case webhooks have not been set up.
989
	 *
990
	 * @since 4.2.0
991
	 * @param int $order_id The ID that will be used for the thank you page.
992
	 */
993
	public function check_intent_status_on_order_page( $order_id ) {
994
		if ( empty( $order_id ) || absint( $order_id ) <= 0 ) {
995
			return;
996
		}
997
998
		$order = wc_get_order( absint( $order_id ) );
999
1000
		if ( ! $order ) {
1001
			return;
1002
		}
1003
1004
		$this->verify_intent_after_checkout( $order );
1005
	}
1006
1007
	/**
1008
	 * Attached to `woocommerce_payment_successful_result` with a late priority,
1009
	 * this method will combine the "naturally" generated redirect URL from
1010
	 * WooCommerce and a payment/setup intent secret into a hash, which contains both
1011
	 * the secret, and a proper URL, which will confirm whether the intent succeeded.
1012
	 *
1013
	 * @since 4.2.0
1014
	 * @param array $result   The result from `process_payment`.
1015
	 * @param int   $order_id The ID of the order which is being paid for.
1016
	 * @return array
1017
	 */
1018
	public function modify_successful_payment_result( $result, $order_id ) {
1019
		if ( ! isset( $result['payment_intent_secret'] ) && ! isset( $result['setup_intent_secret'] ) ) {
1020
			// Only redirects with intents need to be modified.
1021
			return $result;
1022
		}
1023
1024
		// Put the final thank you page redirect into the verification URL.
1025
		$verification_url = add_query_arg(
1026
			array(
1027
				'order'       => $order_id,
1028
				'nonce'       => wp_create_nonce( 'wc_stripe_confirm_pi' ),
1029
				'redirect_to' => rawurlencode( $result['redirect'] ),
1030
			),
1031
			WC_AJAX::get_endpoint( 'wc_stripe_verify_intent' )
1032
		);
1033
1034
		if ( isset( $result['payment_intent_secret'] ) ) {
1035
			$redirect = sprintf( '#confirm-pi-%s:%s', $result['payment_intent_secret'], rawurlencode( $verification_url ) );
1036
		} else if ( isset( $result['setup_intent_secret'] ) ) {
1037
			$redirect = sprintf( '#confirm-si-%s:%s', $result['setup_intent_secret'], rawurlencode( $verification_url ) );
1038
		}
1039
1040
		return array(
1041
			'result'   => 'success',
1042
			'redirect' => $redirect,
0 ignored issues
show
Bug introduced by
The variable $redirect does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
1043
		);
1044
	}
1045
1046
	/**
1047
	 * Proceed with current request using new login session (to ensure consistent nonce).
1048
	 */
1049
	public function set_cookie_on_current_request( $cookie ) {
1050
		$_COOKIE[ LOGGED_IN_COOKIE ] = $cookie;
1051
	}
1052
1053
	/**
1054
	 * Executed between the "Checkout" and "Thank you" pages, this
1055
	 * method updates orders based on the status of associated PaymentIntents.
1056
	 *
1057
	 * @since 4.2.0
1058
	 * @param WC_Order $order The order which is in a transitional state.
1059
	 */
1060
	public function verify_intent_after_checkout( $order ) {
1061
		$payment_method = $order->get_payment_method();
1062
		if ( $payment_method !== $this->id ) {
1063
			// If this is not the payment method, an intent would not be available.
1064
			return;
1065
		}
1066
1067
		$intent = $this->get_intent_from_order( $order );
1068
		if ( ! $intent ) {
1069
			// No intent, redirect to the order received page for further actions.
1070
			return;
1071
		}
1072
1073
		// A webhook might have modified or locked the order while the intent was retreived. This ensures we are reading the right status.
1074
		clean_post_cache( $order->get_id() );
1075
		$order = wc_get_order( $order->get_id() );
1076
1077
		if ( ! $order->has_status( array( 'pending', 'failed' ) ) ) {
1078
			// If payment has already been completed, this function is redundant.
1079
			return;
1080
		}
1081
1082
		if ( $this->lock_order_payment( $order, $intent ) ) {
1083
			return;
1084
		}
1085
1086
		if ( 'setup_intent' === $intent->object && 'succeeded' === $intent->status ) {
1087
			WC()->cart->empty_cart();
1088
			if ( WC_Stripe_Helper::is_pre_orders_exists() && WC_Pre_Orders_Order::order_contains_pre_order( $order ) ) {
1089
				WC_Pre_Orders_Order::mark_order_as_pre_ordered( $order );
1090
			} else {
1091
				$order->payment_complete();
1092
			}
1093
		} else if ( 'succeeded' === $intent->status || 'requires_capture' === $intent->status ) {
1094
			// Proceed with the payment completion.
1095
			$this->handle_intent_verification_success( $order, $intent );
1096
		} else if ( 'requires_payment_method' === $intent->status ) {
1097
			// `requires_payment_method` means that SCA got denied for the current payment method.
1098
			$this->handle_intent_verification_failure( $order, $intent );
1099
		}
1100
1101
		$this->unlock_order_payment( $order );
1102
	}
1103
1104
	/**
1105
	 * Called after an intent verification succeeds, this allows
1106
	 * specific APNs or children of this class to modify its behavior.
1107
	 *
1108
	 * @param WC_Order $order The order whose verification succeeded.
1109
	 * @param stdClass $intent The Payment Intent object.
1110
	 */
1111
	protected function handle_intent_verification_success( $order, $intent ) {
1112
		$this->process_response( end( $intent->charges->data ), $order );
1113
	}
1114
1115
	/**
1116
	 * Called after an intent verification fails, this allows
1117
	 * specific APNs or children of this class to modify its behavior.
1118
	 *
1119
	 * @param WC_Order $order The order whose verification failed.
1120
	 * @param stdClass $intent The Payment Intent object.
1121
	 */
1122
	protected function handle_intent_verification_failure( $order, $intent ) {
1123
		$this->failed_sca_auth( $order, $intent );
1124
	}
1125
1126
	/**
1127
	 * Checks if the payment intent associated with an order failed and records the event.
1128
	 *
1129
	 * @since 4.2.0
1130
	 * @param WC_Order $order  The order which should be checked.
1131
	 * @param object   $intent The intent, associated with the order.
1132
	 */
1133
	public function failed_sca_auth( $order, $intent ) {
1134
		// If the order has already failed, do not repeat the same message.
1135
		if ( $order->has_status( 'failed' ) ) {
1136
			return;
1137
		}
1138
1139
		// Load the right message and update the status.
1140
		$status_message = isset( $intent->last_payment_error )
1141
			/* translators: 1) The error message that was received from Stripe. */
1142
			? sprintf( __( 'Stripe SCA authentication failed. Reason: %s', 'woocommerce-gateway-stripe' ), $intent->last_payment_error->message )
1143
			: __( 'Stripe SCA authentication failed.', 'woocommerce-gateway-stripe' );
1144
		$order->update_status( 'failed', $status_message );
1145
	}
1146
1147
	/**
1148
	 * Preserves the "wc-stripe-confirmation" URL parameter so the user can complete the SCA authentication after logging in.
1149
	 *
1150
	 * @param string $pay_url Current computed checkout URL for the given order.
1151
	 * @param WC_Order $order Order object.
1152
	 *
1153
	 * @return string Checkout URL for the given order.
1154
	 */
1155
	public function get_checkout_payment_url( $pay_url, $order ) {
1156
		global $wp;
1157
		if ( isset( $_GET['wc-stripe-confirmation'] ) && isset( $wp->query_vars['order-pay'] ) && $wp->query_vars['order-pay'] == $order->get_id() ) {
1158
			$pay_url = add_query_arg( 'wc-stripe-confirmation', 1, $pay_url );
1159
		}
1160
		return $pay_url;
1161
	}
1162
1163
	/**
1164
	 * Checks whether new keys are being entered when saving options.
1165
	 */
1166
	public function process_admin_options() {
1167
		// Load all old values before the new settings get saved.
1168
		$old_publishable_key      = $this->get_option( 'publishable_key' );
1169
		$old_secret_key           = $this->get_option( 'secret_key' );
1170
		$old_test_publishable_key = $this->get_option( 'test_publishable_key' );
1171
		$old_test_secret_key      = $this->get_option( 'test_secret_key' );
1172
1173
		parent::process_admin_options();
1174
1175
		// Load all old values after the new settings have been saved.
1176
		$new_publishable_key      = $this->get_option( 'publishable_key' );
1177
		$new_secret_key           = $this->get_option( 'secret_key' );
1178
		$new_test_publishable_key = $this->get_option( 'test_publishable_key' );
1179
		$new_test_secret_key      = $this->get_option( 'test_secret_key' );
1180
1181
		// Checks whether a value has transitioned from a non-empty value to a new one.
1182
		$has_changed = function( $old_value, $new_value ) {
1183
			return ! empty( $old_value ) && ( $old_value !== $new_value );
1184
		};
1185
1186
		// Look for updates.
1187
		if (
1188
			$has_changed( $old_publishable_key, $new_publishable_key )
1189
			|| $has_changed( $old_secret_key, $new_secret_key )
1190
			|| $has_changed( $old_test_publishable_key, $new_test_publishable_key )
1191
			|| $has_changed( $old_test_secret_key, $new_test_secret_key )
1192
		) {
1193
			update_option( 'wc_stripe_show_changed_keys_notice', 'yes' );
1194
		}
1195
	}
1196
1197 View Code Duplication
	public function validate_publishable_key_field( $key, $value ) {
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
1198
		$value = $this->validate_text_field( $key, $value );
1199
		if ( ! empty( $value ) && ! preg_match( '/^pk_live_/', $value ) ) {
1200
			throw new Exception( __( 'The "Live Publishable Key" should start with "pk_live", enter the correct key.', 'woocommerce-gateway-stripe' ) );
1201
		}
1202
		return $value;
1203
	}
1204
1205 View Code Duplication
	public function validate_secret_key_field( $key, $value ) {
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
1206
		$value = $this->validate_text_field( $key, $value );
1207
		if ( ! empty( $value ) && ! preg_match( '/^[rs]k_live_/', $value ) ) {
1208
			throw new Exception( __( 'The "Live Secret Key" should start with "sk_live" or "rk_live", enter the correct key.', 'woocommerce-gateway-stripe' ) );
1209
		}
1210
		return $value;
1211
	}
1212
1213 View Code Duplication
	public function validate_test_publishable_key_field( $key, $value ) {
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
1214
		$value = $this->validate_text_field( $key, $value );
1215
		if ( ! empty( $value ) && ! preg_match( '/^pk_test_/', $value ) ) {
1216
			throw new Exception( __( 'The "Test Publishable Key" should start with "pk_test", enter the correct key.', 'woocommerce-gateway-stripe' ) );
1217
		}
1218
		return $value;
1219
	}
1220
1221 View Code Duplication
	public function validate_test_secret_key_field( $key, $value ) {
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
1222
		$value = $this->validate_text_field( $key, $value );
1223
		if ( ! empty( $value ) && ! preg_match( '/^[rs]k_test_/', $value ) ) {
1224
			throw new Exception( __( 'The "Test Secret Key" should start with "sk_test" or "rk_test", enter the correct key.', 'woocommerce-gateway-stripe' ) );
1225
		}
1226
		return $value;
1227
	}
1228
}
1229