trait-wc-payment-gateway-wcpay-subscriptions.php
36.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
<?php
/**
* Trait WC_Payment_Gateway_WCPay_Subscriptions_Trait
*
* @package WooCommerce\Payments
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
use WCPay\Exceptions\API_Exception;
use WCPay\Exceptions\Invalid_Payment_Method_Exception;
use WCPay\Exceptions\Add_Payment_Method_Exception;
use WCPay\Logger;
use WCPay\Payment_Information;
use WCPay\Constants\Payment_Type;
use WCPay\Constants\Payment_Initiated_By;
use WCPay\Constants\Payment_Intent_Status;
/**
* Gateway class for WooCommerce Payments, with added compatibility with WooCommerce Subscriptions.
*/
trait WC_Payment_Gateway_WCPay_Subscriptions_Trait {
use WC_Payments_Subscriptions_Utilities;
/**
* Retrieve payment token from a subscription or order.
*
* @param WC_Order $order Order or subscription object.
*
* @return null|WC_Payment_Token Last token associated with order or subscription.
*/
abstract protected function get_payment_token( $order );
/**
* Process the payment for a given order.
*
* @param WC_Cart|null $cart Cart.
* @param WCPay\Payment_Information $payment_information Payment info.
* @param array $additional_api_parameters Any additional fields required for payment method to pass to API.
*
* @return array|null An array with result of payment and redirect URL, or nothing.
* @throws API_Exception Error processing the payment.
* @throws Add_Payment_Method_Exception When $0 order processing failed.
*/
abstract public function process_payment_for_order( $cart, $payment_information, $additional_api_parameters = [] );
/**
* Saves the payment token to the order.
*
* @param WC_Order $order The order.
* @param WC_Payment_Token $token The token to save.
*/
abstract public function add_token_to_order( $order, $token );
/**
* Returns a formatted token list for a user.
*
* @param int $user_id The user ID.
*/
abstract protected function get_user_formatted_tokens_array( $user_id );
/**
* Prepares the payment information object.
*
* @param WC_Order $order The order whose payment will be processed.
* @return Payment_Information An object, which describes the payment.
*/
abstract protected function prepare_payment_information( $order );
/**
* Stores the payment method meta table name
*
* @var string
*/
private static $payment_method_meta_table = 'wc_order_tokens';
/**
* Stores the payment method meta key name
*
* @var string
*/
private static $payment_method_meta_key = 'token';
/**
* Initialize subscription support and hooks.
*/
public function maybe_init_subscriptions() {
if ( ! $this->is_subscriptions_enabled() ) {
return;
}
/*
* Base set of subscription features to add.
* The WCPay payment gateway supports these feautres
* for both WCPay Subscriptions and WooCommerce Subscriptions.
*/
$payment_gateway_features = [
'multiple_subscriptions',
'subscription_cancellation',
'subscription_payment_method_change_admin',
'subscription_payment_method_change_customer',
'subscription_payment_method_change',
'subscription_reactivation',
'subscription_suspension',
'subscriptions',
];
if ( $this->is_subscriptions_plugin_active() ) {
/*
* Subscription amount & date changes are only supported
* when WooCommerce Subscriptions is active.
*/
$payment_gateway_features = array_merge(
$payment_gateway_features,
[
'subscription_amount_changes',
'subscription_date_changes',
]
);
} else {
/*
* The gateway_scheduled_payments feature is only supported
* for WCPay Subscriptions.
*/
$payment_gateway_features[] = 'gateway_scheduled_payments';
}
$this->supports = array_merge( $this->supports, $payment_gateway_features );
add_filter( 'woocommerce_email_classes', [ $this, 'add_emails' ], 20 );
add_filter( 'woocommerce_available_payment_gateways', [ $this, 'prepare_order_pay_page' ] );
add_action( 'woocommerce_scheduled_subscription_payment_' . $this->id, [ $this, 'scheduled_subscription_payment' ], 10, 2 );
add_action( 'woocommerce_subscription_failing_payment_method_updated_' . $this->id, [ $this, 'update_failing_payment_method' ], 10, 2 );
add_filter( 'wc_payments_display_save_payment_method_checkbox', [ $this, 'display_save_payment_method_checkbox' ], 10 );
// Display the credit card used for a subscription in the "My Subscriptions" table.
add_filter( 'woocommerce_my_subscriptions_payment_method', [ $this, 'maybe_render_subscription_payment_method' ], 10, 2 );
// Used to filter out unwanted metadata on new renewal orders.
if ( ! class_exists( 'WC_Subscriptions_Data_Copier' ) ) {
add_filter( 'wcs_renewal_order_meta_query', [ $this, 'update_renewal_meta_data' ], 10, 3 );
} else {
add_filter( 'wc_subscriptions_renewal_order_data', [ $this, 'remove_data_renewal_order' ], 10, 3 );
}
// Allow store managers to manually set Stripe as the payment method on a subscription.
add_filter( 'woocommerce_subscription_payment_meta', [ $this, 'add_subscription_payment_meta' ], 10, 2 );
add_filter( 'woocommerce_subscription_validate_payment_meta', [ $this, 'validate_subscription_payment_meta' ], 10, 3 );
add_action( 'wcs_save_other_payment_meta', [ $this, 'save_meta_in_order_tokens' ], 10, 4 );
// To make sure payment meta is copied from subscription to order.
add_filter( 'wcs_copy_payment_meta_to_order', [ $this, 'append_payment_meta' ], 10, 3 );
add_filter( 'woocommerce_subscription_note_old_payment_method_title', [ $this, 'get_specific_old_payment_method_title' ], 10, 3 );
add_filter( 'woocommerce_subscription_note_new_payment_method_title', [ $this, 'get_specific_new_payment_method_title' ], 10, 3 );
// TODO: Remove admin payment method JS hack for Subscriptions <= 3.0.7 when we drop support for those versions.
// Enqueue JS hack when Subscriptions does not provide the meta input filter.
if ( $this->is_subscriptions_plugin_active() && version_compare( $this->get_subscriptions_plugin_version(), '3.0.7', '<=' ) ) {
add_action( 'woocommerce_admin_order_data_after_billing_address', [ $this, 'add_payment_method_select_to_subscription_edit' ] );
}
/*
* WC subscriptions hooks into the "template_redirect" hook with priority 100.
* If the screen is "Pay for order" and the order is a subscription renewal, it redirects to the plain checkout.
* See: https://github.com/woocommerce/woocommerce-subscriptions/blob/99a75687e109b64cbc07af6e5518458a6305f366/includes/class-wcs-cart-renewal.php#L165
* If we are in the "You just need to authorize SCA" flow, we don't want that redirection to happen.
*/
add_action( 'template_redirect', [ $this, 'remove_order_pay_var' ], 99 );
add_action( 'template_redirect', [ $this, 'restore_order_pay_var' ], 101 );
// Update subscriptions token when user sets a default payment method.
add_filter( 'woocommerce_subscriptions_update_subscription_token', [ $this, 'update_subscription_token' ], 10, 3 );
}
/**
* Adds the necessary hooks to modify the "Pay for order" page in order to clean
* it up and prepare it for the PaymentIntents modal to confirm a payment.
*
* @param WC_Payment_Gateway[] $gateways A list of all available gateways.
* @return WC_Payment_Gateway[] Either the same list or an empty one in the right conditions.
*/
public function prepare_order_pay_page( $gateways ) {
if ( ! is_wc_endpoint_url( 'order-pay' ) || ! isset( $_GET['wcpay-confirmation'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification
return $gateways;
}
try {
if ( ! $this->prepare_intent_for_order_pay_page() ) {
return $gateways;
}
} catch ( Exception $e ) {
// Just show the full order pay page if there was a problem preparing the Payment Intent.
return $gateways;
}
add_filter( 'woocommerce_checkout_show_terms', '__return_false' );
add_filter( 'woocommerce_pay_order_button_html', '__return_false' );
add_filter( 'woocommerce_available_payment_gateways', '__return_empty_array' );
add_filter( 'woocommerce_no_available_payment_methods_message', [ $this, 'change_no_available_methods_message' ] );
return [];
}
/**
* Prepares the Payment Intent for it to be completed in the "Pay for Order" page.
*
* @return bool True if the Intent was fetched and prepared successfully, false otherwise.
*/
public function prepare_intent_for_order_pay_page(): bool {
$order = wc_get_order( absint( get_query_var( 'order-pay' ) ) );
$intent = $this->payments_api_client->get_intent( $order->get_transaction_id() );
if ( ! $intent || Payment_Intent_Status::REQUIRES_ACTION !== $intent->get_status() ) {
return false;
}
$js_config = WC_Payments::get_wc_payments_checkout()->get_payment_fields_js_config();
$js_config['intentSecret'] = WC_Payments_Utils::encrypt_client_secret( $intent->get_stripe_account_id(), $intent->get_client_secret() );
$js_config['updateOrderNonce'] = wp_create_nonce( 'wcpay_update_order_status_nonce' );
wp_localize_script( 'WCPAY_CHECKOUT', 'wcpay_config', $js_config );
wp_enqueue_script( 'WCPAY_CHECKOUT' );
return true;
}
/**
* Changes the text of the "No available methods" message to one that indicates
* the need for a PaymentIntent to be confirmed.
*
* @return string the new message.
*/
public function change_no_available_methods_message() {
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-payments' ) );
}
/**
* Prepares the payment information object.
*
* @param Payment_Information $payment_information The payment information from parent gateway.
* @param int $order_id The order ID whose payment will be processed.
* @return Payment_Information An object, which describes the payment.
*/
protected function maybe_prepare_subscription_payment_information( $payment_information, $order_id ) {
if ( ! $this->is_payment_recurring( $order_id ) ) {
return $payment_information;
}
// Subs-specific behavior starts here.
$payment_information->set_payment_type( Payment_Type::RECURRING() );
// The payment method is always saved for subscriptions.
$payment_information->must_save_payment_method_to_store();
$payment_information->set_is_changing_payment_method_for_subscription( $this->is_changing_payment_method_for_subscription() );
return $payment_information;
}
/**
* Process a scheduled subscription payment.
*
* @param float $amount The amount to charge.
* @param WC_Order $renewal_order A WC_Order object created to record the renewal payment.
*/
public function scheduled_subscription_payment( $amount, $renewal_order ) {
$token = $this->get_payment_token( $renewal_order );
if ( is_null( $token ) && ! WC_Payments::is_network_saved_cards_enabled() ) {
Logger::error( 'There is no saved payment token for order #' . $renewal_order->get_id() );
// TODO: Update to use Order_Service->mark_payment_failed.
$renewal_order->update_status( 'failed' );
return;
}
// Exit early if the order belongs to a WCPay Subscription. The payment will be processed by the subscription via webhooks.
if ( $this->is_wcpay_subscription_renewal_order( $renewal_order ) ) {
return;
}
// Add mandate param to the order payment if needed.
$additional_api_parameters = $this->get_mandate_param_for_renewal_order( $renewal_order );
try {
$payment_information = new Payment_Information( '', $renewal_order, Payment_Type::RECURRING(), $token, Payment_Initiated_By::MERCHANT() );
$this->process_payment_for_order( null, $payment_information, $additional_api_parameters );
} catch ( API_Exception $e ) {
Logger::error( 'Error processing subscription renewal: ' . $e->getMessage() );
// TODO: Update to use Order_Service->mark_payment_failed.
$renewal_order->update_status( 'failed' );
if ( ! empty( $payment_information ) ) {
$note = sprintf(
WC_Payments_Utils::esc_interpolated_html(
/* translators: %1: the failed payment amount, %2: error message */
__(
'A payment of %1$s <strong>failed</strong> to complete with the following message: <code>%2$s</code>.',
'woocommerce-payments'
),
[
'strong' => '<strong>',
'code' => '<code>',
]
),
WC_Payments_Explicit_Price_Formatter::get_explicit_price(
wc_price( $amount, [ 'currency' => WC_Payments_Utils::get_order_intent_currency( $renewal_order ) ] ),
$renewal_order
),
esc_html( rtrim( $e->getMessage(), '.' ) )
);
$renewal_order->add_order_note( $note );
}
}
}
/**
* Adds the payment token from a failed renewal order to the provided subscription.
*
* @param WC_Subscription $subscription The subscription to be updated.
* @param WC_Order $renewal_order The failed renewal order.
*/
public function update_failing_payment_method( $subscription, $renewal_order ) {
$renewal_token = $this->get_payment_token( $renewal_order );
if ( is_null( $renewal_token ) ) {
Logger::error( 'Failing subscription could not be updated: there is no saved payment token for order #' . $renewal_order->get_id() );
return;
}
$this->add_token_to_order( $subscription, $renewal_token );
}
/**
* Return the payment meta data for this payment gateway.
*
* @param WC_Subscription $subscription The subscription order.
* @return array
*/
private function get_payment_meta( $subscription ) {
$active_token = $this->get_payment_token( $subscription );
return [
self::$payment_method_meta_table => [
self::$payment_method_meta_key => [
'label' => __( 'Saved payment method', 'woocommerce-payments' ),
'value' => empty( $active_token ) ? '' : (string) $active_token->get_id(),
],
],
];
}
/**
* Append payment meta if order and subscription are using WCPay as payment method and if passed payment meta is an array.
*
* @param array $payment_meta Associative array of meta data required for automatic payments.
* @param WC_Order $order The subscription's related order.
* @param WC_Subscription $subscription The subscription order.
* @return array
*/
public function append_payment_meta( $payment_meta, $order, $subscription ) {
if ( $this->id !== $order->get_payment_method() || $this->id !== $subscription->get_payment_method() ) {
return $payment_meta;
}
if ( ! is_array( $payment_meta ) ) {
return $payment_meta;
}
return array_merge( $payment_meta, $this->get_payment_meta( $subscription ) );
}
/**
* Include the payment meta data required to process automatic recurring payments so that store managers can
* manually set up automatic recurring payments for a customer via the Edit Subscriptions screen in 2.0+.
*
* @param array $payment_meta Associative array of meta data required for automatic payments.
* @param WC_Subscription $subscription The subscription order.
* @return array
*/
public function add_subscription_payment_meta( $payment_meta, $subscription ) {
$payment_meta[ $this->id ] = $this->get_payment_meta( $subscription );
// Display select element on newer Subscriptions versions.
add_action(
sprintf(
'woocommerce_subscription_payment_meta_input_%s_%s_%s',
WC_Payment_Gateway_WCPay::GATEWAY_ID,
self::$payment_method_meta_table,
self::$payment_method_meta_key
),
[ $this, 'render_custom_payment_meta_input' ],
10,
3
);
return $payment_meta;
}
/**
* Validate the payment meta data required to process automatic recurring payments so that store managers can
* manually set up automatic recurring payments for a customer via the Edit Subscriptions screen in 2.0+.
*
* @param string $payment_gateway_id The ID of the payment gateway to validate.
* @param array $payment_meta Associative array of meta data required for automatic payments.
* @param WC_Subscription $subscription The subscription order.
*
* @throws Invalid_Payment_Method_Exception When $payment_meta is not valid.
*/
public function validate_subscription_payment_meta( $payment_gateway_id, $payment_meta, $subscription ) {
if ( $this->id !== $payment_gateway_id ) {
return;
}
if ( empty( $payment_meta[ self::$payment_method_meta_table ][ self::$payment_method_meta_key ]['value'] ) ) {
throw new Invalid_Payment_Method_Exception(
__( 'A customer saved payment method was not selected for this order.', 'woocommerce-payments' ),
'payment_method_not_selected'
);
}
$token = WC_Payment_Tokens::get( $payment_meta[ self::$payment_method_meta_table ][ self::$payment_method_meta_key ]['value'] );
if ( empty( $token ) ) {
throw new Invalid_Payment_Method_Exception(
__( 'The saved payment method selected is invalid or does not exist.', 'woocommerce-payments' ),
'payment_method_token_not_found'
);
}
if ( $subscription->get_user_id() !== $token->get_user_id() ) {
throw new Invalid_Payment_Method_Exception(
__( 'The saved payment method selected does not belong to this order\'s customer.', 'woocommerce-payments' ),
'payment_method_token_not_owned'
);
}
}
/**
* Saves the payment token to the order.
*
* @param WC_Order $order The order.
* @param WC_Payment_Token $token The token to save.
*/
public function maybe_add_token_to_subscription_order( $order, $token ) {
if ( $this->is_subscriptions_enabled() ) {
$subscriptions = wcs_get_subscriptions_for_order( $order->get_id() );
if ( is_array( $subscriptions ) ) {
foreach ( $subscriptions as $subscription ) {
$payment_token = $this->get_payment_token( $subscription );
if ( is_null( $payment_token ) || $token->get_id() !== $payment_token->get_id() ) {
$subscription->add_payment_token( $token );
}
}
}
}
}
/**
* Save subscriptions payment_method metadata to the order tokens when its type is wc_order_tokens.
*
* @param WC_Subscription $subscription The subscription to be updated.
* @param string $table Where to store and retrieve the metadata.
* @param string $meta_key Meta key to be updated.
* @param string $meta_value Meta value to be updated.
*/
public function save_meta_in_order_tokens( $subscription, $table, $meta_key, $meta_value ) {
if ( self::$payment_method_meta_table !== $table || self::$payment_method_meta_key !== $meta_key ) {
return;
}
$token = WC_Payment_Tokens::get( $meta_value );
if ( empty( $token ) ) {
return;
}
$this->add_token_to_order( $subscription, $token );
}
/**
* Loads the subscription edit page script with user cards to hijack the payment method input and
* transform it into a select element.
*
* @param WC_Order $order The WC Order.
*/
public function add_payment_method_select_to_subscription_edit( $order ) {
// Do not load the script if the order is not a subscription.
if ( ! wcs_is_subscription( $order ) ) {
return;
}
$script_src_url = plugins_url( 'dist/subscription-edit-page.js', WCPAY_PLUGIN_FILE );
$script_asset_path = WCPAY_ABSPATH . 'dist/subscription-edit-page.asset.php';
$script_asset = file_exists( $script_asset_path ) ? require $script_asset_path : [ 'dependencies' => [] ];
wp_register_script(
'WCPAY_SUBSCRIPTION_EDIT_PAGE',
$script_src_url,
$script_asset['dependencies'],
WC_Payments::get_file_version( 'dist/subscription-edit-page.js' ),
true
);
wp_localize_script(
'WCPAY_SUBSCRIPTION_EDIT_PAGE',
'wcpaySubscriptionEdit',
[
'gateway' => $this->id,
'table' => self::$payment_method_meta_table,
'metaKey' => self::$payment_method_meta_key,
'tokens' => $this->get_user_formatted_tokens_array( $order->get_user_id() ),
'defaultOptionText' => __( 'Please select a payment method', 'woocommerce-payments' ),
]
);
wp_set_script_translations( 'WCPAY_SUBSCRIPTION_EDIT_PAGE', 'woocommerce-payments' );
wp_enqueue_script( 'WCPAY_SUBSCRIPTION_EDIT_PAGE' );
}
/**
* Render the payment method used for a subscription in My Account pages
*
* @param string $payment_method_to_display Default payment method to display.
* @param WC_Subscription $subscription Subscription object.
*
* @return string Payment method string to display in UI.
*/
public function maybe_render_subscription_payment_method( $payment_method_to_display, $subscription ) {
try {
if ( $subscription->get_payment_method() !== $this->id ) {
return $payment_method_to_display;
}
$token = $this->get_payment_token( $subscription );
if ( is_null( $token ) ) {
Logger::info( 'There is no saved payment token for subscription #' . $subscription->get_id() );
return $payment_method_to_display;
}
return $token->get_display_name();
} catch ( \Exception $e ) {
Logger::error( 'Failed to get payment method for subscription #' . $subscription->get_id() . ' ' . $e );
return $payment_method_to_display;
}
}
/**
* Outputs a select element to be used for the Subscriptions payment meta token selection.
*
* @param WC_Subscription $subscription The subscription object.
* @param string $field_id The field_id to add to the select element.
* @param string $field_value The field_value to be selected by default.
*/
public function render_custom_payment_meta_input( $subscription, $field_id, $field_value ) {
$tokens = $this->get_user_formatted_tokens_array( $subscription->get_user_id() );
$is_valid_value = false;
foreach ( $tokens as $token ) {
$is_valid_value = $is_valid_value || (int) $field_value === $token['tokenId'];
}
echo '<select name="' . esc_attr( $field_id ) . '" id="' . esc_attr( $field_id ) . '">';
// If no token matches the selected ID, add a default option.
if ( ! $is_valid_value ) {
echo '<option value="" selected disabled>' . esc_html__( 'Please select a payment method', 'woocommerce-payments' ) . '</option>';
}
foreach ( $tokens as $token ) {
$is_selected = (int) $field_value === $token['tokenId'] ? 'selected' : '';
echo '<option value="' . esc_attr( $token['tokenId'] ) . '" ' . esc_attr( $is_selected ) . '>' . esc_html( $token['displayName'] ) . '</option>';
}
echo '</select>';
}
/**
* Add specific data like last 4 digit of wcpay payment gateway
*
* @param string $old_payment_method_title Payment method title, eg: Credit card.
* @param string $old_payment_method Payment gateway id.
* @param WC_Subscription $subscription The subscription order.
* @return string
*/
public function get_specific_old_payment_method_title( $old_payment_method_title, $old_payment_method, $subscription ) {
// make sure payment method is wcpay's.
if ( WC_Payment_Gateway_WCPay::GATEWAY_ID !== $old_payment_method ) {
return $old_payment_method_title;
}
if ( $this->is_changing_payment_method_for_subscription() ) {
$token_ids = $subscription->get_payment_tokens();
// since old payment must be the second to last saved payment...
if ( count( $token_ids ) < 2 ) {
return $old_payment_method_title;
}
$second_to_last_token_id = $token_ids[ count( $token_ids ) - 2 ];
$token = WC_Payment_Tokens::get( $second_to_last_token_id );
if ( $token && $token instanceof WC_Payment_Token_CC ) {
// translators: 1: payment method likely credit card, 2: last 4 digit.
return sprintf( __( '%1$s ending in %2$s', 'woocommerce-payments' ), $old_payment_method_title, $token->get_last4() );
}
} else {
$last_order_id = $subscription->get_last_order();
if ( ! $last_order_id ) {
return $old_payment_method_title;
}
$last_order = wc_get_order( $last_order_id );
$token_ids = $last_order->get_payment_tokens();
// since old payment must be the second to last saved payment...
if ( count( $token_ids ) < 2 ) {
return $old_payment_method_title;
}
$second_to_last_token_id = $token_ids[ count( $token_ids ) - 2 ];
$token = WC_Payment_Tokens::get( $second_to_last_token_id );
if ( $token && $token instanceof WC_Payment_Token_CC ) {
// translators: 1: payment method likely credit card, 2: last 4 digit.
return sprintf( __( '%1$s ending in %2$s', 'woocommerce-payments' ), $old_payment_method_title, $token->get_last4() );
}
}
return $old_payment_method_title;
}
/**
* Add specific data like last 4 digit of wcpay payment gateway
*
* @param string $new_payment_method_title Payment method title, eg: Credit card.
* @param string $new_payment_method Payment gateway id.
* @param WC_Subscription $subscription The subscription order.
* @return string
*/
public function get_specific_new_payment_method_title( $new_payment_method_title, $new_payment_method, $subscription ) {
// make sure payment method is wcpay's.
if ( WC_Payment_Gateway_WCPay::GATEWAY_ID !== $new_payment_method ) {
return $new_payment_method_title;
}
if ( $this->is_changing_payment_method_for_subscription() ) {
$order = $subscription;
} else {
$last_order_id = $subscription->get_last_order();
if ( ! $last_order_id ) {
return $new_payment_method_title;
}
$order = wc_get_order( $last_order_id );
}
try {
$payment_information = $this->prepare_payment_information( $order );
} catch ( Exception $e ) {
return $new_payment_method_title;
}
if ( $payment_information->is_using_saved_payment_method() ) {
$token = $payment_information->get_payment_token();
if ( $token && $token instanceof WC_Payment_Token_CC ) {
// translators: 1: payment method likely credit card, 2: last 4 digit.
return sprintf( __( '%1$s ending in %2$s', 'woocommerce-payments' ), $new_payment_method_title, $token->get_last4() );
}
} else {
try {
$payment_method_id = $payment_information->get_payment_method();
$payment_method = $this->payments_api_client->get_payment_method( $payment_method_id );
if ( ! empty( $payment_method['card']['last4'] ) ) {
// translators: 1: payment method likely credit card, 2: last 4 digit.
return sprintf( __( '%1$s ending in %2$s', 'woocommerce-payments' ), $new_payment_method_title, $payment_method['card']['last4'] );
}
} catch ( Exception $e ) {
Logger::error( $e );
}
}
return $new_payment_method_title;
}
/**
* When an order is created/updated, we want to add an ActionScheduler job to send this data to
* the payment server.
*
* @param int $order_id The ID of the order that has been created.
* @param WC_Order|null $order The order that has been created.
*/
public function maybe_schedule_subscription_order_tracking( $order_id, $order = null ) {
if ( ! $this->is_subscriptions_enabled() ) {
return;
}
$save_meta_data = false;
if ( is_null( $order ) ) {
$order = wc_get_order( $order_id );
}
$payment_token = $this->get_payment_token( $order );
// If we can't get the payment token for this order, then we check if we already have a payment token
// set in the order metadata. If we don't, then we try and get the parent order's token from the metadata.
if ( is_null( $payment_token ) ) {
if ( empty( $order->get_meta( '_payment_method_id' ) ) ) {
$parent_order = wc_get_order( $order->get_parent_id() );
// If there is no parent order, or the parent order doesn't have the metadata set, then we cannot track this order.
if ( empty( $parent_order ) || empty( $parent_order->get_meta( '_payment_method_id' ) ) ) {
return;
}
$order->update_meta_data( '_payment_method_id', $parent_order->get_meta( '_payment_method_id' ) );
$save_meta_data = true;
}
} elseif ( $order->get_meta( '_payment_method_id' ) !== $payment_token->get_token() ) {
// If the payment token stored in the metadata already doesn't reflect the latest token, update it.
$order->update_meta_data( '_payment_method_id', $payment_token->get_token() );
$save_meta_data = true;
}
// If the stripe customer ID metadata isn't set for this order, try and get this data from the metadata of the parent order.
if ( empty( $order->get_meta( '_stripe_customer_id' ) ) ) {
$parent_order = wc_get_order( $order->get_parent_id() );
if ( ! empty( $parent_order ) && ! empty( $parent_order->get_meta( '_stripe_customer_id' ) ) ) {
$order->update_meta_data( '_stripe_customer_id', $parent_order->get_meta( '_stripe_customer_id' ) );
$save_meta_data = true;
}
}
// If we need to, save our changes to the metadata for this order.
if ( $save_meta_data ) {
$order->save_meta_data();
}
}
/**
* Action called when a renewal order is created, allowing us to strip metadata that we do not
* want it to inherit from the parent order.
*
* @param string $order_meta_query The metadata query (a valid SQL query).
* @param int $to_order The renewal order.
* @param int $from_order The source (parent) order.
*
* @return string
*/
public function update_renewal_meta_data( $order_meta_query, $to_order, $from_order ) {
$order_meta_query .= " AND `meta_key` NOT IN ('_new_order_tracking_complete')";
return $order_meta_query;
}
/**
* Removes the data that we don't need to copy to renewal orders.
*
* @param array $order_data Renewal order data.
*
* @return array The renewal order data with the data we don't want copied removed
*/
public function remove_data_renewal_order( $order_data ) {
unset( $order_data['_new_order_tracking_complete'] );
return $order_data;
}
/**
* Adds the failed SCA auth email to WooCommerce.
*
* @param WC_Email[] $email_classes All existing emails.
* @return WC_Email[]
*/
public function add_emails( $email_classes ) {
include_once __DIR__ . '/class-wc-payments-email-failed-renewal-authentication.php';
include_once __DIR__ . '/class-wc-payments-email-failed-authentication-retry.php';
$email_classes['WC_Payments_Email_Failed_Renewal_Authentication'] = new WC_Payments_Email_Failed_Renewal_Authentication( $email_classes );
$email_classes['WC_Payments_Email_Failed_Authentication_Retry'] = new WC_Payments_Email_Failed_Authentication_Retry();
return $email_classes;
}
/**
* If this is the "Pass the SCA challenge" flow, remove a variable that is checked by WC Subscriptions
* so WC Subscriptions doesn't redirect to the checkout
*/
public function remove_order_pay_var() {
global $wp;
if ( isset( $_GET['wcpay-confirmation'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification
$this->order_pay_var = $wp->query_vars['order-pay'];
$wp->query_vars['order-pay'] = null;
}
}
/**
* Restore the variable that was removed in remove_order_pay_var()
*/
public function restore_order_pay_var() {
global $wp;
if ( isset( $this->order_pay_var ) ) {
$wp->query_vars['order-pay'] = $this->order_pay_var;
}
}
/**
* Update the specified subscription's payment token with a new token.
*
* @param bool $updated Whether the token was updated.
* @param WC_Subscription $subscription The subscription whose payment token need to be updated.
* @param WC_Payment_Token $new_token The new payment token to be used for the specified subscription.
*
* @return bool Whether this function updates the token or not.
*/
public function update_subscription_token( $updated, $subscription, $new_token ) {
if ( $this->id !== $new_token->get_gateway_id() ) {
return $updated;
}
$subscription->set_payment_method( $this->id );
$subscription->update_meta_data( '_payment_method_id', $new_token->get_token() );
$subscription->add_payment_token( $new_token );
$subscription->save();
return true;
}
/**
* Checks if a renewal order is linked to a WCPay subscription.
*
* @param WC_Order $renewal_order The renewal order to check.
* @return bool True if the renewal order is linked to a renewal order. Otherwise false.
*/
private function is_wcpay_subscription_renewal_order( WC_Order $renewal_order ) {
// Exit early if WCPay subscriptions functionality isn't enabled.
if ( ! WC_Payments_Features::is_wcpay_subscriptions_enabled() ) {
return false;
}
// Check if the renewal order is linked to a subscription which is a WCPay Subscription.
foreach ( wcs_get_subscriptions_for_renewal_order( $renewal_order ) as $subscription ) {
if ( WC_Payments_Subscription_Service::is_wcpay_subscription( $subscription ) ) {
return true;
}
}
return false;
}
/**
* Get card mandate parameters for the order payment intent if needed.
* Only required for subscriptions creation for cards issued in India.
* More details https://wp.me/pc4etw-ky
*
* @param WC_Order $order The subscription order.
* @return array Params to be included or empty array.
*/
public function get_mandate_params_for_order( WC_Order $order ): array {
$result = [];
if ( ! $this->is_subscriptions_enabled() ) {
return $result;
}
$subscriptions = wcs_get_subscriptions_for_order( $order->get_id() );
$subscription = reset( $subscriptions );
if ( ! $subscription ) {
return $result;
}
// TEMP Fix – Stripe validates mandate params for cards not
// issued by Indian banks. Apply them only for INR as Indian banks
// only support it for now.
$currency = $order->get_currency();
if ( 'INR' !== $currency ) {
return $result;
}
// Get total by adding only subscriptions and get rid of any other product or fee.
$subs_amount = 0.0;
foreach ( $subscriptions as $sub ) {
$subs_amount += $sub->get_total();
}
$amount = WC_Payments_Utils::prepare_amount( $subs_amount, $order->get_currency() );
// TEMP Fix – Prevent stale free subscription data to throw
// an error due amount < 1.
if ( 0 === $amount ) {
return $result;
}
$result['setup_future_usage'] = 'off_session';
$result['payment_method_options']['card']['mandate_options'] = [
'reference' => $order->get_id(),
'amount' => $amount,
'amount_type' => 'fixed',
'start_date' => $subscription->get_time( 'date_created' ),
'interval' => $subscription->get_billing_period(),
'interval_count' => $subscription->get_billing_interval(),
'supported_types' => [ 'india' ],
];
// Multiple subscriptions per order needs:
// - Set amount type to maximum, to allow renews of any amount under the order total.
// - Set interval to sporadic, to not follow any specific interval.
// - Unset interval count, because it doesn't apply anymore.
if ( 1 < count( $subscriptions ) ) {
$result['payment_method_options']['card']['mandate_options']['amount_type'] = 'maximum';
$result['payment_method_options']['card']['mandate_options']['interval'] = 'sporadic';
unset( $result['payment_method_options']['card']['mandate_options']['interval_count'] );
}
return $result;
}
/**
* Add an order note if the renew intent customer notification requires the merchant to authenticate the payment.
* The note includes the charge attempt date and let the merchant know the need of an off-session step by the customer.
*
* @param WC_Order $order The renew order.
* @param array $processing Processing state from Stripe's intent response.
* @return void
*/
public function maybe_add_customer_notification_note( WC_Order $order, array $processing = [] ) {
$approval_requested = $processing['card']['customer_notification']['approval_requested'] ?? false;
$completes_at = $processing['card']['customer_notification']['completes_at'] ?? null;
if ( $approval_requested && $completes_at ) {
$attempt_date = wp_date( get_option( 'date_format', 'F j, Y' ), $completes_at, wp_timezone() );
$attempt_time = wp_date( get_option( 'time_format', 'g:i a' ), $completes_at, wp_timezone() );
$note = sprintf(
/* translators: 1) date in date_format or 'F j, Y'; 2) time in time_format or 'g:i a' */
__( 'The customer must authorize this payment via a notification sent to them by the bank which issued their card. The authorization must be completed before %1$s at %2$s, when the charge will be attempted.', 'woocommerce-payments' ),
$attempt_date,
$attempt_time
);
$order->add_order_note( $note );
}
}
/**
* Get mandate ID parameter to renewal payment if exists.
* Only required for subscriptions renewals for cards issued in India.
* More details https://wp.me/pc4etw-ky
*
* @param WC_Order $renewal_order The subscription renewal order.
* @return array Param to be included or empty array.
*/
public function get_mandate_param_for_renewal_order( WC_Order $renewal_order ): array {
$subscriptions = wcs_get_subscriptions_for_renewal_order( $renewal_order->get_id() );
$subscription = reset( $subscriptions );
if ( ! $subscription ) {
return [];
}
$parent_order = wc_get_order( $subscription->get_parent_id() );
if ( ! $parent_order ) {
return [];
}
$mandate = $parent_order->get_meta( '_stripe_mandate_id', true );
if ( empty( $mandate ) ) {
return [];
}
return [ 'mandate' => $mandate ];
}
}