class-learndash-payment-gateway.php
27.7 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
<?php
/**
* Base class for payment gateways.
*
* @since 4.5.0
*
* @package LearnDash
*/
use LearnDash\Core\Models\Product;
use LearnDash\Core\Models\Transaction;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'Learndash_Payment_Gateway' ) ) {
/**
* Payment gateway class.
*
* @since 4.5.0
*/
abstract class Learndash_Payment_Gateway {
/**
* WP error code for gateway errors.
*
* @since 4.5.0
*
* @var string
*/
protected static $wp_error_code = 'learndash_payment_gateway_error';
/**
* Settings.
*
* @since 4.5.0
*
* @var array<string,mixed>
*/
protected $settings = array();
/**
* Learndash_Transaction_Logger instance or null.
*
* @since 4.5.0
*
* @var Learndash_Transaction_Logger|null
*/
protected $logger = null;
/**
* User being processing. Set on init action.
*
* @since 4.5.0
*
* @var WP_User
*/
protected $user;
/**
* Current currency code.
*
* @since 4.5.0
*
* @var string
*/
protected $currency_code;
/**
* Customer id meta key name.
*
* @since 4.5.0
*
* @var string
*/
protected $customer_id_meta_key = '';
/**
* Parent transaction ID.
*
* @since 4.5.0
*
* @var int
*/
protected $parent_transaction_id = 0;
/**
* List of all registered gateways.
*
* @since 4.5.0
*
* @var Learndash_Payment_Gateway[]
*/
private static $gateways = array();
/**
* List of initiated payment gateways.
* If a payment gateway is not ready (configured properly), it is not initiated, so it is not added to this list.
* Key is the gateway name. Value is the instance of the gateway.
*
* @since 4.5.0
*
* @var Learndash_Payment_Gateway[]
*/
private static $active_gateways = array();
/**
* Unique log ID.
*
* @since 4.5.0
*
* @var string
*/
private $log_prefix = '';
/**
* Construction.
*
* @since 4.5.0
*/
public function __construct() {
$this->user = wp_get_current_user();
$this->currency_code = mb_strtoupper( learndash_get_currency_code() );
$this->log_prefix = uniqid();
// add transaction loggers.
if ( $this->supports_logger() ) {
$this->logger = new Learndash_Transaction_Logger( $this );
add_filter(
'learndash_loggers',
function( array $loggers ): array {
$loggers[] = $this->logger;
return $loggers;
}
);
}
}
/**
* Initiates actions and filters if enabled and configured.
*
* @since 4.5.0
*
* @return void
*/
public function init(): void {
self::$gateways[ static::get_name() ] = $this;
$this->configure();
if ( ! $this->is_ready() ) {
return;
}
self::$active_gateways[ static::get_name() ] = $this;
$this->add_extra_hooks();
add_action(
'learndash_payment_button_added',
function() {
wp_enqueue_script( 'learndash-payments' );
$this->enqueue_scripts();
}
);
add_filter( 'learndash_payment_buttons', array( $this, 'add_payment_button' ), 11, 3 );
add_action( 'wp_ajax_nopriv_' . $this->get_ajax_action_name_setup(), array( $this, 'setup_payment' ) );
add_action( 'wp_ajax_' . $this->get_ajax_action_name_setup(), array( $this, 'setup_payment' ) );
add_action( 'wp_loaded', array( $this, 'process_webhook' ), 10, 0 );
}
/**
* Returns a flag to easily identify if the gateway supports logger. Default is true.
*
* @since 4.5.0
*
* @return bool True if a gateway supports logger. False otherwise.
*/
public function supports_logger(): bool {
return true;
}
/**
* Returns a flag to easily identify if the gateway supports transactions management. Default is false.
*
* @since 4.5.0
*
* @return bool True if a gateway supports managing subscriptions/other transactions. False otherwise.
*/
public function supports_transactions_management(): bool {
return false;
}
/**
* Cancels a subscription.
*
* @since 4.5.0
*
* @param string $subscription_id Subscription ID.
*
* @return bool|WP_Error True if cancelled. Otherwise, WP_Error.
*/
public function cancel_subscription( string $subscription_id ) {
return new WP_Error(
self::$wp_error_code,
sprintf(
/* translators: placeholders: Gateway name */
esc_html_x( 'Subscription cancellation is not supported by %1$s gateway.', 'placeholder: Gateway name', 'learndash' ),
static::get_name()
)
);
}
/**
* Returns price in subunits.
*
* @since 4.5.2
*
* @param float $price Price.
*
* @return int
*/
protected function get_price_in_subunits( float $price ): int {
return (int) round( $price * 100 );
}
/**
* Returns the gateway name.
*
* @since 4.5.0
*
* @return string
*/
abstract public static function get_name(): string;
/**
* Returns the gateway label.
*
* @since 4.5.0
*
* @return string
*/
abstract public static function get_label(): string;
/**
* Adds hooks from gateway classes.
*
* @since 4.5.0
*
* @return void
*/
abstract public function add_extra_hooks(): void;
/**
* Enqueues scripts.
*
* @since 4.5.0
*
* @return void
*/
abstract public function enqueue_scripts(): void;
/**
* Creates a session/order/subscription or prepares payment options on backend.
*
* @since 4.5.0
*
* @return void Json response.
*/
abstract public function setup_payment(): void;
/**
* Configures gateway.
*
* @since 4.5.0
*
* @return void
*/
abstract protected function configure(): void;
/**
* Returns true if everything is configured and payment gateway can be used, otherwise false.
*
* @since 4.5.0
*
* @return bool
*/
abstract public function is_ready(): bool;
/**
* Returns true it's a test mode, otherwise false.
*
* @since 4.5.0
*
* @return bool
*/
abstract protected function is_test_mode(): bool;
/**
* Returns payment button HTML markup.
*
* @since 4.5.0
*
* @param array<mixed> $params Payment params.
* @param WP_Post $post Post being processing.
*
* @return string Payment button HTML markup.
*/
abstract protected function map_payment_button_markup( array $params, WP_Post $post ): string;
/**
* Maps transaction meta.
*
* @since 4.5.0
*
* @param mixed $data Data.
* @param Product $product Product.
*
* @throws Learndash_DTO_Validation_Exception Transaction data validation exception.
*
* @return Learndash_Transaction_Meta_DTO
*/
abstract protected function map_transaction_meta( $data, Product $product ): Learndash_Transaction_Meta_DTO;
/**
* Returns AJAX action name for setup.
*
* @since 4.5.0
*
* @return string
*/
protected function get_ajax_action_name_setup(): string {
return 'learndash_payment_gateway_setup_' . static::get_name();
}
/**
* Handles the webhook.
*
* @since 4.5.0
*
* @return void
*/
abstract public function process_webhook(): void;
/**
* Gets payment gateways select. Keys are gateway names and values are gateway labels.
*
* @since 4.5.0
*
* @return array<string, string>
*/
public static function get_select_list(): array {
$result = array();
foreach ( self::$gateways as $gateway ) {
$result[ $gateway::get_name() ] = $gateway::get_label();
}
return $result;
}
/**
* Gets a payment gateway instance by name.
*
* @since 4.5.0
*
* @param string $payment_gateway_name Payment gateway name.
*
* @return Learndash_Payment_Gateway Instance of the payment gateway. Learndash_Unknown_Gateway if not found or not ready.
*/
public static function get_active_payment_gateway_by_name( string $payment_gateway_name ): Learndash_Payment_Gateway {
if ( ! isset( self::$active_gateways[ $payment_gateway_name ] ) ) {
return self::$active_gateways[ Learndash_Unknown_Gateway::get_name() ];
}
return self::$active_gateways[ $payment_gateway_name ];
}
/**
* Adds button.
*
* @since 4.5.0
*
* @param array<string,string> $buttons Payment buttons. An associative array where a key is a payment gateway name, and a value is payment button HTML markup.
* @param WP_Post $post Post being processing.
* @param array<mixed> $params Payment params.
*
* @return array<string,string> Payment buttons list.
*/
public function add_payment_button( array $buttons, WP_Post $post, array $params ): array {
$buttons[ static::get_name() ] = $this->map_payment_button_markup( $params, $post );
return $buttons;
}
/**
* Returns a successful enrollment url.
*
* @since 4.5.0
*
* @param Product[] $products Products.
* @param string $gateway_url Gateway url. Default empty string.
*
* @return string
*/
public static function get_url_success( array $products, string $gateway_url = '' ): string {
$products = array_filter(
$products,
function ( $product ) {
return $product instanceof Product;
}
);
$products = array_values( $products );
// For buy now and recurring types, use the “enrollment URL” field from post settings.
if ( 1 === count( $products ) ) {
$product = $products[0];
if ( learndash_is_course_post( $product->get_post() ) ) {
$enrollment_url = learndash_get_course_enrollment_url( $product->get_post() );
} elseif ( learndash_is_group_post( $product->get_post() ) ) {
$enrollment_url = learndash_get_group_enrollment_url( $product->get_post() );
}
if ( ! empty( $enrollment_url ) ) {
/**
* Filters URL for successful payments.
*
* @since 4.5.0
*
* @param string $url The URL, where user will be redirected after the successful payment.
* @param string $payment_gateway_name Payment gateway name.
* @param Product[] $products Purchased products.
*
* @return string The URL, where user will be redirected after the successful payment.
*/
return apply_filters( 'learndash_payment_option_url_success', $enrollment_url, static::get_name(), $products );
}
}
// Payment gateway setting “return url”.
if ( ! empty( $gateway_url ) ) {
/** This filter is documented in includes/payments/gateways/class-learndash-payment-gateway.php */
return apply_filters( 'learndash_payment_option_url_success', $gateway_url, static::get_name(), $products );
}
// "Registration success" page link in settings.
$registration_success_page_id = (int) LearnDash_Settings_Section::get_section_setting(
'LearnDash_Settings_Section_Registration_Pages',
'registration_success'
);
if ( ! empty( $registration_success_page_id ) ) {
$registration_success_page_url = get_permalink( $registration_success_page_id );
if ( ! empty( $registration_success_page_url ) ) {
/** This filter is documented in includes/payments/gateways/class-learndash-payment-gateway.php */
return apply_filters( 'learndash_payment_option_url_success', $registration_success_page_url, static::get_name(), $products );
}
}
// Link to post.
if ( 1 === count( $products ) ) {
$post_url = get_permalink( $products[0]->get_post() );
if ( ! empty( $post_url ) ) {
/** This filter is documented in includes/payments/gateways/class-learndash-payment-gateway.php */
return apply_filters( 'learndash_payment_option_url_success', $post_url, static::get_name(), $products );
}
}
// Home url.
/** This filter is documented in includes/payments/gateways/class-learndash-payment-gateway.php */
return apply_filters( 'learndash_payment_option_url_success', get_home_url(), static::get_name(), $products );
}
/**
* Returns a cancellation url.
*
* @since 4.5.0
*
* @param Product[] $products Products.
* @param string $gateway_url Gateway url. Default empty string.
*
* @return string
*/
public static function get_url_fail( array $products, string $gateway_url = '' ): string {
$products = array_filter(
$products,
function ( $product ) {
return $product instanceof Product;
}
);
$products = array_values( $products );
// Payment gateway setting “cancel url”. Currently, PayPal IPN only case.
if ( ! empty( $gateway_url ) ) {
/**
* Filters URL for failed payments.
*
* @since 4.5.0
*
* @param string $url The URL, where user will be redirected after the failed payment.
* @param string $payment_gateway_name Payment gateway name.
* @param Product[] $products Purchased products.
*
* @return string The URL, where user will be redirected after the failed payment.
*/
return apply_filters( 'learndash_payment_option_url_fail', $gateway_url, static::get_name(), $products );
}
$url = get_home_url();
// Link to post.
if ( 1 === count( $products ) ) {
$post_url = get_permalink( $products[0]->get_post() );
if ( ! empty( $post_url ) ) {
$url = $post_url;
}
}
/** This filter is documented in includes/payments/gateways/class-learndash-payment-gateway.php */
return apply_filters( 'learndash_payment_option_url_fail', $url, static::get_name(), $products );
}
/**
* Returns a description based on the post titles.
*
* @since 4.5.0
*
* @param Product[] $products Products.
*
* @return string
*/
protected function map_description( array $products = array() ): string {
$products = array_filter(
$products,
function( $product ) {
return $product instanceof Product;
}
);
$product_titles = array_map(
function( Product $product ): string {
return $product->get_post()->post_title;
},
$products
);
return implode( ', ', $product_titles );
}
/**
* Returns a post's thumbnail url if only one post and the thumbnail is set, otherwise returns LD logo.
*
* @since 4.5.0
*
* @param Product[] $products Products.
*
* @return string
*/
protected function get_image_url( array $products = array() ): string {
$image_url = '';
$products = array_filter(
$products,
function ( $product ) {
return $product instanceof Product;
}
);
$products = array_values( $products );
if ( 1 === count( $products ) ) {
$image_url = (string) get_the_post_thumbnail_url(
$products[0]->get_id()
);
}
if ( empty( $image_url ) ) {
$logo_image_id = LearnDash_Settings_Section::get_section_setting(
'LearnDash_Settings_Theme_LD30',
'login_logo'
);
$image_url = (string) wp_get_attachment_url( $logo_image_id );
}
/**
* Filters payment image url.
*
* @since 4.5.0
*
* @param string $image_url Image url.
* @param string $payment_gateway_name Payment gateway name.
*
* @return string Payment image url.
*/
$image_url = (string) apply_filters( 'learndash_payment_option_image_url', $image_url, static::get_name() );
return esc_url( $image_url );
}
/**
* Records a payment transaction.
*
* @since 4.5.0
*
* @param array<int|string,mixed> $meta Transaction meta.
* @param WP_Post $post Post.
* @param WP_User $user User.
*
* @return int Return the newly created transaction ID.
*/
protected function record_transaction( array $meta, WP_Post $post, WP_User $user ): int {
$transaction_id = learndash_transaction_create( $meta, $post, $user, $this->parent_transaction_id );
if ( 0 === $this->parent_transaction_id ) {
$transaction = Transaction::find( $transaction_id );
if ( $transaction ) {
$parent_transaction = $transaction->get_parent();
$this->parent_transaction_id = $parent_transaction ? $parent_transaction->get_id() : 0;
}
}
return $transaction_id;
}
/**
* Returns WP_User object or null.
*
* @since 4.5.0
*
* @param int $user_id User ID.
* @param string $email Email address.
* @param string $customer_id Gateway customer ID.
*
* @return WP_User|null
*/
protected function find_or_create_user( int $user_id, string $email, string $customer_id ): ?WP_User {
// Try to find by ID.
$user = $user_id > 0
? get_user_by( 'ID', $user_id )
: null;
// Try to find by an email or create with an email.
if ( ! $user instanceof WP_User && ! empty( $email ) ) {
$user = get_user_by( 'email', $email );
if ( ! $user instanceof WP_User ) {
$user = $this->create_user( $email );
}
}
if ( ! $user instanceof WP_User ) {
return null;
}
if (
! empty( $this->customer_id_meta_key ) &&
! empty( $customer_id ) &&
empty( get_user_meta( $user->ID, $this->customer_id_meta_key, true ) )
) {
update_user_meta( $user->ID, $this->customer_id_meta_key, $customer_id );
}
return $user;
}
/**
* Returns nonce name.
*
* @since 4.5.0
*
* @return string
*/
protected function get_nonce_name(): string {
return 'learndash-payment-gateway-' . static::get_name() . '-nonce';
}
/**
* Returns payment form class name.
*
* @since 4.5.0
*
* @param string $additional_class Additional class. Default empty string.
*
* @return string
*/
protected function get_form_class_name( string $additional_class = '' ): string {
$form_class = 'learndash-payment-gateway-form-' . static::get_name();
return $form_class . " $additional_class";
}
/**
* Creates a user.
*
* @since 4.5.0
*
* @param string $email Email.
*
* @return WP_User|null
*/
private function create_user( string $email ): ?WP_User {
$username = $email;
$password = wp_generate_password( 18 );
/**
* Filters whether to shorten a username from an email or keep an email.
*
* @since 4.5.0
*
* @param bool $shorten Default false.
*
* @return bool True to shorten, otherwise false.
*/
$shorten = (bool) apply_filters( 'learndash_payment_gateway_get_username_from_email', false );
if ( Learndash_Stripe_Gateway::get_name() === static::get_name() ) {
/**
* Filters whether to shorten a username from an email or keep an email. Default false.
*
* @since 4.0.0
* @deprecated 4.5.0 Use the {@see 'learndash_payment_gateway_get_username_from_email'} filter instead.
*
* @param bool $shorten True to shorten. Default false.
*
* @return bool
*/
$shorten = apply_filters_deprecated(
'learndash_stripe_create_short_username',
array( $shorten ),
'4.5.0',
'learndash_get_username_from_email'
);
}
if ( $shorten ) {
$username = (string) preg_replace( '/(.*)\@(.*)/', '$1', $username );
}
if ( username_exists( $username ) ) {
$username = $username . '-' . uniqid();
}
$user_id = wp_create_user( $username, $password, $email );
if ( is_wp_error( $user_id ) ) {
return null;
}
global $wp_version;
if ( version_compare( $wp_version, '4.3.0', '<' ) ) {
// phpcs:ignore WordPress.WP.DeprecatedParameters.Wp_new_user_notificationParam2Found
wp_new_user_notification( $user_id, $password ); // @phpstan-ignore-line WP 4.3.0 and lower.
} elseif ( version_compare( $wp_version, '4.3.0', '==' ) ) {
// phpcs:ignore WordPress.WP.DeprecatedParameters.Wp_new_user_notificationParam2Found
wp_new_user_notification( $user_id, 'both' ); // @phpstan-ignore-line WP 4.3.0.
} elseif ( version_compare( $wp_version, '4.3.1', '>=' ) ) {
wp_new_user_notification( $user_id, null, 'both' );
}
if ( Learndash_Razorpay_Gateway::get_name() === static::get_name() ) {
/**
* Fires after a user is created with Razorpay.
*
* @since 4.2.0
* @deprecated 4.5.0 Use the {@see 'learndash_payment_gateway_user_created'} action instead.
*
* @param int $user_id User ID.
*/
do_action_deprecated(
'learndash_user_created_with_razorpay',
array( $user_id ),
'4.5.0',
'learndash_payment_gateway_user_created'
);
}
if ( Learndash_Stripe_Gateway::get_name() === static::get_name() ) {
/**
* Fires after a user is created with Stripe.
*
* @deprecated 4.5.0 Use the {@see 'learndash_payment_gateway_user_created'} action instead.
*
* @param int $user_id User ID.
*/
do_action_deprecated(
'learndash_stripe_after_create_user',
array( $user_id ),
'4.5.0',
'learndash_payment_gateway_user_created'
);
}
$user = get_user_by( 'ID', $user_id );
if ( ! $user instanceof WP_User ) {
return null;
}
/**
* Fires after a user is created by payment gateway.
*
* @since 4.5.0
*
* @param WP_User $user User.
* @param string $payment_gateway_name Payment gateway name.
*/
do_action( 'learndash_payment_gateway_user_created', $user, static::get_name() );
return $user;
}
/**
* Adds access to products for a user.
*
* @since 4.5.0
*
* @param Product[] $products Products.
* @param WP_User $user User.
*
* @return array<int, mixed> Return the results of enroll() method of each product update.
*/
protected function add_access_to_products( array $products, WP_User $user ): array {
$products = array_filter(
$products,
function ( $product ) {
return $product instanceof Product;
}
);
$updates = array();
foreach ( $products as $product ) {
$updates[ $product->get_id() ] = $product->enroll( $user );
}
return $updates;
}
/**
* Removes access to products for a user.
*
* @since 4.5.0
*
* @param Product[] $products Products.
* @param WP_User $user User.
*
* @return array<int, mixed> Return the results of unenroll() method of each product update.
*/
protected function remove_access_to_products( array $products, WP_User $user ): array {
$products = array_filter(
$products,
function ( $product ) {
return $product instanceof Product;
}
);
$updates = array();
foreach ( $products as $product ) {
$updates[ $product->get_id() ] = $product->unenroll( $user );
}
return $updates;
}
/**
* Maps the payment button label.
*
* @since 4.5.0
*
* @param string $gateway_button_label Gateway button label.
* @param WP_Post $post Post.
*
* @return string
*/
protected function map_payment_button_label( string $gateway_button_label, WP_Post $post ): string {
$button_label = $gateway_button_label;
$active_gateways = array_filter(
self::$active_gateways,
function ( $gateway ) {
return ! $gateway instanceof Learndash_Unknown_Gateway;
}
);
if ( count( $active_gateways ) > 1 ) {
$button_label = $gateway_button_label;
} elseif ( learndash_is_course_post( $post ) ) {
$button_label = LearnDash_Custom_Label::get_label( LearnDash_Custom_Label::$button_take_course );
} elseif ( learndash_is_group_post( $post ) ) {
$button_label = LearnDash_Custom_Label::get_label( LearnDash_Custom_Label::$button_take_group );
}
if ( Learndash_Razorpay_Gateway::get_name() === static::get_name() ) {
/**
* Filters Razorpay payment button label.
*
* @since 4.5.0
* @deprecated 4.5.0 Use the {@see 'learndash_payment_button_label'} filter instead.
*
* @param string $button_label Razorpay button label.
*
* @return string Razorpay button label.
*/
$button_label = apply_filters_deprecated(
'learndash_button_label_razorpay',
array( $button_label ),
'4.5.0',
'learndash_payment_button_label'
);
} elseif ( Learndash_Stripe_Gateway::get_name() === static::get_name() ) {
/**
* Filters Stripe payment button label.
*
* @since 4.0.0
* @deprecated 4.5.0 Use the {@see 'learndash_payment_button_label'} filter instead.
*
* @param string $button_label Stripe button label.
*
* @return string Stripe button label.
*/
$button_label = apply_filters_deprecated(
'learndash_stripe_purchase_button_text',
array( $button_label ),
'4.5.0',
'learndash_payment_button_label'
);
}
/**
* Filters payment button label.
*
* @since 4.5.0
*
* @param string $button_label Payment button label.
* @param string $payment_gateway_name Payment gateway name.
*
* @return string Payment button label.
*/
return apply_filters( 'learndash_payment_button_label', $button_label, static::get_name() );
}
/**
* Allows to stop event processing.
*
* @since 4.5.0
*
* @param array<mixed> $event Event.
*
* @return bool True to ignore, false otherwise.
*/
protected function maybe_ignore_event( array $event ): bool {
if ( Learndash_Razorpay_Gateway::get_name() === static::get_name() ) {
/**
* Filters whether to process the Razorpay webhook or not.
*
* @since 4.5.0
* @deprecated 4.5.0
*
* @param bool $process To process or not. True by default.
* @param array $event Decoded Razorpay event.
*
* @return bool
*/
if (
! apply_filters_deprecated(
'learndash_process_webhook_razorpay',
array( true, $event ),
'4.5.0',
'learndash_payment_gateway_event_ignore'
)
) {
return true;
}
} elseif ( Learndash_Stripe_Gateway::get_name() === static::get_name() ) {
/**
* Filters whether to process the Stripe webhook or not.
*
* True by default.
*
* @since 4.0.0
* @deprecated 4.5.0
*
* @param bool $allow_processing To process or not. Default true.
* @param object $event Decoded Stripe event.
*
* @return bool
*/
if (
! apply_filters_deprecated(
'learndash_stripe_process_webhook',
array( true, json_decode( (string) wp_json_encode( $event ) ) ),
'4.5.0',
'learndash_payment_gateway_event_ignore'
)
) {
return true;
}
}
/**
* Filters whether to ignore a payment webhook or not.
*
* False by default.
*
* @since 4.5.0
*
* @param bool $ignore To ignore or not. Default false.
* @param string $gateway_name Gateway name.
* @param array $event Event data.
*
* @return bool
*/
return apply_filters( 'learndash_payment_gateway_event_ignore', false, static::get_name(), $event );
}
/**
* Finishes processing the event.
*
* @since 4.5.0
*
* @param array<mixed> $event Event data.
* @param bool $processed True if it was processed, false if ignored.
*
* @return void
*/
protected function finish_webhook_processing( array $event, bool $processed ): void {
$this->log_info( $processed ? 'Webhook processing completed.' : 'Webhook processing disabled.' );
/**
* Fires when the payment gateway event is processed (can be ignored too).
*
* @since 4.5.0
*
* @param array $event Event data.
* @param bool $processed True if it was processed, false if ignored.
* @param string $gateway_name Gateway name.
*/
do_action( 'learndash_payment_gateway_event_processed', $event, $processed, static::get_name() );
wp_send_json_success(
array(
'message' => $processed ? 'Event was processed successfully.' : 'Event was ignored.',
),
200
);
}
/**
* Writes an information to the log.
*
* @since 4.5.0
*
* @param string $message Message.
*
* @return void
*/
protected function log_info( string $message ): void {
if ( ! $this->supports_logger() || ! $this->logger ) {
return;
}
$this->logger->info( $message, $this->log_prefix );
}
/**
* Writes an error to the log.
*
* @since 4.5.0
*
* @param string $message Message.
*
* @return void
*/
protected function log_error( string $message ): void {
if ( ! $this->supports_logger() || ! $this->logger ) {
return;
}
$this->logger->error( $message, $this->log_prefix );
}
}
}