-
Notifications
You must be signed in to change notification settings - Fork 207
/
woocommerce-gateway-stripe.php
898 lines (783 loc) · 38.2 KB
/
woocommerce-gateway-stripe.php
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
<?php
/**
* Plugin Name: WooCommerce Stripe Gateway
* Plugin URI: https://wordpress.org/plugins/woocommerce-gateway-stripe/
* Description: Take credit card payments on your store using Stripe.
* Author: Stripe
* Author URI: https://stripe.com/
* Version: 8.9.0
* Requires Plugins: woocommerce
* Requires at least: 6.5
* Tested up to: 6.7
* WC requires at least: 9.2
* WC tested up to: 9.4
* Text Domain: woocommerce-gateway-stripe
* Domain Path: /languages
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Required minimums and constants
*/
define( 'WC_STRIPE_VERSION', '8.9.0' ); // WRCS: DEFINED_VERSION.
define( 'WC_STRIPE_MIN_PHP_VER', '7.3.0' );
define( 'WC_STRIPE_MIN_WC_VER', '7.4' );
define( 'WC_STRIPE_FUTURE_MIN_WC_VER', '7.5' );
define( 'WC_STRIPE_MAIN_FILE', __FILE__ );
define( 'WC_STRIPE_ABSPATH', __DIR__ . '/' );
define( 'WC_STRIPE_PLUGIN_URL', untrailingslashit( plugin_dir_url( WC_STRIPE_MAIN_FILE ) ) );
define( 'WC_STRIPE_PLUGIN_PATH', untrailingslashit( plugin_dir_path( WC_STRIPE_MAIN_FILE ) ) );
// phpcs:disable WordPress.Files.FileName
/**
* WooCommerce fallback notice.
*
* @since 4.1.2
*/
function woocommerce_stripe_missing_wc_notice() {
$install_url = wp_nonce_url(
add_query_arg(
[
'action' => 'install-plugin',
'plugin' => 'woocommerce',
],
admin_url( 'update.php' )
),
'install-plugin_woocommerce'
);
$admin_notice_content = sprintf(
// translators: 1$-2$: opening and closing <strong> tags, 3$-4$: link tags, takes to woocommerce plugin on wp.org, 5$-6$: opening and closing link tags, leads to plugins.php in admin
esc_html__( '%1$sWooCommerce Stripe Gateway is inactive.%2$s The %3$sWooCommerce plugin%4$s must be active for the Stripe Gateway to work. Please %5$sinstall & activate WooCommerce »%6$s', 'woocommerce-gateway-stripe' ),
'<strong>',
'</strong>',
'<a href="http://wordpress.org/extend/plugins/woocommerce/">',
'</a>',
'<a href="' . esc_url( $install_url ) . '">',
'</a>'
);
echo '<div class="error">';
echo '<p>' . wp_kses_post( $admin_notice_content ) . '</p>';
echo '</div>';
}
/**
* WooCommerce not supported fallback notice.
*
* @since 4.4.0
*/
function woocommerce_stripe_wc_not_supported() {
/* translators: $1. Minimum WooCommerce version. $2. Current WooCommerce version. */
echo '<div class="error"><p><strong>' . sprintf( esc_html__( 'Stripe requires WooCommerce %1$s or greater to be installed and active. WooCommerce %2$s is no longer supported.', 'woocommerce-gateway-stripe' ), esc_html( WC_STRIPE_MIN_WC_VER ), esc_html( WC_VERSION ) ) . '</strong></p></div>';
}
function woocommerce_gateway_stripe() {
static $plugin;
if ( ! isset( $plugin ) ) {
class WC_Stripe {
/**
* The option name for the Stripe gateway settings.
*
* @deprecated 8.7.0
*/
const STRIPE_GATEWAY_SETTINGS_OPTION_NAME = 'woocommerce_stripe_settings';
/**
* The *Singleton* instance of this class
*
* @var WC_Stripe
*/
private static $instance;
/**
* Returns the *Singleton* instance of this class.
*
* @return WC_Stripe The *Singleton* instance.
*/
public static function get_instance() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Stripe Connect API
*
* @var WC_Stripe_Connect_API
*/
private $api;
/**
* Stripe Connect
*
* @var WC_Stripe_Connect
*/
public $connect;
/**
* Stripe Payment Request configurations.
*
* @var WC_Stripe_Payment_Request
*/
public $payment_request_configuration;
/**
* Stripe Express Checkout configurations.
*
* @var WC_Stripe_Express_Checkout_Element
*/
public $express_checkout_configuration;
/**
* Stripe Account.
*
* @var WC_Stripe_Account
*/
public $account;
/**
* The main Stripe gateway instance. Use get_main_stripe_gateway() to access it.
*
* @var null|WC_Stripe_Payment_Gateway
*/
protected $stripe_gateway = null;
/**
* Private clone method to prevent cloning of the instance of the
* *Singleton* instance.
*
* @return void
*/
public function __clone() {}
/**
* Private unserialize method to prevent unserializing of the *Singleton*
* instance.
*
* @return void
*/
public function __wakeup() {}
/**
* Protected constructor to prevent creating a new instance of the
* *Singleton* via the `new` operator from outside of this class.
*/
public function __construct() {
add_action( 'admin_init', [ $this, 'install' ] );
$this->init();
add_action( 'rest_api_init', [ $this, 'register_routes' ] );
}
/**
* Init the plugin after plugins_loaded so environment variables are set.
*
* @since 1.0.0
* @version 5.0.0
*/
public function init() {
if ( is_admin() ) {
require_once dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-privacy.php';
}
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-feature-flags.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-upe-compatibility.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-co-branded-cc-compatibility.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-exception.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-logger.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-helper.php';
include_once dirname( __FILE__ ) . '/includes/class-wc-stripe-api.php';
include_once dirname( __FILE__ ) . '/includes/class-wc-stripe-mode.php';
require_once dirname( __FILE__ ) . '/includes/compat/trait-wc-stripe-subscriptions-utilities.php';
require_once dirname( __FILE__ ) . '/includes/compat/trait-wc-stripe-subscriptions.php';
require_once dirname( __FILE__ ) . '/includes/compat/trait-wc-stripe-pre-orders.php';
require_once dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-subscriptions-legacy-sepa-token-update.php';
require_once dirname( __FILE__ ) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php';
require_once dirname( __FILE__ ) . '/includes/abstracts/abstract-wc-stripe-payment-gateway-voucher.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-action-scheduler-service.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-webhook-state.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-webhook-handler.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-sepa-payment-token.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-link-payment-token.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-cash-app-pay-token.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-apple-pay-registration.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-gateway-stripe.php';
require_once dirname( __FILE__ ) . '/includes/constants/class-wc-stripe-currency-code.php';
require_once dirname( __FILE__ ) . '/includes/constants/class-wc-stripe-payment-methods.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-gateway.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-cc.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-alipay.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-giropay.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-ideal.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-klarna.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-affirm.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-afterpay-clearpay.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-bancontact.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-boleto.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-oxxo.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-eps.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-sepa.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-p24.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-sofort.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-multibanco.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-link.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-cash-app-pay.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-upe-payment-method-wechat-pay.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-boleto.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-oxxo.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-payment-request.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-express-checkout-element.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-express-checkout-helper.php';
require_once dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-express-checkout-ajax-handler.php';
require_once dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-woo-compat-utils.php';
require_once dirname( __FILE__ ) . '/includes/connect/class-wc-stripe-connect.php';
require_once dirname( __FILE__ ) . '/includes/connect/class-wc-stripe-connect-api.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-order-handler.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-payment-tokens.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-customer.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-intent-controller.php';
require_once dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-inbox-notes.php';
require_once dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-upe-compatibility-controller.php';
require_once dirname( __FILE__ ) . '/includes/migrations/class-allowed-payment-request-button-types-update.php';
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-account.php';
new Allowed_Payment_Request_Button_Types_Update();
$this->api = new WC_Stripe_Connect_API();
$this->connect = new WC_Stripe_Connect( $this->api );
$this->payment_request_configuration = new WC_Stripe_Payment_Request();
$this->account = new WC_Stripe_Account( $this->connect, 'WC_Stripe_API' );
// Express checkout configurations.
$express_checkout_helper = new WC_Stripe_Express_Checkout_Helper();
$express_checkout_ajax_handler = new WC_Stripe_Express_Checkout_Ajax_Handler( $express_checkout_helper );
$this->express_checkout_configuration = new WC_Stripe_Express_Checkout_Element( $express_checkout_ajax_handler, $express_checkout_helper );
$this->express_checkout_configuration->init();
$intent_controller = new WC_Stripe_Intent_Controller();
$intent_controller->init_hooks();
if ( is_admin() ) {
require_once dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-admin-notices.php';
require_once dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-settings-controller.php';
if ( isset( $_GET['area'] ) && 'payment_requests' === $_GET['area'] ) {
require_once dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-payment-requests-controller.php';
new WC_Stripe_Payment_Requests_Controller();
} else {
new WC_Stripe_Settings_Controller( $this->account );
}
if ( WC_Stripe_Feature_Flags::is_upe_checkout_enabled() ) {
require_once dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-payment-gateways-controller.php';
new WC_Stripe_Payment_Gateways_Controller();
}
}
// REMOVE IN THE FUTURE.
require_once dirname( __FILE__ ) . '/includes/deprecated/class-wc-stripe-apple-pay.php';
add_filter( 'woocommerce_payment_gateways', [ $this, 'add_gateways' ] );
add_filter( 'pre_update_option_woocommerce_stripe_settings', [ $this, 'gateway_settings_update' ], 10, 2 );
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), [ $this, 'plugin_action_links' ] );
add_filter( 'plugin_row_meta', [ $this, 'plugin_row_meta' ], 10, 2 );
// Update the email field position.
if ( ! is_admin() ) {
add_filter( 'woocommerce_billing_fields', [ $this, 'checkout_update_email_field_priority' ], 50 );
}
// Modify emails emails.
add_filter( 'woocommerce_email_classes', [ $this, 'add_emails' ], 20 );
if ( version_compare( WC_VERSION, '3.4', '<' ) ) {
add_filter( 'woocommerce_get_sections_checkout', [ $this, 'filter_gateway_order_admin' ] );
}
new WC_Stripe_UPE_Compatibility_Controller();
// Intitialize the class for updating subscriptions' Legacy SEPA payment methods.
add_action( 'init', [ $this, 'initialize_subscriptions_updater' ] );
add_action( 'init', [ $this, 'load_plugin_textdomain' ] );
}
/**
* Updates the plugin version in db
*
* @since 3.1.0
* @version 4.0.0
*/
public function update_plugin_version() {
delete_option( 'wc_stripe_version' );
update_option( 'wc_stripe_version', WC_STRIPE_VERSION );
}
/**
* Handles upgrade routines.
*
* @since 3.1.0
* @version 3.1.0
*/
public function install() {
if ( ! is_plugin_active( plugin_basename( __FILE__ ) ) ) {
return;
}
if ( ! defined( 'IFRAME_REQUEST' ) && ( WC_STRIPE_VERSION !== get_option( 'wc_stripe_version' ) ) ) {
do_action( 'woocommerce_stripe_updated' );
if ( ! defined( 'WC_STRIPE_INSTALLING' ) ) {
define( 'WC_STRIPE_INSTALLING', true );
}
add_woocommerce_inbox_variant();
$this->update_plugin_version();
// TODO: Remove this when we're reasonably sure most merchants have had their
// settings updated like this. ~80% of merchants is a good threshold.
// - @reykjalin
$this->update_prb_location_settings();
// Check for subscriptions using legacy SEPA tokens on upgrade.
// Handled by WC_Stripe_Subscriptions_Legacy_SEPA_Token_Update.
delete_option( 'woocommerce_stripe_subscriptions_legacy_sepa_tokens_updated' );
// TODO: Remove this call when all the merchants have moved to the new checkout experience.
// We are calling this function here to make sure that the Stripe methods are added to the `woocommerce_gateway_order` option.
WC_Stripe_Helper::add_stripe_methods_in_woocommerce_gateway_order();
}
}
/**
* Updates the PRB location settings based on deprecated filters.
*
* The filters were removed in favor of plugin settings. This function can, and should,
* be removed when we're reasonably sure most merchants have had their settings updated
* through this function. Maybe ~80% of merchants is a good threshold?
*
* @since 5.5.0
* @version 5.5.0
*/
public function update_prb_location_settings() {
$stripe_settings = WC_Stripe_Helper::get_stripe_settings();
$prb_locations = isset( $stripe_settings['payment_request_button_locations'] )
? $stripe_settings['payment_request_button_locations']
: [];
if ( ! empty( $stripe_settings ) && empty( $prb_locations ) ) {
global $post;
$should_show_on_product_page = ! apply_filters( 'wc_stripe_hide_payment_request_on_product_page', false, $post );
$should_show_on_cart_page = apply_filters( 'wc_stripe_show_payment_request_on_cart', true );
$should_show_on_checkout_page = apply_filters( 'wc_stripe_show_payment_request_on_checkout', false, $post );
$new_prb_locations = [];
if ( $should_show_on_product_page ) {
$new_prb_locations[] = 'product';
}
if ( $should_show_on_cart_page ) {
$new_prb_locations[] = 'cart';
}
if ( $should_show_on_checkout_page ) {
$new_prb_locations[] = 'checkout';
}
$stripe_settings['payment_request_button_locations'] = $new_prb_locations;
WC_Stripe_Helper::update_main_stripe_settings( $stripe_settings );
}
}
/**
* Add plugin action links.
*
* @since 1.0.0
* @version 4.0.0
*/
public function plugin_action_links( $links ) {
$plugin_links = [
'<a href="admin.php?page=wc-settings&tab=checkout§ion=stripe">' . esc_html__( 'Settings', 'woocommerce-gateway-stripe' ) . '</a>',
];
return array_merge( $plugin_links, $links );
}
/**
* Add plugin action links.
*
* @since 4.3.4
* @param array $links Original list of plugin links.
* @param string $file Name of current file.
* @return array $links Update list of plugin links.
*/
public function plugin_row_meta( $links, $file ) {
if ( plugin_basename( __FILE__ ) === $file ) {
$row_meta = [
'docs' => '<a href="' . esc_url( apply_filters( 'woocommerce_gateway_stripe_docs_url', 'https://woocommerce.com/document/stripe/' ) ) . '" title="' . esc_attr( __( 'View Documentation', 'woocommerce-gateway-stripe' ) ) . '">' . __( 'Docs', 'woocommerce-gateway-stripe' ) . '</a>',
'support' => '<a href="' . esc_url( apply_filters( 'woocommerce_gateway_stripe_support_url', 'https://woocommerce.com/my-account/create-a-ticket?select=18627' ) ) . '" title="' . esc_attr( __( 'Open a support request at WooCommerce.com', 'woocommerce-gateway-stripe' ) ) . '">' . __( 'Support', 'woocommerce-gateway-stripe' ) . '</a>',
];
return array_merge( $links, $row_meta );
}
return (array) $links;
}
/**
* Add the gateways to WooCommerce.
*
* @since 1.0.0
* @version 5.6.0
*/
public function add_gateways( $methods ) {
$main_gateway = $this->get_main_stripe_gateway();
$methods[] = $main_gateway;
// These payment gateways will be visible in the main settings page, if UPE enabled.
if ( is_a( $main_gateway, 'WC_Stripe_UPE_Payment_Gateway' ) ) {
// The $main_gateway represents the card gateway so we don't want to include it in the list of UPE gateways.
$upe_payment_methods = $main_gateway->payment_methods;
unset( $upe_payment_methods['card'] );
$methods = array_merge( $methods, $upe_payment_methods );
} else {
// APMs are deprecated as of Oct, 29th 2024 for the legacy checkout.
if ( WC_Stripe_Feature_Flags::are_apms_deprecated() ) {
return $methods;
}
// These payment gateways will not be included in the gateway list when UPE is enabled:
$methods[] = WC_Gateway_Stripe_Alipay::class;
$methods[] = WC_Gateway_Stripe_Sepa::class;
$methods[] = WC_Gateway_Stripe_Giropay::class;
$methods[] = WC_Gateway_Stripe_Ideal::class;
$methods[] = WC_Gateway_Stripe_Bancontact::class;
$methods[] = WC_Gateway_Stripe_Eps::class;
$methods[] = WC_Gateway_Stripe_P24::class;
$methods[] = WC_Gateway_Stripe_Boleto::class;
$methods[] = WC_Gateway_Stripe_Oxxo::class;
$methods[] = WC_Gateway_Stripe_Multibanco::class;
/** Show Sofort if it's already enabled. Hide from the new merchants and keep it for the old ones who are already using this gateway, until we remove it completely.
* Stripe is deprecating Sofort https://support.stripe.com/questions/sofort-is-being-deprecated-as-a-standalone-payment-method.
*/
$sofort_settings = get_option( 'woocommerce_stripe_sofort_settings', [] );
if ( isset( $sofort_settings['enabled'] ) && 'yes' === $sofort_settings['enabled'] ) {
$methods[] = WC_Gateway_Stripe_Sofort::class;
}
}
// Don't include Link as an enabled method if we're in the admin so it doesn't show up in the checkout editor page.
if ( is_admin() ) {
$methods = array_filter(
$methods,
function( $method ) {
return ! is_a( $method, WC_Stripe_UPE_Payment_Method_Link::class );
}
);
}
return $methods;
}
/**
* Modifies the order of the gateways displayed in admin.
*
* @since 4.0.0
* @version 4.0.0
*/
public function filter_gateway_order_admin( $sections ) {
unset( $sections['stripe'] );
if ( WC_Stripe_Feature_Flags::is_upe_preview_enabled() ) {
unset( $sections['stripe_upe'] );
}
unset( $sections['stripe_bancontact'] );
unset( $sections['stripe_sofort'] );
unset( $sections['stripe_giropay'] );
unset( $sections['stripe_eps'] );
unset( $sections['stripe_ideal'] );
unset( $sections['stripe_p24'] );
unset( $sections['stripe_alipay'] );
unset( $sections['stripe_sepa'] );
unset( $sections['stripe_multibanco'] );
$sections['stripe'] = 'Stripe';
if ( WC_Stripe_Feature_Flags::is_upe_preview_enabled() ) {
$sections['stripe_upe'] = 'Stripe checkout experience';
}
$sections['stripe_bancontact'] = __( 'Stripe Bancontact', 'woocommerce-gateway-stripe' );
$sections['stripe_sofort'] = __( 'Stripe Sofort', 'woocommerce-gateway-stripe' );
$sections['stripe_giropay'] = __( 'Stripe giropay', 'woocommerce-gateway-stripe' );
$sections['stripe_eps'] = __( 'Stripe EPS', 'woocommerce-gateway-stripe' );
$sections['stripe_ideal'] = __( 'Stripe iDEAL', 'woocommerce-gateway-stripe' );
$sections['stripe_p24'] = __( 'Stripe P24', 'woocommerce-gateway-stripe' );
$sections['stripe_alipay'] = __( 'Stripe Alipay', 'woocommerce-gateway-stripe' );
$sections['stripe_sepa'] = __( 'Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe' );
$sections['stripe_multibanco'] = __( 'Stripe Multibanco', 'woocommerce-gateway-stripe' );
return $sections;
}
/**
* Provide default values for missing settings on initial gateway settings save.
*
* @since 4.5.4
* @version 4.5.4
*
* @param array $settings New settings to save.
* @param array|bool $old_settings Existing settings, if any.
* @return array New value but with defaults initially filled in for missing settings.
*/
public function gateway_settings_update( $settings, $old_settings ) {
if ( false === $old_settings ) {
$gateway = new WC_Gateway_Stripe();
$fields = $gateway->get_form_fields();
$old_settings = array_merge( array_fill_keys( array_keys( $fields ), '' ), wp_list_pluck( $fields, 'default' ) );
$settings = array_merge( $old_settings, $settings );
}
if ( ! WC_Stripe_Feature_Flags::is_upe_preview_enabled() ) {
return $settings;
}
return $this->toggle_upe( $settings, $old_settings );
}
/**
* Enable or disable UPE.
*
* When enabling UPE: For each currently enabled Stripe LPM, the corresponding UPE method is enabled.
*
* When disabling UPE: For each currently enabled UPE method, the corresponding LPM is enabled.
*
* @param array $settings New settings to save.
* @param array|bool $old_settings Existing settings, if any.
* @return array New value but with defaults initially filled in for missing settings.
*/
protected function toggle_upe( $settings, $old_settings ) {
if ( false === $old_settings || ! isset( $old_settings[ WC_Stripe_Feature_Flags::UPE_CHECKOUT_FEATURE_ATTRIBUTE_NAME ] ) ) {
$old_settings = [ WC_Stripe_Feature_Flags::UPE_CHECKOUT_FEATURE_ATTRIBUTE_NAME => 'no' ];
}
if ( ! isset( $settings[ WC_Stripe_Feature_Flags::UPE_CHECKOUT_FEATURE_ATTRIBUTE_NAME ] ) || $settings[ WC_Stripe_Feature_Flags::UPE_CHECKOUT_FEATURE_ATTRIBUTE_NAME ] === $old_settings[ WC_Stripe_Feature_Flags::UPE_CHECKOUT_FEATURE_ATTRIBUTE_NAME ] ) {
return $settings;
}
if ( 'yes' === $settings[ WC_Stripe_Feature_Flags::UPE_CHECKOUT_FEATURE_ATTRIBUTE_NAME ] ) {
return $this->enable_upe( $settings );
}
return $this->disable_upe( $settings );
}
protected function enable_upe( $settings ) {
$settings['upe_checkout_experience_accepted_payments'] = [];
$payment_gateways = WC_Stripe_Helper::get_legacy_payment_methods();
foreach ( WC_Stripe_UPE_Payment_Gateway::UPE_AVAILABLE_METHODS as $method_class ) {
if ( ! defined( "$method_class::LPM_GATEWAY_CLASS" ) ) {
continue;
}
$lpm_gateway_id = constant( $method_class::LPM_GATEWAY_CLASS . '::ID' );
if ( isset( $payment_gateways[ $lpm_gateway_id ] ) && $payment_gateways[ $lpm_gateway_id ]->is_enabled() ) {
// DISABLE LPM
/**
* TODO: This can be replaced with:
*
* $payment_gateways[ $lpm_gateway_id ]->update_option( 'enabled', 'no' );
* $payment_gateways[ $lpm_gateway_id ]->enabled = 'no';
*
* ...once the minimum WC version is 3.4.0.
*/
$payment_gateways[ $lpm_gateway_id ]->settings['enabled'] = 'no';
update_option(
$payment_gateways[ $lpm_gateway_id ]->get_option_key(),
apply_filters( 'woocommerce_settings_api_sanitized_fields_' . $payment_gateways[ $lpm_gateway_id ]::ID, $payment_gateways[ $lpm_gateway_id ]->settings ),
'yes'
);
// ENABLE UPE METHOD
$settings['upe_checkout_experience_accepted_payments'][] = $method_class::STRIPE_ID;
}
if ( 'stripe' === $lpm_gateway_id && isset( $this->stripe_gateway ) && $this->stripe_gateway->is_enabled() ) {
$settings['upe_checkout_experience_accepted_payments'][] = 'card';
$settings['upe_checkout_experience_accepted_payments'][] = 'link';
}
}
if ( empty( $settings['upe_checkout_experience_accepted_payments'] ) ) {
$settings['upe_checkout_experience_accepted_payments'] = [ 'card', 'link' ];
} else {
// The 'stripe' gateway must be enabled for UPE if any LPMs were enabled.
$settings['enabled'] = 'yes';
}
return $settings;
}
protected function disable_upe( $settings ) {
$upe_gateway = new WC_Stripe_UPE_Payment_Gateway();
$upe_enabled_method_ids = $upe_gateway->get_upe_enabled_payment_method_ids();
foreach ( WC_Stripe_UPE_Payment_Gateway::UPE_AVAILABLE_METHODS as $method_class ) {
if ( ! defined( "$method_class::LPM_GATEWAY_CLASS" ) || ! in_array( $method_class::STRIPE_ID, $upe_enabled_method_ids, true ) ) {
continue;
}
// ENABLE LPM
$gateway_class = $method_class::LPM_GATEWAY_CLASS;
$gateway = new $gateway_class();
/**
* TODO: This can be replaced with:
*
* $gateway->update_option( 'enabled', 'yes' );
*
* ...once the minimum WC version is 3.4.0.
*/
$gateway->settings['enabled'] = 'yes';
update_option( $gateway->get_option_key(), apply_filters( 'woocommerce_settings_api_sanitized_fields_' . $gateway::ID, $gateway->settings ), 'yes' );
}
// Disable main Stripe/card LPM if 'card' UPE method wasn't enabled.
if ( ! in_array( 'card', $upe_enabled_method_ids, true ) ) {
$settings['enabled'] = 'no';
}
// DISABLE ALL UPE METHODS
if ( ! isset( $settings['upe_checkout_experience_accepted_payments'] ) ) {
$settings['upe_checkout_experience_accepted_payments'] = [];
}
return $settings;
}
/**
* 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 ) {
require_once WC_STRIPE_PLUGIN_PATH . '/includes/compat/class-wc-stripe-email-failed-authentication.php';
require_once WC_STRIPE_PLUGIN_PATH . '/includes/compat/class-wc-stripe-email-failed-renewal-authentication.php';
require_once WC_STRIPE_PLUGIN_PATH . '/includes/compat/class-wc-stripe-email-failed-preorder-authentication.php';
require_once WC_STRIPE_PLUGIN_PATH . '/includes/compat/class-wc-stripe-email-failed-authentication-retry.php';
// Add all emails, generated by the gateway.
$email_classes['WC_Stripe_Email_Failed_Renewal_Authentication'] = new WC_Stripe_Email_Failed_Renewal_Authentication( $email_classes );
$email_classes['WC_Stripe_Email_Failed_Preorder_Authentication'] = new WC_Stripe_Email_Failed_Preorder_Authentication( $email_classes );
$email_classes['WC_Stripe_Email_Failed_Authentication_Retry'] = new WC_Stripe_Email_Failed_Authentication_Retry( $email_classes );
return $email_classes;
}
/**
* Register REST API routes.
*
* New endpoints/controllers can be added here.
*/
public function register_routes() {
/** API includes */
require_once WC_STRIPE_PLUGIN_PATH . '/includes/admin/class-wc-stripe-rest-base-controller.php';
require_once WC_STRIPE_PLUGIN_PATH . '/includes/abstracts/abstract-wc-stripe-connect-rest-controller.php';
require_once WC_STRIPE_PLUGIN_PATH . '/includes/admin/class-wc-rest-stripe-account-controller.php';
require_once WC_STRIPE_PLUGIN_PATH . '/includes/admin/class-wc-rest-stripe-connection-tokens-controller.php';
require_once WC_STRIPE_PLUGIN_PATH . '/includes/admin/class-wc-rest-stripe-locations-controller.php';
require_once WC_STRIPE_PLUGIN_PATH . '/includes/admin/class-wc-rest-stripe-orders-controller.php';
require_once WC_STRIPE_PLUGIN_PATH . '/includes/admin/class-wc-rest-stripe-tokens-controller.php';
require_once WC_STRIPE_PLUGIN_PATH . '/includes/connect/class-wc-stripe-connect-rest-oauth-init-controller.php';
require_once WC_STRIPE_PLUGIN_PATH . '/includes/connect/class-wc-stripe-connect-rest-oauth-connect-controller.php';
$connection_tokens_controller = new WC_REST_Stripe_Connection_Tokens_Controller( $this->get_main_stripe_gateway() );
$locations_controller = new WC_REST_Stripe_Locations_Controller();
$orders_controller = new WC_REST_Stripe_Orders_Controller( $this->get_main_stripe_gateway() );
$stripe_tokens_controller = new WC_REST_Stripe_Tokens_Controller();
$oauth_init = new WC_Stripe_Connect_REST_Oauth_Init_Controller( $this->connect, $this->api );
$oauth_connect = new WC_Stripe_Connect_REST_Oauth_Connect_Controller( $this->connect, $this->api );
$stripe_account_controller = new WC_REST_Stripe_Account_Controller( $this->get_main_stripe_gateway(), $this->account );
$connection_tokens_controller->register_routes();
$locations_controller->register_routes();
$orders_controller->register_routes();
$stripe_tokens_controller->register_routes();
$oauth_init->register_routes();
$oauth_connect->register_routes();
$stripe_account_controller->register_routes();
if ( WC_Stripe_Feature_Flags::is_upe_preview_enabled() ) {
require_once WC_STRIPE_PLUGIN_PATH . '/includes/admin/class-wc-rest-stripe-settings-controller.php';
require_once WC_STRIPE_PLUGIN_PATH . '/includes/admin/class-wc-stripe-rest-upe-flag-toggle-controller.php';
require_once WC_STRIPE_PLUGIN_PATH . '/includes/admin/class-wc-rest-stripe-account-keys-controller.php';
$upe_flag_toggle_controller = new WC_Stripe_REST_UPE_Flag_Toggle_Controller();
$upe_flag_toggle_controller->register_routes();
$settings_controller = new WC_REST_Stripe_Settings_Controller( $this->get_main_stripe_gateway() );
$settings_controller->register_routes();
$stripe_account_keys_controller = new WC_REST_Stripe_Account_Keys_Controller( $this->account );
$stripe_account_keys_controller->register_routes();
}
}
/**
* Returns the main Stripe payment gateway class instance.
*
* @return WC_Stripe_Payment_Gateway
*/
public function get_main_stripe_gateway() {
if ( ! is_null( $this->stripe_gateway ) ) {
return $this->stripe_gateway;
}
if ( WC_Stripe_Feature_Flags::is_upe_preview_enabled() && WC_Stripe_Feature_Flags::is_upe_checkout_enabled() ) {
$this->stripe_gateway = new WC_Stripe_UPE_Payment_Gateway();
return $this->stripe_gateway;
}
$this->stripe_gateway = new WC_Gateway_Stripe();
return $this->stripe_gateway;
}
/**
* Move the email field to the top of the Checkout page.
*
* @param array $fields WooCommerce checkout fields.
*
* @return array WooCommerce checkout fields.
*/
public function checkout_update_email_field_priority( $fields ) {
if ( isset( $fields['billing_email'] ) && WC_Stripe_UPE_Payment_Method_Link::is_link_enabled() ) {
// Update the field priority.
$fields['billing_email']['priority'] = 1;
// Add extra `stripe-gateway-checkout-email-field` class.
$fields['billing_email']['class'][] = 'stripe-gateway-checkout-email-field';
}
return $fields;
}
/**
* Initializes updating subscriptions.
*/
public function initialize_subscriptions_updater() {
// The updater depends on WCS_Background_Repairer. Bail out if class does not exist.
if ( ! class_exists( 'WCS_Background_Repairer' ) ) {
return;
}
require_once dirname( __FILE__ ) . '/includes/migrations/class-wc-stripe-subscriptions-repairer-legacy-sepa-tokens.php';
$logger = wc_get_logger();
$updater = new WC_Stripe_Subscriptions_Repairer_Legacy_SEPA_Tokens( $logger );
$updater->init();
$updater->maybe_update();
}
public function load_plugin_textdomain() {
load_plugin_textdomain( 'woocommerce-gateway-stripe', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' );
}
}
$plugin = WC_Stripe::get_instance();
}
return $plugin;
}
add_action( 'plugins_loaded', 'woocommerce_gateway_stripe_init' );
function woocommerce_gateway_stripe_init() {
if ( ! class_exists( 'WooCommerce' ) ) {
add_action( 'admin_notices', 'woocommerce_stripe_missing_wc_notice' );
return;
}
if ( version_compare( WC_VERSION, WC_STRIPE_MIN_WC_VER, '<' ) ) {
add_action( 'admin_notices', 'woocommerce_stripe_wc_not_supported' );
return;
}
woocommerce_gateway_stripe();
}
/**
* Add woocommerce_inbox_variant for the Remote Inbox Notification.
*
* P2 post can be found at https://wp.me/paJDYF-1uJ.
*/
if ( ! function_exists( 'add_woocommerce_inbox_variant' ) ) {
function add_woocommerce_inbox_variant() {
$config_name = 'woocommerce_inbox_variant_assignment';
if ( false === get_option( $config_name, false ) ) {
update_option( $config_name, wp_rand( 1, 12 ) );
}
}
}
register_activation_hook( __FILE__, 'add_woocommerce_inbox_variant' );
function wcstripe_deactivated() {
// admin notes are not supported on older versions of WooCommerce.
require_once WC_STRIPE_PLUGIN_PATH . '/includes/class-wc-stripe-upe-compatibility.php';
if ( class_exists( 'WC_Stripe_Inbox_Notes' ) && WC_Stripe_Inbox_Notes::are_inbox_notes_supported() ) {
// requirements for the note
require_once WC_STRIPE_PLUGIN_PATH . '/includes/class-wc-stripe-feature-flags.php';
require_once WC_STRIPE_PLUGIN_PATH . '/includes/notes/class-wc-stripe-upe-availability-note.php';
WC_Stripe_UPE_Availability_Note::possibly_delete_note();
require_once WC_STRIPE_PLUGIN_PATH . '/includes/notes/class-wc-stripe-upe-stripelink-note.php';
WC_Stripe_UPE_StripeLink_Note::possibly_delete_note();
}
}
register_deactivation_hook( __FILE__, 'wcstripe_deactivated' );
// Hook in Blocks integration. This action is called in a callback on plugins loaded, so current Stripe plugin class
// implementation is too late.
add_action( 'woocommerce_blocks_loaded', 'woocommerce_gateway_stripe_woocommerce_block_support' );
function woocommerce_gateway_stripe_woocommerce_block_support() {
if ( class_exists( 'Automattic\WooCommerce\Blocks\Payments\Integrations\AbstractPaymentMethodType' ) ) {
require_once dirname( __FILE__ ) . '/includes/class-wc-stripe-blocks-support.php';
// priority is important here because this ensures this integration is
// registered before the WooCommerce Blocks built-in Stripe registration.
// Blocks code has a check in place to only register if 'stripe' is not
// already registered.
add_action(
'woocommerce_blocks_payment_method_type_registration',
function( Automattic\WooCommerce\Blocks\Payments\PaymentMethodRegistry $payment_method_registry ) {
// I noticed some incompatibility with WP 5.x and WC 5.3 when `_wcstripe_feature_upe_settings` is enabled.
if ( ! class_exists( 'WC_Stripe_Payment_Request' ) || ! class_exists( 'WC_Stripe_Express_Checkout_Element' ) ) {
return;
}
$container = Automattic\WooCommerce\Blocks\Package::container();
// registers as shared instance.
$container->register(
WC_Stripe_Blocks_Support::class,
function() {
if ( class_exists( 'WC_Stripe' ) ) {
return new WC_Stripe_Blocks_Support( WC_Stripe::get_instance()->payment_request_configuration, WC_Stripe::get_instance()->express_checkout_configuration );
} else {
return new WC_Stripe_Blocks_Support();
}
}
);
$payment_method_registry->register(
$container->get( WC_Stripe_Blocks_Support::class )
);
},
5
);
}
}
add_action(
'before_woocommerce_init',
function() {
if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
\Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'cart_checkout_blocks', __FILE__, true );
\Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
}
}
);