File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
<?php
class swpm_paypal_ipn_handler { // phpcs:ignore
public $ipn_log = false; // bool: log IPN results to text file?
public $ipn_log_file; // filename of the IPN log
public $ipn_response; // holds the IPN response from paypal
public $ipn_data = array(); // array contains the POST values for IPN
public $fields = array(); // array holds the fields to submit to paypal
public $sandbox_mode = false;
public $paypal_url = '';
public $post_string = '';
public function __construct() {
$this->paypal_url = 'https://www.paypal.com/cgi-bin/webscr';
$this->ipn_log_file = 'ipn_handle_debug_swpm.log';
$this->ipn_response = '';
}
public function swpm_validate_and_create_membership() {
// Check Product Name , Price , Currency , Receivers email ,
$error_msg = '';
// Read the IPN and validate
$gross_total = (float)$this->ipn_data['mc_gross'];
$transaction_type = isset($this->ipn_data['txn_type']) ? $this->ipn_data['txn_type'] : '';
$txn_id = isset($this->ipn_data['txn_id']) ? (string)$this->ipn_data['txn_id'] : '';
$payment_status = isset($this->ipn_data['payment_status']) ? $this->ipn_data['payment_status'] : '';
// Check payment status
if ( ! empty( $payment_status ) ) {
if ( 'Denied' == $payment_status ) {
$this->debug_log( 'Payment status for this transaction is DENIED. You denied the transaction... most likely a cancellation of an eCheque. Nothing to do here.', false );
return false;
}
if ( 'Canceled_Reversal' === $payment_status ) {
$this->debug_log( 'This is a dispute closed notification in your favour. The plugin will not do anyting.', false );
return true;
}
if ( 'Completed' !== $payment_status && 'Processed' !== $payment_status && 'Refunded' !== $payment_status && 'Reversed' !== $payment_status ) {
$error_msg .= 'Funds have not been cleared yet. Transaction will be processed when the funds clear!';
$this->debug_log( $error_msg, false );
return false;
}
}
// Check txn type
if ( 'new_case' === $transaction_type ) {
$this->debug_log( 'This is a dispute case. Nothing to do here.', true );
return true;
}
$custom = urldecode( $this->ipn_data['custom'] );
$this->ipn_data['custom'] = $custom;
$customvariables = SwpmTransactions::parse_custom_var( $custom );
// Handle refunds
if ( $gross_total < 0 ) {
// This is a refund or reversal
$this->debug_log( 'This is a refund notification. Refund amount: ' . $gross_total, true );
swpm_handle_subsc_cancel_stand_alone( $this->ipn_data, true );
return true;
}
if ( isset( $this->ipn_data['reason_code'] ) && 'refund' === $this->ipn_data['reason_code'] ) {
$this->debug_log( 'This is a refund notification. Refund amount: ' . $gross_total, true );
swpm_handle_subsc_cancel_stand_alone( $this->ipn_data, true );
return true;
}
if ( ( 'subscr_signup' === $transaction_type ) ) {
$this->debug_log( 'Subscription signup IPN received... (handled by the subscription IPN handler)', true );
// Code to handle the signup IPN for subscription
$subsc_ref = $customvariables['subsc_ref'];
if ( ! empty( $subsc_ref ) ) {
$this->debug_log( 'Found a membership level ID. Creating member account...', true );
$swpm_id = $customvariables['swpm_id'];
swpm_handle_subsc_signup_stand_alone( $this->ipn_data, $subsc_ref, $this->ipn_data['subscr_id'], $swpm_id );
// Save in the Transactions CPT so there is a 'subscription created' entry for paypal standard subscriptions.
$pp_std_sub_created_ipn = $this->create_pp_std_sub_created_ipn_data($this->ipn_data);
//SwpmLog::log_array_data_to_debug($pp_std_sub_created_ipn, true);
SwpmTransactions::save_txn_record( $pp_std_sub_created_ipn );
}
return true;
} elseif ( ( $transaction_type == 'subscr_cancel' ) || ( $transaction_type == 'subscr_eot' ) || ( $transaction_type == 'subscr_failed' ) ) {
// Code to handle the IPN for subscription cancellation
$this->debug_log( 'Subscription cancellation IPN received... (handled by the subscription IPN handler)', true );
swpm_handle_subsc_cancel_stand_alone( $this->ipn_data );
return true;
} else {
$cart_items = array();
$this->debug_log( 'Transaction Type: Buy Now/Subscribe', true );
$item_number = $this->ipn_data['item_number'];
$item_name = $this->ipn_data['item_name'];
$quantity = $this->ipn_data['quantity'];
$mc_gross = $this->ipn_data['mc_gross'];
$mc_currency = $this->ipn_data['mc_currency'];
$current_item = array(
'item_number' => $item_number,
'item_name' => $item_name,
'quantity' => $quantity,
'mc_gross' => $mc_gross,
'mc_currency' => $mc_currency,
);
array_push( $cart_items, $current_item );
}
/*** Duplicate IPN check ***/
// Query the DB to check if we have already processed this transaction or not
$txn_row = SwpmTransactions::get_transaction_row_by_txn_id($txn_id);
// And if we have already processed it, do nothing and return true
if (!empty($txn_row)) {
$this->debug_log( "This transaction has already been processed (".$txn_id."). Nothing to do here.", true );
return true;
}
/*** End of duplicate IPN check ***/
$counter = 0;
foreach ( $cart_items as $current_cart_item ) {
$cart_item_data_num = $current_cart_item['item_number'];
$cart_item_data_name = trim( $current_cart_item['item_name'] );
$cart_item_data_quantity = $current_cart_item['quantity'];
$cart_item_data_total = $current_cart_item['mc_gross'];
$cart_item_data_currency = $current_cart_item['mc_currency'];
if ( empty( $cart_item_data_quantity ) ) {
$cart_item_data_quantity = 1;
}
$this->debug_log( 'Item Number: ' . $cart_item_data_num, true );
$this->debug_log( 'Item Name: ' . $cart_item_data_name, true );
$this->debug_log( 'Item Quantity: ' . $cart_item_data_quantity, true );
$this->debug_log( 'Item Total: ' . $cart_item_data_total, true );
$this->debug_log( 'Item Currency: ' . $cart_item_data_currency, true );
// Get the button id
$pp_hosted_button = false;
$button_id = $cart_item_data_num;// Button id is the item number.
$membership_level_id = get_post_meta( $button_id, 'membership_level_id', true );
if ( ! SwpmUtils::membership_level_id_exists( $membership_level_id ) ) {
$this->debug_log( 'This payment button was not created in the plugin. This is a paypal hosted button.', true );
$pp_hosted_button = true;
}
// Price check
$check_price = true;
$msg = '';
$msg = apply_filters( 'swpm_before_price_check_filter', $msg, $current_cart_item );
if ( ! empty( $msg ) && $msg == 'price-check-override' ) {// This filter allows an extension to do a customized version of price check (if needed)
$check_price = false;
$this->debug_log( 'Price and currency check has been overridden by an addon/extension.', true );
}
if ( $check_price && ! $pp_hosted_button ) {
// Check according to buy now payment or subscription payment.
$button_type = get_post_meta( $button_id, 'button_type', true );
if ( $button_type == 'pp_buy_now' ) {// This is a PayPal buy now type button
$expected_amount = ( get_post_meta( $button_id, 'payment_amount', true ) ) * $cart_item_data_quantity;
$expected_amount = round( $expected_amount, 2 );
$expected_amount = apply_filters( 'swpm_payment_amount_filter', $expected_amount, $button_id );
$received_amount = $cart_item_data_total;
if ( $received_amount < $expected_amount ) {
// Error! amount received is less than expected. This is invalid.
$this->debug_log( 'Expected amount: ' . $expected_amount, true );
$this->debug_log( 'Received amount: ' . $received_amount, true );
$this->debug_log( 'Price check failed. Amount received is less than the amount expected. This payment will not be processed.', false );
return false;
}
} elseif ( $button_type == 'pp_subscription' ) {// This is a PayPal subscription type button
//This is a "subscr_payment" type payment notification. The "subscr_signup" type gets handled before.
$trial_billing_cycle = get_post_meta( $button_id, 'trial_billing_cycle', true );
$trial_billing_amount = get_post_meta( $button_id, 'trial_billing_amount', true );
$billing_amount = get_post_meta( $button_id, 'billing_amount', true );
if ( empty( $trial_billing_cycle ) ){
//No trial billing. Check main billing amount. Only need to check "mc_gross" which should cointain the "amount3" value.
$this->debug_log( 'Trial billing is not enabled for this button.', true );
$expected_amount = round( $billing_amount, 2 );
} else {
//Trial billing is specified for this button
$this->debug_log( 'Trial billing is enabled for this button.', true );
if ( swpm_is_paypal_recurring_payment($this->ipn_data) ){
//This is a recurring payment of a subscription.
$expected_amount = round( $billing_amount, 2 );
} else {
//This is a trial payment of a subscription
$expected_amount = round( $trial_billing_amount, 2 );
}
}
$received_amount = $cart_item_data_total;
if ( $received_amount < $expected_amount ) {
// Error! amount received is less than expected. This is invalid.
$this->debug_log( 'Expected amount: ' . $expected_amount, true );
$this->debug_log( 'Received amount: ' . $received_amount, true );
$this->debug_log( 'Price check failed. Amount received is less than the amount expected. This payment will not be processed.', false );
return false;
}
} else {
$this->debug_log( 'Error! Unexpected button type: ' . $button_type, false );
return false;
}
}
// *** Handle Membership Payment ***
// --------------------------------------------------------------------------------------
// ========= Need to find the (level ID) in the custom variable ============
$subsc_ref = $customvariables['subsc_ref'];// Membership level ID
$this->debug_log( 'Membership payment paid for membership level ID: ' . $subsc_ref, true );
if ( ! empty( $subsc_ref ) ) {
$swpm_id = '';
if ( isset( $customvariables['swpm_id'] ) ) {
$swpm_id = $customvariables['swpm_id'];
}
if ( $transaction_type == 'web_accept' ) {
$this->debug_log( 'Transaction type: web_accept. Creating member account...', true );
swpm_handle_subsc_signup_stand_alone( $this->ipn_data, $subsc_ref, $this->ipn_data['txn_id'], $swpm_id );
} elseif ( $transaction_type == 'subscr_payment' ) {
$this->debug_log( 'Transaction type: subscr_payment. Checking if the member profile needed to be updated', true );
swpm_update_member_subscription_start_date_if_applicable( $this->ipn_data );
}
} else {
$this->debug_log( 'Membership level ID is missing in the payment notification! Cannot process this notification.', false );
}
// == End of Membership payment handling ==
$counter++;
}
/*** Do Post payment operation and cleanup */
// Save the transaction data
$this->debug_log( 'Saving transaction data to the database table.', true );
$this->ipn_data['gateway'] = 'paypal';
$this->ipn_data['payment_button_id'] = $button_id;
$this->ipn_data['status'] = $this->ipn_data['payment_status'];
// If the value ipn_data['ip'] is empty, try to detect the customer IP address using the variable custom['user_ip']
if (empty($this->ipn_data['ip']) && filter_var($customvariables['user_ip'], FILTER_VALIDATE_IP)) {
$this->ipn_data['ip'] = $customvariables['user_ip'];
}
SwpmTransactions::save_txn_record( $this->ipn_data, $cart_items );
$this->debug_log( 'Transaction data saved.', true );
// Trigger the PayPal IPN processed action hook (so other plugins can can listen for this event).
do_action( 'swpm_paypal_ipn_processed', $this->ipn_data );
do_action( 'swpm_payment_ipn_processed', $this->ipn_data );
return true;
}
/**
* Create the IPN data array for a subscription created type notification so it can be used in the save txn function.
*/
public function create_pp_std_sub_created_ipn_data($incoming_ipn_data){
//Note: the save_txn_record function will get the user_ip, membership_level, member_id from the custom field data so no need to set them here.
$sub_created_ipn_data = array();
//Set the gateway and txn_type values.
$sub_created_ipn_data['gateway'] = 'paypal_std_sub_checkout';
$sub_created_ipn_data['txn_type'] = 'pp_std_subscription_new';//Can be used to find sub-created type transactions.
//This is used to show the 'subscription created' status in the payments menu.
$sub_created_ipn_data['status'] = __('subscription created', 'simple-membership');
//The transaction ID is not available in the create/activate subscription response. So we will use the subsciption ID with a prefix here.
$sub_created_ipn_data['txn_id'] = 'ppstd-sub-' . $incoming_ipn_data['subscr_id'];//For subscription create, the txn_id is the subscr_id with a prefix.
$sub_created_ipn_data['subscr_id'] = $incoming_ipn_data['subscr_id'];
//Custom field data.
$sub_created_ipn_data['custom'] = isset($incoming_ipn_data['custom']) ? $incoming_ipn_data['custom'] : '';
//$customvariables = SwpmTransactions::parse_custom_var( $sub_created_ipn_data['custom']);
//The 'item_number' contains the payment button id. This will save the button ID (in the save_txn_record function) in the swpm_transactions CPT.
$sub_created_ipn_data['payment_button_id'] = isset($incoming_ipn_data['item_number']) ? $incoming_ipn_data['item_number'] : '';
//If the subscription is for live mode or sandbox mode. We will use this to set the 'is_live' flag in the swpm_transactions CPT.
$settings = SwpmSettings::get_instance();
$sandbox_enabled = $settings->get_value( 'enable-sandbox-testing' );
$sub_created_ipn_data['is_live'] = empty($sandbox_enabled) ? 'yes' : 'no';//We need to save the environment (live or sandbox) of the subscription.
//Amount and currency.
if(isset($incoming_ipn_data['amount1'])){
$sub_created_ipn_data['mc_gross'] = $incoming_ipn_data['amount1'];
$sub_created_ipn_data['is_trial_txn'] = 'yes';
}else{
$sub_created_ipn_data['mc_gross'] = isset($incoming_ipn_data['amount3']) ? $incoming_ipn_data['amount3'] : 0;
}
$sub_created_ipn_data['mc_currency'] = isset($incoming_ipn_data['mc_currency']) ? $incoming_ipn_data['mc_currency'] : '';
$sub_created_ipn_data['quantity'] = 1;
// customer info.
$sub_created_ipn_data['first_name'] = isset($incoming_ipn_data['first_name']) ? $incoming_ipn_data['first_name'] : '';
$sub_created_ipn_data['last_name'] = isset($incoming_ipn_data['last_name']) ? $incoming_ipn_data['last_name'] : '';
$sub_created_ipn_data['payer_email'] = isset($incoming_ipn_data['payer_email']) ? $incoming_ipn_data['payer_email'] : '';
$sub_created_ipn_data['address_street'] = isset($incoming_ipn_data['address_street']) ? $incoming_ipn_data['address_street'] : '';
$sub_created_ipn_data['address_city'] = isset($incoming_ipn_data['address_city']) ? $incoming_ipn_data['address_city'] : '';
$sub_created_ipn_data['address_state'] = isset($incoming_ipn_data['address_state']) ? $incoming_ipn_data['address_state'] : '';
$sub_created_ipn_data['address_zip'] = isset($incoming_ipn_data['address_zip']) ? $incoming_ipn_data['address_zip'] : '';
$sub_created_ipn_data['address_country'] = isset($incoming_ipn_data['address_country']) ? $incoming_ipn_data['address_country'] : '';
//Other data (not so important)
$sub_created_ipn_data['item_number'] = isset($incoming_ipn_data['item_number']) ? $incoming_ipn_data['item_number'] : '';
$sub_created_ipn_data['item_name'] = isset($incoming_ipn_data['item_name']) ? $incoming_ipn_data['item_name'] : '';
return $sub_created_ipn_data;
}
public function swpm_validate_ipn() {
// Generate the post string from the _POST vars aswell as load the _POST vars into an arry
$post_string = '';
foreach ( $_POST as $field => $value ) {
$this->ipn_data[ "$field" ] = $value;
$post_string .= $field . '=' . urlencode( stripslashes( $value ) ) . '&';
}
$this->post_string = $post_string;
$this->debug_log( 'Post string : ' . $this->post_string, true );
// IPN validation check
if ( $this->validate_ipn_using_remote_post() ) {
// We can also use an alternative validation using the validate_ipn_using_curl() function
return true;
} else {
return false;
}
}
public function validate_ipn_using_remote_post() {
$this->debug_log( 'Checking if PayPal IPN response is valid', true );
// Get received values from post data
$validate_ipn = array( 'cmd' => '_notify-validate' );
$validate_ipn += wp_unslash( $_POST );
// Send back post vars to paypal
$params = array(
'body' => $validate_ipn,
'timeout' => 60,
'httpversion' => '1.1',
'compress' => false,
'decompress' => false,
'user-agent' => 'Simple Membership Plugin',
);
// Post back to get a response.
$connection_url = $this->sandbox_mode ? 'https://www.sandbox.paypal.com/cgi-bin/webscr' : 'https://www.paypal.com/cgi-bin/webscr';
$this->debug_log( 'Connecting to: ' . $connection_url, true );
$response = wp_safe_remote_post( $connection_url, $params );
// The following two lines can be used for debugging
// $this->debug_log( 'IPN Request: ' . print_r( $params, true ) , true);
// $this->debug_log( 'IPN Response: ' . print_r( $response, true ), true);
// Check to see if the request was valid.
if ( ! is_wp_error( $response ) && strstr( $response['body'], 'VERIFIED' ) ) {
$this->debug_log( 'IPN successfully verified.', true );
return true;
}
// Invalid IPN transaction. Check the log for details.
$this->debug_log( 'IPN validation failed.', false );
if ( is_wp_error( $response ) ) {
$this->debug_log( 'Error response: ' . $response->get_error_message(), false );
}
return false;
}
public function debug_log( $message, $success, $end = false ) {
SwpmLog::log_simple_debug( $message, $success, $end );
}
}
// Start of IPN handling (script execution)
$ipn_handler_instance = new swpm_paypal_ipn_handler();
$settings = SwpmSettings::get_instance();
$debug_enabled = $settings->get_value( 'enable-debug' );
if ( ! empty( $debug_enabled ) ) {
$debug_log = 'log.txt'; // Debug log file name
echo esc_html( sprintf( 'Debug logging is enabled. Check the %s file for debug output.', $debug_log ) );
$ipn_handler_instance->ipn_log = true;
$ipn_handler_instance->ipn_log_file = $debug_log;
if ( empty( $_POST ) ) {
$ipn_handler_instance->debug_log( 'This debug line was generated because you entered the URL of the ipn handling script in the browser.', true, true );
exit;
}
}
$sandbox_enabled = $settings->get_value( 'enable-sandbox-testing' );
if ( ! empty( $sandbox_enabled ) ) {
$ipn_handler_instance->paypal_url = 'https://www.sandbox.paypal.com/cgi-bin/webscr';
$ipn_handler_instance->sandbox_mode = true;
}
$ipn_handler_instance->debug_log( 'Paypal Class Initiated by ' . $_SERVER['REMOTE_ADDR'], true );
// Validate the IPN
if ( $ipn_handler_instance->swpm_validate_ipn() ) {
$ipn_handler_instance->debug_log( 'Creating product Information to send.', true );
if ( ! $ipn_handler_instance->swpm_validate_and_create_membership() ) {
$ipn_handler_instance->debug_log( 'IPN product validation failed.', false );
}
}
$ipn_handler_instance->debug_log( 'Paypal class finished.', true, true );
