s2Member v110815
Source Code: s2member-pro\includes\classes\gateways\paypal\paypal-cancellation-in.inc.php
Docs updated: August 15, 2011, 4:17 pm
Open for public discussion.
(!-- s-words :: --)Source Code Documentation Packages ( Overview ) Classes Deprecated Todo Index Source Code jQuery(window).load(function(){ if(typeof location.hash === 'string' && location.hash.match(/^#/)) jQuery('olli'+location.hash).addClass('hilite'); }); jQuery(window).bind('hashchange', function(){ if(typeof location.hash === 'string' && location.hash.match(/^#/)) jQuery('olli').removeClass('hilite'); jQuery('olli'+location.hash).addClass('hilite'); }); [ full view ]s2member-pro\includes\classes\gateways\paypal\paypal-cancellation-in.inc.php ?php /** * PayPal® Cancellation Forms ( inner processing routines ). * * Copyright: © 2009-2011 * {@link http://www.websharks-inc.com/ WebSharks, Inc.} * ( coded in the USA ) * * This WordPress® plugin ( s2Member Pro ) is comprised of two parts: * * o (1) Its PHP code is licensed under the GPL license, as is WordPress®. * You should have received a copy of the GNU General Public License, * along with this software. In the main directory, see: /licensing/ * If not, see: {@link http://www.gnu.org/licenses/}. * * o (2) All other parts of ( s2Member Pro ); including, but not limited to: * the CSS code, some JavaScript code, images, and design; * are licensed according to the license purchased. * See: {@link http://www.s2member.com/prices/} * * Unless you have our prior written consent, you must NOT directly or indirectly license, * sub-license, sell, resell, or provide for free; part (2) of the s2Member Pro Module; * or make an offer to do any of these things. All of these things are strictly * prohibited with part (2) of the s2Member Pro Module. * * Your purchase of s2Member Pro includes free lifetime upgrades via s2Member.com * ( i.e. new features, bug fixes, updates, improvements ); along with full access * to our video tutorial library: {@link http://www.s2member.com/videos/} * * @package s2Member\PayPal * @since 1.5 */ if ( realpath ( __FILE__ ) === realpath ( $_SERVER [ "SCRIPT_FILENAME" ] ) ) exit ( "Do not access this file directly." ) ; /**/ if ( ! class_exists ( "c_ws_plugin__s2member_pro_paypal_cancellation_in" ) ) { /** * PayPal® Cancellation Forms ( inner processing routines ). * * @package s2Member\PayPal * @since 1.5 */ class c_ws_plugin__s2member_pro_paypal_cancellation_in { /** * Handles processing of Pro Form cancellations. * * @package s2Member\PayPal * @since 1.5 * * @attaches-to ``add_action("init");`` * * @return null Or exits script execution after a custom URL redirection. */ public static function paypal_cancellation ( ) { if ( ! empty ( $_POST [ "s2member_pro_paypal_cancellation" ] [ "nonce" ] ) && ( $nonce = $_POST [ "s2member_pro_paypal_cancellation" ] [ "nonce" ] ) && wp_verify_nonce ( $nonce , "s2member-pro-paypal-cancellation" ) ) { $GLOBALS [ "ws_plugin__s2member_pro_paypal_cancellation_response" ] = array ( ) ; /* This holds the global response details. */ $global_response = & $GLOBALS [ "ws_plugin__s2member_pro_paypal_cancellation_response" ] ; /* This is a shorter reference. */ /**/ $post_vars = c_ws_plugin__s2member_utils_strings:: trim_deep ( stripslashes_deep ( $_POST [ "s2member_pro_paypal_cancellation" ] ) ) ; $post_vars [ "attr" ] = unserialize (c_ws_plugin__s2member_utils_encryption:: decrypt ( $post_vars [ "attr" ] ) ) ; /* And run a Filter. */ $post_vars [ "attr" ] = apply_filters ( "ws_plugin__s2member_pro_paypal_cancellation_post_attr" , $post_vars [ "attr" ] , get_defined_vars ( ) ) ; /**/ $post_vars [ "recaptcha_challenge_field" ] = ( ! $post_vars [ "recaptcha_challenge_field" ] ) ? trim ( stripslashes ( $_POST [ "recaptcha_challenge_field" ] ) ) : $post_vars [ "recaptcha_challenge_field" ] ; $post_vars [ "recaptcha_response_field" ] = ( ! $post_vars [ "recaptcha_response_field" ] ) ? trim ( stripslashes ( $_POST [ "recaptcha_response_field" ] ) ) : $post_vars [ "recaptcha_response_field" ] ; /**/ if ( !c_ws_plugin__s2member_pro_paypal_responses:: paypal_form_attr_validation_errors ( $post_vars [ "attr" ] ) ) /* Must NOT have any attr errors. */ { if ( ! ( $error = c_ws_plugin__s2member_pro_paypal_responses:: paypal_form_submission_validation_errors ( "cancellation" , $post_vars ) ) ) { if ( is_user_logged_in ( ) && is_object ( $user = wp_get_current_user ( ) ) && ( $user_id = $user - ID ) ) /* Are they logged in? */ { if ( ( $paypal = array ( "METHOD" = "GetRecurringPaymentsProfileDetails" ) ) && ( $paypal [ "PROFILEID" ] = $cur__subscr_id = get_user_option ( "s2member_subscr_id" ) ) ) { if ( ( $paypal = c_ws_plugin__s2member_paypal_utilities:: paypal_api_response ( $paypal ) ) && empty ( $paypal [ "__error" ] ) ) /* Have Subscription status? */ { if ( preg_match ( "/^(Active|ActiveProfile|Suspended|SuspendedProfile)$/i" , $paypal [ "STATUS" ] ) ) /* Possible? */ { if ( ! ( $ipn = array ( ) ) ) /* Build a simulated PayPal® IPN response. */ { $ipn [ "txn_type" ] = "subscr_cancel" ; $ipn [ "subscr_id" ] = $paypal [ "PROFILEID" ] ; $ipn [ "custom" ] = get_user_option ( "s2member_custom" ) ; /**/ $ipn [ "period1" ] = c_ws_plugin__s2member_paypal_utilities:: paypal_pro_period1 ( $paypal ) ; $ipn [ "period3" ] = c_ws_plugin__s2member_paypal_utilities:: paypal_pro_period3 ( $paypal ) ; /**/ $ipn [ "payer_email" ] = $paypal [ "EMAIL" ] ; $ipn [ "first_name" ] = $paypal [ "FIRSTNAME" ] ; $ipn [ "last_name" ] = $paypal [ "LASTNAME" ] ; /**/ $ipn [ "option_name1" ] = "Referencing Customer ID" ; $ipn [ "option_selection1" ] = $paypal [ "PROFILEID" ] ; /**/ $ipn [ "option_name2" ] = "Customer IP Address" ; /* IP Address. */ $ipn [ "option_selection2" ] = get_user_option ( "s2member_registration_ip" ) ; /**/ $ipn [ "item_name" ] = $paypal [ "DESC" ] ; $ipn [ "item_number" ] = c_ws_plugin__s2member_paypal_utilities:: paypal_pro_item_number ( $paypal ) ; /**/ $ipn_q = "&s2member_paypal_proxy=paypal&s2member_paypal_proxy_use=pro-emails" ; $ipn_q .= "&s2member_paypal_proxy_verification=" . urlencode (c_ws_plugin__s2member_paypal_utilities:: paypal_proxy_key_gen ( ) ) ; /**/ c_ws_plugin__s2member_utils_urls:: remote ( site_url ( "/?s2member_paypal_notify=1" . $ipn_q ) , $ipn , array ( "timeout" = 20 ) ) ; } /**/ if ( ( $paypal = array ( "METHOD" = "ManageRecurringPaymentsProfileStatus" , "ACTION" = "Cancel" , "PROFILEID" = $cur__subscr_id ) ) ) { c_ws_plugin__s2member_paypal_utilities:: paypal_api_response ( $paypal ) ; /**/ $global_response = array ( "response" = 'strongConfirmed./strong Your account has been cancelled. Billing terminated.' ) ; /**/ if ( $post_vars [ "attr" ] [ "success" ] && ( $custom_success_url = preg_replace ( "/%%response%%/i" , urlencode ( $global_response [ "response" ] ) , $post_vars [ "attr" ] [ "success" ] ) ) /**/ && wp_redirect (c_ws_plugin__s2member_pro_paypal_utilities:: paypal_s2p_v_generate ( $custom_success_url ) ) !== "nill" ) /* Also generate an s2p-v variable. */ exit ( ) ; } } else if ( preg_match ( "/^(Pending|PendingProfile)$/i" , $paypal [ "STATUS" ] ) ) /* Can't cancel while still pending. */ { $global_response = array ( "response" = 'Unable to cancel at this time. Your account is pending other changes. Please try again in 15 minutes.' , "error" = true ) ; } else /* Else, account already terminated. */ { $global_response = array ( "response" = 'Your account has been cancelled. Billing terminated.' ) ; /**/ if ( $post_vars [ "attr" ] [ "success" ] && ( $custom_success_url = preg_replace ( "/%%response%%/i" , urlencode ( $global_response [ "response" ] ) , $post_vars [ "attr" ] [ "success" ] ) ) /**/ && wp_redirect (c_ws_plugin__s2member_pro_paypal_utilities:: paypal_s2p_v_generate ( $custom_success_url ) ) !== "nill" ) /* Also generate an s2p-v variable. */ exit ( ) ; } } else if ( $paypal && ! empty ( $paypal [ "__error" ] ) && $paypal [ "L_ERRORCODE0" ] === "11592" ) /* Subscription Profile? */ { $global_response = array ( "response" = 'Please a href="https://' . ( ( $GLOBALS [ "WS_PLUGIN__" ] [ "s2member" ] [ "o" ] [ "paypal_sandbox" ] ) ? "www.sandbox.paypal.com" : "www.paypal.com" ) . '/cgi-bin/webscr?cmd=_subscr-find&alias=' . urlencode ( $GLOBALS [ "WS_PLUGIN__" ] [ "s2member" ] [ "o" ] [ "paypal_business" ] ) . '" rel="nofollow"log in at PayPal®/a to cancel your Subscription.' , "error" = true ) ; } else /* Else, there is no Billing Profile. */ { $global_response = array ( "response" = 'Your account has been cancelled. Billing terminated.' ) ; /**/ if ( $post_vars [ "attr" ] [ "success" ] && ( $custom_success_url = preg_replace ( "/%%response%%/i" , urlencode ( $global_response [ "response" ] ) , $post_vars [ "attr" ] [ "success" ] ) ) /**/ && wp_redirect (c_ws_plugin__s2member_pro_paypal_utilities:: paypal_s2p_v_generate ( $custom_success_url ) ) !== "nill" ) /* Also generate an s2p-v variable. */ exit ( ) ; } } else /* Else, there is no Billing Profile. */ { $global_response = array ( "response" = 'Your account has been cancelled. Billing terminated.' ) ; /**/ if ( $post_vars [ "attr" ] [ "success" ] && ( $custom_success_url = preg_replace ( "/%%response%%/i" , urlencode ( $global_response [ "response" ] ) , $post_vars [ "attr" ] [ "success" ] ) ) /**/ && wp_redirect (c_ws_plugin__s2member_pro_paypal_utilities:: paypal_s2p_v_generate ( $custom_success_url ) ) !== "nill" ) /* Also generate an s2p-v variable. */ exit ( ) ; } } else /* Else, an error. Not logged in. */ { $global_response = array ( "response" = 'You\'re not logged in.' , "error" = true ) ; } } else /* Else, an error. */ { $global_response = $error ; } } } } } } ? [ full view ]s2member-pro\includes\classes\gateways\paypal\paypal-cancellation-in.inc.php Source Code Documentation Packages ( Overview ) Classes Deprecated Todo Index Source Code(!-- :: s-words --)Statistics: Posted by System Robot — August 15th, 2011, 3:17 pm
]]>