PATH:
home
/
letacommog
/
aacote
/
wp-content
/
plugins
/
paid-memberships-pro
/
classes
/
gateways
<?php //include pmprogateway require_once(dirname(__FILE__) . "/class.pmprogateway.php"); //load classes init method add_action('init', array('PMProGateway_paypal', 'init')); class PMProGateway_paypal extends PMProGateway { function __construct($gateway = NULL) { $this->gateway = $gateway; return $this->gateway; } /** * Run on WP init * * @since 1.8 */ static function init() { //make sure PayPal Website Payments Pro is a gateway option add_filter('pmpro_gateways', array('PMProGateway_paypal', 'pmpro_gateways')); //add fields to payment settings add_filter('pmpro_payment_options', array('PMProGateway_paypal', 'pmpro_payment_options')); /* This code is the same for PayPal Website Payments Pro, PayPal Express, and PayPal Standard So we only load it if we haven't already. */ global $pmpro_payment_option_fields_for_paypal; if(empty($pmpro_payment_option_fields_for_paypal)) { add_filter('pmpro_payment_option_fields', array('PMProGateway_paypal', 'pmpro_payment_option_fields'), 10, 2); $pmpro_payment_option_fields_for_paypal = true; } //code to add at checkout $gateway = pmpro_getGateway(); if($gateway == "paypal") { add_filter('pmpro_checkout_default_submit_button', array('PMProGateway_paypal', 'pmpro_checkout_default_submit_button')); add_action('pmpro_checkout_after_form', array('PMProGateway_paypal', 'pmpro_checkout_after_form')); add_action('http_api_curl', array('PMProGateway_paypal', 'http_api_curl'), 10, 3); } } /** * Update the SSLVERSION for CURL to support PayPal Express moving to TLS 1.2 * * @since 1.8.9.1 */ static function http_api_curl($handle, $r, $url) { if(strpos($url, 'paypal.com') !== false) curl_setopt( $handle, CURLOPT_SSLVERSION, 6 ); } /** * Make sure this gateway is in the gateways list * * @since 1.8 */ static function pmpro_gateways($gateways) { if(empty($gateways['paypal'])) $gateways['paypal'] = __('PayPal Website Payments Pro', 'paid-memberships-pro' ); return $gateways; } /** * Get a list of payment options that the this gateway needs/supports. * * @since 1.8 */ static function getGatewayOptions() { $options = array( 'sslseal', 'nuclear_HTTPS', 'gateway_environment', 'gateway_email', 'apiusername', 'apipassword', 'apisignature', 'currency', 'use_ssl', 'tax_state', 'tax_rate', 'accepted_credit_cards', 'paypalexpress_skip_confirmation' ); return $options; } /** * Set payment options for payment settings page. * * @since 1.8 */ static function pmpro_payment_options($options) { //get stripe options $paypal_options = PMProGateway_paypal::getGatewayOptions(); //merge with others. $options = array_merge($paypal_options, $options); return $options; } /** * Display fields for this gateway's options. * * @since 1.8 */ static function pmpro_payment_option_fields($values, $gateway) { ?> <tr class="pmpro_settings_divider gateway gateway_paypal gateway_paypalexpress gateway_paypalstandard" <?php if($gateway != "paypal" && $gateway != "paypalexpress" && $gateway != "paypalstandard") { ?>style="display: none;"<?php } ?>> <td colspan="2"> <?php _e('PayPal Settings', 'paid-memberships-pro' ); ?> </td> </tr> <tr class="gateway gateway_paypalstandard" <?php if($gateway != "paypalstandard") { ?>style="display: none;"<?php } ?>> <td colspan="2"> <strong><?php _e('Note', 'paid-memberships-pro' );?>:</strong> <?php _e('We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target="_blank" href="http://www.paidmembershipspro.com/2013/09/read-using-paypal-standard-paid-memberships-pro/">More information on why can be found here.</a>', 'paid-memberships-pro' );?> </td> </tr> <tr class="gateway gateway_paypal gateway_paypalexpress gateway_paypalstandard" <?php if($gateway != "paypal" && $gateway != "paypalexpress" && $gateway != "paypalstandard") { ?>style="display: none;"<?php } ?>> <th scope="row" valign="top"> <label for="gateway_email"><?php _e('Gateway Account Email', 'paid-memberships-pro' );?>:</label> </th> <td> <input type="text" id="gateway_email" name="gateway_email" size="60" value="<?php echo esc_attr($values['gateway_email'])?>" /> </td> </tr> <tr class="gateway gateway_paypal gateway_paypalexpress" <?php if($gateway != "paypal" && $gateway != "paypalexpress") { ?>style="display: none;"<?php } ?>> <th scope="row" valign="top"> <label for="apiusername"><?php _e('API Username', 'paid-memberships-pro' );?>:</label> </th> <td> <input type="text" id="apiusername" name="apiusername" size="60" value="<?php echo esc_attr($values['apiusername'])?>" /> </td> </tr> <tr class="gateway gateway_paypal gateway_paypalexpress" <?php if($gateway != "paypal" && $gateway != "paypalexpress") { ?>style="display: none;"<?php } ?>> <th scope="row" valign="top"> <label for="apipassword"><?php _e('API Password', 'paid-memberships-pro' );?>:</label> </th> <td> <input type="text" id="apipassword" name="apipassword" size="60" value="<?php echo esc_attr($values['apipassword'])?>" /> </td> </tr> <tr class="gateway gateway_paypal gateway_paypalexpress" <?php if($gateway != "paypal" && $gateway != "paypalexpress") { ?>style="display: none;"<?php } ?>> <th scope="row" valign="top"> <label for="apisignature"><?php _e('API Signature', 'paid-memberships-pro' );?>:</label> </th> <td> <input type="text" id="apisignature" name="apisignature" size="60" value="<?php echo esc_attr($values['apisignature'])?>" /> </td> </tr> <tr class="gateway gateway_paypal gateway_paypalexpress" <?php if($gateway != "paypal" && $gateway != "paypalexpress") { ?>style="display: none;"<?php } ?>> <th scope="row" valign="top"> <label for="paypalexpress_skip_confirmation"><?php _e('Confirmation Step', 'paid-memberships-pro' );?>:</label> </th> <td> <select id="paypalexpress_skip_confirmation" name="paypalexpress_skip_confirmation"> <option value="0" <?php selected(pmpro_getOption('paypalexpress_skip_confirmation'), 0);?>>Require an extra confirmation after users return from PayPal Express.</option> <option value="1" <?php selected(pmpro_getOption('paypalexpress_skip_confirmation'), 1);?>>Skip the extra confirmation after users return from PayPal Express.</option> </select> </td> </tr> <tr class="gateway gateway_paypal gateway_paypalexpress gateway_paypalstandard" <?php if($gateway != "paypal" && $gateway != "paypalexpress" && $gateway != "paypalstandard") { ?>style="display: none;"<?php } ?>> <th scope="row" valign="top"> <label><?php _e('IPN Handler URL', 'paid-memberships-pro' );?>:</label> </th> <td> <p><?php _e('This URL is passed to PayPal for all new charges and subscriptions. You SHOULD NOT set this in your PayPal account settings.', 'paid-memberships-pro' );?><pre><?php echo admin_url("admin-ajax.php") . "?action=ipnhandler";?></pre></p> </td> </tr> <?php } /** * Swap in our submit buttons. * * @since 1.8 */ static function pmpro_checkout_default_submit_button($show) { global $gateway, $pmpro_requirebilling; //show our submit buttons ?> <?php if($gateway == "paypal" || $gateway == "paypalexpress" || $gateway == "paypalstandard") { ?> <span id="pmpro_paypalexpress_checkout" <?php if(($gateway != "paypalexpress" && $gateway != "paypalstandard") || !$pmpro_requirebilling) { ?>style="display: none;"<?php } ?>> <input type="hidden" name="submit-checkout" value="1" /> <input type="image" id="pmpro_btn-submit-paypal" class="pmpro_btn-submit-checkout" value="<?php _e('Check Out with PayPal', 'paid-memberships-pro' );?> »" src="<?php echo apply_filters("pmpro_paypal_button_image", "https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif");?>" /> </span> <?php } ?> <span id="pmpro_submit_span" <?php if(($gateway == "paypalexpress" || $gateway == "paypalstandard") && $pmpro_requirebilling) { ?>style="display: none;"<?php } ?>> <input type="hidden" name="submit-checkout" value="1" /> <input type="submit" id="pmpro_btn-submit" class="pmpro_btn pmpro_btn-submit-checkout" value="<?php if($pmpro_requirebilling) { _e('Submit and Check Out', 'paid-memberships-pro' ); } else { _e('Submit and Confirm', 'paid-memberships-pro' );}?> »" /> </span> <?php //don't show the default return false; } /** * Scripts for checkout page. * * @since 1.8 */ static function pmpro_checkout_after_form() { ?> <script> <!-- //choosing payment method jQuery('input[name=gateway]').click(function() { if(jQuery(this).val() == 'paypal') { jQuery('#pmpro_paypalexpress_checkout').hide(); jQuery('#pmpro_billing_address_fields').show(); jQuery('#pmpro_payment_information_fields').show(); jQuery('#pmpro_submit_span').show(); } else { jQuery('#pmpro_billing_address_fields').hide(); jQuery('#pmpro_payment_information_fields').hide(); jQuery('#pmpro_submit_span').hide(); jQuery('#pmpro_paypalexpress_checkout').show(); } }); //select the radio button if the label is clicked on jQuery('a.pmpro_radio').click(function() { jQuery(this).prev().click(); }); --> </script> <?php } /** * Process checkout. * */ function process(&$order) { if(floatval($order->InitialPayment) == 0) { //auth first, then process $authorization_id = $this->authorize($order); if($authorization_id) { $this->void($order, $authorization_id); $order->ProfileStartDate = date_i18n("Y-m-d", strtotime("+ " . $order->BillingFrequency . " " . $order->BillingPeriod, current_time("timestamp"))) . "T0:0:0"; $order->ProfileStartDate = apply_filters("pmpro_profile_start_date", $order->ProfileStartDate, $order); return $this->subscribe($order); } else { if(empty($order->error)) $order->error = __("Unknown error: Authorization failed.", 'paid-memberships-pro' ); return false; } } else { //charge first payment if($this->charge($order)) { //set up recurring billing if(pmpro_isLevelRecurring($order->membership_level)) { $order->ProfileStartDate = date_i18n("Y-m-d", strtotime("+ " . $order->BillingFrequency . " " . $order->BillingPeriod, current_time("timestamp"))) . "T0:0:0"; $order->ProfileStartDate = apply_filters("pmpro_profile_start_date", $order->ProfileStartDate, $order); if($this->subscribe($order)) { return true; } else { if($this->refund($order, $order->payment_transaction_id)) { if(empty($order->error)) $order->error = __("Unknown error: Payment failed.", 'paid-memberships-pro' ); } else { if(empty($order->error)) $order->error = "Unknown error: Payment failed."; $order->error .= " " . __("A partial payment was made that we could not refund. Please contact the site owner immediately to correct this.", 'paid-memberships-pro' ); } return false; } } else { //only a one time charge $order->status = "success"; //saved on checkout page $order->saveOrder(); return true; } } } } function authorize(&$order) { if(empty($order->code)) $order->code = $order->getRandomCode(); //paypal profile stuff $nvpStr = ""; if(!empty($order->Token)) $nvpStr .= "&TOKEN=" . $order->Token; $nvpStr .="&AMT=1.00&CURRENCYCODE=" . pmpro_getOption("currency"); $nvpStr .= "&NOTIFYURL=" . urlencode(admin_url('admin-ajax.php') . "?action=ipnhandler"); //$nvpStr .= "&L_BILLINGTYPE0=RecurringPayments&L_BILLINGAGREEMENTDESCRIPTION0=" . $order->PaymentAmount; $nvpStr .= "&PAYMENTACTION=Authorization&IPADDRESS=" . $_SERVER['REMOTE_ADDR'] . "&INVNUM=" . $order->code; //credit card fields if($order->cardtype == "American Express") $cardtype = "Amex"; else $cardtype = $order->cardtype; if(!empty($cardtype)) $nvpStr .= "&CREDITCARDTYPE=" . $cardtype . "&ACCT=" . $order->accountnumber . "&EXPDATE=" . $order->ExpirationDate . "&CVV2=" . $order->CVV2; //Maestro/Solo card fields. (Who uses these?) :) if(!empty($order->StartDate)) $nvpStr .= "&STARTDATE=" . $order->StartDate . "&ISSUENUMBER=" . $order->IssueNumber; //billing address, etc if(!empty($order->Address1)) { $nvpStr .= "&EMAIL=" . $order->Email . "&FIRSTNAME=" . $order->FirstName . "&LASTNAME=" . $order->LastName . "&STREET=" . $order->Address1; if($order->Address2) $nvpStr .= "&STREET2=" . $order->Address2; $nvpStr .= "&CITY=" . $order->billing->city . "&STATE=" . $order->billing->state . "&COUNTRYCODE=" . $order->billing->country . "&ZIP=" . $order->billing->zip . "&SHIPTOPHONENUM=" . $order->billing->phone; } //for debugging, let's attach this to the class object $this->nvpStr = $nvpStr; $this->httpParsedResponseAr = $this->PPHttpPost('DoDirectPayment', $nvpStr); if("SUCCESS" == strtoupper($this->httpParsedResponseAr["ACK"]) || "SUCCESSWITHWARNING" == strtoupper($this->httpParsedResponseAr["ACK"])) { $order->authorization_id = $this->httpParsedResponseAr['TRANSACTIONID']; $order->updateStatus("authorized"); return $order->authorization_id; } else { $order->status = "error"; $order->errorcode = $this->httpParsedResponseAr['L_ERRORCODE0']; $order->error = urldecode($this->httpParsedResponseAr['L_LONGMESSAGE0']); $order->shorterror = urldecode($this->httpParsedResponseAr['L_SHORTMESSAGE0']); return false; } } function void(&$order, $authorization_id = null) { if(empty($authorization_id)) return false; //paypal profile stuff $nvpStr="&AUTHORIZATIONID=" . $authorization_id . "&NOTE=Voiding an authorization for a recurring payment setup."; $this->httpParsedResponseAr = $this->PPHttpPost('DoVoid', $nvpStr); if("SUCCESS" == strtoupper($this->httpParsedResponseAr["ACK"]) || "SUCCESSWITHWARNING" == strtoupper($this->httpParsedResponseAr["ACK"])) { return true; } else { $order->status = "error"; $order->errorcode = $this->httpParsedResponseAr['L_ERRORCODE0']; $order->error = urldecode($this->httpParsedResponseAr['L_LONGMESSAGE0']); $order->shorterror = urldecode($this->httpParsedResponseAr['L_SHORTMESSAGE0']); return false; } } function refund(&$order, $transaction_id) { if(empty($transaction_id)) return false; //paypal profile stuff $nvpStr="&TRANSACTIONID=" . $transaction_id . "&NOTE=Refunding a charge."; $this->httpParsedResponseAr = $this->PPHttpPost('RefundTransaction', $nvpStr); if("SUCCESS" == strtoupper($this->httpParsedResponseAr["ACK"]) || "SUCCESSWITHWARNING" == strtoupper($this->httpParsedResponseAr["ACK"])) { return true; } else { $order->status = "error"; $order->errorcode = $this->httpParsedResponseAr['L_ERRORCODE0']; $order->error = urldecode($this->httpParsedResponseAr['L_LONGMESSAGE0']); $order->shorterror = urldecode($this->httpParsedResponseAr['L_SHORTMESSAGE0']); return false; } } function charge(&$order) { global $pmpro_currency; if(empty($order->code)) $order->code = $order->getRandomCode(); //taxes on the amount $amount = $order->InitialPayment; $amount_tax = $order->getTaxForPrice($amount); $order->subtotal = $amount; $amount = pmpro_round_price((float)$amount + (float)$amount_tax); //paypal profile stuff $nvpStr = ""; if(!empty($order->Token)) $nvpStr .= "&TOKEN=" . $order->Token; $nvpStr .="&AMT=" . $amount . "&ITEMAMT=" . $order->InitialPayment . "&TAXAMT=" . $amount_tax . "&CURRENCYCODE=" . $pmpro_currency; $nvpStr .= "&NOTIFYURL=" . urlencode(admin_url('admin-ajax.php') . "?action=ipnhandler"); //$nvpStr .= "&L_BILLINGTYPE0=RecurringPayments&L_BILLINGAGREEMENTDESCRIPTION0=" . $order->PaymentAmount; $nvpStr .= "&PAYMENTACTION=Sale&IPADDRESS=" . $_SERVER['REMOTE_ADDR'] . "&INVNUM=" . $order->code; //credit card fields if($order->cardtype == "American Express") $cardtype = "Amex"; else $cardtype = $order->cardtype; if(!empty($cardtype)) $nvpStr .= "&CREDITCARDTYPE=" . $cardtype . "&ACCT=" . $order->accountnumber . "&EXPDATE=" . $order->ExpirationDate . "&CVV2=" . $order->CVV2; //Maestro/Solo card fields. (Who uses these?) :) if(!empty($order->StartDate)) $nvpStr .= "&STARTDATE=" . $order->StartDate . "&ISSUENUMBER=" . $order->IssueNumber; //billing address, etc if($order->Address1) { $nvpStr .= "&EMAIL=" . $order->Email . "&FIRSTNAME=" . $order->FirstName . "&LASTNAME=" . $order->LastName . "&STREET=" . $order->Address1; if($order->Address2) $nvpStr .= "&STREET2=" . $order->Address2; $nvpStr .= "&CITY=" . $order->billing->city . "&STATE=" . $order->billing->state . "&COUNTRYCODE=" . $order->billing->country . "&ZIP=" . $order->billing->zip . "&SHIPTOPHONENUM=" . $order->billing->phone; } $this->httpParsedResponseAr = $this->PPHttpPost('DoDirectPayment', $nvpStr); if("SUCCESS" == strtoupper($this->httpParsedResponseAr["ACK"]) || "SUCCESSWITHWARNING" == strtoupper($this->httpParsedResponseAr["ACK"])) { $order->payment_transaction_id = $this->httpParsedResponseAr['TRANSACTIONID']; $order->updateStatus("success"); return true; } else { $order->status = "error"; $order->errorcode = $this->httpParsedResponseAr['L_ERRORCODE0']; $order->error = urldecode($this->httpParsedResponseAr['L_LONGMESSAGE0']); $order->shorterror = urldecode($this->httpParsedResponseAr['L_SHORTMESSAGE0']); return false; } } function subscribe(&$order) { global $pmpro_currency; if(empty($order->code)) $order->code = $order->getRandomCode(); //filter order before subscription. use with care. $order = apply_filters("pmpro_subscribe_order", $order, $this); //taxes on the amount $amount = $order->PaymentAmount; $amount_tax = $order->getTaxForPrice($amount); $amount = pmpro_round_price((float)$amount + (float)$amount_tax); //paypal profile stuff $nvpStr = ""; if(!empty($order->Token)) $nvpStr .= "&TOKEN=" . $order->Token; $nvpStr .="&AMT=" . $order->PaymentAmount . "&TAXAMT=" . $amount_tax . "&CURRENCYCODE=" . $pmpro_currency . "&PROFILESTARTDATE=" . $order->ProfileStartDate; $nvpStr .= "&BILLINGPERIOD=" . $order->BillingPeriod . "&BILLINGFREQUENCY=" . $order->BillingFrequency . "&AUTOBILLOUTAMT=AddToNextBilling"; $nvpStr .= "&DESC=" . urlencode( apply_filters( 'pmpro_paypal_level_description', substr($order->membership_level->name . " at " . get_bloginfo("name"), 0, 127), $order->membership_level->name, $order, get_bloginfo("name")) ); $nvpStr .= "&NOTIFYURL=" . urlencode(admin_url('admin-ajax.php') . "?action=ipnhandler"); //$nvpStr .= "&L_BILLINGTYPE0=RecurringPayments&L_BILLINGAGREEMENTDESCRIPTION0=" . $order->PaymentAmount; //if billing cycles are defined if(!empty($order->TotalBillingCycles)) $nvpStr .= "&TOTALBILLINGCYCLES=" . $order->TotalBillingCycles; //if a trial period is defined if(!empty($order->TrialBillingPeriod)) { $trial_amount = $order->TrialAmount; $trial_tax = $order->getTaxForPrice($trial_amount); $trial_amount = pmpro_round_price((float)$trial_amount + (float)$trial_tax); $nvpStr .= "&TRIALBILLINGPERIOD=" . $order->TrialBillingPeriod . "&TRIALBILLINGFREQUENCY=" . $order->TrialBillingFrequency . "&TRIALAMT=" . $trial_amount; } if(!empty($order->TrialBillingCycles)) $nvpStr .= "&TRIALTOTALBILLINGCYCLES=" . $order->TrialBillingCycles; //credit card fields if($order->cardtype == "American Express") $cardtype = "Amex"; else $cardtype = $order->cardtype; if($cardtype) $nvpStr .= "&CREDITCARDTYPE=" . $cardtype . "&ACCT=" . $order->accountnumber . "&EXPDATE=" . $order->ExpirationDate . "&CVV2=" . $order->CVV2; //Maestro/Solo card fields. (Who uses these?) :) if(!empty($order->StartDate)) $nvpStr .= "&STARTDATE=" . $order->StartDate . "&ISSUENUMBER=" . $order->IssueNumber; //billing address, etc if($order->Address1) { $nvpStr .= "&EMAIL=" . $order->Email . "&FIRSTNAME=" . $order->FirstName . "&LASTNAME=" . $order->LastName . "&STREET=" . $order->Address1; if($order->Address2) $nvpStr .= "&STREET2=" . $order->Address2; $nvpStr .= "&CITY=" . $order->billing->city . "&STATE=" . $order->billing->state . "&COUNTRYCODE=" . $order->billing->country . "&ZIP=" . $order->billing->zip . "&SHIPTOPHONENUM=" . $order->billing->phone; } //for debugging let's add this to the class object $this->nvpStr = $nvpStr; $this->httpParsedResponseAr = $this->PPHttpPost('CreateRecurringPaymentsProfile', $nvpStr); if("SUCCESS" == strtoupper($this->httpParsedResponseAr["ACK"]) || "SUCCESSWITHWARNING" == strtoupper($this->httpParsedResponseAr["ACK"])) { $order->status = "success"; $order->subscription_transaction_id = urldecode($this->httpParsedResponseAr['PROFILEID']); return true; //exit('CreateRecurringPaymentsProfile Completed Successfully: '.print_r($this->httpParsedResponseAr, true)); } else { $order->status = "error"; $order->errorcode = $this->httpParsedResponseAr['L_ERRORCODE0']; $order->error = urldecode($this->httpParsedResponseAr['L_LONGMESSAGE0']); $order->shorterror = urldecode($this->httpParsedResponseAr['L_SHORTMESSAGE0']); return false; //exit('CreateRecurringPaymentsProfile failed: ' . print_r($httpParsedResponseAr, true)); } } function update(&$order) { //paypal profile stuff $nvpStr = ""; $nvpStr .= "&PROFILEID=" . $order->subscription_transaction_id; //credit card fields if($order->cardtype == "American Express") $cardtype = "Amex"; else $cardtype = $order->cardtype; //credit card fields if($cardtype) $nvpStr .= "&CREDITCARDTYPE=" . $cardtype . "&ACCT=" . $order->accountnumber . "&EXPDATE=" . $order->ExpirationDate . "&CVV2=" . $order->CVV2; //Maestro/Solo card fields. (Who uses these?) :) if($order->StartDate) $nvpStr .= "&STARTDATE=" . $order->StartDate . "&ISSUENUMBER=" . $order->IssueNumber; //billing address, etc if($order->Address1) { $nvpStr .= "&EMAIL=" . $order->Email . "&FIRSTNAME=" . $order->FirstName . "&LASTNAME=" . $order->LastName . "&STREET=" . $order->Address1; if($order->Address2) $nvpStr .= "&STREET2=" . $order->Address2; $nvpStr .= "&CITY=" . $order->billing->city . "&STATE=" . $order->billing->state . "&COUNTRYCODE=" . $order->billing->country . "&ZIP=" . $order->billing->zip; } $this->httpParsedResponseAr = $this->PPHttpPost('UpdateRecurringPaymentsProfile', $nvpStr); if("SUCCESS" == strtoupper($this->httpParsedResponseAr["ACK"]) || "SUCCESSWITHWARNING" == strtoupper($this->httpParsedResponseAr["ACK"])) { $order->status = "success"; $order->subscription_transaction_id = urldecode($this->httpParsedResponseAr['PROFILEID']); return true; //exit('CreateRecurringPaymentsProfile Completed Successfully: '.print_r($this->httpParsedResponseAr, true)); } else { $order->status = "error"; $order->errorcode = $this->httpParsedResponseAr['L_ERRORCODE0']; $order->error = urldecode($this->httpParsedResponseAr['L_LONGMESSAGE0']); $order->shorterror = urldecode($this->httpParsedResponseAr['L_SHORTMESSAGE0']); return false; //exit('CreateRecurringPaymentsProfile failed: ' . print_r($httpParsedResponseAr, true)); } } function cancel(&$order) { //paypal profile stuff $nvpStr = ""; $nvpStr .= "&PROFILEID=" . urlencode($order->subscription_transaction_id) . "&ACTION=Cancel&NOTE=" . urlencode("User requested cancel."); $this->httpParsedResponseAr = $this->PPHttpPost('ManageRecurringPaymentsProfileStatus', $nvpStr); if("SUCCESS" == strtoupper($this->httpParsedResponseAr["ACK"]) || "SUCCESSWITHWARNING" == strtoupper($this->httpParsedResponseAr["ACK"])) { $order->updateStatus("cancelled"); return true; } else { $order->status = "error"; $order->errorcode = $this->httpParsedResponseAr['L_ERRORCODE0']; $order->error = urldecode($this->httpParsedResponseAr['L_LONGMESSAGE0']) . ". " . __("Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward.", 'paid-memberships-pro' ); $order->shorterror = urldecode($this->httpParsedResponseAr['L_SHORTMESSAGE0']); return false; } } /** * PAYPAL Function * Send HTTP POST Request * * @param string The API method name * @param string The POST Message fields in &name=value pair format * @return array Parsed HTTP Response body */ function PPHttpPost($methodName_, $nvpStr_) { global $gateway_environment; $environment = $gateway_environment; $API_UserName = pmpro_getOption("apiusername"); $API_Password = pmpro_getOption("apipassword"); $API_Signature = pmpro_getOption("apisignature"); $API_Endpoint = "https://api-3t.paypal.com/nvp"; if("sandbox" === $environment || "beta-sandbox" === $environment) { $API_Endpoint = "https://api-3t.$environment.paypal.com/nvp"; } $version = urlencode('72.0'); // NVPRequest for submitting to server $nvpreq = "METHOD=" . urlencode($methodName_) . "&VERSION=" . urlencode($version) . "&PWD=" . urlencode($API_Password) . "&USER=" . urlencode($API_UserName) . "&SIGNATURE=" . urlencode($API_Signature) . "&BUTTONSOURCE=" . urlencode(PAYPAL_BN_CODE) . $nvpStr_; //post to PayPal $response = wp_remote_post( $API_Endpoint, array( 'timeout' => 60, 'sslverify' => FALSE, 'httpversion' => '1.1', 'body' => $nvpreq ) ); if ( is_wp_error( $response ) ) { $error_message = $response->get_error_message(); die( "methodName_ failed: $error_message" ); } else { //extract the response details $httpParsedResponseAr = array(); parse_str(wp_remote_retrieve_body($response), $httpParsedResponseAr); //check for valid response if((0 == sizeof($httpParsedResponseAr)) || !array_key_exists('ACK', $httpParsedResponseAr)) { exit("Invalid HTTP Response for POST request($nvpreq) to $API_Endpoint."); } } return $httpParsedResponseAr; } }
[+]
..
[-] class.pmprogateway_paypal.php
[edit]
[-] class.pmprogateway_check.php
[edit]
[-] class.pmprogateway_paypalexpress.php
[edit]
[-] class.pmprogateway.php
[edit]
[-] class.pmprogateway_twocheckout.php
[edit]
[-] class.pmprogateway_authorizenet.php
[edit]
[-] class.pmprogateway_cybersource.php
[edit]
[-] class.pmprogateway_stripe.php
[edit]
[-] class.pmprogateway_paypalstandard.php
[edit]
[-] class.pmprogateway_braintree.php
[edit]
[-] class.pmprogateway_payflowpro.php
[edit]