@@ -12,145 +12,145 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Daily_Maintenance { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Class constructor. |
|
| 17 | - */ |
|
| 18 | - public function __construct(){ |
|
| 19 | - |
|
| 20 | - // Clear deprecated events. |
|
| 21 | - add_action( 'wp', array( $this, 'maybe_clear_deprecated_events' ) ); |
|
| 22 | - |
|
| 23 | - // (Maybe) schedule a cron that runs daily. |
|
| 24 | - add_action( 'wp', array( $this, 'maybe_create_scheduled_event' ) ); |
|
| 25 | - |
|
| 26 | - // Fired everyday at 7 a.m (this might vary for sites with few visitors) |
|
| 27 | - add_action( 'getpaid_daily_maintenance', array( $this, 'log_cron_run' ) ); |
|
| 28 | - add_action( 'getpaid_daily_maintenance', array( $this, 'backwards_compat' ) ); |
|
| 29 | - add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_expire_subscriptions' ) ); |
|
| 30 | - add_action( 'getpaid_daily_maintenance', array( $this, 'check_renewing_subscriptions' ) ); |
|
| 31 | - add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_update_geoip_databases' ) ); |
|
| 32 | - |
|
| 33 | - } |
|
| 34 | - |
|
| 35 | - /** |
|
| 36 | - * Schedules a cron to run every day at 7 a.m |
|
| 37 | - * |
|
| 38 | - */ |
|
| 39 | - public function maybe_create_scheduled_event() { |
|
| 40 | - |
|
| 41 | - if ( ! wp_next_scheduled( 'getpaid_daily_maintenance' ) ) { |
|
| 42 | - $timestamp = strtotime( 'tomorrow 07:00:00', current_time( 'timestamp' ) ); |
|
| 43 | - wp_schedule_event( $timestamp, 'daily', 'getpaid_daily_maintenance' ); |
|
| 44 | - } |
|
| 45 | - |
|
| 46 | - } |
|
| 47 | - |
|
| 48 | - /** |
|
| 49 | - * Clears deprecated events. |
|
| 50 | - * |
|
| 51 | - */ |
|
| 52 | - public function maybe_clear_deprecated_events() { |
|
| 53 | - |
|
| 54 | - if ( ! get_option( 'wpinv_cleared_old_events' ) ) { |
|
| 55 | - wp_clear_scheduled_hook( 'wpinv_register_schedule_event_twicedaily' ); |
|
| 56 | - wp_clear_scheduled_hook( 'wpinv_register_schedule_event_daily' ); |
|
| 57 | - update_option( 'wpinv_cleared_old_events', 1 ); |
|
| 58 | - } |
|
| 59 | - |
|
| 60 | - } |
|
| 61 | - |
|
| 62 | - /** |
|
| 63 | - * Fires the old hook for backwards compatibility. |
|
| 64 | - * |
|
| 65 | - */ |
|
| 66 | - public function backwards_compat() { |
|
| 67 | - do_action( 'wpinv_register_schedule_event_daily' ); |
|
| 68 | - } |
|
| 69 | - |
|
| 70 | - /** |
|
| 71 | - * Checks for subscriptions that are scheduled to renew. |
|
| 72 | - * |
|
| 73 | - */ |
|
| 74 | - public function check_renewing_subscriptions() { |
|
| 75 | - |
|
| 76 | - // Fetch subscriptions that expire today. |
|
| 77 | - $args = array( |
|
| 78 | - 'number' => -1, |
|
| 79 | - 'count_total' => false, |
|
| 80 | - 'status' => 'trialling active', |
|
| 81 | - 'date_expires_query' => array( |
|
| 82 | - array( |
|
| 83 | - 'year' => date( 'Y', current_time( 'timestamp' ) ), |
|
| 84 | - 'month' => date( 'n', current_time( 'timestamp' ) ), |
|
| 85 | - 'day' => date( 'j', current_time( 'timestamp' ) ), |
|
| 86 | - 'compare' => '=', |
|
| 87 | - ), |
|
| 88 | - ), |
|
| 89 | - ); |
|
| 90 | - |
|
| 91 | - $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
| 92 | - |
|
| 93 | - foreach ( $subscriptions->get_results() as $subscription ) { |
|
| 94 | - |
|
| 95 | - /** @var WPInv_Subscription $subscription */ |
|
| 96 | - if ( $subscription->is_last_renewal() ) { |
|
| 97 | - $subscription->complete(); |
|
| 98 | - } else { |
|
| 99 | - do_action( 'getpaid_should_renew_subscription', $subscription ); |
|
| 100 | - } |
|
| 101 | - |
|
| 102 | - } |
|
| 103 | - |
|
| 104 | - } |
|
| 105 | - |
|
| 106 | - /** |
|
| 107 | - * Expires expired subscriptions. |
|
| 108 | - * |
|
| 109 | - */ |
|
| 110 | - public function maybe_expire_subscriptions() { |
|
| 111 | - |
|
| 112 | - // Fetch expired subscriptions (skips those that expire today). |
|
| 113 | - $args = array( |
|
| 114 | - 'number' => -1, |
|
| 115 | - 'count_total' => false, |
|
| 116 | - 'status' => 'trialling active failing cancelled', |
|
| 117 | - 'date_expires_query' => array( |
|
| 118 | - 'before' => 'today', |
|
| 119 | - 'inclusive' => false, |
|
| 120 | - ), |
|
| 121 | - ); |
|
| 122 | - |
|
| 123 | - $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
| 124 | - |
|
| 125 | - foreach ( $subscriptions->get_results() as $subscription ) { |
|
| 126 | - if ( apply_filters( 'getpaid_daily_maintenance_should_expire_subscription', true, $subscription ) ) { |
|
| 127 | - $subscription->set_status( 'expired' ); |
|
| 128 | - $subscription->save(); |
|
| 129 | - } |
|
| 130 | - } |
|
| 131 | - |
|
| 132 | - } |
|
| 133 | - |
|
| 134 | - /** |
|
| 135 | - * Logs cron runs. |
|
| 136 | - * |
|
| 137 | - */ |
|
| 138 | - public function log_cron_run() { |
|
| 139 | - wpinv_error_log( 'GetPaid Daily Cron', false ); |
|
| 140 | - } |
|
| 141 | - |
|
| 142 | - /** |
|
| 143 | - * Updates GeoIP databases. |
|
| 144 | - * |
|
| 145 | - */ |
|
| 146 | - public function maybe_update_geoip_databases() { |
|
| 147 | - $updated = get_transient( 'getpaid_updated_geoip_databases' ); |
|
| 148 | - |
|
| 149 | - if ( false === $updated ) { |
|
| 150 | - set_transient( 'getpaid_updated_geoip_databases', 1, 15 * DAY_IN_SECONDS ); |
|
| 151 | - do_action( 'getpaid_update_geoip_databases' ); |
|
| 152 | - } |
|
| 153 | - |
|
| 154 | - } |
|
| 15 | + /** |
|
| 16 | + * Class constructor. |
|
| 17 | + */ |
|
| 18 | + public function __construct(){ |
|
| 19 | + |
|
| 20 | + // Clear deprecated events. |
|
| 21 | + add_action( 'wp', array( $this, 'maybe_clear_deprecated_events' ) ); |
|
| 22 | + |
|
| 23 | + // (Maybe) schedule a cron that runs daily. |
|
| 24 | + add_action( 'wp', array( $this, 'maybe_create_scheduled_event' ) ); |
|
| 25 | + |
|
| 26 | + // Fired everyday at 7 a.m (this might vary for sites with few visitors) |
|
| 27 | + add_action( 'getpaid_daily_maintenance', array( $this, 'log_cron_run' ) ); |
|
| 28 | + add_action( 'getpaid_daily_maintenance', array( $this, 'backwards_compat' ) ); |
|
| 29 | + add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_expire_subscriptions' ) ); |
|
| 30 | + add_action( 'getpaid_daily_maintenance', array( $this, 'check_renewing_subscriptions' ) ); |
|
| 31 | + add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_update_geoip_databases' ) ); |
|
| 32 | + |
|
| 33 | + } |
|
| 34 | + |
|
| 35 | + /** |
|
| 36 | + * Schedules a cron to run every day at 7 a.m |
|
| 37 | + * |
|
| 38 | + */ |
|
| 39 | + public function maybe_create_scheduled_event() { |
|
| 40 | + |
|
| 41 | + if ( ! wp_next_scheduled( 'getpaid_daily_maintenance' ) ) { |
|
| 42 | + $timestamp = strtotime( 'tomorrow 07:00:00', current_time( 'timestamp' ) ); |
|
| 43 | + wp_schedule_event( $timestamp, 'daily', 'getpaid_daily_maintenance' ); |
|
| 44 | + } |
|
| 45 | + |
|
| 46 | + } |
|
| 47 | + |
|
| 48 | + /** |
|
| 49 | + * Clears deprecated events. |
|
| 50 | + * |
|
| 51 | + */ |
|
| 52 | + public function maybe_clear_deprecated_events() { |
|
| 53 | + |
|
| 54 | + if ( ! get_option( 'wpinv_cleared_old_events' ) ) { |
|
| 55 | + wp_clear_scheduled_hook( 'wpinv_register_schedule_event_twicedaily' ); |
|
| 56 | + wp_clear_scheduled_hook( 'wpinv_register_schedule_event_daily' ); |
|
| 57 | + update_option( 'wpinv_cleared_old_events', 1 ); |
|
| 58 | + } |
|
| 59 | + |
|
| 60 | + } |
|
| 61 | + |
|
| 62 | + /** |
|
| 63 | + * Fires the old hook for backwards compatibility. |
|
| 64 | + * |
|
| 65 | + */ |
|
| 66 | + public function backwards_compat() { |
|
| 67 | + do_action( 'wpinv_register_schedule_event_daily' ); |
|
| 68 | + } |
|
| 69 | + |
|
| 70 | + /** |
|
| 71 | + * Checks for subscriptions that are scheduled to renew. |
|
| 72 | + * |
|
| 73 | + */ |
|
| 74 | + public function check_renewing_subscriptions() { |
|
| 75 | + |
|
| 76 | + // Fetch subscriptions that expire today. |
|
| 77 | + $args = array( |
|
| 78 | + 'number' => -1, |
|
| 79 | + 'count_total' => false, |
|
| 80 | + 'status' => 'trialling active', |
|
| 81 | + 'date_expires_query' => array( |
|
| 82 | + array( |
|
| 83 | + 'year' => date( 'Y', current_time( 'timestamp' ) ), |
|
| 84 | + 'month' => date( 'n', current_time( 'timestamp' ) ), |
|
| 85 | + 'day' => date( 'j', current_time( 'timestamp' ) ), |
|
| 86 | + 'compare' => '=', |
|
| 87 | + ), |
|
| 88 | + ), |
|
| 89 | + ); |
|
| 90 | + |
|
| 91 | + $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
| 92 | + |
|
| 93 | + foreach ( $subscriptions->get_results() as $subscription ) { |
|
| 94 | + |
|
| 95 | + /** @var WPInv_Subscription $subscription */ |
|
| 96 | + if ( $subscription->is_last_renewal() ) { |
|
| 97 | + $subscription->complete(); |
|
| 98 | + } else { |
|
| 99 | + do_action( 'getpaid_should_renew_subscription', $subscription ); |
|
| 100 | + } |
|
| 101 | + |
|
| 102 | + } |
|
| 103 | + |
|
| 104 | + } |
|
| 105 | + |
|
| 106 | + /** |
|
| 107 | + * Expires expired subscriptions. |
|
| 108 | + * |
|
| 109 | + */ |
|
| 110 | + public function maybe_expire_subscriptions() { |
|
| 111 | + |
|
| 112 | + // Fetch expired subscriptions (skips those that expire today). |
|
| 113 | + $args = array( |
|
| 114 | + 'number' => -1, |
|
| 115 | + 'count_total' => false, |
|
| 116 | + 'status' => 'trialling active failing cancelled', |
|
| 117 | + 'date_expires_query' => array( |
|
| 118 | + 'before' => 'today', |
|
| 119 | + 'inclusive' => false, |
|
| 120 | + ), |
|
| 121 | + ); |
|
| 122 | + |
|
| 123 | + $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
| 124 | + |
|
| 125 | + foreach ( $subscriptions->get_results() as $subscription ) { |
|
| 126 | + if ( apply_filters( 'getpaid_daily_maintenance_should_expire_subscription', true, $subscription ) ) { |
|
| 127 | + $subscription->set_status( 'expired' ); |
|
| 128 | + $subscription->save(); |
|
| 129 | + } |
|
| 130 | + } |
|
| 131 | + |
|
| 132 | + } |
|
| 133 | + |
|
| 134 | + /** |
|
| 135 | + * Logs cron runs. |
|
| 136 | + * |
|
| 137 | + */ |
|
| 138 | + public function log_cron_run() { |
|
| 139 | + wpinv_error_log( 'GetPaid Daily Cron', false ); |
|
| 140 | + } |
|
| 141 | + |
|
| 142 | + /** |
|
| 143 | + * Updates GeoIP databases. |
|
| 144 | + * |
|
| 145 | + */ |
|
| 146 | + public function maybe_update_geoip_databases() { |
|
| 147 | + $updated = get_transient( 'getpaid_updated_geoip_databases' ); |
|
| 148 | + |
|
| 149 | + if ( false === $updated ) { |
|
| 150 | + set_transient( 'getpaid_updated_geoip_databases', 1, 15 * DAY_IN_SECONDS ); |
|
| 151 | + do_action( 'getpaid_update_geoip_databases' ); |
|
| 152 | + } |
|
| 153 | + |
|
| 154 | + } |
|
| 155 | 155 | |
| 156 | 156 | } |
@@ -13,58 +13,58 @@ discard block |
||
| 13 | 13 | class GetPaid_Authorize_Net_Gateway extends GetPaid_Authorize_Net_Legacy_Gateway { |
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | - * Payment method id. |
|
| 17 | - * |
|
| 18 | - * @var string |
|
| 19 | - */ |
|
| 16 | + * Payment method id. |
|
| 17 | + * |
|
| 18 | + * @var string |
|
| 19 | + */ |
|
| 20 | 20 | public $id = 'authorizenet'; |
| 21 | 21 | |
| 22 | 22 | /** |
| 23 | - * An array of features that this gateway supports. |
|
| 24 | - * |
|
| 25 | - * @var array |
|
| 26 | - */ |
|
| 23 | + * An array of features that this gateway supports. |
|
| 24 | + * |
|
| 25 | + * @var array |
|
| 26 | + */ |
|
| 27 | 27 | protected $supports = array( 'subscription', 'sandbox', 'tokens', 'addons', 'single_subscription_group', 'multiple_subscription_groups' ); |
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | - * Payment method order. |
|
| 31 | - * |
|
| 32 | - * @var int |
|
| 33 | - */ |
|
| 30 | + * Payment method order. |
|
| 31 | + * |
|
| 32 | + * @var int |
|
| 33 | + */ |
|
| 34 | 34 | public $order = 4; |
| 35 | 35 | |
| 36 | 36 | /** |
| 37 | - * Endpoint for requests from Authorize.net. |
|
| 38 | - * |
|
| 39 | - * @var string |
|
| 40 | - */ |
|
| 41 | - protected $notify_url; |
|
| 42 | - |
|
| 43 | - /** |
|
| 44 | - * Endpoint for requests to Authorize.net. |
|
| 45 | - * |
|
| 46 | - * @var string |
|
| 47 | - */ |
|
| 37 | + * Endpoint for requests from Authorize.net. |
|
| 38 | + * |
|
| 39 | + * @var string |
|
| 40 | + */ |
|
| 41 | + protected $notify_url; |
|
| 42 | + |
|
| 43 | + /** |
|
| 44 | + * Endpoint for requests to Authorize.net. |
|
| 45 | + * |
|
| 46 | + * @var string |
|
| 47 | + */ |
|
| 48 | 48 | protected $endpoint; |
| 49 | 49 | |
| 50 | 50 | /** |
| 51 | - * Currencies this gateway is allowed for. |
|
| 52 | - * |
|
| 53 | - * @var array |
|
| 54 | - */ |
|
| 55 | - public $currencies = array( 'USD', 'CAD', 'GBP', 'DKK', 'NOK', 'PLN', 'SEK', 'AUD', 'EUR', 'NZD' ); |
|
| 51 | + * Currencies this gateway is allowed for. |
|
| 52 | + * |
|
| 53 | + * @var array |
|
| 54 | + */ |
|
| 55 | + public $currencies = array( 'USD', 'CAD', 'GBP', 'DKK', 'NOK', 'PLN', 'SEK', 'AUD', 'EUR', 'NZD' ); |
|
| 56 | 56 | |
| 57 | 57 | /** |
| 58 | - * URL to view a transaction. |
|
| 59 | - * |
|
| 60 | - * @var string |
|
| 61 | - */ |
|
| 58 | + * URL to view a transaction. |
|
| 59 | + * |
|
| 60 | + * @var string |
|
| 61 | + */ |
|
| 62 | 62 | public $view_transaction_url = 'https://{sandbox}authorize.net/ui/themes/sandbox/Transaction/TransactionReceipt.aspx?transid=%s'; |
| 63 | 63 | |
| 64 | 64 | /** |
| 65 | - * Class constructor. |
|
| 66 | - */ |
|
| 67 | - public function __construct() { |
|
| 65 | + * Class constructor. |
|
| 66 | + */ |
|
| 67 | + public function __construct() { |
|
| 68 | 68 | |
| 69 | 69 | $this->title = __( 'Credit Card / Debit Card', 'invoicing' ); |
| 70 | 70 | $this->method_title = __( 'Authorize.Net', 'invoicing' ); |
@@ -76,11 +76,11 @@ discard block |
||
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | /** |
| 79 | - * Displays the payment method select field. |
|
| 80 | - * |
|
| 81 | - * @param int $invoice_id 0 or invoice id. |
|
| 82 | - * @param GetPaid_Payment_Form $form Current payment form. |
|
| 83 | - */ |
|
| 79 | + * Displays the payment method select field. |
|
| 80 | + * |
|
| 81 | + * @param int $invoice_id 0 or invoice id. |
|
| 82 | + * @param GetPaid_Payment_Form $form Current payment form. |
|
| 83 | + */ |
|
| 84 | 84 | public function payment_fields( $invoice_id, $form ) { |
| 85 | 85 | |
| 86 | 86 | // Let the user select a payment method. |
@@ -91,16 +91,16 @@ discard block |
||
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | /** |
| 94 | - * Creates a customer profile. |
|
| 95 | - * |
|
| 96 | - * |
|
| 97 | - * @param WPInv_Invoice $invoice Invoice. |
|
| 94 | + * Creates a customer profile. |
|
| 95 | + * |
|
| 96 | + * |
|
| 97 | + * @param WPInv_Invoice $invoice Invoice. |
|
| 98 | 98 | * @param array $submission_data Posted checkout fields. |
| 99 | 99 | * @param bool $save Whether or not to save the payment as a token. |
| 100 | 100 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile |
| 101 | - * @return string|WP_Error Payment profile id. |
|
| 102 | - */ |
|
| 103 | - public function create_customer_profile( $invoice, $submission_data, $save = true ) { |
|
| 101 | + * @return string|WP_Error Payment profile id. |
|
| 102 | + */ |
|
| 103 | + public function create_customer_profile( $invoice, $submission_data, $save = true ) { |
|
| 104 | 104 | |
| 105 | 105 | // Remove non-digits from the number |
| 106 | 106 | $submission_data['authorizenet']['cc_number'] = preg_replace('/\D/', '', $submission_data['authorizenet']['cc_number'] ); |
@@ -175,14 +175,14 @@ discard block |
||
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | /** |
| 178 | - * Retrieves a customer profile. |
|
| 179 | - * |
|
| 180 | - * |
|
| 181 | - * @param string $profile_id profile id. |
|
| 182 | - * @return string|WP_Error Profile id. |
|
| 178 | + * Retrieves a customer profile. |
|
| 179 | + * |
|
| 180 | + * |
|
| 181 | + * @param string $profile_id profile id. |
|
| 182 | + * @return string|WP_Error Profile id. |
|
| 183 | 183 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-get-customer-profile |
| 184 | - */ |
|
| 185 | - public function get_customer_profile( $profile_id ) { |
|
| 184 | + */ |
|
| 185 | + public function get_customer_profile( $profile_id ) { |
|
| 186 | 186 | |
| 187 | 187 | // Generate args. |
| 188 | 188 | $args = array( |
@@ -197,17 +197,17 @@ discard block |
||
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | /** |
| 200 | - * Creates a customer profile. |
|
| 201 | - * |
|
| 202 | - * |
|
| 200 | + * Creates a customer profile. |
|
| 201 | + * |
|
| 202 | + * |
|
| 203 | 203 | * @param string $profile_id profile id. |
| 204 | - * @param WPInv_Invoice $invoice Invoice. |
|
| 204 | + * @param WPInv_Invoice $invoice Invoice. |
|
| 205 | 205 | * @param array $submission_data Posted checkout fields. |
| 206 | 206 | * @param bool $save Whether or not to save the payment as a token. |
| 207 | 207 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile |
| 208 | - * @return string|WP_Error Profile id. |
|
| 209 | - */ |
|
| 210 | - public function create_customer_payment_profile( $customer_profile, $invoice, $submission_data, $save ) { |
|
| 208 | + * @return string|WP_Error Profile id. |
|
| 209 | + */ |
|
| 210 | + public function create_customer_payment_profile( $customer_profile, $invoice, $submission_data, $save ) { |
|
| 211 | 211 | |
| 212 | 212 | // Remove non-digits from the number |
| 213 | 213 | $submission_data['authorizenet']['cc_number'] = preg_replace('/\D/', '', $submission_data['authorizenet']['cc_number'] ); |
@@ -282,13 +282,13 @@ discard block |
||
| 282 | 282 | } |
| 283 | 283 | |
| 284 | 284 | /** |
| 285 | - * Retrieves payment details from cache. |
|
| 286 | - * |
|
| 287 | - * |
|
| 285 | + * Retrieves payment details from cache. |
|
| 286 | + * |
|
| 287 | + * |
|
| 288 | 288 | * @param array $payment_details. |
| 289 | - * @return array|false Profile id. |
|
| 290 | - */ |
|
| 291 | - public function retrieve_payment_profile_from_cache( $payment_details, $customer_profile, $invoice ) { |
|
| 289 | + * @return array|false Profile id. |
|
| 290 | + */ |
|
| 291 | + public function retrieve_payment_profile_from_cache( $payment_details, $customer_profile, $invoice ) { |
|
| 292 | 292 | |
| 293 | 293 | $cached_information = get_option( 'getpaid_authorize_net_cached_profiles', array() ); |
| 294 | 294 | $payment_details = hash_hmac( 'sha256', json_encode( $payment_details ), SECURE_AUTH_KEY ); |
@@ -313,13 +313,13 @@ discard block |
||
| 313 | 313 | } |
| 314 | 314 | |
| 315 | 315 | /** |
| 316 | - * Securely adds payment details to cache. |
|
| 317 | - * |
|
| 318 | - * |
|
| 316 | + * Securely adds payment details to cache. |
|
| 317 | + * |
|
| 318 | + * |
|
| 319 | 319 | * @param array $payment_details. |
| 320 | 320 | * @param string $payment_profile_id. |
| 321 | - */ |
|
| 322 | - public function add_payment_profile_to_cache( $payment_details, $payment_profile_id ) { |
|
| 321 | + */ |
|
| 322 | + public function add_payment_profile_to_cache( $payment_details, $payment_profile_id ) { |
|
| 323 | 323 | |
| 324 | 324 | $cached_information = get_option( 'getpaid_authorize_net_cached_profiles', array() ); |
| 325 | 325 | $cached_information = is_array( $cached_information ) ? $cached_information : array(); |
@@ -331,15 +331,15 @@ discard block |
||
| 331 | 331 | } |
| 332 | 332 | |
| 333 | 333 | /** |
| 334 | - * Retrieves a customer payment profile. |
|
| 335 | - * |
|
| 336 | - * |
|
| 337 | - * @param string $customer_profile_id customer profile id. |
|
| 334 | + * Retrieves a customer payment profile. |
|
| 335 | + * |
|
| 336 | + * |
|
| 337 | + * @param string $customer_profile_id customer profile id. |
|
| 338 | 338 | * @param string $payment_profile_id payment profile id. |
| 339 | - * @return string|WP_Error Profile id. |
|
| 339 | + * @return string|WP_Error Profile id. |
|
| 340 | 340 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-get-customer-payment-profile |
| 341 | - */ |
|
| 342 | - public function get_customer_payment_profile( $customer_profile_id, $payment_profile_id ) { |
|
| 341 | + */ |
|
| 342 | + public function get_customer_payment_profile( $customer_profile_id, $payment_profile_id ) { |
|
| 343 | 343 | |
| 344 | 344 | // Generate args. |
| 345 | 345 | $args = array( |
@@ -355,15 +355,15 @@ discard block |
||
| 355 | 355 | } |
| 356 | 356 | |
| 357 | 357 | /** |
| 358 | - * Charges a customer payment profile. |
|
| 359 | - * |
|
| 358 | + * Charges a customer payment profile. |
|
| 359 | + * |
|
| 360 | 360 | * @param string $customer_profile_id customer profile id. |
| 361 | 361 | * @param string $payment_profile_id payment profile id. |
| 362 | - * @param WPInv_Invoice $invoice Invoice. |
|
| 362 | + * @param WPInv_Invoice $invoice Invoice. |
|
| 363 | 363 | * @link https://developer.authorize.net/api/reference/index.html#payment-transactions-charge-a-customer-profile |
| 364 | - * @return WP_Error|object |
|
| 365 | - */ |
|
| 366 | - public function charge_customer_payment_profile( $customer_profile_id, $payment_profile_id, $invoice ) { |
|
| 364 | + * @return WP_Error|object |
|
| 365 | + */ |
|
| 366 | + public function charge_customer_payment_profile( $customer_profile_id, $payment_profile_id, $invoice ) { |
|
| 367 | 367 | |
| 368 | 368 | // Generate args. |
| 369 | 369 | $args = array( |
@@ -409,41 +409,41 @@ discard block |
||
| 409 | 409 | } |
| 410 | 410 | |
| 411 | 411 | /** |
| 412 | - * Processes a customer charge. |
|
| 413 | - * |
|
| 412 | + * Processes a customer charge. |
|
| 413 | + * |
|
| 414 | 414 | * @param stdClass $result Api response. |
| 415 | - * @param WPInv_Invoice $invoice Invoice. |
|
| 416 | - */ |
|
| 417 | - public function process_charge_response( $result, $invoice ) { |
|
| 415 | + * @param WPInv_Invoice $invoice Invoice. |
|
| 416 | + */ |
|
| 417 | + public function process_charge_response( $result, $invoice ) { |
|
| 418 | 418 | |
| 419 | 419 | wpinv_clear_errors(); |
| 420 | - $response_code = (int) $result->transactionResponse->responseCode; |
|
| 420 | + $response_code = (int) $result->transactionResponse->responseCode; |
|
| 421 | 421 | |
| 422 | - // Succeeded. |
|
| 423 | - if ( 1 == $response_code || 4 == $response_code ) { |
|
| 422 | + // Succeeded. |
|
| 423 | + if ( 1 == $response_code || 4 == $response_code ) { |
|
| 424 | 424 | |
| 425 | - // Maybe set a transaction id. |
|
| 426 | - if ( ! empty( $result->transactionResponse->transId ) ) { |
|
| 427 | - $invoice->set_transaction_id( $result->transactionResponse->transId ); |
|
| 428 | - } |
|
| 425 | + // Maybe set a transaction id. |
|
| 426 | + if ( ! empty( $result->transactionResponse->transId ) ) { |
|
| 427 | + $invoice->set_transaction_id( $result->transactionResponse->transId ); |
|
| 428 | + } |
|
| 429 | 429 | |
| 430 | - $invoice->add_note( sprintf( __( 'Authentication code: %s (%s).', 'invoicing' ), $result->transactionResponse->authCode, $result->transactionResponse->accountNumber ), false, false, true ); |
|
| 430 | + $invoice->add_note( sprintf( __( 'Authentication code: %s (%s).', 'invoicing' ), $result->transactionResponse->authCode, $result->transactionResponse->accountNumber ), false, false, true ); |
|
| 431 | 431 | |
| 432 | - if ( 1 == $response_code ) { |
|
| 433 | - return $invoice->mark_paid(); |
|
| 434 | - } |
|
| 432 | + if ( 1 == $response_code ) { |
|
| 433 | + return $invoice->mark_paid(); |
|
| 434 | + } |
|
| 435 | 435 | |
| 436 | - $invoice->set_status( 'wpi-onhold' ); |
|
| 437 | - $invoice->add_note( |
|
| 436 | + $invoice->set_status( 'wpi-onhold' ); |
|
| 437 | + $invoice->add_note( |
|
| 438 | 438 | sprintf( |
| 439 | 439 | __( 'Held for review: %s', 'invoicing' ), |
| 440 | 440 | $result->transactionResponse->messages->message[0]->description |
| 441 | 441 | ) |
| 442 | - ); |
|
| 442 | + ); |
|
| 443 | 443 | |
| 444 | - return $invoice->save(); |
|
| 444 | + return $invoice->save(); |
|
| 445 | 445 | |
| 446 | - } |
|
| 446 | + } |
|
| 447 | 447 | |
| 448 | 448 | wpinv_set_error( 'card_declined', __( 'Credit card declined.', 'invoicing' ) ); |
| 449 | 449 | |
@@ -455,13 +455,13 @@ discard block |
||
| 455 | 455 | } |
| 456 | 456 | |
| 457 | 457 | /** |
| 458 | - * Returns payment information. |
|
| 459 | - * |
|
| 460 | - * |
|
| 461 | - * @param array $card Card details. |
|
| 462 | - * @return array |
|
| 463 | - */ |
|
| 464 | - public function get_payment_information( $card ) { |
|
| 458 | + * Returns payment information. |
|
| 459 | + * |
|
| 460 | + * |
|
| 461 | + * @param array $card Card details. |
|
| 462 | + * @return array |
|
| 463 | + */ |
|
| 464 | + public function get_payment_information( $card ) { |
|
| 465 | 465 | return array( |
| 466 | 466 | |
| 467 | 467 | 'creditCard' => array ( |
@@ -474,25 +474,25 @@ discard block |
||
| 474 | 474 | } |
| 475 | 475 | |
| 476 | 476 | /** |
| 477 | - * Returns the customer profile meta name. |
|
| 478 | - * |
|
| 479 | - * |
|
| 480 | - * @param WPInv_Invoice $invoice Invoice. |
|
| 481 | - * @return string |
|
| 482 | - */ |
|
| 483 | - public function get_customer_profile_meta_name( $invoice ) { |
|
| 477 | + * Returns the customer profile meta name. |
|
| 478 | + * |
|
| 479 | + * |
|
| 480 | + * @param WPInv_Invoice $invoice Invoice. |
|
| 481 | + * @return string |
|
| 482 | + */ |
|
| 483 | + public function get_customer_profile_meta_name( $invoice ) { |
|
| 484 | 484 | return $this->is_sandbox( $invoice ) ? 'getpaid_authorizenet_sandbox_customer_profile_id' : 'getpaid_authorizenet_customer_profile_id'; |
| 485 | 485 | } |
| 486 | 486 | |
| 487 | 487 | /** |
| 488 | - * Validates the submitted data. |
|
| 489 | - * |
|
| 490 | - * |
|
| 491 | - * @param array $submission_data Posted checkout fields. |
|
| 488 | + * Validates the submitted data. |
|
| 489 | + * |
|
| 490 | + * |
|
| 491 | + * @param array $submission_data Posted checkout fields. |
|
| 492 | 492 | * @param WPInv_Invoice $invoice |
| 493 | - * @return WP_Error|string The payment profile id |
|
| 494 | - */ |
|
| 495 | - public function validate_submission_data( $submission_data, $invoice ) { |
|
| 493 | + * @return WP_Error|string The payment profile id |
|
| 494 | + */ |
|
| 495 | + public function validate_submission_data( $submission_data, $invoice ) { |
|
| 496 | 496 | |
| 497 | 497 | // Validate authentication details. |
| 498 | 498 | $auth = $this->get_auth_params(); |
@@ -524,13 +524,13 @@ discard block |
||
| 524 | 524 | } |
| 525 | 525 | |
| 526 | 526 | /** |
| 527 | - * Returns invoice line items. |
|
| 528 | - * |
|
| 529 | - * |
|
| 530 | - * @param WPInv_Invoice $invoice Invoice. |
|
| 531 | - * @return array |
|
| 532 | - */ |
|
| 533 | - public function get_line_items( $invoice ) { |
|
| 527 | + * Returns invoice line items. |
|
| 528 | + * |
|
| 529 | + * |
|
| 530 | + * @param WPInv_Invoice $invoice Invoice. |
|
| 531 | + * @return array |
|
| 532 | + */ |
|
| 533 | + public function get_line_items( $invoice ) { |
|
| 534 | 534 | $items = array(); |
| 535 | 535 | |
| 536 | 536 | foreach ( $invoice->get_items() as $item ) { |
@@ -568,15 +568,15 @@ discard block |
||
| 568 | 568 | } |
| 569 | 569 | |
| 570 | 570 | /** |
| 571 | - * Process Payment. |
|
| 572 | - * |
|
| 573 | - * |
|
| 574 | - * @param WPInv_Invoice $invoice Invoice. |
|
| 575 | - * @param array $submission_data Posted checkout fields. |
|
| 576 | - * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
| 577 | - * @return array |
|
| 578 | - */ |
|
| 579 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
| 571 | + * Process Payment. |
|
| 572 | + * |
|
| 573 | + * |
|
| 574 | + * @param WPInv_Invoice $invoice Invoice. |
|
| 575 | + * @param array $submission_data Posted checkout fields. |
|
| 576 | + * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
| 577 | + * @return array |
|
| 578 | + */ |
|
| 579 | + public function process_payment( $invoice, $submission_data, $submission ) { |
|
| 580 | 580 | |
| 581 | 581 | // Validate the submitted data. |
| 582 | 582 | $payment_profile_id = $this->validate_submission_data( $submission_data, $invoice ); |
@@ -609,45 +609,45 @@ discard block |
||
| 609 | 609 | |
| 610 | 610 | exit; |
| 611 | 611 | |
| 612 | - } |
|
| 612 | + } |
|
| 613 | 613 | |
| 614 | - /** |
|
| 615 | - * Processes the initial payment. |
|
| 616 | - * |
|
| 614 | + /** |
|
| 615 | + * Processes the initial payment. |
|
| 616 | + * |
|
| 617 | 617 | * @param WPInv_Invoice $invoice Invoice. |
| 618 | - */ |
|
| 619 | - protected function process_initial_payment( $invoice ) { |
|
| 618 | + */ |
|
| 619 | + protected function process_initial_payment( $invoice ) { |
|
| 620 | 620 | |
| 621 | - $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
| 621 | + $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
| 622 | 622 | $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
| 623 | - $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
|
| 623 | + $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
|
| 624 | 624 | |
| 625 | - // Do we have an error? |
|
| 626 | - if ( is_wp_error( $result ) ) { |
|
| 627 | - wpinv_set_error( $result->get_error_code(), $result->get_error_message() ); |
|
| 628 | - wpinv_send_back_to_checkout( $invoice ); |
|
| 629 | - } |
|
| 625 | + // Do we have an error? |
|
| 626 | + if ( is_wp_error( $result ) ) { |
|
| 627 | + wpinv_set_error( $result->get_error_code(), $result->get_error_message() ); |
|
| 628 | + wpinv_send_back_to_checkout( $invoice ); |
|
| 629 | + } |
|
| 630 | 630 | |
| 631 | - // Process the response. |
|
| 632 | - $this->process_charge_response( $result, $invoice ); |
|
| 631 | + // Process the response. |
|
| 632 | + $this->process_charge_response( $result, $invoice ); |
|
| 633 | 633 | |
| 634 | - if ( wpinv_get_errors() ) { |
|
| 635 | - wpinv_send_back_to_checkout( $invoice ); |
|
| 636 | - } |
|
| 634 | + if ( wpinv_get_errors() ) { |
|
| 635 | + wpinv_send_back_to_checkout( $invoice ); |
|
| 636 | + } |
|
| 637 | 637 | |
| 638 | - } |
|
| 638 | + } |
|
| 639 | 639 | |
| 640 | 640 | /** |
| 641 | - * Processes recurring payments. |
|
| 642 | - * |
|
| 641 | + * Processes recurring payments. |
|
| 642 | + * |
|
| 643 | 643 | * @param WPInv_Invoice $invoice Invoice. |
| 644 | 644 | * @param WPInv_Subscription[]|WPInv_Subscription $subscriptions Subscriptions. |
| 645 | - */ |
|
| 646 | - public function process_subscription( $invoice, $subscriptions ) { |
|
| 645 | + */ |
|
| 646 | + public function process_subscription( $invoice, $subscriptions ) { |
|
| 647 | 647 | |
| 648 | 648 | // Check if there is an initial amount to charge. |
| 649 | 649 | if ( (float) $invoice->get_total() > 0 ) { |
| 650 | - $this->process_initial_payment( $invoice ); |
|
| 650 | + $this->process_initial_payment( $invoice ); |
|
| 651 | 651 | } |
| 652 | 652 | |
| 653 | 653 | // Activate the subscriptions. |
@@ -665,36 +665,36 @@ discard block |
||
| 665 | 665 | } |
| 666 | 666 | } |
| 667 | 667 | |
| 668 | - // Redirect to the success page. |
|
| 668 | + // Redirect to the success page. |
|
| 669 | 669 | wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
| 670 | 670 | |
| 671 | 671 | } |
| 672 | 672 | |
| 673 | - /** |
|
| 674 | - * (Maybe) renews an authorize.net subscription profile. |
|
| 675 | - * |
|
| 676 | - * |
|
| 673 | + /** |
|
| 674 | + * (Maybe) renews an authorize.net subscription profile. |
|
| 675 | + * |
|
| 676 | + * |
|
| 677 | 677 | * @param WPInv_Subscription $subscription |
| 678 | - */ |
|
| 679 | - public function maybe_renew_subscription( $subscription ) { |
|
| 678 | + */ |
|
| 679 | + public function maybe_renew_subscription( $subscription ) { |
|
| 680 | 680 | |
| 681 | 681 | // Ensure its our subscription && it's active. |
| 682 | 682 | if ( $this->id == $subscription->get_gateway() && $subscription->has_status( 'active trialling' ) ) { |
| 683 | 683 | $this->renew_subscription( $subscription ); |
| 684 | 684 | } |
| 685 | 685 | |
| 686 | - } |
|
| 686 | + } |
|
| 687 | 687 | |
| 688 | 688 | /** |
| 689 | - * Renews a subscription. |
|
| 690 | - * |
|
| 689 | + * Renews a subscription. |
|
| 690 | + * |
|
| 691 | 691 | * @param WPInv_Subscription $subscription |
| 692 | - */ |
|
| 693 | - public function renew_subscription( $subscription ) { |
|
| 692 | + */ |
|
| 693 | + public function renew_subscription( $subscription ) { |
|
| 694 | 694 | |
| 695 | - // Generate the renewal invoice. |
|
| 696 | - $new_invoice = $subscription->create_payment(); |
|
| 697 | - $old_invoice = $subscription->get_parent_payment(); |
|
| 695 | + // Generate the renewal invoice. |
|
| 696 | + $new_invoice = $subscription->create_payment(); |
|
| 697 | + $old_invoice = $subscription->get_parent_payment(); |
|
| 698 | 698 | |
| 699 | 699 | if ( empty( $new_invoice ) ) { |
| 700 | 700 | $old_invoice->add_note( __( 'Error generating a renewal invoice.', 'invoicing' ), false, false, false ); |
@@ -703,37 +703,37 @@ discard block |
||
| 703 | 703 | } |
| 704 | 704 | |
| 705 | 705 | // Charge the payment method. |
| 706 | - $payment_profile_id = get_post_meta( $old_invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
| 707 | - $customer_profile = get_user_meta( $old_invoice->get_user_id(), $this->get_customer_profile_meta_name( $old_invoice ), true ); |
|
| 708 | - $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $new_invoice ); |
|
| 709 | - |
|
| 710 | - // Do we have an error? |
|
| 711 | - if ( is_wp_error( $result ) ) { |
|
| 712 | - |
|
| 713 | - $old_invoice->add_note( |
|
| 714 | - sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), $result->get_error_message() ), |
|
| 715 | - true, |
|
| 716 | - false, |
|
| 717 | - true |
|
| 718 | - ); |
|
| 719 | - $subscription->failing(); |
|
| 720 | - return; |
|
| 721 | - |
|
| 722 | - } |
|
| 723 | - |
|
| 724 | - // Process the response. |
|
| 725 | - $this->process_charge_response( $result, $new_invoice ); |
|
| 726 | - |
|
| 727 | - if ( wpinv_get_errors() ) { |
|
| 728 | - |
|
| 729 | - $old_invoice->add_note( |
|
| 730 | - sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), getpaid_get_errors_html() ), |
|
| 731 | - true, |
|
| 732 | - false, |
|
| 733 | - true |
|
| 734 | - ); |
|
| 735 | - $subscription->failing(); |
|
| 736 | - return; |
|
| 706 | + $payment_profile_id = get_post_meta( $old_invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
| 707 | + $customer_profile = get_user_meta( $old_invoice->get_user_id(), $this->get_customer_profile_meta_name( $old_invoice ), true ); |
|
| 708 | + $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $new_invoice ); |
|
| 709 | + |
|
| 710 | + // Do we have an error? |
|
| 711 | + if ( is_wp_error( $result ) ) { |
|
| 712 | + |
|
| 713 | + $old_invoice->add_note( |
|
| 714 | + sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), $result->get_error_message() ), |
|
| 715 | + true, |
|
| 716 | + false, |
|
| 717 | + true |
|
| 718 | + ); |
|
| 719 | + $subscription->failing(); |
|
| 720 | + return; |
|
| 721 | + |
|
| 722 | + } |
|
| 723 | + |
|
| 724 | + // Process the response. |
|
| 725 | + $this->process_charge_response( $result, $new_invoice ); |
|
| 726 | + |
|
| 727 | + if ( wpinv_get_errors() ) { |
|
| 728 | + |
|
| 729 | + $old_invoice->add_note( |
|
| 730 | + sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), getpaid_get_errors_html() ), |
|
| 731 | + true, |
|
| 732 | + false, |
|
| 733 | + true |
|
| 734 | + ); |
|
| 735 | + $subscription->failing(); |
|
| 736 | + return; |
|
| 737 | 737 | |
| 738 | 738 | } |
| 739 | 739 | |
@@ -742,13 +742,13 @@ discard block |
||
| 742 | 742 | } |
| 743 | 743 | |
| 744 | 744 | /** |
| 745 | - * Processes invoice addons. |
|
| 746 | - * |
|
| 747 | - * @param WPInv_Invoice $invoice |
|
| 748 | - * @param GetPaid_Form_Item[] $items |
|
| 749 | - * @return WPInv_Invoice |
|
| 750 | - */ |
|
| 751 | - public function process_addons( $invoice, $items ) { |
|
| 745 | + * Processes invoice addons. |
|
| 746 | + * |
|
| 747 | + * @param WPInv_Invoice $invoice |
|
| 748 | + * @param GetPaid_Form_Item[] $items |
|
| 749 | + * @return WPInv_Invoice |
|
| 750 | + */ |
|
| 751 | + public function process_addons( $invoice, $items ) { |
|
| 752 | 752 | |
| 753 | 753 | global $getpaid_authorize_addons; |
| 754 | 754 | |
@@ -768,7 +768,7 @@ discard block |
||
| 768 | 768 | $invoice->recalculate_total(); |
| 769 | 769 | |
| 770 | 770 | $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
| 771 | - $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
|
| 771 | + $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
|
| 772 | 772 | |
| 773 | 773 | add_filter( 'getpaid_authorizenet_charge_customer_payment_profile_args', array( $this, 'filter_addons_request' ), 10, 2 ); |
| 774 | 774 | $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
@@ -783,11 +783,11 @@ discard block |
||
| 783 | 783 | } |
| 784 | 784 | |
| 785 | 785 | /** |
| 786 | - * Processes invoice addons. |
|
| 787 | - * |
|
| 786 | + * Processes invoice addons. |
|
| 787 | + * |
|
| 788 | 788 | * @param array $args |
| 789 | - * @return array |
|
| 790 | - */ |
|
| 789 | + * @return array |
|
| 790 | + */ |
|
| 791 | 791 | public function filter_addons_request( $args ) { |
| 792 | 792 | |
| 793 | 793 | global $getpaid_authorize_addons; |
@@ -821,11 +821,11 @@ discard block |
||
| 821 | 821 | } |
| 822 | 822 | |
| 823 | 823 | /** |
| 824 | - * Filters the gateway settings. |
|
| 825 | - * |
|
| 826 | - * @param array $admin_settings |
|
| 827 | - */ |
|
| 828 | - public function admin_settings( $admin_settings ) { |
|
| 824 | + * Filters the gateway settings. |
|
| 825 | + * |
|
| 826 | + * @param array $admin_settings |
|
| 827 | + */ |
|
| 828 | + public function admin_settings( $admin_settings ) { |
|
| 829 | 829 | |
| 830 | 830 | $currencies = sprintf( |
| 831 | 831 | __( 'Supported Currencies: %s', 'invoicing' ), |
@@ -865,7 +865,7 @@ discard block |
||
| 865 | 865 | 'readonly' => true, |
| 866 | 866 | ); |
| 867 | 867 | |
| 868 | - return $admin_settings; |
|
| 869 | - } |
|
| 868 | + return $admin_settings; |
|
| 869 | + } |
|
| 870 | 870 | |
| 871 | 871 | } |