class-wc-payments-account.php
44.9 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
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
<?php
/**
* Class WC_Payments_Account
*
* @package WooCommerce\Payments
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
use Automattic\WooCommerce\Admin\Notes\DataStore;
use Automattic\WooCommerce\Admin\Notes\Note;
use WCPay\Exceptions\API_Exception;
use WCPay\Logger;
use WCPay\Database_Cache;
/**
* Class handling any account connection functionality
*/
class WC_Payments_Account {
// ACCOUNT_OPTION is only used in the supporting dev tools plugin, it can be removed once everyone has upgraded.
const ACCOUNT_OPTION = 'wcpay_account_data';
const ON_BOARDING_DISABLED_TRANSIENT = 'wcpay_on_boarding_disabled';
const ON_BOARDING_STARTED_TRANSIENT = 'wcpay_on_boarding_started';
const ERROR_MESSAGE_TRANSIENT = 'wcpay_error_message';
const INSTANT_DEPOSITS_REMINDER_ACTION = 'wcpay_instant_deposit_reminder';
/**
* Client for making requests to the WooCommerce Payments API
*
* @var WC_Payments_API_Client
*/
private $payments_api_client;
/**
* Cache util for managing the account data
*
* @var Database_Cache
*/
private $database_cache;
/**
* Action scheduler service
*
* @var WC_Payments_Action_Scheduler_Service
*/
private $action_scheduler_service;
/**
* Class constructor
*
* @param WC_Payments_API_Client $payments_api_client Payments API client.
* @param Database_Cache $database_cache Database cache util.
* @param WC_Payments_Action_Scheduler_Service $action_scheduler_service Action scheduler service.
*/
public function __construct( WC_Payments_API_Client $payments_api_client, Database_Cache $database_cache, WC_Payments_Action_Scheduler_Service $action_scheduler_service ) {
$this->payments_api_client = $payments_api_client;
$this->database_cache = $database_cache;
$this->action_scheduler_service = $action_scheduler_service;
add_action( 'admin_init', [ $this, 'maybe_handle_onboarding' ] );
add_action( 'admin_init', [ $this, 'maybe_redirect_to_onboarding' ], 11 ); // Run this after the WC setup wizard and onboarding redirection logic.
add_action( 'admin_init', [ $this, 'maybe_redirect_to_wcpay_connect' ], 12 ); // Run this after the redirect to onboarding logic.
add_action( 'woocommerce_payments_account_refreshed', [ $this, 'handle_instant_deposits_inbox_note' ] );
add_action( 'woocommerce_payments_account_refreshed', [ $this, 'handle_loan_approved_inbox_note' ] );
add_action( self::INSTANT_DEPOSITS_REMINDER_ACTION, [ $this, 'handle_instant_deposits_inbox_reminder' ] );
add_filter( 'allowed_redirect_hosts', [ $this, 'allowed_redirect_hosts' ] );
add_action( 'jetpack_site_registered', [ $this, 'clear_cache' ] );
add_action( 'updated_option', [ $this, 'possibly_update_wcpay_account_locale' ], 10, 3 );
// Add capital offer redirection.
add_action( 'admin_init', [ $this, 'maybe_redirect_to_capital_offer' ] );
// Add server links handler.
add_action( 'admin_init', [ $this, 'maybe_redirect_to_server_link' ] );
}
/**
* Wipes the account data option, forcing to re-fetch the account status from WP.com.
*/
public function clear_cache() {
$this->database_cache->delete( Database_Cache::ACCOUNT_KEY );
}
/**
* Return connected account ID
*
* @return string|null Account ID if connected, null if not connected or on error
*/
public function get_stripe_account_id() {
$account = $this->get_cached_account_data();
if ( empty( $account ) ) {
return null;
}
return $account['account_id'];
}
/**
* Gets public key for the connected account
*
* @param bool $is_test true to get the test key, false otherwise.
*
* @return string|null public key if connected, null if not connected.
*/
public function get_publishable_key( $is_test ) {
$account = $this->get_cached_account_data();
if ( empty( $account ) ) {
return null;
}
if ( $is_test ) {
return $account['test_publishable_key'];
}
return $account['live_publishable_key'];
}
/**
* Checks if the account is connected, assumes the value of $on_error on server error.
*
* @param bool $on_error Value to return on server error, defaults to false.
*
* @return bool True if the account is connected, false otherwise, $on_error on error.
*/
public function is_stripe_connected( bool $on_error = false ): bool {
try {
return $this->try_is_stripe_connected();
} catch ( Exception $e ) {
return $on_error;
}
}
/**
* Checks if the account is connected, throws on server error.
*
* @return bool True if the account is connected, false otherwise.
* @throws Exception Throws exception when unable to detect connection status.
*/
public function try_is_stripe_connected(): bool {
$account = $this->get_cached_account_data();
if ( false === $account ) {
throw new Exception( __( 'Failed to detect connection status', 'woocommerce-payments' ) );
}
// The empty array indicates that account is not connected yet.
return [] !== $account;
}
/**
* Checks if the account is valid: which means it's connected and has valid card_payments capability status (requested, pending_verification, active and other valid ones).
* Card_payments capability is crucial for account to function properly. If it is unrequested, we shouldn't show
* any other options for the merchants since it'll lead to various errors.
*
* @see https://github.com/Automattic/woocommerce-payments/issues/5275
*
* @return bool True if the account have valid stripe account, false otherwise.
*/
public function is_stripe_account_valid(): bool {
if ( ! $this->is_stripe_connected() ) {
return false;
}
$account = $this->get_cached_account_data();
if ( ! isset( $account['capabilities']['card_payments'] ) ) {
return false;
}
return 'unrequested' !== $account['capabilities']['card_payments'];
}
/**
* Checks if the account has been rejected, assumes the value of false on any account retrieval error.
* Returns false if the account is not connected.
*
* @return bool True if the account is connected and rejected, false otherwise or on error.
*/
public function is_account_rejected(): bool {
if ( ! $this->is_stripe_connected() ) {
return false;
}
$account = $this->get_cached_account_data();
return strpos( $account['status'] ?? '', 'rejected' ) === 0;
}
/**
* Gets the account status data for rendering on the settings page.
*
* @return array An array containing the status data, or [ 'error' => true ] on error or no connected account.
*/
public function get_account_status_data() {
$account = $this->get_cached_account_data();
if ( empty( $account ) ) {
// empty means no account. This data should not be used when the account is not connected.
return [
'error' => true,
];
}
if ( ! isset( $account['status'], $account['payments_enabled'] ) ) {
// return an error if any of the account data is missing.
return [
'error' => true,
];
}
return [
'email' => $account['email'] ?? '',
'country' => $account['country'] ?? 'US',
'status' => $account['status'],
'paymentsEnabled' => $account['payments_enabled'],
'deposits' => $account['deposits'] ?? [],
'depositsStatus' => $account['deposits']['status'] ?? $account['deposits_status'] ?? '',
'currentDeadline' => $account['current_deadline'] ?? false,
'pastDue' => $account['has_overdue_requirements'] ?? false,
'accountLink' => $this->get_login_url(),
'hasSubmittedVatData' => $account['has_submitted_vat_data'] ?? false,
'requirements' => [
'errors' => $account['requirements']['errors'] ?? [],
],
];
}
/**
* Gets the account statement descriptor for rendering on the settings page.
*
* @return string Account statement descriptor.
*/
public function get_statement_descriptor() : string {
$account = $this->get_cached_account_data();
return ! empty( $account ) && isset( $account['statement_descriptor'] ) ? $account['statement_descriptor'] : '';
}
/**
* Gets the business name.
*
* @return string Business profile name.
*/
public function get_business_name() : string {
$account = $this->get_cached_account_data();
return isset( $account['business_profile']['name'] ) ? $account['business_profile']['name'] : '';
}
/**
* Gets the business url.
*
* @return string Business profile url.
*/
public function get_business_url() : string {
$account = $this->get_cached_account_data();
return isset( $account['business_profile']['url'] ) ? $account['business_profile']['url'] : '';
}
/**
* Gets the business support address.
*
* @return array Business profile support address.
*/
public function get_business_support_address() : array {
$account = $this->get_cached_account_data();
return isset( $account['business_profile']['support_address'] ) ? $account['business_profile']['support_address'] : [];
}
/**
* Gets the business support email.
*
* @return string Business profile support email.
*/
public function get_business_support_email() : string {
$account = $this->get_cached_account_data();
return isset( $account['business_profile']['support_email'] ) ? $account['business_profile']['support_email'] : '';
}
/**
* Gets the business support phone.
*
* @return string Business profile support phone.
*/
public function get_business_support_phone() : string {
$account = $this->get_cached_account_data();
return isset( $account['business_profile']['support_phone'] ) ? $account['business_profile']['support_phone'] : '';
}
/**
* Gets the branding logo.
*
* @return string branding logo.
*/
public function get_branding_logo() : string {
$account = $this->get_cached_account_data();
return isset( $account['branding']['logo'] ) ? $account['branding']['logo'] : '';
}
/**
* Gets the branding icon.
*
* @return string branding icon.
*/
public function get_branding_icon() : string {
$account = $this->get_cached_account_data();
return isset( $account['branding']['icon'] ) ? $account['branding']['icon'] : '';
}
/**
* Gets the branding primary color.
*
* @return string branding primary color.
*/
public function get_branding_primary_color() : string {
$account = $this->get_cached_account_data();
return isset( $account['branding']['primary_color'] ) ? $account['branding']['primary_color'] : '';
}
/**
* Gets the branding secondary color.
*
* @return string branding secondary color.
*/
public function get_branding_secondary_color() : string {
$account = $this->get_cached_account_data();
return isset( $account['branding']['secondary_color'] ) ? $account['branding']['secondary_color'] : '';
}
/**
* Gets the deposit schedule interval.
*
* @return string interval e.g. weekly, monthly.
*/
public function get_deposit_schedule_interval(): string {
$account = $this->get_cached_account_data();
return $account['deposits']['interval'] ?? '';
}
/**
* Gets the deposit schedule weekly anchor.
*
* @return string weekly anchor e.g. monday, tuesday.
*/
public function get_deposit_schedule_weekly_anchor(): string {
$account = $this->get_cached_account_data();
return $account['deposits']['weekly_anchor'] ?? '';
}
/**
* Gets the deposit schedule monthly anchor.
*
* @return int|null monthly anchor e.g. 1, 2.
*/
public function get_deposit_schedule_monthly_anchor() {
$account = $this->get_cached_account_data();
return ! empty( $account['deposits']['monthly_anchor'] ) ? $account['deposits']['monthly_anchor'] : null;
}
/**
* Gets the number of days payments are delayed for.
*
* @return int|null e.g. 2, 7.
*/
public function get_deposit_delay_days() {
$account = $this->get_cached_account_data();
return $account['deposits']['delay_days'] ?? null;
}
/**
* Gets the deposit status
*
* @return string e.g. disabled, blocked, enabled.
*/
public function get_deposit_status(): string {
$account = $this->get_cached_account_data();
return $account['deposits']['status'] ?? '';
}
/**
* Gets whether the account has completed the deposit waiting period.
*
* @return bool
*/
public function get_deposit_completed_waiting_period(): bool {
$account = $this->get_cached_account_data();
return $account['deposits']['completed_waiting_period'] ?? false;
}
/**
* Get card present eligible flag account
*
* @return bool
*/
public function is_card_present_eligible(): bool {
$account = $this->get_cached_account_data();
return $account['card_present_eligible'] ?? false;
}
/**
* Get has account connected readers flag
*
* @return bool
*/
public function has_card_readers_available(): bool {
$account = $this->get_cached_account_data();
return $account['has_card_readers_available'] ?? false;
}
/**
* Gets the current account fees for rendering on the settings page.
*
* @return array Fees.
*/
public function get_fees() {
$account = $this->get_cached_account_data();
return ! empty( $account ) && isset( $account['fees'] ) ? $account['fees'] : [];
}
/**
* Gets the current account loan data for rendering on the settings pages.
*
* @return array loan data.
*/
public function get_capital() {
$account = $this->get_cached_account_data();
return ! empty( $account ) && isset( $account['capital'] ) && ! empty( $account['capital'] ) ? $account['capital'] : [
'loans' => [],
'has_active_loan' => false,
'has_previous_loans' => false,
];
}
/**
* Gets the current account email for rendering on the settings page.
*
* @return string Email.
*/
public function get_account_email(): string {
$account = $this->get_cached_account_data();
return $account['email'] ?? '';
}
/**
* Gets the customer currencies supported by Stripe available for the account.
*
* @return array Currencies.
*/
public function get_account_customer_supported_currencies() {
$account = $this->get_cached_account_data();
return ! empty( $account ) && isset( $account['customer_currencies']['supported'] ) ? $account['customer_currencies']['supported'] : [];
}
/**
* Gets the account live mode value.
*
* @return bool|null Account is_live value.
*/
public function get_is_live() {
$account = $this->get_cached_account_data();
return ! empty( $account ) && isset( $account['is_live'] ) ? $account['is_live'] : null;
}
/**
* Gets the various anti-fraud services that must be included on every WCPay-related page.
*
* @return array Assoc array. Each key is the slug of a fraud service that must be incorporated to every page, the value is service-specific config for it.
*/
public function get_fraud_services_config() {
$account = $this->get_cached_account_data();
if ( empty( $account ) || ! isset( $account['fraud_services'] ) ) {
// This was the default before adding new anti-fraud providers, preserve backwards-compatibility.
return [ 'stripe' => [] ];
}
$services_config = $account['fraud_services'];
$filtered_services_config = [];
foreach ( $services_config as $service_id => $config ) {
$filtered_services_config[ $service_id ] = apply_filters( 'wcpay_prepare_fraud_config', $config, $service_id );
}
return $filtered_services_config;
}
/**
* Checks if the request is for the Capital view offer redirection page, and redirects to the offer if so.
*
* Only admins are be able to perform this action. The redirect doesn't happen if the request is an AJAX request.
* This method will end execution after the redirect if the user requests and is allowed to view the loan offer.
*/
public function maybe_redirect_to_capital_offer() {
if ( wp_doing_ajax() ) {
return;
}
// Safety check to prevent non-admin users to be redirected to the view offer page.
if ( ! current_user_can( 'manage_woocommerce' ) ) {
return;
}
// This is an automatic redirection page, used to authenticate users that come from the offer email. For this reason
// we're not using a nonce. The GET parameter accessed here is just to indicate that we should process the redirection.
// phpcs:disable WordPress.Security.NonceVerification.Recommended
if ( ! isset( $_GET['wcpay-loan-offer'] ) ) {
return;
}
$return_url = $this->get_overview_page_url();
$refresh_url = add_query_arg( [ 'wcpay-loan-offer' => '' ], admin_url( 'admin.php' ) );
try {
$capital_link = $this->payments_api_client->get_capital_link( 'capital_financing_offer', $return_url, $refresh_url );
$this->redirect_to( $capital_link['url'] );
} catch ( API_Exception $e ) {
$error_url = add_query_arg(
[ 'wcpay-loan-offer-error' => '1' ],
self::get_overview_page_url()
);
$this->redirect_to( $error_url );
}
}
/**
* Checks if the request is for the server links handler, and redirects to the link if it's valid.
*
* Only admins are be able to perform this action. The redirect doesn't happen if the request is an AJAX request.
* This method will end execution after the redirect if the user is allowed to view the link and the link is valid.
*/
public function maybe_redirect_to_server_link() {
if ( wp_doing_ajax() ) {
return;
}
// Safety check to prevent non-admin users to be redirected to the view offer page.
if ( ! current_user_can( 'manage_woocommerce' ) ) {
return;
}
// This is an automatic redirection page, used to authenticate users that come from an email link. For this reason
// we're not using a nonce. The GET parameter accessed here is just to indicate that we should process the redirection.
// phpcs:disable WordPress.Security.NonceVerification.Recommended
if ( ! isset( $_GET['wcpay-link-handler'] ) ) {
return;
}
// Get all request arguments to be forwarded and remove the link handler identifier.
$args = $_GET;
unset( $args['wcpay-link-handler'] );
try {
$link = $this->payments_api_client->get_link( $args );
$this->redirect_to( $link['url'] );
} catch ( API_Exception $e ) {
$error_url = add_query_arg(
[ 'wcpay-server-link-error' => '1' ],
self::get_overview_page_url()
);
$this->redirect_to( $error_url );
}
}
/**
* Utility function to immediately redirect to the main "Welcome to WooCommerce Payments" onboarding page.
* Note that this function immediately ends the execution.
*
* @param string $error_message Optional error message to show in a notice.
*/
public function redirect_to_onboarding_page( $error_message = null ) {
if ( isset( $error_message ) ) {
set_transient( self::ERROR_MESSAGE_TRANSIENT, $error_message, 30 );
}
$params = [
'page' => 'wc-admin',
'path' => '/payments/connect',
];
if ( count( $params ) === count( array_intersect_assoc( $_GET, $params ) ) ) { // phpcs:disable WordPress.Security.NonceVerification.Recommended
// We are already in the onboarding page, do nothing.
return;
}
wp_safe_redirect( admin_url( add_query_arg( $params, 'admin.php' ) ) );
exit();
}
/**
* Checks if Stripe account is connected and redirects to the onboarding page if it is not.
*
* @return bool True if the redirection happened.
*/
public function maybe_redirect_to_onboarding() {
if ( wp_doing_ajax() || ! current_user_can( 'manage_woocommerce' ) ) {
return false;
}
$is_on_settings_page = WC_Payments_Admin_Settings::is_current_page_settings();
$should_redirect_to_onboarding = (bool) get_option( 'wcpay_should_redirect_to_onboarding', false );
if (
// If not loading the settings page...
! $is_on_settings_page
// ...and we have redirected before.
&& ! $should_redirect_to_onboarding
) {
// Do not attempt to redirect again.
return false;
}
$account = $this->get_cached_account_data();
if ( false === $account ) {
// Failed to retrieve account data. Exception is logged in http client.
return false;
}
if ( $should_redirect_to_onboarding ) {
// Update the option. If there's an account connected, we won't need to redirect in the future.
// If not, we will redirect once and will not want to redirect again.
update_option( 'wcpay_should_redirect_to_onboarding', false );
}
if ( ! empty( $account ) ) {
// Do not redirect if connected.
return false;
}
// Redirect directly to onboarding page if come from WC Admin task and are in treatment mode.
$http_referer = sanitize_text_field( wp_unslash( $_SERVER['HTTP_REFERER'] ?? '' ) );
if ( 0 < strpos( $http_referer, 'task=payments' ) ) {
$this->maybe_redirect_to_treatment_onboarding_page();
}
// Redirect if not connected.
$this->redirect_to_onboarding_page();
return true;
}
/**
* Redirects to the wcpay-connect URL, which then redirects to the KYC flow.
*
* This URL is used by the KYC reminder email. We can't take the merchant
* directly to the wcpay-connect URL because it's nonced, and the
* nonce will likely be expired by the time the user follows the link.
* That's why we need this middleman instead.
*
* @return bool True if the redirection happened, false otherwise.
*/
public function maybe_redirect_to_wcpay_connect() {
if ( wp_doing_ajax() || ! current_user_can( 'manage_woocommerce' ) ) {
return false;
}
$params = [
'page' => 'wc-admin',
'path' => '/payments/connect',
];
// We're not in the onboarding page, don't redirect.
if ( count( $params ) !== count( array_intersect_assoc( $_GET, $params ) ) ) { // phpcs:disable WordPress.Security.NonceVerification.Recommended
return false;
}
if ( ! isset( $_GET['wcpay-connect-redirect'] ) ) {
return false;
}
$redirect_param = sanitize_text_field( wp_unslash( $_GET['wcpay-connect-redirect'] ) );
// Let's record in Tracks merchants returning via the KYC reminder email.
if ( 'initial' === $redirect_param ) {
$offset = 1;
$description = 'initial';
} elseif ( 'second' === $redirect_param ) {
$offset = 3;
$description = 'second';
} else {
$follow_number = in_array( $redirect_param, [ '1', '2', '3', '4' ], true ) ? $redirect_param : '0';
// offset is recorded in days, $follow_number maps to the week number.
$offset = (int) $follow_number * 7;
$description = 'weekly-' . $follow_number;
}
$track_props = [
'offset' => $offset,
'description' => $description,
];
wc_admin_record_tracks_event( 'wcpay_kyc_reminder_merchant_returned', $track_props );
// Take the user to the 'wcpay-connect' URL.
// We handle creating and redirecting to the account link there.
$connect_url = add_query_arg(
[
'wcpay-connect' => '1',
'_wpnonce' => wp_create_nonce( 'wcpay-connect' ),
],
admin_url( 'admin.php' )
);
$this->redirect_to( $connect_url );
return true;
}
/**
* Filter function to add Stripe to the list of allowed redirect hosts
*
* @param array $hosts - array of allowed hosts.
*
* @return array allowed hosts
*/
public function allowed_redirect_hosts( $hosts ) {
$hosts[] = 'connect.stripe.com';
return $hosts;
}
/**
* Handle onboarding (login/init/redirect) routes
*/
public function maybe_handle_onboarding() {
if ( ! is_admin() || ! current_user_can( 'manage_woocommerce' ) ) {
return;
}
if ( isset( $_GET['wcpay-login'] ) && check_admin_referer( 'wcpay-login' ) ) {
try {
$this->redirect_to_login();
} catch ( Exception $e ) {
wp_safe_redirect(
add_query_arg(
[ 'wcpay-login-error' => '1' ],
self::get_overview_page_url()
)
);
exit;
}
return;
}
if ( isset( $_GET['wcpay-reconnect-wpcom'] ) && check_admin_referer( 'wcpay-reconnect-wpcom' ) ) {
$this->payments_api_client->start_server_connection( WC_Payments_Admin_Settings::get_settings_url() );
return;
}
if ( isset( $_GET['wcpay-connect'] ) && check_admin_referer( 'wcpay-connect' ) ) {
$wcpay_connect_param = sanitize_text_field( wp_unslash( $_GET['wcpay-connect'] ) );
$from_wc_admin_task = 'WCADMIN_PAYMENT_TASK' === $wcpay_connect_param;
$from_wc_pay_connect_page = false !== strpos( wp_get_referer(), 'path=%2Fpayments%2Fconnect' );
if ( ( $from_wc_admin_task || $from_wc_pay_connect_page ) ) {
$this->maybe_redirect_to_treatment_onboarding_page();
}
// Hide menu notification badge upon starting setup.
update_option( 'wcpay_menu_badge_hidden', 'yes' );
if ( isset( $_GET['wcpay-connect-jetpack-success'] ) && ! $this->payments_api_client->is_server_connected() ) {
$this->redirect_to_onboarding_page(
__( 'Connection to WordPress.com failed. Please connect to WordPress.com to start using WooCommerce Payments.', 'woocommerce-payments' )
);
return;
}
try {
$this->maybe_init_jetpack_connection( $wcpay_connect_param );
} catch ( Exception $e ) {
$this->redirect_to_onboarding_page(
/* translators: error message. */
sprintf( __( 'There was a problem connecting this site to WordPress.com: "%s"', 'woocommerce-payments' ), $e->getMessage() )
);
return;
}
try {
$this->init_stripe_onboarding( $wcpay_connect_param );
} catch ( Exception $e ) {
Logger::error( 'Init Stripe onboarding flow failed. ' . $e );
$this->redirect_to_onboarding_page(
__( 'There was a problem redirecting you to the account connection page. Please try again.', 'woocommerce-payments' )
);
}
return;
}
if (
isset( $_GET['wcpay-state'] )
&& isset( $_GET['wcpay-mode'] )
) {
$state = sanitize_text_field( wp_unslash( $_GET['wcpay-state'] ) );
$mode = sanitize_text_field( wp_unslash( $_GET['wcpay-mode'] ) );
$this->finalize_connection( $state, $mode );
return;
}
}
/**
* Get Stripe login url
*
* @return string Stripe account login url.
*/
private function get_login_url() {
return add_query_arg(
[
'wcpay-login' => '1',
'_wpnonce' => wp_create_nonce( 'wcpay-login' ),
]
);
}
/**
* Get Stripe connect url
*
* @see WC_Payments_Account::get_onboarding_return_url(). The $wcpay_connect_from param relies on this function returning the corresponding URL.
* @param string $wcpay_connect_from Optional. A page ID representing where the user should be returned to after connecting. Default is '1' - redirects back to the WC Payments overview page.
*
* @return string Stripe account login url.
*/
public static function get_connect_url( $wcpay_connect_from = '1' ) {
return wp_nonce_url( add_query_arg( [ 'wcpay-connect' => $wcpay_connect_from ], admin_url( 'admin.php' ) ), 'wcpay-connect' );
}
/**
* Payments task page url
*
* @return string payments task page url
*/
public static function get_payments_task_page_url() {
return add_query_arg(
[
'page' => 'wc-admin',
'task' => 'payments',
'method' => 'wcpay',
],
admin_url( 'admin.php' )
);
}
/**
* Get overview page url
*
* @return string overview page url
*/
public static function get_overview_page_url() {
return add_query_arg(
[
'page' => 'wc-admin',
'path' => '/payments/overview',
],
admin_url( 'admin.php' )
);
}
/**
* Checks if the current page is overview page
*
* @return boolean
*/
public static function is_overview_page() {
return isset( $_GET['path'] ) && '/payments/overview' === $_GET['path'];
}
/**
* Get WPCOM/Jetpack reconnect url, for use in case of missing connection owner.
*
* @return string WPCOM/Jetpack reconnect url.
*/
public static function get_wpcom_reconnect_url() {
return admin_url(
add_query_arg(
[
'wcpay-reconnect-wpcom' => '1',
'_wpnonce' => wp_create_nonce( 'wcpay-reconnect-wpcom' ),
],
'admin.php'
)
);
}
/**
* Has on-boarding been disabled?
*
* @return boolean
*/
public static function is_on_boarding_disabled() {
// If the transient isn't set at all, we'll get false indicating that the server hasn't informed us that
// on-boarding has been disabled (i.e. it's enabled as far as we know).
return get_transient( self::ON_BOARDING_DISABLED_TRANSIENT );
}
/**
* Calls wp_safe_redirect and exit.
*
* This method will end the execution immediately after the redirection.
*
* @param string $location The URL to redirect to.
*/
protected function redirect_to( $location ) {
wp_safe_redirect( $location );
exit;
}
/**
* Starts the Jetpack connection flow if it's not already fully connected.
*
* @param string $wcpay_connect_from - where the user should be returned to after connecting.
*
* @throws API_Exception If there was an error when registering the site on WP.com.
*/
private function maybe_init_jetpack_connection( $wcpay_connect_from ) {
$is_jetpack_fully_connected = $this->payments_api_client->is_server_connected() && $this->payments_api_client->has_server_connection_owner();
if ( $is_jetpack_fully_connected ) {
return;
}
$redirect = add_query_arg(
[
'wcpay-connect' => $wcpay_connect_from,
'wcpay-connect-jetpack-success' => '1',
'_wpnonce' => wp_create_nonce( 'wcpay-connect' ),
],
$this->get_onboarding_return_url( $wcpay_connect_from )
);
$this->payments_api_client->start_server_connection( $redirect );
}
/**
* For the connected account, fetches the login url from the API and redirects to it
*/
private function redirect_to_login() {
// Clear account transient when generating Stripe dashboard's login link.
$this->clear_cache();
$redirect_url = $this->get_overview_page_url();
$login_data = $this->payments_api_client->get_login_data( $redirect_url );
wp_safe_redirect( $login_data['url'] );
exit;
}
/**
* Builds the URL to return the user to after the Jetpack/Onboarding flow.
*
* @param string $wcpay_connect_from - Constant to decide where the user should be returned to after connecting.
* @return string
*/
private function get_onboarding_return_url( $wcpay_connect_from ) {
$is_from_subscription_product_publish = preg_match(
'/WC_SUBSCRIPTIONS_PUBLISH_PRODUCT_(\d+)/',
$wcpay_connect_from,
$matches
);
if ( 1 === $is_from_subscription_product_publish ) {
return add_query_arg(
[ 'wcpay-subscriptions-onboarded' => '1' ],
get_edit_post_link( $matches[1], 'url' )
);
}
// If connection originated on the WCADMIN payment task page, return there.
// else goto the overview page, since now it is GA (earlier it was redirected to plugin settings page).
switch ( $wcpay_connect_from ) {
case 'WCADMIN_PAYMENT_TASK':
return $this->get_payments_task_page_url();
case 'WC_SUBSCRIPTIONS_TABLE':
return admin_url( add_query_arg( [ 'post_type' => 'shop_subscription' ], 'edit.php' ) );
default:
return $this->get_overview_page_url();
}
}
/**
* Initializes the onboarding flow by fetching the URL from the API and redirecting to it.
*
* @param string $wcpay_connect_from - where the user should be returned to after connecting.
*/
private function init_stripe_onboarding( $wcpay_connect_from ) {
if ( get_transient( self::ON_BOARDING_STARTED_TRANSIENT ) ) {
$this->redirect_to_onboarding_page(
__( 'There was a duplicate attempt to initiate account setup. Please wait a few seconds and try again.', 'woocommerce-payments' )
);
return;
}
// Set a quickly expiring transient to save the current onboarding state and avoid duplicate requests.
set_transient( self::ON_BOARDING_STARTED_TRANSIENT, true, 10 );
// Clear account transient when generating Stripe's oauth data.
$this->clear_cache();
$current_user = wp_get_current_user();
$return_url = $this->get_onboarding_return_url( $wcpay_connect_from );
// Pre-fill from new KYC flow experiment in treatment mode.
$prefill = isset( $_GET['prefill'] ) ? wc_clean( wp_unslash( $_GET['prefill'] ) ) : [];
$prefill_country = $prefill['country'] ?? null;
$prefill_rest = [
'business_type' => $prefill['type'] ?? null,
'company' => [
'structure' => $prefill['structure'] ?? null,
],
];
$country = $prefill_country ?? WC()->countries->get_base_country();
if ( ! array_key_exists( $country, WC_Payments_Utils::supported_countries() ) ) {
$country = null;
}
$onboarding_data = $this->payments_api_client->get_onboarding_data(
$return_url,
array_merge(
[
'email' => $current_user->user_email,
'business_name' => get_bloginfo( 'name' ),
'url' => get_home_url(),
'country' => $country,
],
array_filter( $prefill_rest )
),
[
'site_username' => $current_user->user_login,
'site_locale' => get_locale(),
],
$this->get_actioned_notes()
);
delete_transient( self::ON_BOARDING_STARTED_TRANSIENT );
// If an account already exists for this site, we're done.
if ( false === $onboarding_data['url'] ) {
WC_Payments::get_gateway()->update_option( 'enabled', 'yes' );
update_option( '_wcpay_onboarding_stripe_connected', [ 'is_existing_stripe_account' => true ] );
wp_safe_redirect(
add_query_arg(
[ 'wcpay-connection-success' => '1' ],
$return_url
)
);
exit;
}
set_transient( 'wcpay_stripe_onboarding_state', $onboarding_data['state'], DAY_IN_SECONDS );
wp_safe_redirect( $onboarding_data['url'] );
exit;
}
/**
* Once the API redirects back to the site after the onboarding flow, verifies the parameters and stores the data
*
* @param string $state Secret string.
* @param string $mode Mode in which this account has been connected. Either 'test' or 'live'.
*/
private function finalize_connection( $state, $mode ) {
if ( get_transient( 'wcpay_stripe_onboarding_state' ) !== $state ) {
$this->redirect_to_onboarding_page(
__( 'There was a problem processing your account data. Please try again.', 'woocommerce-payments' )
);
return;
}
delete_transient( 'wcpay_stripe_onboarding_state' );
$this->clear_cache();
$gateway = WC_Payments::get_gateway();
$gateway->update_option( 'enabled', 'yes' );
$gateway->update_option( 'test_mode', 'test' === $mode ? 'yes' : 'no' );
// Store a state after completing KYC for tracks. This is stored temporarily in option because
// user might not have agreed to TOS yet.
update_option( '_wcpay_onboarding_stripe_connected', [ 'is_existing_stripe_account' => false ] );
wp_safe_redirect(
add_query_arg(
[
'wcpay-state' => false,
'wcpay-account-id' => false,
'wcpay-live-publishable-key' => false,
'wcpay-test-publishable-key' => false,
'wcpay-mode' => false,
'wcpay-connection-success' => '1',
]
)
);
exit;
}
/**
* Gets and caches the data for the account connected to this site.
*
* @param bool $force_refresh Forces data to be fetched from the server, rather than using the cache.
*
* @return array|bool Account data or false if failed to retrieve account data.
*/
public function get_cached_account_data( bool $force_refresh = false ) {
if ( ! $this->payments_api_client->is_server_connected() ) {
return [];
}
$refreshed = false;
$account = $this->database_cache->get_or_add(
Database_Cache::ACCOUNT_KEY,
function () {
try {
// Since we're about to call the server again, clear out the on-boarding disabled flag. We can let the code
// below re-create it if the server tells us on-boarding is still disabled.
delete_transient( self::ON_BOARDING_DISABLED_TRANSIENT );
$account = $this->payments_api_client->get_account_data();
} catch ( API_Exception $e ) {
if ( 'wcpay_account_not_found' === $e->get_error_code() ) {
// Special case - detect account not connected and cache it.
$account = [];
} elseif ( 'wcpay_on_boarding_disabled' === $e->get_error_code() ) {
// Special case - detect account not connected and on-boarding disabled. This will get updated the
// next time we call the server for account information, but just in case we set the expiry time for
// this setting an hour longer than the account details transient.
$account = [];
set_transient( self::ON_BOARDING_DISABLED_TRANSIENT, true, 2 * HOUR_IN_SECONDS );
} else {
// Return false to signal account retrieval error.
return false;
}
}
if ( ! $this->is_valid_cached_account( $account ) ) {
return false;
}
return $account;
},
[ $this, 'is_valid_cached_account' ],
$force_refresh,
$refreshed
);
if ( null === $account ) {
return false;
}
if ( $refreshed ) {
// Allow us to tie in functionality to an account refresh.
do_action( 'woocommerce_payments_account_refreshed', $account );
}
return $account;
}
/**
* Refetches account data and returns the fresh data.
*
* @return array|bool|string Either the new account data or false if unavailable.
*/
public function refresh_account_data() {
return $this->get_cached_account_data( true );
}
/**
* Checks if the cached account can be used in the current plugin state.
*
* @param bool|string|array $account cached account data.
*
* @return bool True if the cached account is valid.
*/
public function is_valid_cached_account( $account ) {
// null/false means no account has been cached.
if ( null === $account || false === $account ) {
return false;
}
// Non-array values are not expected.
if ( ! is_array( $account ) ) {
return false;
}
// empty array - special value to indicate that there's no account connected.
if ( empty( $account ) ) {
return true;
}
// live accounts are always valid.
if ( $account['is_live'] ) {
return true;
}
// test accounts are valid only when in dev mode.
if ( WC_Payments::get_gateway()->is_in_dev_mode() ) {
return true;
}
return false;
}
/**
* Updates Stripe account settings.
*
* @param array $stripe_account_settings Settings to update.
*
* @return null|string Error message if update failed.
*/
public function update_stripe_account( $stripe_account_settings ) {
try {
if ( ! $this->settings_changed( $stripe_account_settings ) ) {
Logger::info( 'Skip updating account settings. Nothing is changed.' );
return;
}
$updated_account = $this->payments_api_client->update_account( $stripe_account_settings );
$this->database_cache->add( Database_Cache::ACCOUNT_KEY, $updated_account );
} catch ( Exception $e ) {
Logger::error( 'Failed to update Stripe account ' . $e );
return $e->getMessage();
}
}
/**
* Checks if account settings changed.
*
* @param array $changes Account settings changes.
*
* @return bool True if at least one parameter value is changed.
*/
private function settings_changed( $changes = [] ) {
$account = $this->database_cache->get( Database_Cache::ACCOUNT_KEY );
// Consider changes as valid if we don't have cached account data.
if ( ! $this->is_valid_cached_account( $account ) ) {
return true;
}
$diff = array_diff_assoc( $changes, $account );
return ! empty( $diff );
}
/**
* Updates the WCPay Account locale with the current site language (WPLANG option).
*
* @param string $option_name Option name.
* @param mixed $old_value The old option value.
* @param mixed $new_value The new option value.
*/
public function possibly_update_wcpay_account_locale( $option_name, $old_value, $new_value ) {
if ( 'WPLANG' === $option_name && $this->is_stripe_connected() ) {
try {
$account_settings = [
'locale' => $new_value ? $new_value : 'en_US',
];
$updated_account = $this->payments_api_client->update_account( $account_settings );
$this->database_cache->add( Database_Cache::ACCOUNT_KEY, $updated_account );
} catch ( Exception $e ) {
Logger::error( __( 'Failed to update Account locale. ', 'woocommerce-payments' ) . $e );
}
}
}
/**
* Retrieves the latest ToS agreement for the account.
*
* @return array|null Either the agreement or null if unavailable.
*/
public function get_latest_tos_agreement() {
$account = $this->get_cached_account_data();
return ! empty( $account ) && isset( $account['latest_tos_agreement'] )
? $account['latest_tos_agreement']
: null;
}
/**
* Returns an array containing the names of all the WCPay related notes that have be actioned.
*
* @return array
*/
private function get_actioned_notes(): array {
$wcpay_note_names = [];
try {
/**
* Data Store for admin notes
*
* @var DataStore $data_store
*/
$data_store = WC_Data_Store::load( 'admin-note' );
} catch ( Exception $e ) {
// Don't stop the on-boarding process if something goes wrong here. Log the error and return the empty array
// of actioned notes.
Logger::error( $e );
return $wcpay_note_names;
}
// Fetch the last 10 actioned wcpay-promo admin notifications.
$add_like_clause = function( $where_clause ) {
return $where_clause . " AND name like 'wcpay-promo-%'";
};
add_filter( 'woocommerce_note_where_clauses', $add_like_clause );
$wcpay_promo_notes = $data_store->get_notes(
[
'status' => [ Note::E_WC_ADMIN_NOTE_ACTIONED ],
'is_deleted' => false,
'per_page' => 10,
]
);
remove_filter( 'woocommerce_note_where_clauses', $add_like_clause );
// If we didn't get an array back from the data store, return an empty array of results.
if ( ! is_array( $wcpay_promo_notes ) ) {
return $wcpay_note_names;
}
// Copy the name of each note into the results.
foreach ( (array) $wcpay_promo_notes as $wcpay_note ) {
$note = new Note( $wcpay_note->note_id );
$wcpay_note_names[] = $note->get_name();
}
return $wcpay_note_names;
}
/**
* Gets the account country.
*
* @return string Country.
*/
public function get_account_country() {
$account = $this->get_cached_account_data();
return $account['country'] ?? 'US';
}
/**
* Gets the account default currency.
*
* @return string Currency code in lowercase.
*/
public function get_account_default_currency() {
$account = $this->get_cached_account_data();
return $account['store_currencies']['default'] ?? 'usd';
}
/**
* Handles adding a note if the merchant is eligible for Instant Deposits.
*
* @param array $account The account data.
*
* @return void
*/
public function handle_instant_deposits_inbox_note( $account ) {
if ( empty( $account ) ) {
return;
}
if ( ! $this->is_instant_deposits_eligible( $account ) ) {
return;
}
require_once WCPAY_ABSPATH . 'includes/notes/class-wc-payments-notes-instant-deposits-eligible.php';
WC_Payments_Notes_Instant_Deposits_Eligible::possibly_add_note();
$this->maybe_add_instant_deposit_note_reminder();
}
/**
* Handles adding a note if the merchant has an loan approved.
*
* @param array $account The account data.
*
* @return void
*/
public function handle_loan_approved_inbox_note( $account ) {
require_once WCPAY_ABSPATH . 'includes/notes/class-wc-payments-notes-loan-approved.php';
// If the account cache is empty, don't try to create an inbox note.
if ( empty( $account ) ) {
return;
}
// Delete the loan note when the user doesn't have an active loan.
if ( ! isset( $account['capital']['has_active_loan'] ) || ! $account['capital']['has_active_loan'] ) {
WC_Payments_Notes_Loan_Approved::possibly_delete_note();
return;
}
// Get the loan summary.
try {
$loan_details = $this->payments_api_client->get_active_loan_summary();
} catch ( API_Exception $ex ) {
return;
}
WC_Payments_Notes_Loan_Approved::set_loan_details( $loan_details );
WC_Payments_Notes_Loan_Approved::possibly_add_note();
}
/**
* Handles removing note about merchant Instant Deposits eligibility.
* Hands off to handle_instant_deposits_inbox_note to add the new note.
*
* @return void
*/
public function handle_instant_deposits_inbox_reminder() {
require_once WCPAY_ABSPATH . 'includes/notes/class-wc-payments-notes-instant-deposits-eligible.php';
WC_Payments_Notes_Instant_Deposits_Eligible::possibly_delete_note();
$this->handle_instant_deposits_inbox_note( $this->get_cached_account_data() );
}
/**
* Handles adding scheduled action for the Instant Deposit note reminder.
*
* @return void
*/
public function maybe_add_instant_deposit_note_reminder() {
$action_hook = self::INSTANT_DEPOSITS_REMINDER_ACTION;
if ( $this->action_scheduler_service->pending_action_exists( $action_hook ) ) {
return;
}
$reminder_time = time() + ( 90 * DAY_IN_SECONDS );
$this->action_scheduler_service->schedule_job( $reminder_time, $action_hook );
}
/**
* Checks to see if the account is eligible for Instant Deposits.
*
* @param array $account The account data.
*
* @return bool
*/
private function is_instant_deposits_eligible( array $account ): bool {
if ( empty( $account['instant_deposits_eligible'] ) ) {
return false;
}
return true;
}
/**
* Get card testing protection eligible flag account
*
* @return bool
*/
public function is_card_testing_protection_eligible(): bool {
$account = $this->get_cached_account_data();
return $account['card_testing_protection_eligible'] ?? false;
}
/**
* Checks if the user is in onboarding treatment before doing the redirection.
* Also checks if the server is connect and try to connect it otherwise.
*
* @return void
*/
private function maybe_redirect_to_treatment_onboarding_page() {
if ( WC_Payments_Utils::is_in_onboarding_treatment_mode() ) {
$onboarding_url = admin_url( 'admin.php?page=wc-admin&path=/payments/onboarding' );
if ( ! $this->payments_api_client->is_server_connected() ) {
$this->payments_api_client->start_server_connection( $onboarding_url );
} else {
$this->redirect_to( $onboarding_url );
}
}
}
}