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
|
<?php
class SwpmWpLoadedTasks {
public function __construct() { }
/* * This is triggered after all plugins, themes and WP has loaded. * It is triggered after init, plugins_loaded etc. */ public function do_wp_loaded_tasks() { $this->synchronise_swpm_logout_for_wp_users(); //IPN listener $this->swpm_ipn_listener(); }
/* * Logs out the user from the swpm session if they are logged out of the WP user session */ public function synchronise_swpm_logout_for_wp_users() { if (!is_user_logged_in()) { /* WP user is logged out. So logout the SWPM user (if applicable) */ if (SwpmMemberUtils::is_member_logged_in()) { //Check if force WP user login sync is enabled or not $force_wp_user_sync = SwpmSettings::get_instance()->get_value('force-wp-user-sync'); if (empty($force_wp_user_sync)) { return ""; } /* Force WP user login sync is enabled. */ /* SWPM user is logged in the system. Log him out. */ SwpmLog::log_auth_debug("synchronise_swpm_logout_for_wp_users() - Force wp user login sync is enabled. ", true); SwpmLog::log_auth_debug("WP user session is logged out for this user. So logging out of the swpm session also.", true); wp_logout(); } } }
/* Payment Gateway IPN listener */
public function swpm_ipn_listener() {
//Listen and handle PayPal IPN $swpm_process_ipn = filter_input(INPUT_GET, 'swpm_process_ipn'); if ($swpm_process_ipn == '1') { include(SIMPLE_WP_MEMBERSHIP_PATH . 'ipn/swpm_handle_pp_ipn.php'); exit; }
//Listen and handle Stripe Buy Now IPN $swpm_process_stripe_buy_now = filter_input(INPUT_GET, 'swpm_process_stripe_buy_now'); if ($swpm_process_stripe_buy_now == '1') { include(SIMPLE_WP_MEMBERSHIP_PATH . 'ipn/swpm-stripe-buy-now-ipn.php'); exit; }
//Listen and handle Stripe Subscription IPN $swpm_process_stripe_subscription = filter_input(INPUT_GET, 'swpm_process_stripe_subscription'); if ($swpm_process_stripe_subscription == '1') { include(SIMPLE_WP_MEMBERSHIP_PATH . 'ipn/swpm-stripe-subscription-ipn.php'); exit; }
//Listen and handle Braintree Buy Now IPN $swpm_process_braintree_buy_now = filter_input(INPUT_GET, 'swpm_process_braintree_buy_now'); if ($swpm_process_braintree_buy_now == '1') { include(SIMPLE_WP_MEMBERSHIP_PATH . 'ipn/swpm-braintree-buy-now-ipn.php'); exit; }
//Listen and handle smart paypal checkout IPN if (wp_doing_ajax()) { include(SIMPLE_WP_MEMBERSHIP_PATH . 'ipn/swpm-smart-checkout-ipn.php'); add_action('wp_ajax_swpm_process_pp_smart_checkout', 'swpm_pp_smart_checkout_ajax_hanlder'); add_action('wp_ajax_nopriv_swpm_process_pp_smart_checkout', 'swpm_pp_smart_checkout_ajax_hanlder'); } } }
|