@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if ( ! defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -7,36 +7,36 @@ discard block |
||
| 7 | 7 | 'wc_stripe_eps_settings', |
| 8 | 8 | array( |
| 9 | 9 | 'geo_target' => array( |
| 10 | - 'description' => __( 'Relevant Payer Geography: Austria', 'woocommerce-gateway-stripe' ), |
|
| 10 | + 'description' => __('Relevant Payer Geography: Austria', 'woocommerce-gateway-stripe'), |
|
| 11 | 11 | 'type' => 'title', |
| 12 | 12 | ), |
| 13 | 13 | 'activation' => array( |
| 14 | - 'description' => __( 'Must be activated from your Stripe Dashboard Settings <a href="https://dashboard.stripe.com/account/payments/settings" target="_blank">here</a>', 'woocommerce-gateway-stripe' ), |
|
| 14 | + 'description' => __('Must be activated from your Stripe Dashboard Settings <a href="https://dashboard.stripe.com/account/payments/settings" target="_blank">here</a>', 'woocommerce-gateway-stripe'), |
|
| 15 | 15 | 'type' => 'title', |
| 16 | 16 | ), |
| 17 | 17 | 'enabled' => array( |
| 18 | - 'title' => __( 'Enable/Disable', 'woocommerce-gateway-stripe' ), |
|
| 19 | - 'label' => __( 'Enable Stripe EPS', 'woocommerce-gateway-stripe' ), |
|
| 18 | + 'title' => __('Enable/Disable', 'woocommerce-gateway-stripe'), |
|
| 19 | + 'label' => __('Enable Stripe EPS', 'woocommerce-gateway-stripe'), |
|
| 20 | 20 | 'type' => 'checkbox', |
| 21 | 21 | 'description' => '', |
| 22 | 22 | 'default' => 'no', |
| 23 | 23 | ), |
| 24 | 24 | 'title' => array( |
| 25 | - 'title' => __( 'Title', 'woocommerce-gateway-stripe' ), |
|
| 25 | + 'title' => __('Title', 'woocommerce-gateway-stripe'), |
|
| 26 | 26 | 'type' => 'text', |
| 27 | - 'description' => __( 'This controls the title which the user sees during checkout.', 'woocommerce-gateway-stripe' ), |
|
| 28 | - 'default' => __( 'EPS', 'woocommerce-gateway-stripe' ), |
|
| 27 | + 'description' => __('This controls the title which the user sees during checkout.', 'woocommerce-gateway-stripe'), |
|
| 28 | + 'default' => __('EPS', 'woocommerce-gateway-stripe'), |
|
| 29 | 29 | 'desc_tip' => true, |
| 30 | 30 | ), |
| 31 | 31 | 'description' => array( |
| 32 | - 'title' => __( 'Description', 'woocommerce-gateway-stripe' ), |
|
| 32 | + 'title' => __('Description', 'woocommerce-gateway-stripe'), |
|
| 33 | 33 | 'type' => 'text', |
| 34 | - 'description' => __( 'This controls the description which the user sees during checkout.', 'woocommerce-gateway-stripe' ), |
|
| 35 | - 'default' => __( 'You will be redirected to EPS.', 'woocommerce-gateway-stripe' ), |
|
| 34 | + 'description' => __('This controls the description which the user sees during checkout.', 'woocommerce-gateway-stripe'), |
|
| 35 | + 'default' => __('You will be redirected to EPS.', 'woocommerce-gateway-stripe'), |
|
| 36 | 36 | 'desc_tip' => true, |
| 37 | 37 | ), |
| 38 | 38 | 'webhook' => array( |
| 39 | - 'title' => __( 'Webhook Endpoints', 'woocommerce-gateway-stripe' ), |
|
| 39 | + 'title' => __('Webhook Endpoints', 'woocommerce-gateway-stripe'), |
|
| 40 | 40 | 'type' => 'title', |
| 41 | 41 | /* translators: webhook URL */ |
| 42 | 42 | 'description' => $this->display_admin_settings_webhook_description(), |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! class_exists( 'WC_Abstract_Privacy' ) ) { |
|
| 2 | +if ( ! class_exists('WC_Abstract_Privacy')) { |
|
| 3 | 3 | return; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -9,20 +9,20 @@ discard block |
||
| 9 | 9 | * |
| 10 | 10 | */ |
| 11 | 11 | public function __construct() { |
| 12 | - parent::__construct( __( 'Stripe', 'woocommerce-gateway-stripe' ) ); |
|
| 12 | + parent::__construct(__('Stripe', 'woocommerce-gateway-stripe')); |
|
| 13 | 13 | |
| 14 | - $this->add_exporter( 'woocommerce-gateway-stripe-order-data', __( 'WooCommerce Stripe Order Data', 'woocommerce-gateway-stripe' ), array( $this, 'order_data_exporter' ) ); |
|
| 14 | + $this->add_exporter('woocommerce-gateway-stripe-order-data', __('WooCommerce Stripe Order Data', 'woocommerce-gateway-stripe'), array($this, 'order_data_exporter')); |
|
| 15 | 15 | |
| 16 | - if ( function_exists( 'wcs_get_subscriptions' ) ) { |
|
| 17 | - $this->add_exporter( 'woocommerce-gateway-stripe-subscriptions-data', __( 'WooCommerce Stripe Subscriptions Data', 'woocommerce-gateway-stripe' ), array( $this, 'subscriptions_data_exporter' ) ); |
|
| 16 | + if (function_exists('wcs_get_subscriptions')) { |
|
| 17 | + $this->add_exporter('woocommerce-gateway-stripe-subscriptions-data', __('WooCommerce Stripe Subscriptions Data', 'woocommerce-gateway-stripe'), array($this, 'subscriptions_data_exporter')); |
|
| 18 | 18 | } |
| 19 | 19 | |
| 20 | - $this->add_exporter( 'woocommerce-gateway-stripe-customer-data', __( 'WooCommerce Stripe Customer Data', 'woocommerce-gateway-stripe' ), array( $this, 'customer_data_exporter' ) ); |
|
| 20 | + $this->add_exporter('woocommerce-gateway-stripe-customer-data', __('WooCommerce Stripe Customer Data', 'woocommerce-gateway-stripe'), array($this, 'customer_data_exporter')); |
|
| 21 | 21 | |
| 22 | - $this->add_eraser( 'woocommerce-gateway-stripe-customer-data', __( 'WooCommerce Stripe Customer Data', 'woocommerce-gateway-stripe' ), array( $this, 'customer_data_eraser' ) ); |
|
| 23 | - $this->add_eraser( 'woocommerce-gateway-stripe-order-data', __( 'WooCommerce Stripe Data', 'woocommerce-gateway-stripe' ), array( $this, 'order_data_eraser' ) ); |
|
| 22 | + $this->add_eraser('woocommerce-gateway-stripe-customer-data', __('WooCommerce Stripe Customer Data', 'woocommerce-gateway-stripe'), array($this, 'customer_data_eraser')); |
|
| 23 | + $this->add_eraser('woocommerce-gateway-stripe-order-data', __('WooCommerce Stripe Data', 'woocommerce-gateway-stripe'), array($this, 'order_data_eraser')); |
|
| 24 | 24 | |
| 25 | - add_filter( 'woocommerce_get_settings_account', array( $this, 'account_settings' ) ); |
|
| 25 | + add_filter('woocommerce_get_settings_account', array($this, 'account_settings')); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | /** |
@@ -31,14 +31,14 @@ discard block |
||
| 31 | 31 | * @param array $settings |
| 32 | 32 | * @return array $settings Updated |
| 33 | 33 | */ |
| 34 | - public function account_settings( $settings ) { |
|
| 34 | + public function account_settings($settings) { |
|
| 35 | 35 | $insert_setting = array( |
| 36 | 36 | array( |
| 37 | - 'title' => __( 'Retain Stripe Data', 'woocommerce-gateway-stripe' ), |
|
| 38 | - 'desc_tip' => __( 'Retains any Stripe data such as Stripe customer ID, source ID.', 'woocommerce-gateway-stripe' ), |
|
| 37 | + 'title' => __('Retain Stripe Data', 'woocommerce-gateway-stripe'), |
|
| 38 | + 'desc_tip' => __('Retains any Stripe data such as Stripe customer ID, source ID.', 'woocommerce-gateway-stripe'), |
|
| 39 | 39 | 'id' => 'woocommerce_gateway_stripe_retention', |
| 40 | 40 | 'type' => 'relative_date_selector', |
| 41 | - 'placeholder' => __( 'N/A', 'woocommerce-gateway-stripe' ), |
|
| 41 | + 'placeholder' => __('N/A', 'woocommerce-gateway-stripe'), |
|
| 42 | 42 | 'default' => '', |
| 43 | 43 | 'autoload' => false, |
| 44 | 44 | ), |
@@ -46,15 +46,15 @@ discard block |
||
| 46 | 46 | |
| 47 | 47 | $index = null; |
| 48 | 48 | |
| 49 | - foreach ( $settings as $key => $value) { |
|
| 50 | - if ( 'sectionend' === $value[ 'type' ] && 'personal_data_retention' === $value[ 'id' ] ) { |
|
| 49 | + foreach ($settings as $key => $value) { |
|
| 50 | + if ('sectionend' === $value['type'] && 'personal_data_retention' === $value['id']) { |
|
| 51 | 51 | $index = $key; |
| 52 | 52 | break; |
| 53 | 53 | } |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - if ( ! is_null( $index ) ) { |
|
| 57 | - array_splice( $settings, $index, 0, $insert_setting ); |
|
| 56 | + if ( ! is_null($index)) { |
|
| 57 | + array_splice($settings, $index, 0, $insert_setting); |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | return $settings; |
@@ -68,22 +68,22 @@ discard block |
||
| 68 | 68 | * |
| 69 | 69 | * @return array WP_Post |
| 70 | 70 | */ |
| 71 | - protected function get_stripe_orders( $email_address, $page ) { |
|
| 72 | - $user = get_user_by( 'email', $email_address ); // Check if user has an ID in the DB to load stored personal data. |
|
| 71 | + protected function get_stripe_orders($email_address, $page) { |
|
| 72 | + $user = get_user_by('email', $email_address); // Check if user has an ID in the DB to load stored personal data. |
|
| 73 | 73 | |
| 74 | 74 | $order_query = array( |
| 75 | - 'payment_method' => array( 'stripe', 'stripe_alipay', 'stripe_bancontact', 'stripe_eps', 'stripe_giropay', 'stripe_ideal', 'stripe_multibanco', 'stripe_p24', 'stripe_sepa', 'stripe_sofort' ), |
|
| 75 | + 'payment_method' => array('stripe', 'stripe_alipay', 'stripe_bancontact', 'stripe_eps', 'stripe_giropay', 'stripe_ideal', 'stripe_multibanco', 'stripe_p24', 'stripe_sepa', 'stripe_sofort'), |
|
| 76 | 76 | 'limit' => 10, |
| 77 | 77 | 'page' => $page, |
| 78 | 78 | ); |
| 79 | 79 | |
| 80 | - if ( $user instanceof WP_User ) { |
|
| 80 | + if ($user instanceof WP_User) { |
|
| 81 | 81 | $order_query['customer_id'] = (int) $user->ID; |
| 82 | 82 | } else { |
| 83 | 83 | $order_query['billing_email'] = $email_address; |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | - return wc_get_orders( $order_query ); |
|
| 86 | + return wc_get_orders($order_query); |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | /** |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | */ |
| 93 | 93 | public function get_privacy_message() { |
| 94 | 94 | /* translators: %s URL to docs */ |
| 95 | - return wpautop( sprintf( __( 'By using this extension, you may be storing personal data or sharing data with an external service. <a href="%s" target="_blank">Learn more about how this works, including what you may want to include in your privacy policy.</a>', 'woocommerce-gateway-stripe' ), 'https://docs.woocommerce.com/document/privacy-payments/#woocommerce-gateway-stripe' ) ); |
|
| 95 | + return wpautop(sprintf(__('By using this extension, you may be storing personal data or sharing data with an external service. <a href="%s" target="_blank">Learn more about how this works, including what you may want to include in your privacy policy.</a>', 'woocommerce-gateway-stripe'), 'https://docs.woocommerce.com/document/privacy-payments/#woocommerce-gateway-stripe')); |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | /** |
@@ -103,34 +103,34 @@ discard block |
||
| 103 | 103 | * |
| 104 | 104 | * @return array |
| 105 | 105 | */ |
| 106 | - public function order_data_exporter( $email_address, $page = 1 ) { |
|
| 106 | + public function order_data_exporter($email_address, $page = 1) { |
|
| 107 | 107 | $done = false; |
| 108 | 108 | $data_to_export = array(); |
| 109 | 109 | |
| 110 | - $orders = $this->get_stripe_orders( $email_address, (int) $page ); |
|
| 110 | + $orders = $this->get_stripe_orders($email_address, (int) $page); |
|
| 111 | 111 | |
| 112 | 112 | $done = true; |
| 113 | 113 | |
| 114 | - if ( 0 < count( $orders ) ) { |
|
| 115 | - foreach ( $orders as $order ) { |
|
| 114 | + if (0 < count($orders)) { |
|
| 115 | + foreach ($orders as $order) { |
|
| 116 | 116 | $data_to_export[] = array( |
| 117 | 117 | 'group_id' => 'woocommerce_orders', |
| 118 | - 'group_label' => __( 'Orders', 'woocommerce-gateway-stripe' ), |
|
| 118 | + 'group_label' => __('Orders', 'woocommerce-gateway-stripe'), |
|
| 119 | 119 | 'item_id' => 'order-' . $order->get_id(), |
| 120 | 120 | 'data' => array( |
| 121 | 121 | array( |
| 122 | - 'name' => __( 'Stripe payment id', 'woocommerce-gateway-stripe' ), |
|
| 123 | - 'value' => get_post_meta( $order->get_id(), '_stripe_source_id', true ), |
|
| 122 | + 'name' => __('Stripe payment id', 'woocommerce-gateway-stripe'), |
|
| 123 | + 'value' => get_post_meta($order->get_id(), '_stripe_source_id', true), |
|
| 124 | 124 | ), |
| 125 | 125 | array( |
| 126 | - 'name' => __( 'Stripe customer id', 'woocommerce-gateway-stripe' ), |
|
| 127 | - 'value' => get_post_meta( $order->get_id(), '_stripe_customer_id', true ), |
|
| 126 | + 'name' => __('Stripe customer id', 'woocommerce-gateway-stripe'), |
|
| 127 | + 'value' => get_post_meta($order->get_id(), '_stripe_customer_id', true), |
|
| 128 | 128 | ), |
| 129 | 129 | ), |
| 130 | 130 | ); |
| 131 | 131 | } |
| 132 | 132 | |
| 133 | - $done = 10 > count( $orders ); |
|
| 133 | + $done = 10 > count($orders); |
|
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | return array( |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | * |
| 148 | 148 | * @return array |
| 149 | 149 | */ |
| 150 | - public function subscriptions_data_exporter( $email_address, $page = 1 ) { |
|
| 150 | + public function subscriptions_data_exporter($email_address, $page = 1) { |
|
| 151 | 151 | $done = false; |
| 152 | 152 | $page = (int) $page; |
| 153 | 153 | $data_to_export = array(); |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | 'relation' => 'AND', |
| 157 | 157 | array( |
| 158 | 158 | 'key' => '_payment_method', |
| 159 | - 'value' => array( 'stripe', 'stripe_alipay', 'stripe_bancontact', 'stripe_eps', 'stripe_giropay', 'stripe_ideal', 'stripe_multibanco', 'stripe_p24', 'stripe_sepa', 'stripe_sofort' ), |
|
| 159 | + 'value' => array('stripe', 'stripe_alipay', 'stripe_bancontact', 'stripe_eps', 'stripe_giropay', 'stripe_ideal', 'stripe_multibanco', 'stripe_p24', 'stripe_sepa', 'stripe_sofort'), |
|
| 160 | 160 | 'compare' => 'IN', |
| 161 | 161 | ), |
| 162 | 162 | array( |
@@ -172,30 +172,30 @@ discard block |
||
| 172 | 172 | 'meta_query' => $meta_query, |
| 173 | 173 | ); |
| 174 | 174 | |
| 175 | - $subscriptions = wcs_get_subscriptions( $subscription_query ); |
|
| 175 | + $subscriptions = wcs_get_subscriptions($subscription_query); |
|
| 176 | 176 | |
| 177 | 177 | $done = true; |
| 178 | 178 | |
| 179 | - if ( 0 < count( $subscriptions ) ) { |
|
| 180 | - foreach ( $subscriptions as $subscription ) { |
|
| 179 | + if (0 < count($subscriptions)) { |
|
| 180 | + foreach ($subscriptions as $subscription) { |
|
| 181 | 181 | $data_to_export[] = array( |
| 182 | 182 | 'group_id' => 'woocommerce_subscriptions', |
| 183 | - 'group_label' => __( 'Subscriptions', 'woocommerce-gateway-stripe' ), |
|
| 183 | + 'group_label' => __('Subscriptions', 'woocommerce-gateway-stripe'), |
|
| 184 | 184 | 'item_id' => 'subscription-' . $subscription->get_id(), |
| 185 | 185 | 'data' => array( |
| 186 | 186 | array( |
| 187 | - 'name' => __( 'Stripe payment id', 'woocommerce-gateway-stripe' ), |
|
| 188 | - 'value' => get_post_meta( $subscription->get_id(), '_stripe_source_id', true ), |
|
| 187 | + 'name' => __('Stripe payment id', 'woocommerce-gateway-stripe'), |
|
| 188 | + 'value' => get_post_meta($subscription->get_id(), '_stripe_source_id', true), |
|
| 189 | 189 | ), |
| 190 | 190 | array( |
| 191 | - 'name' => __( 'Stripe customer id', 'woocommerce-gateway-stripe' ), |
|
| 192 | - 'value' => get_post_meta( $subscription->get_id(), '_stripe_customer_id', true ), |
|
| 191 | + 'name' => __('Stripe customer id', 'woocommerce-gateway-stripe'), |
|
| 192 | + 'value' => get_post_meta($subscription->get_id(), '_stripe_customer_id', true), |
|
| 193 | 193 | ), |
| 194 | 194 | ), |
| 195 | 195 | ); |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | - $done = 10 > count( $subscriptions ); |
|
| 198 | + $done = 10 > count($subscriptions); |
|
| 199 | 199 | } |
| 200 | 200 | |
| 201 | 201 | return array( |
@@ -211,24 +211,24 @@ discard block |
||
| 211 | 211 | * @param int $page Page. |
| 212 | 212 | * @return array An array of personal data in name value pairs |
| 213 | 213 | */ |
| 214 | - public function customer_data_exporter( $email_address, $page ) { |
|
| 215 | - $user = get_user_by( 'email', $email_address ); // Check if user has an ID in the DB to load stored personal data. |
|
| 214 | + public function customer_data_exporter($email_address, $page) { |
|
| 215 | + $user = get_user_by('email', $email_address); // Check if user has an ID in the DB to load stored personal data. |
|
| 216 | 216 | $data_to_export = array(); |
| 217 | 217 | |
| 218 | - if ( $user instanceof WP_User ) { |
|
| 219 | - $stripe_user = new WC_Stripe_Customer( $user->ID ); |
|
| 218 | + if ($user instanceof WP_User) { |
|
| 219 | + $stripe_user = new WC_Stripe_Customer($user->ID); |
|
| 220 | 220 | |
| 221 | 221 | $data_to_export[] = array( |
| 222 | 222 | 'group_id' => 'woocommerce_customer', |
| 223 | - 'group_label' => __( 'Customer Data', 'woocommerce-gateway-stripe' ), |
|
| 223 | + 'group_label' => __('Customer Data', 'woocommerce-gateway-stripe'), |
|
| 224 | 224 | 'item_id' => 'user', |
| 225 | 225 | 'data' => array( |
| 226 | 226 | array( |
| 227 | - 'name' => __( 'Stripe payment id', 'woocommerce-gateway-stripe' ), |
|
| 228 | - 'value' => get_user_option( '_stripe_source_id', $user->ID ), |
|
| 227 | + 'name' => __('Stripe payment id', 'woocommerce-gateway-stripe'), |
|
| 228 | + 'value' => get_user_option('_stripe_source_id', $user->ID), |
|
| 229 | 229 | ), |
| 230 | 230 | array( |
| 231 | - 'name' => __( 'Stripe customer id', 'woocommerce-gateway-stripe' ), |
|
| 231 | + 'name' => __('Stripe customer id', 'woocommerce-gateway-stripe'), |
|
| 232 | 232 | 'value' => $stripe_user->get_id(), |
| 233 | 233 | ), |
| 234 | 234 | ), |
@@ -248,25 +248,25 @@ discard block |
||
| 248 | 248 | * @param int $page Page. |
| 249 | 249 | * @return array An array of personal data in name value pairs |
| 250 | 250 | */ |
| 251 | - public function customer_data_eraser( $email_address, $page ) { |
|
| 251 | + public function customer_data_eraser($email_address, $page) { |
|
| 252 | 252 | $page = (int) $page; |
| 253 | - $user = get_user_by( 'email', $email_address ); // Check if user has an ID in the DB to load stored personal data. |
|
| 253 | + $user = get_user_by('email', $email_address); // Check if user has an ID in the DB to load stored personal data. |
|
| 254 | 254 | $stripe_customer_id = ''; |
| 255 | 255 | $stripe_source_id = ''; |
| 256 | 256 | |
| 257 | - if ( $user instanceof WP_User ) { |
|
| 258 | - $stripe_customer_id = get_user_option( '_stripe_customer_id', $user->ID ); |
|
| 259 | - $stripe_source_id = get_user_option( '_stripe_source_id', $user->ID ); |
|
| 257 | + if ($user instanceof WP_User) { |
|
| 258 | + $stripe_customer_id = get_user_option('_stripe_customer_id', $user->ID); |
|
| 259 | + $stripe_source_id = get_user_option('_stripe_source_id', $user->ID); |
|
| 260 | 260 | } |
| 261 | 261 | |
| 262 | 262 | $items_removed = false; |
| 263 | 263 | $messages = array(); |
| 264 | 264 | |
| 265 | - if ( ! empty( $stripe_customer_id ) || ! empty( $stripe_source_id ) ) { |
|
| 265 | + if ( ! empty($stripe_customer_id) || ! empty($stripe_source_id)) { |
|
| 266 | 266 | $items_removed = true; |
| 267 | - delete_user_option( $user->ID, '_stripe_customer_id' ); |
|
| 268 | - delete_user_option( $user->ID, '_stripe_source_id' ); |
|
| 269 | - $messages[] = __( 'Stripe User Data Erased.', 'woocommerce-gateway-stripe' ); |
|
| 267 | + delete_user_option($user->ID, '_stripe_customer_id'); |
|
| 268 | + delete_user_option($user->ID, '_stripe_source_id'); |
|
| 269 | + $messages[] = __('Stripe User Data Erased.', 'woocommerce-gateway-stripe'); |
|
| 270 | 270 | } |
| 271 | 271 | |
| 272 | 272 | return array( |
@@ -284,29 +284,29 @@ discard block |
||
| 284 | 284 | * @param int $page Page. |
| 285 | 285 | * @return array An array of personal data in name value pairs |
| 286 | 286 | */ |
| 287 | - public function order_data_eraser( $email_address, $page ) { |
|
| 288 | - $orders = $this->get_stripe_orders( $email_address, (int) $page ); |
|
| 287 | + public function order_data_eraser($email_address, $page) { |
|
| 288 | + $orders = $this->get_stripe_orders($email_address, (int) $page); |
|
| 289 | 289 | |
| 290 | 290 | $items_removed = false; |
| 291 | 291 | $items_retained = false; |
| 292 | 292 | $messages = array(); |
| 293 | 293 | |
| 294 | - foreach ( (array) $orders as $order ) { |
|
| 295 | - $order = wc_get_order( $order->get_id() ); |
|
| 294 | + foreach ((array) $orders as $order) { |
|
| 295 | + $order = wc_get_order($order->get_id()); |
|
| 296 | 296 | |
| 297 | - list( $removed, $retained, $msgs ) = $this->maybe_handle_order( $order ); |
|
| 297 | + list($removed, $retained, $msgs) = $this->maybe_handle_order($order); |
|
| 298 | 298 | $items_removed |= $removed; |
| 299 | 299 | $items_retained |= $retained; |
| 300 | - $messages = array_merge( $messages, $msgs ); |
|
| 300 | + $messages = array_merge($messages, $msgs); |
|
| 301 | 301 | |
| 302 | - list( $removed, $retained, $msgs ) = $this->maybe_handle_subscription( $order ); |
|
| 302 | + list($removed, $retained, $msgs) = $this->maybe_handle_subscription($order); |
|
| 303 | 303 | $items_removed |= $removed; |
| 304 | 304 | $items_retained |= $retained; |
| 305 | - $messages = array_merge( $messages, $msgs ); |
|
| 305 | + $messages = array_merge($messages, $msgs); |
|
| 306 | 306 | } |
| 307 | 307 | |
| 308 | 308 | // Tell core if we have more orders to work on still |
| 309 | - $done = count( $orders ) < 10; |
|
| 309 | + $done = count($orders) < 10; |
|
| 310 | 310 | |
| 311 | 311 | return array( |
| 312 | 312 | 'items_removed' => $items_removed, |
@@ -322,47 +322,47 @@ discard block |
||
| 322 | 322 | * @param WC_Order $order |
| 323 | 323 | * @return array |
| 324 | 324 | */ |
| 325 | - protected function maybe_handle_subscription( $order ) { |
|
| 326 | - if ( ! class_exists( 'WC_Subscriptions' ) ) { |
|
| 327 | - return array( false, false, array() ); |
|
| 325 | + protected function maybe_handle_subscription($order) { |
|
| 326 | + if ( ! class_exists('WC_Subscriptions')) { |
|
| 327 | + return array(false, false, array()); |
|
| 328 | 328 | } |
| 329 | 329 | |
| 330 | - if ( ! wcs_order_contains_subscription( $order ) ) { |
|
| 331 | - return array( false, false, array() ); |
|
| 330 | + if ( ! wcs_order_contains_subscription($order)) { |
|
| 331 | + return array(false, false, array()); |
|
| 332 | 332 | } |
| 333 | 333 | |
| 334 | - $subscription = current( wcs_get_subscriptions_for_order( $order->get_id() ) ); |
|
| 334 | + $subscription = current(wcs_get_subscriptions_for_order($order->get_id())); |
|
| 335 | 335 | $subscription_id = $subscription->get_id(); |
| 336 | 336 | |
| 337 | - $stripe_source_id = get_post_meta( $subscription_id, '_stripe_source_id', true ); |
|
| 337 | + $stripe_source_id = get_post_meta($subscription_id, '_stripe_source_id', true); |
|
| 338 | 338 | |
| 339 | - if ( empty( $stripe_source_id ) ) { |
|
| 340 | - return array( false, false, array() ); |
|
| 339 | + if (empty($stripe_source_id)) { |
|
| 340 | + return array(false, false, array()); |
|
| 341 | 341 | } |
| 342 | 342 | |
| 343 | - if ( ! $this->is_retention_expired( $order->get_date_created()->getTimestamp() ) ) { |
|
| 343 | + if ( ! $this->is_retention_expired($order->get_date_created()->getTimestamp())) { |
|
| 344 | 344 | /* translators: %d Order ID */ |
| 345 | - return array( false, true, array( sprintf( __( 'Order ID %d is less than set retention days. Personal data retained. (Stripe)', 'woocommerce-gateway-stripe' ), $order->get_id() ) ) ); |
|
| 345 | + return array(false, true, array(sprintf(__('Order ID %d is less than set retention days. Personal data retained. (Stripe)', 'woocommerce-gateway-stripe'), $order->get_id()))); |
|
| 346 | 346 | } |
| 347 | 347 | |
| 348 | - if ( $subscription->has_status( apply_filters( 'wc_stripe_privacy_eraser_subs_statuses', array( 'on-hold', 'active' ) ) ) ) { |
|
| 348 | + if ($subscription->has_status(apply_filters('wc_stripe_privacy_eraser_subs_statuses', array('on-hold', 'active')))) { |
|
| 349 | 349 | /* translators: %d Order ID */ |
| 350 | - return array( false, true, array( sprintf( __( 'Order ID %d contains an active Subscription. Personal data retained. (Stripe)', 'woocommerce-gateway-stripe' ), $order->get_id() ) ) ); |
|
| 350 | + return array(false, true, array(sprintf(__('Order ID %d contains an active Subscription. Personal data retained. (Stripe)', 'woocommerce-gateway-stripe'), $order->get_id()))); |
|
| 351 | 351 | } |
| 352 | 352 | |
| 353 | - $renewal_orders = WC_Subscriptions_Renewal_Order::get_renewal_orders( $order->get_id() ); |
|
| 353 | + $renewal_orders = WC_Subscriptions_Renewal_Order::get_renewal_orders($order->get_id()); |
|
| 354 | 354 | |
| 355 | - foreach ( $renewal_orders as $renewal_order_id ) { |
|
| 356 | - delete_post_meta( $renewal_order_id, '_stripe_source_id' ); |
|
| 357 | - delete_post_meta( $renewal_order_id, '_stripe_refund_id' ); |
|
| 358 | - delete_post_meta( $renewal_order_id, '_stripe_customer_id' ); |
|
| 355 | + foreach ($renewal_orders as $renewal_order_id) { |
|
| 356 | + delete_post_meta($renewal_order_id, '_stripe_source_id'); |
|
| 357 | + delete_post_meta($renewal_order_id, '_stripe_refund_id'); |
|
| 358 | + delete_post_meta($renewal_order_id, '_stripe_customer_id'); |
|
| 359 | 359 | } |
| 360 | 360 | |
| 361 | - delete_post_meta( $subscription_id, '_stripe_source_id' ); |
|
| 362 | - delete_post_meta( $subscription_id, '_stripe_refund_id' ); |
|
| 363 | - delete_post_meta( $subscription_id, '_stripe_customer_id' ); |
|
| 361 | + delete_post_meta($subscription_id, '_stripe_source_id'); |
|
| 362 | + delete_post_meta($subscription_id, '_stripe_refund_id'); |
|
| 363 | + delete_post_meta($subscription_id, '_stripe_customer_id'); |
|
| 364 | 364 | |
| 365 | - return array( true, false, array( __( 'Stripe Subscription Data Erased.', 'woocommerce-gateway-stripe' ) ) ); |
|
| 365 | + return array(true, false, array(__('Stripe Subscription Data Erased.', 'woocommerce-gateway-stripe'))); |
|
| 366 | 366 | } |
| 367 | 367 | |
| 368 | 368 | /** |
@@ -371,61 +371,61 @@ discard block |
||
| 371 | 371 | * @param WC_Order $order |
| 372 | 372 | * @return array |
| 373 | 373 | */ |
| 374 | - protected function maybe_handle_order( $order ) { |
|
| 374 | + protected function maybe_handle_order($order) { |
|
| 375 | 375 | $order_id = $order->get_id(); |
| 376 | - $stripe_source_id = get_post_meta( $order_id, '_stripe_source_id', true ); |
|
| 377 | - $stripe_refund_id = get_post_meta( $order_id, '_stripe_refund_id', true ); |
|
| 378 | - $stripe_customer_id = get_post_meta( $order_id, '_stripe_customer_id', true ); |
|
| 376 | + $stripe_source_id = get_post_meta($order_id, '_stripe_source_id', true); |
|
| 377 | + $stripe_refund_id = get_post_meta($order_id, '_stripe_refund_id', true); |
|
| 378 | + $stripe_customer_id = get_post_meta($order_id, '_stripe_customer_id', true); |
|
| 379 | 379 | |
| 380 | - if ( ! $this->is_retention_expired( $order->get_date_created()->getTimestamp() ) ) { |
|
| 380 | + if ( ! $this->is_retention_expired($order->get_date_created()->getTimestamp())) { |
|
| 381 | 381 | /* translators: %d Order ID */ |
| 382 | - return array( false, true, array( sprintf( __( 'Order ID %d is less than set retention days. Personal data retained. (Stripe)', 'woocommerce-gateway-stripe' ), $order->get_id() ) ) ); |
|
| 382 | + return array(false, true, array(sprintf(__('Order ID %d is less than set retention days. Personal data retained. (Stripe)', 'woocommerce-gateway-stripe'), $order->get_id()))); |
|
| 383 | 383 | } |
| 384 | 384 | |
| 385 | - if ( empty( $stripe_source_id ) && empty( $stripe_refund_id ) && empty( $stripe_customer_id ) ) { |
|
| 386 | - return array( false, false, array() ); |
|
| 385 | + if (empty($stripe_source_id) && empty($stripe_refund_id) && empty($stripe_customer_id)) { |
|
| 386 | + return array(false, false, array()); |
|
| 387 | 387 | } |
| 388 | 388 | |
| 389 | - delete_post_meta( $order_id, '_stripe_source_id' ); |
|
| 390 | - delete_post_meta( $order_id, '_stripe_refund_id' ); |
|
| 391 | - delete_post_meta( $order_id, '_stripe_customer_id' ); |
|
| 389 | + delete_post_meta($order_id, '_stripe_source_id'); |
|
| 390 | + delete_post_meta($order_id, '_stripe_refund_id'); |
|
| 391 | + delete_post_meta($order_id, '_stripe_customer_id'); |
|
| 392 | 392 | |
| 393 | - return array( true, false, array( __( 'Stripe personal data erased.', 'woocommerce-gateway-stripe' ) ) ); |
|
| 393 | + return array(true, false, array(__('Stripe personal data erased.', 'woocommerce-gateway-stripe'))); |
|
| 394 | 394 | } |
| 395 | 395 | |
| 396 | 396 | /** |
| 397 | 397 | * Checks if create date is passed retention duration. |
| 398 | 398 | * |
| 399 | 399 | */ |
| 400 | - public function is_retention_expired( $created_date ) { |
|
| 401 | - $retention = wc_parse_relative_date_option( get_option( 'woocommerce_gateway_stripe_retention' ) ); |
|
| 400 | + public function is_retention_expired($created_date) { |
|
| 401 | + $retention = wc_parse_relative_date_option(get_option('woocommerce_gateway_stripe_retention')); |
|
| 402 | 402 | $is_expired = false; |
| 403 | - $time_span = time() - strtotime( $created_date ); |
|
| 404 | - if ( empty( $retention ) || empty( $created_date ) ) { |
|
| 403 | + $time_span = time() - strtotime($created_date); |
|
| 404 | + if (empty($retention) || empty($created_date)) { |
|
| 405 | 405 | return false; |
| 406 | 406 | } |
| 407 | - switch ( $retention['unit'] ) { |
|
| 407 | + switch ($retention['unit']) { |
|
| 408 | 408 | case 'days': |
| 409 | 409 | $retention = $retention['number'] * DAY_IN_SECONDS; |
| 410 | - if ( $time_span > $retention ) { |
|
| 410 | + if ($time_span > $retention) { |
|
| 411 | 411 | $is_expired = true; |
| 412 | 412 | } |
| 413 | 413 | break; |
| 414 | 414 | case 'weeks': |
| 415 | 415 | $retention = $retention['number'] * WEEK_IN_SECONDS; |
| 416 | - if ( $time_span > $retention ) { |
|
| 416 | + if ($time_span > $retention) { |
|
| 417 | 417 | $is_expired = true; |
| 418 | 418 | } |
| 419 | 419 | break; |
| 420 | 420 | case 'months': |
| 421 | 421 | $retention = $retention['number'] * MONTH_IN_SECONDS; |
| 422 | - if ( $time_span > $retention ) { |
|
| 422 | + if ($time_span > $retention) { |
|
| 423 | 423 | $is_expired = true; |
| 424 | 424 | } |
| 425 | 425 | break; |
| 426 | 426 | case 'years': |
| 427 | 427 | $retention = $retention['number'] * YEAR_IN_SECONDS; |
| 428 | - if ( $time_span > $retention ) { |
|
| 428 | + if ($time_span > $retention) { |
|
| 429 | 429 | $is_expired = true; |
| 430 | 430 | } |
| 431 | 431 | break; |
@@ -1096,7 +1096,7 @@ |
||
| 1096 | 1096 | * |
| 1097 | 1097 | * @since 4.2.0 |
| 1098 | 1098 | * @param WC_Order $order The order which should be checked. |
| 1099 | - * @param object $intent The intent, associated with the order. |
|
| 1099 | + * @param stdClass $intent The intent, associated with the order. |
|
| 1100 | 1100 | */ |
| 1101 | 1101 | public function failed_sca_auth( $order, $intent ) { |
| 1102 | 1102 | // If the order has already failed, do not repeat the same message. |
@@ -895,7 +895,7 @@ |
||
| 895 | 895 | } |
| 896 | 896 | |
| 897 | 897 | if ( 'requires_payment_method' === $intent->status && isset( $intent->last_payment_error ) |
| 898 | - && 'authentication_required' === $intent->last_payment_error->code ) { |
|
| 898 | + && 'authentication_required' === $intent->last_payment_error->code ) { |
|
| 899 | 899 | $level3_data = $this->get_level3_data_from_order( $order ); |
| 900 | 900 | $intent = WC_Stripe_API::request_with_level3_data( |
| 901 | 901 | array( |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if ( ! defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -85,9 +85,9 @@ discard block |
||
| 85 | 85 | public function __construct() { |
| 86 | 86 | $this->retry_interval = 1; |
| 87 | 87 | $this->id = 'stripe'; |
| 88 | - $this->method_title = __( 'Stripe', 'woocommerce-gateway-stripe' ); |
|
| 88 | + $this->method_title = __('Stripe', 'woocommerce-gateway-stripe'); |
|
| 89 | 89 | /* translators: 1) link to Stripe register page 2) link to Stripe api keys page */ |
| 90 | - $this->method_description = sprintf( __( 'Stripe works by adding payment fields on the checkout and then sending the details to Stripe for verification. <a href="%1$s" target="_blank">Sign up</a> for a Stripe account, and <a href="%2$s" target="_blank">get your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), 'https://dashboard.stripe.com/register', 'https://dashboard.stripe.com/account/apikeys' ); |
|
| 90 | + $this->method_description = sprintf(__('Stripe works by adding payment fields on the checkout and then sending the details to Stripe for verification. <a href="%1$s" target="_blank">Sign up</a> for a Stripe account, and <a href="%2$s" target="_blank">get your Stripe account keys</a>.', 'woocommerce-gateway-stripe'), 'https://dashboard.stripe.com/register', 'https://dashboard.stripe.com/account/apikeys'); |
|
| 91 | 91 | $this->has_fields = true; |
| 92 | 92 | $this->supports = array( |
| 93 | 93 | 'products', |
@@ -114,40 +114,40 @@ discard block |
||
| 114 | 114 | $this->init_settings(); |
| 115 | 115 | |
| 116 | 116 | // Get setting values. |
| 117 | - $this->title = $this->get_option( 'title' ); |
|
| 118 | - $this->description = $this->get_option( 'description' ); |
|
| 119 | - $this->enabled = $this->get_option( 'enabled' ); |
|
| 120 | - $this->testmode = 'yes' === $this->get_option( 'testmode' ); |
|
| 121 | - $this->inline_cc_form = 'yes' === $this->get_option( 'inline_cc_form' ); |
|
| 122 | - $this->capture = 'yes' === $this->get_option( 'capture', 'yes' ); |
|
| 123 | - $this->statement_descriptor = WC_Stripe_Helper::clean_statement_descriptor( $this->get_option( 'statement_descriptor' ) ); |
|
| 124 | - $this->saved_cards = 'yes' === $this->get_option( 'saved_cards' ); |
|
| 125 | - $this->secret_key = $this->testmode ? $this->get_option( 'test_secret_key' ) : $this->get_option( 'secret_key' ); |
|
| 126 | - $this->publishable_key = $this->testmode ? $this->get_option( 'test_publishable_key' ) : $this->get_option( 'publishable_key' ); |
|
| 127 | - $this->payment_request = 'yes' === $this->get_option( 'payment_request', 'yes' ); |
|
| 128 | - |
|
| 129 | - WC_Stripe_API::set_secret_key( $this->secret_key ); |
|
| 117 | + $this->title = $this->get_option('title'); |
|
| 118 | + $this->description = $this->get_option('description'); |
|
| 119 | + $this->enabled = $this->get_option('enabled'); |
|
| 120 | + $this->testmode = 'yes' === $this->get_option('testmode'); |
|
| 121 | + $this->inline_cc_form = 'yes' === $this->get_option('inline_cc_form'); |
|
| 122 | + $this->capture = 'yes' === $this->get_option('capture', 'yes'); |
|
| 123 | + $this->statement_descriptor = WC_Stripe_Helper::clean_statement_descriptor($this->get_option('statement_descriptor')); |
|
| 124 | + $this->saved_cards = 'yes' === $this->get_option('saved_cards'); |
|
| 125 | + $this->secret_key = $this->testmode ? $this->get_option('test_secret_key') : $this->get_option('secret_key'); |
|
| 126 | + $this->publishable_key = $this->testmode ? $this->get_option('test_publishable_key') : $this->get_option('publishable_key'); |
|
| 127 | + $this->payment_request = 'yes' === $this->get_option('payment_request', 'yes'); |
|
| 128 | + |
|
| 129 | + WC_Stripe_API::set_secret_key($this->secret_key); |
|
| 130 | 130 | |
| 131 | 131 | // Hooks. |
| 132 | - add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) ); |
|
| 133 | - add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) ); |
|
| 134 | - add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); |
|
| 135 | - add_action( 'woocommerce_admin_order_totals_after_total', array( $this, 'display_order_fee' ) ); |
|
| 136 | - add_action( 'woocommerce_admin_order_totals_after_total', array( $this, 'display_order_payout' ), 20 ); |
|
| 137 | - add_action( 'woocommerce_customer_save_address', array( $this, 'show_update_card_notice' ), 10, 2 ); |
|
| 138 | - add_filter( 'woocommerce_available_payment_gateways', array( $this, 'prepare_order_pay_page' ) ); |
|
| 139 | - add_action( 'woocommerce_account_view-order_endpoint', array( $this, 'check_intent_status_on_order_page' ), 1 ); |
|
| 140 | - add_filter( 'woocommerce_payment_successful_result', array( $this, 'modify_successful_payment_result' ), 99999, 2 ); |
|
| 141 | - add_action( 'set_logged_in_cookie', array( $this, 'set_cookie_on_current_request' ) ); |
|
| 142 | - add_filter( 'woocommerce_get_checkout_payment_url', array( $this, 'get_checkout_payment_url' ), 10, 2 ); |
|
| 132 | + add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); |
|
| 133 | + add_action('admin_enqueue_scripts', array($this, 'admin_scripts')); |
|
| 134 | + add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options')); |
|
| 135 | + add_action('woocommerce_admin_order_totals_after_total', array($this, 'display_order_fee')); |
|
| 136 | + add_action('woocommerce_admin_order_totals_after_total', array($this, 'display_order_payout'), 20); |
|
| 137 | + add_action('woocommerce_customer_save_address', array($this, 'show_update_card_notice'), 10, 2); |
|
| 138 | + add_filter('woocommerce_available_payment_gateways', array($this, 'prepare_order_pay_page')); |
|
| 139 | + add_action('woocommerce_account_view-order_endpoint', array($this, 'check_intent_status_on_order_page'), 1); |
|
| 140 | + add_filter('woocommerce_payment_successful_result', array($this, 'modify_successful_payment_result'), 99999, 2); |
|
| 141 | + add_action('set_logged_in_cookie', array($this, 'set_cookie_on_current_request')); |
|
| 142 | + add_filter('woocommerce_get_checkout_payment_url', array($this, 'get_checkout_payment_url'), 10, 2); |
|
| 143 | 143 | |
| 144 | 144 | // Note: display error is in the parent class. |
| 145 | - add_action( 'admin_notices', array( $this, 'display_errors' ), 9999 ); |
|
| 145 | + add_action('admin_notices', array($this, 'display_errors'), 9999); |
|
| 146 | 146 | |
| 147 | - if ( WC_Stripe_Helper::is_pre_orders_exists() ) { |
|
| 147 | + if (WC_Stripe_Helper::is_pre_orders_exists()) { |
|
| 148 | 148 | $this->pre_orders = new WC_Stripe_Pre_Orders_Compat(); |
| 149 | 149 | |
| 150 | - add_action( 'wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array( $this->pre_orders, 'process_pre_order_release_payment' ) ); |
|
| 150 | + add_action('wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array($this->pre_orders, 'process_pre_order_release_payment')); |
|
| 151 | 151 | } |
| 152 | 152 | } |
| 153 | 153 | |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | * @since 4.0.2 |
| 158 | 158 | */ |
| 159 | 159 | public function is_available() { |
| 160 | - if ( is_add_payment_method_page() && ! $this->saved_cards ) { |
|
| 160 | + if (is_add_payment_method_page() && ! $this->saved_cards) { |
|
| 161 | 161 | return false; |
| 162 | 162 | } |
| 163 | 163 | |
@@ -171,13 +171,13 @@ discard block |
||
| 171 | 171 | * @param int $user_id The ID of the current user. |
| 172 | 172 | * @param string $load_address The address to load. |
| 173 | 173 | */ |
| 174 | - public function show_update_card_notice( $user_id, $load_address ) { |
|
| 175 | - if ( ! $this->saved_cards || ! WC_Stripe_Payment_Tokens::customer_has_saved_methods( $user_id ) || 'billing' !== $load_address ) { |
|
| 174 | + public function show_update_card_notice($user_id, $load_address) { |
|
| 175 | + if ( ! $this->saved_cards || ! WC_Stripe_Payment_Tokens::customer_has_saved_methods($user_id) || 'billing' !== $load_address) { |
|
| 176 | 176 | return; |
| 177 | 177 | } |
| 178 | 178 | |
| 179 | 179 | /* translators: 1) Opening anchor tag 2) closing anchor tag */ |
| 180 | - wc_add_notice( sprintf( __( 'If your billing address has been changed for saved payment methods, be sure to remove any %1$ssaved payment methods%2$s on file and re-add them.', 'woocommerce-gateway-stripe' ), '<a href="' . esc_url( wc_get_endpoint_url( 'payment-methods' ) ) . '" class="wc-stripe-update-card-notice" style="text-decoration:underline;">', '</a>' ), 'notice' ); |
|
| 180 | + wc_add_notice(sprintf(__('If your billing address has been changed for saved payment methods, be sure to remove any %1$ssaved payment methods%2$s on file and re-add them.', 'woocommerce-gateway-stripe'), '<a href="' . esc_url(wc_get_endpoint_url('payment-methods')) . '" class="wc-stripe-update-card-notice" style="text-decoration:underline;">', '</a>'), 'notice'); |
|
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | /** |
@@ -192,24 +192,24 @@ discard block |
||
| 192 | 192 | |
| 193 | 193 | $icons_str = ''; |
| 194 | 194 | |
| 195 | - $icons_str .= isset( $icons['visa'] ) ? $icons['visa'] : ''; |
|
| 196 | - $icons_str .= isset( $icons['amex'] ) ? $icons['amex'] : ''; |
|
| 197 | - $icons_str .= isset( $icons['mastercard'] ) ? $icons['mastercard'] : ''; |
|
| 195 | + $icons_str .= isset($icons['visa']) ? $icons['visa'] : ''; |
|
| 196 | + $icons_str .= isset($icons['amex']) ? $icons['amex'] : ''; |
|
| 197 | + $icons_str .= isset($icons['mastercard']) ? $icons['mastercard'] : ''; |
|
| 198 | 198 | |
| 199 | - if ( 'USD' === get_woocommerce_currency() ) { |
|
| 200 | - $icons_str .= isset( $icons['discover'] ) ? $icons['discover'] : ''; |
|
| 201 | - $icons_str .= isset( $icons['jcb'] ) ? $icons['jcb'] : ''; |
|
| 202 | - $icons_str .= isset( $icons['diners'] ) ? $icons['diners'] : ''; |
|
| 199 | + if ('USD' === get_woocommerce_currency()) { |
|
| 200 | + $icons_str .= isset($icons['discover']) ? $icons['discover'] : ''; |
|
| 201 | + $icons_str .= isset($icons['jcb']) ? $icons['jcb'] : ''; |
|
| 202 | + $icons_str .= isset($icons['diners']) ? $icons['diners'] : ''; |
|
| 203 | 203 | } |
| 204 | 204 | |
| 205 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
| 205 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
| 206 | 206 | } |
| 207 | 207 | |
| 208 | 208 | /** |
| 209 | 209 | * Initialise Gateway Settings Form Fields |
| 210 | 210 | */ |
| 211 | 211 | public function init_form_fields() { |
| 212 | - $this->form_fields = require( dirname( __FILE__ ) . '/admin/stripe-settings.php' ); |
|
| 212 | + $this->form_fields = require(dirname(__FILE__) . '/admin/stripe-settings.php'); |
|
| 213 | 213 | } |
| 214 | 214 | |
| 215 | 215 | /** |
@@ -218,27 +218,27 @@ discard block |
||
| 218 | 218 | public function payment_fields() { |
| 219 | 219 | global $wp; |
| 220 | 220 | $user = wp_get_current_user(); |
| 221 | - $display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards; |
|
| 221 | + $display_tokenization = $this->supports('tokenization') && is_checkout() && $this->saved_cards; |
|
| 222 | 222 | $total = WC()->cart->total; |
| 223 | 223 | $user_email = ''; |
| 224 | 224 | $description = $this->get_description(); |
| 225 | - $description = ! empty( $description ) ? $description : ''; |
|
| 225 | + $description = ! empty($description) ? $description : ''; |
|
| 226 | 226 | $firstname = ''; |
| 227 | 227 | $lastname = ''; |
| 228 | 228 | |
| 229 | 229 | // If paying from order, we need to get total from order not cart. |
| 230 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { // wpcs: csrf ok. |
|
| 231 | - $order = wc_get_order( wc_clean( $wp->query_vars['order-pay'] ) ); // wpcs: csrf ok, sanitization ok. |
|
| 230 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { // wpcs: csrf ok. |
|
| 231 | + $order = wc_get_order(wc_clean($wp->query_vars['order-pay'])); // wpcs: csrf ok, sanitization ok. |
|
| 232 | 232 | $total = $order->get_total(); |
| 233 | - $user_email = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_email : $order->get_billing_email(); |
|
| 233 | + $user_email = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_email : $order->get_billing_email(); |
|
| 234 | 234 | } else { |
| 235 | - if ( $user->ID ) { |
|
| 236 | - $user_email = get_user_meta( $user->ID, 'billing_email', true ); |
|
| 235 | + if ($user->ID) { |
|
| 236 | + $user_email = get_user_meta($user->ID, 'billing_email', true); |
|
| 237 | 237 | $user_email = $user_email ? $user_email : $user->user_email; |
| 238 | 238 | } |
| 239 | 239 | } |
| 240 | 240 | |
| 241 | - if ( is_add_payment_method_page() ) { |
|
| 241 | + if (is_add_payment_method_page()) { |
|
| 242 | 242 | $firstname = $user->user_firstname; |
| 243 | 243 | $lastname = $user->user_lastname; |
| 244 | 244 | } |
@@ -247,33 +247,33 @@ discard block |
||
| 247 | 247 | |
| 248 | 248 | echo '<div |
| 249 | 249 | id="stripe-payment-data" |
| 250 | - data-email="' . esc_attr( $user_email ) . '" |
|
| 251 | - data-full-name="' . esc_attr( $firstname . ' ' . $lastname ) . '" |
|
| 252 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '" |
|
| 250 | + data-email="' . esc_attr($user_email) . '" |
|
| 251 | + data-full-name="' . esc_attr($firstname . ' ' . $lastname) . '" |
|
| 252 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '" |
|
| 253 | 253 | >'; |
| 254 | 254 | |
| 255 | - if ( $this->testmode ) { |
|
| 255 | + if ($this->testmode) { |
|
| 256 | 256 | /* translators: link to Stripe testing page */ |
| 257 | - $description .= ' ' . sprintf( __( 'TEST MODE ENABLED. In test mode, you can use the card number 4242424242424242 with any CVC and a valid expiration date or check the <a href="%s" target="_blank">Testing Stripe documentation</a> for more card numbers.', 'woocommerce-gateway-stripe' ), 'https://stripe.com/docs/testing' ); |
|
| 257 | + $description .= ' ' . sprintf(__('TEST MODE ENABLED. In test mode, you can use the card number 4242424242424242 with any CVC and a valid expiration date or check the <a href="%s" target="_blank">Testing Stripe documentation</a> for more card numbers.', 'woocommerce-gateway-stripe'), 'https://stripe.com/docs/testing'); |
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | - $description = trim( $description ); |
|
| 260 | + $description = trim($description); |
|
| 261 | 261 | |
| 262 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); // wpcs: xss ok. |
|
| 262 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); // wpcs: xss ok. |
|
| 263 | 263 | |
| 264 | - if ( $display_tokenization ) { |
|
| 264 | + if ($display_tokenization) { |
|
| 265 | 265 | $this->tokenization_script(); |
| 266 | 266 | $this->saved_payment_methods(); |
| 267 | 267 | } |
| 268 | 268 | |
| 269 | 269 | $this->elements_form(); |
| 270 | 270 | |
| 271 | - if ( apply_filters( 'wc_stripe_display_save_payment_method_checkbox', $display_tokenization ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) ) { // wpcs: csrf ok. |
|
| 271 | + if (apply_filters('wc_stripe_display_save_payment_method_checkbox', $display_tokenization) && ! is_add_payment_method_page() && ! isset($_GET['change_payment_method'])) { // wpcs: csrf ok. |
|
| 272 | 272 | |
| 273 | 273 | $this->save_payment_method_checkbox(); |
| 274 | 274 | } |
| 275 | 275 | |
| 276 | - do_action( 'wc_stripe_cards_payment_fields', $this->id ); |
|
| 276 | + do_action('wc_stripe_cards_payment_fields', $this->id); |
|
| 277 | 277 | |
| 278 | 278 | echo '</div>'; |
| 279 | 279 | |
@@ -288,12 +288,12 @@ discard block |
||
| 288 | 288 | */ |
| 289 | 289 | public function elements_form() { |
| 290 | 290 | ?> |
| 291 | - <fieldset id="wc-<?php echo esc_attr( $this->id ); ?>-cc-form" class="wc-credit-card-form wc-payment-form" style="background:transparent;"> |
|
| 292 | - <?php do_action( 'woocommerce_credit_card_form_start', $this->id ); ?> |
|
| 291 | + <fieldset id="wc-<?php echo esc_attr($this->id); ?>-cc-form" class="wc-credit-card-form wc-payment-form" style="background:transparent;"> |
|
| 292 | + <?php do_action('woocommerce_credit_card_form_start', $this->id); ?> |
|
| 293 | 293 | |
| 294 | - <?php if ( $this->inline_cc_form ) { ?> |
|
| 294 | + <?php if ($this->inline_cc_form) { ?> |
|
| 295 | 295 | <label for="card-element"> |
| 296 | - <?php esc_html_e( 'Credit or debit card', 'woocommerce-gateway-stripe' ); ?> |
|
| 296 | + <?php esc_html_e('Credit or debit card', 'woocommerce-gateway-stripe'); ?> |
|
| 297 | 297 | </label> |
| 298 | 298 | |
| 299 | 299 | <div id="stripe-card-element" class="wc-stripe-elements-field"> |
@@ -301,7 +301,7 @@ discard block |
||
| 301 | 301 | </div> |
| 302 | 302 | <?php } else { ?> |
| 303 | 303 | <div class="form-row form-row-wide"> |
| 304 | - <label for="stripe-card-element"><?php esc_html_e( 'Card Number', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label> |
|
| 304 | + <label for="stripe-card-element"><?php esc_html_e('Card Number', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label> |
|
| 305 | 305 | <div class="stripe-card-group"> |
| 306 | 306 | <div id="stripe-card-element" class="wc-stripe-elements-field"> |
| 307 | 307 | <!-- a Stripe Element will be inserted here. --> |
@@ -312,7 +312,7 @@ discard block |
||
| 312 | 312 | </div> |
| 313 | 313 | |
| 314 | 314 | <div class="form-row form-row-first"> |
| 315 | - <label for="stripe-exp-element"><?php esc_html_e( 'Expiry Date', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label> |
|
| 315 | + <label for="stripe-exp-element"><?php esc_html_e('Expiry Date', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label> |
|
| 316 | 316 | |
| 317 | 317 | <div id="stripe-exp-element" class="wc-stripe-elements-field"> |
| 318 | 318 | <!-- a Stripe Element will be inserted here. --> |
@@ -320,7 +320,7 @@ discard block |
||
| 320 | 320 | </div> |
| 321 | 321 | |
| 322 | 322 | <div class="form-row form-row-last"> |
| 323 | - <label for="stripe-cvc-element"><?php esc_html_e( 'Card Code (CVC)', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label> |
|
| 323 | + <label for="stripe-cvc-element"><?php esc_html_e('Card Code (CVC)', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label> |
|
| 324 | 324 | <div id="stripe-cvc-element" class="wc-stripe-elements-field"> |
| 325 | 325 | <!-- a Stripe Element will be inserted here. --> |
| 326 | 326 | </div> |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | <!-- Used to display form errors --> |
| 332 | 332 | <div class="stripe-source-errors" role="alert"></div> |
| 333 | 333 | <br /> |
| 334 | - <?php do_action( 'woocommerce_credit_card_form_end', $this->id ); ?> |
|
| 334 | + <?php do_action('woocommerce_credit_card_form_end', $this->id); ?> |
|
| 335 | 335 | <div class="clear"></div> |
| 336 | 336 | </fieldset> |
| 337 | 337 | <?php |
@@ -344,13 +344,13 @@ discard block |
||
| 344 | 344 | * @version 3.1.0 |
| 345 | 345 | */ |
| 346 | 346 | public function admin_scripts() { |
| 347 | - if ( 'woocommerce_page_wc-settings' !== get_current_screen()->id ) { |
|
| 347 | + if ('woocommerce_page_wc-settings' !== get_current_screen()->id) { |
|
| 348 | 348 | return; |
| 349 | 349 | } |
| 350 | 350 | |
| 351 | - $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; |
|
| 351 | + $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min'; |
|
| 352 | 352 | |
| 353 | - wp_enqueue_script( 'woocommerce_stripe_admin', plugins_url( 'assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array(), WC_STRIPE_VERSION, true ); |
|
| 353 | + wp_enqueue_script('woocommerce_stripe_admin', plugins_url('assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array(), WC_STRIPE_VERSION, true); |
|
| 354 | 354 | } |
| 355 | 355 | |
| 356 | 356 | /** |
@@ -367,102 +367,102 @@ discard block |
||
| 367 | 367 | ! is_product() |
| 368 | 368 | && ! is_cart() |
| 369 | 369 | && ! is_checkout() |
| 370 | - && ! isset( $_GET['pay_for_order'] ) // wpcs: csrf ok. |
|
| 370 | + && ! isset($_GET['pay_for_order']) // wpcs: csrf ok. |
|
| 371 | 371 | && ! is_add_payment_method_page() |
| 372 | - && ! isset( $_GET['change_payment_method'] ) // wpcs: csrf ok. |
|
| 373 | - && ! ( ! empty( get_query_var( 'view-subscription' ) ) && is_callable( 'WCS_Early_Renewal_Manager::is_early_renewal_via_modal_enabled' ) && WCS_Early_Renewal_Manager::is_early_renewal_via_modal_enabled() ) |
|
| 374 | - || ( is_order_received_page() ) |
|
| 372 | + && ! isset($_GET['change_payment_method']) // wpcs: csrf ok. |
|
| 373 | + && ! ( ! empty(get_query_var('view-subscription')) && is_callable('WCS_Early_Renewal_Manager::is_early_renewal_via_modal_enabled') && WCS_Early_Renewal_Manager::is_early_renewal_via_modal_enabled()) |
|
| 374 | + || (is_order_received_page()) |
|
| 375 | 375 | ) { |
| 376 | 376 | return; |
| 377 | 377 | } |
| 378 | 378 | |
| 379 | 379 | // If Stripe is not enabled bail. |
| 380 | - if ( 'no' === $this->enabled ) { |
|
| 380 | + if ('no' === $this->enabled) { |
|
| 381 | 381 | return; |
| 382 | 382 | } |
| 383 | 383 | |
| 384 | 384 | // If keys are not set bail. |
| 385 | - if ( ! $this->are_keys_set() ) { |
|
| 386 | - WC_Stripe_Logger::log( 'Keys are not set correctly.' ); |
|
| 385 | + if ( ! $this->are_keys_set()) { |
|
| 386 | + WC_Stripe_Logger::log('Keys are not set correctly.'); |
|
| 387 | 387 | return; |
| 388 | 388 | } |
| 389 | 389 | |
| 390 | 390 | // If no SSL bail. |
| 391 | - if ( ! $this->testmode && ! is_ssl() ) { |
|
| 392 | - WC_Stripe_Logger::log( 'Stripe live mode requires SSL.' ); |
|
| 391 | + if ( ! $this->testmode && ! is_ssl()) { |
|
| 392 | + WC_Stripe_Logger::log('Stripe live mode requires SSL.'); |
|
| 393 | 393 | return; |
| 394 | 394 | } |
| 395 | 395 | |
| 396 | 396 | $current_theme = wp_get_theme(); |
| 397 | 397 | |
| 398 | - $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; |
|
| 398 | + $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min'; |
|
| 399 | 399 | |
| 400 | - wp_register_style( 'stripe_styles', plugins_url( 'assets/css/stripe-styles.css', WC_STRIPE_MAIN_FILE ), array(), WC_STRIPE_VERSION ); |
|
| 401 | - wp_enqueue_style( 'stripe_styles' ); |
|
| 400 | + wp_register_style('stripe_styles', plugins_url('assets/css/stripe-styles.css', WC_STRIPE_MAIN_FILE), array(), WC_STRIPE_VERSION); |
|
| 401 | + wp_enqueue_style('stripe_styles'); |
|
| 402 | 402 | |
| 403 | - wp_register_script( 'stripe', 'https://js.stripe.com/v3/', '', '3.0', true ); |
|
| 404 | - wp_register_script( 'woocommerce_stripe', plugins_url( 'assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array( 'jquery-payment', 'stripe' ), WC_STRIPE_VERSION, true ); |
|
| 403 | + wp_register_script('stripe', 'https://js.stripe.com/v3/', '', '3.0', true); |
|
| 404 | + wp_register_script('woocommerce_stripe', plugins_url('assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array('jquery-payment', 'stripe'), WC_STRIPE_VERSION, true); |
|
| 405 | 405 | |
| 406 | 406 | $stripe_params = array( |
| 407 | 407 | 'key' => $this->publishable_key, |
| 408 | - 'i18n_terms' => __( 'Please accept the terms and conditions first', 'woocommerce-gateway-stripe' ), |
|
| 409 | - 'i18n_required_fields' => __( 'Please fill in required checkout fields first', 'woocommerce-gateway-stripe' ), |
|
| 408 | + 'i18n_terms' => __('Please accept the terms and conditions first', 'woocommerce-gateway-stripe'), |
|
| 409 | + 'i18n_required_fields' => __('Please fill in required checkout fields first', 'woocommerce-gateway-stripe'), |
|
| 410 | 410 | ); |
| 411 | 411 | |
| 412 | 412 | // If we're on the pay page we need to pass stripe.js the address of the order. |
| 413 | - if ( isset( $_GET['pay_for_order'] ) && 'true' === $_GET['pay_for_order'] ) { // wpcs: csrf ok. |
|
| 414 | - $order_id = wc_clean( $wp->query_vars['order-pay'] ); // wpcs: csrf ok, sanitization ok, xss ok. |
|
| 415 | - $order = wc_get_order( $order_id ); |
|
| 416 | - |
|
| 417 | - if ( is_a( $order, 'WC_Order' ) ) { |
|
| 418 | - $stripe_params['billing_first_name'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_first_name : $order->get_billing_first_name(); |
|
| 419 | - $stripe_params['billing_last_name'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_last_name : $order->get_billing_last_name(); |
|
| 420 | - $stripe_params['billing_address_1'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_address_1 : $order->get_billing_address_1(); |
|
| 421 | - $stripe_params['billing_address_2'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_address_2 : $order->get_billing_address_2(); |
|
| 422 | - $stripe_params['billing_state'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_state : $order->get_billing_state(); |
|
| 423 | - $stripe_params['billing_city'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_city : $order->get_billing_city(); |
|
| 424 | - $stripe_params['billing_postcode'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_postcode : $order->get_billing_postcode(); |
|
| 425 | - $stripe_params['billing_country'] = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_country : $order->get_billing_country(); |
|
| 413 | + if (isset($_GET['pay_for_order']) && 'true' === $_GET['pay_for_order']) { // wpcs: csrf ok. |
|
| 414 | + $order_id = wc_clean($wp->query_vars['order-pay']); // wpcs: csrf ok, sanitization ok, xss ok. |
|
| 415 | + $order = wc_get_order($order_id); |
|
| 416 | + |
|
| 417 | + if (is_a($order, 'WC_Order')) { |
|
| 418 | + $stripe_params['billing_first_name'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_first_name : $order->get_billing_first_name(); |
|
| 419 | + $stripe_params['billing_last_name'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_last_name : $order->get_billing_last_name(); |
|
| 420 | + $stripe_params['billing_address_1'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_address_1 : $order->get_billing_address_1(); |
|
| 421 | + $stripe_params['billing_address_2'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_address_2 : $order->get_billing_address_2(); |
|
| 422 | + $stripe_params['billing_state'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_state : $order->get_billing_state(); |
|
| 423 | + $stripe_params['billing_city'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_city : $order->get_billing_city(); |
|
| 424 | + $stripe_params['billing_postcode'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_postcode : $order->get_billing_postcode(); |
|
| 425 | + $stripe_params['billing_country'] = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_country : $order->get_billing_country(); |
|
| 426 | 426 | } |
| 427 | 427 | } |
| 428 | 428 | |
| 429 | 429 | $sepa_elements_options = apply_filters( |
| 430 | 430 | 'wc_stripe_sepa_elements_options', |
| 431 | 431 | array( |
| 432 | - 'supportedCountries' => array( 'SEPA' ), |
|
| 432 | + 'supportedCountries' => array('SEPA'), |
|
| 433 | 433 | 'placeholderCountry' => WC()->countries->get_base_country(), |
| 434 | - 'style' => array( 'base' => array( 'fontSize' => '15px' ) ), |
|
| 434 | + 'style' => array('base' => array('fontSize' => '15px')), |
|
| 435 | 435 | ) |
| 436 | 436 | ); |
| 437 | 437 | |
| 438 | - $stripe_params['no_prepaid_card_msg'] = __( 'Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charged. Please try with alternative payment method.', 'woocommerce-gateway-stripe' ); |
|
| 439 | - $stripe_params['no_sepa_owner_msg'] = __( 'Please enter your IBAN account name.', 'woocommerce-gateway-stripe' ); |
|
| 440 | - $stripe_params['no_sepa_iban_msg'] = __( 'Please enter your IBAN account number.', 'woocommerce-gateway-stripe' ); |
|
| 441 | - $stripe_params['payment_intent_error'] = __( 'We couldn\'t initiate the payment. Please try again.', 'woocommerce-gateway-stripe' ); |
|
| 442 | - $stripe_params['sepa_mandate_notification'] = apply_filters( 'wc_stripe_sepa_mandate_notification', 'email' ); |
|
| 443 | - $stripe_params['allow_prepaid_card'] = apply_filters( 'wc_stripe_allow_prepaid_card', true ) ? 'yes' : 'no'; |
|
| 438 | + $stripe_params['no_prepaid_card_msg'] = __('Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charged. Please try with alternative payment method.', 'woocommerce-gateway-stripe'); |
|
| 439 | + $stripe_params['no_sepa_owner_msg'] = __('Please enter your IBAN account name.', 'woocommerce-gateway-stripe'); |
|
| 440 | + $stripe_params['no_sepa_iban_msg'] = __('Please enter your IBAN account number.', 'woocommerce-gateway-stripe'); |
|
| 441 | + $stripe_params['payment_intent_error'] = __('We couldn\'t initiate the payment. Please try again.', 'woocommerce-gateway-stripe'); |
|
| 442 | + $stripe_params['sepa_mandate_notification'] = apply_filters('wc_stripe_sepa_mandate_notification', 'email'); |
|
| 443 | + $stripe_params['allow_prepaid_card'] = apply_filters('wc_stripe_allow_prepaid_card', true) ? 'yes' : 'no'; |
|
| 444 | 444 | $stripe_params['inline_cc_form'] = $this->inline_cc_form ? 'yes' : 'no'; |
| 445 | - $stripe_params['is_checkout'] = ( is_checkout() && empty( $_GET['pay_for_order'] ) ) ? 'yes' : 'no'; // wpcs: csrf ok. |
|
| 445 | + $stripe_params['is_checkout'] = (is_checkout() && empty($_GET['pay_for_order'])) ? 'yes' : 'no'; // wpcs: csrf ok. |
|
| 446 | 446 | $stripe_params['return_url'] = $this->get_stripe_return_url(); |
| 447 | - $stripe_params['ajaxurl'] = WC_AJAX::get_endpoint( '%%endpoint%%' ); |
|
| 448 | - $stripe_params['stripe_nonce'] = wp_create_nonce( '_wc_stripe_nonce' ); |
|
| 447 | + $stripe_params['ajaxurl'] = WC_AJAX::get_endpoint('%%endpoint%%'); |
|
| 448 | + $stripe_params['stripe_nonce'] = wp_create_nonce('_wc_stripe_nonce'); |
|
| 449 | 449 | $stripe_params['statement_descriptor'] = $this->statement_descriptor; |
| 450 | - $stripe_params['elements_options'] = apply_filters( 'wc_stripe_elements_options', array() ); |
|
| 450 | + $stripe_params['elements_options'] = apply_filters('wc_stripe_elements_options', array()); |
|
| 451 | 451 | $stripe_params['sepa_elements_options'] = $sepa_elements_options; |
| 452 | - $stripe_params['invalid_owner_name'] = __( 'Billing First Name and Last Name are required.', 'woocommerce-gateway-stripe' ); |
|
| 453 | - $stripe_params['is_change_payment_page'] = isset( $_GET['change_payment_method'] ) ? 'yes' : 'no'; // wpcs: csrf ok. |
|
| 454 | - $stripe_params['is_add_payment_page'] = is_wc_endpoint_url( 'add-payment-method' ) ? 'yes' : 'no'; |
|
| 455 | - $stripe_params['is_pay_for_order_page'] = is_wc_endpoint_url( 'order-pay' ) ? 'yes' : 'no'; |
|
| 456 | - $stripe_params['elements_styling'] = apply_filters( 'wc_stripe_elements_styling', false ); |
|
| 457 | - $stripe_params['elements_classes'] = apply_filters( 'wc_stripe_elements_classes', false ); |
|
| 452 | + $stripe_params['invalid_owner_name'] = __('Billing First Name and Last Name are required.', 'woocommerce-gateway-stripe'); |
|
| 453 | + $stripe_params['is_change_payment_page'] = isset($_GET['change_payment_method']) ? 'yes' : 'no'; // wpcs: csrf ok. |
|
| 454 | + $stripe_params['is_add_payment_page'] = is_wc_endpoint_url('add-payment-method') ? 'yes' : 'no'; |
|
| 455 | + $stripe_params['is_pay_for_order_page'] = is_wc_endpoint_url('order-pay') ? 'yes' : 'no'; |
|
| 456 | + $stripe_params['elements_styling'] = apply_filters('wc_stripe_elements_styling', false); |
|
| 457 | + $stripe_params['elements_classes'] = apply_filters('wc_stripe_elements_classes', false); |
|
| 458 | 458 | |
| 459 | 459 | // Merge localized messages to be use in JS. |
| 460 | - $stripe_params = array_merge( $stripe_params, WC_Stripe_Helper::get_localized_messages() ); |
|
| 460 | + $stripe_params = array_merge($stripe_params, WC_Stripe_Helper::get_localized_messages()); |
|
| 461 | 461 | |
| 462 | - wp_localize_script( 'woocommerce_stripe', 'wc_stripe_params', apply_filters( 'wc_stripe_params', $stripe_params ) ); |
|
| 462 | + wp_localize_script('woocommerce_stripe', 'wc_stripe_params', apply_filters('wc_stripe_params', $stripe_params)); |
|
| 463 | 463 | |
| 464 | 464 | $this->tokenization_script(); |
| 465 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
| 465 | + wp_enqueue_script('woocommerce_stripe'); |
|
| 466 | 466 | } |
| 467 | 467 | |
| 468 | 468 | /** |
@@ -473,14 +473,14 @@ discard block |
||
| 473 | 473 | * @param object $prepared_source The object with source details. |
| 474 | 474 | * @throws WC_Stripe_Exception An exception if the card is prepaid, but prepaid cards are not allowed. |
| 475 | 475 | */ |
| 476 | - public function maybe_disallow_prepaid_card( $prepared_source ) { |
|
| 476 | + public function maybe_disallow_prepaid_card($prepared_source) { |
|
| 477 | 477 | // Check if we don't allow prepaid credit cards. |
| 478 | - if ( apply_filters( 'wc_stripe_allow_prepaid_card', true ) || ! $this->is_prepaid_card( $prepared_source->source_object ) ) { |
|
| 478 | + if (apply_filters('wc_stripe_allow_prepaid_card', true) || ! $this->is_prepaid_card($prepared_source->source_object)) { |
|
| 479 | 479 | return; |
| 480 | 480 | } |
| 481 | 481 | |
| 482 | - $localized_message = __( 'Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charged. Please try with alternative payment method.', 'woocommerce-gateway-stripe' ); |
|
| 483 | - throw new WC_Stripe_Exception( print_r( $prepared_source->source_object, true ), $localized_message ); |
|
| 482 | + $localized_message = __('Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charged. Please try with alternative payment method.', 'woocommerce-gateway-stripe'); |
|
| 483 | + throw new WC_Stripe_Exception(print_r($prepared_source->source_object, true), $localized_message); |
|
| 484 | 484 | } |
| 485 | 485 | |
| 486 | 486 | /** |
@@ -490,10 +490,10 @@ discard block |
||
| 490 | 490 | * @param object $prepared_source The source that should be verified. |
| 491 | 491 | * @throws WC_Stripe_Exception An exception if the source ID is missing. |
| 492 | 492 | */ |
| 493 | - public function check_source( $prepared_source ) { |
|
| 494 | - if ( empty( $prepared_source->source ) ) { |
|
| 495 | - $localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' ); |
|
| 496 | - throw new WC_Stripe_Exception( print_r( $prepared_source, true ), $localized_message ); |
|
| 493 | + public function check_source($prepared_source) { |
|
| 494 | + if (empty($prepared_source->source)) { |
|
| 495 | + $localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe'); |
|
| 496 | + throw new WC_Stripe_Exception(print_r($prepared_source, true), $localized_message); |
|
| 497 | 497 | } |
| 498 | 498 | } |
| 499 | 499 | |
@@ -505,17 +505,17 @@ discard block |
||
| 505 | 505 | * @param WC_Order $order The order those payment is being processed. |
| 506 | 506 | * @return bool A flag that indicates that the customer does not exist and should be removed. |
| 507 | 507 | */ |
| 508 | - public function maybe_remove_non_existent_customer( $error, $order ) { |
|
| 509 | - if ( ! $this->is_no_such_customer_error( $error ) ) { |
|
| 508 | + public function maybe_remove_non_existent_customer($error, $order) { |
|
| 509 | + if ( ! $this->is_no_such_customer_error($error)) { |
|
| 510 | 510 | return false; |
| 511 | 511 | } |
| 512 | 512 | |
| 513 | - if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
| 514 | - delete_user_option( $order->customer_user, '_stripe_customer_id' ); |
|
| 515 | - delete_post_meta( $order->get_id(), '_stripe_customer_id' ); |
|
| 513 | + if (WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
| 514 | + delete_user_option($order->customer_user, '_stripe_customer_id'); |
|
| 515 | + delete_post_meta($order->get_id(), '_stripe_customer_id'); |
|
| 516 | 516 | } else { |
| 517 | - delete_user_option( $order->get_customer_id(), '_stripe_customer_id' ); |
|
| 518 | - $order->delete_meta_data( '_stripe_customer_id' ); |
|
| 517 | + delete_user_option($order->get_customer_id(), '_stripe_customer_id'); |
|
| 518 | + $order->delete_meta_data('_stripe_customer_id'); |
|
| 519 | 519 | $order->save(); |
| 520 | 520 | } |
| 521 | 521 | |
@@ -531,15 +531,15 @@ discard block |
||
| 531 | 531 | * @param boolean $force_save_source Whether the payment source must be saved, like when dealing with a Subscription setup. |
| 532 | 532 | * @return array Redirection data for `process_payment`. |
| 533 | 533 | */ |
| 534 | - public function complete_free_order( $order, $prepared_source, $force_save_source ) { |
|
| 535 | - if ( $force_save_source ) { |
|
| 536 | - $intent_secret = $this->setup_intent( $order, $prepared_source ); |
|
| 534 | + public function complete_free_order($order, $prepared_source, $force_save_source) { |
|
| 535 | + if ($force_save_source) { |
|
| 536 | + $intent_secret = $this->setup_intent($order, $prepared_source); |
|
| 537 | 537 | |
| 538 | - if ( ! empty( $intent_secret ) ) { |
|
| 538 | + if ( ! empty($intent_secret)) { |
|
| 539 | 539 | // `get_return_url()` must be called immediately before returning a value. |
| 540 | 540 | return array( |
| 541 | 541 | 'result' => 'success', |
| 542 | - 'redirect' => $this->get_return_url( $order ), |
|
| 542 | + 'redirect' => $this->get_return_url($order), |
|
| 543 | 543 | 'setup_intent_secret' => $intent_secret, |
| 544 | 544 | ); |
| 545 | 545 | } |
@@ -553,7 +553,7 @@ discard block |
||
| 553 | 553 | // Return thank you page redirect. |
| 554 | 554 | return array( |
| 555 | 555 | 'result' => 'success', |
| 556 | - 'redirect' => $this->get_return_url( $order ), |
|
| 556 | + 'redirect' => $this->get_return_url($order), |
|
| 557 | 557 | ); |
| 558 | 558 | } |
| 559 | 559 | |
@@ -571,81 +571,81 @@ discard block |
||
| 571 | 571 | * @throws Exception If payment will not be accepted. |
| 572 | 572 | * @return array|void |
| 573 | 573 | */ |
| 574 | - public function process_payment( $order_id, $retry = true, $force_save_source = false, $previous_error = false, $use_order_source = false ) { |
|
| 574 | + public function process_payment($order_id, $retry = true, $force_save_source = false, $previous_error = false, $use_order_source = false) { |
|
| 575 | 575 | try { |
| 576 | - $order = wc_get_order( $order_id ); |
|
| 576 | + $order = wc_get_order($order_id); |
|
| 577 | 577 | |
| 578 | 578 | // ToDo: `process_pre_order` saves the source to the order for a later payment. |
| 579 | 579 | // This might not work well with PaymentIntents. |
| 580 | - if ( $this->maybe_process_pre_orders( $order_id ) ) { |
|
| 581 | - return $this->pre_orders->process_pre_order( $order_id ); |
|
| 580 | + if ($this->maybe_process_pre_orders($order_id)) { |
|
| 581 | + return $this->pre_orders->process_pre_order($order_id); |
|
| 582 | 582 | } |
| 583 | 583 | |
| 584 | 584 | // Check whether there is an existing intent. |
| 585 | - $intent = $this->get_intent_from_order( $order ); |
|
| 586 | - if ( isset( $intent->object ) && 'setup_intent' === $intent->object ) { |
|
| 585 | + $intent = $this->get_intent_from_order($order); |
|
| 586 | + if (isset($intent->object) && 'setup_intent' === $intent->object) { |
|
| 587 | 587 | $intent = false; // This function can only deal with *payment* intents |
| 588 | 588 | } |
| 589 | 589 | |
| 590 | 590 | $stripe_customer_id = null; |
| 591 | - if ( $intent && ! empty( $intent->customer ) ) { |
|
| 591 | + if ($intent && ! empty($intent->customer)) { |
|
| 592 | 592 | $stripe_customer_id = $intent->customer; |
| 593 | 593 | } |
| 594 | 594 | |
| 595 | 595 | // For some payments the source should already be present in the order. |
| 596 | - if ( $use_order_source ) { |
|
| 597 | - $prepared_source = $this->prepare_order_source( $order ); |
|
| 596 | + if ($use_order_source) { |
|
| 597 | + $prepared_source = $this->prepare_order_source($order); |
|
| 598 | 598 | } else { |
| 599 | - $prepared_source = $this->prepare_source( get_current_user_id(), $force_save_source, $stripe_customer_id ); |
|
| 599 | + $prepared_source = $this->prepare_source(get_current_user_id(), $force_save_source, $stripe_customer_id); |
|
| 600 | 600 | } |
| 601 | 601 | |
| 602 | - $this->maybe_disallow_prepaid_card( $prepared_source ); |
|
| 603 | - $this->check_source( $prepared_source ); |
|
| 604 | - $this->save_source_to_order( $order, $prepared_source ); |
|
| 602 | + $this->maybe_disallow_prepaid_card($prepared_source); |
|
| 603 | + $this->check_source($prepared_source); |
|
| 604 | + $this->save_source_to_order($order, $prepared_source); |
|
| 605 | 605 | |
| 606 | - if ( 0 >= $order->get_total() ) { |
|
| 607 | - return $this->complete_free_order( $order, $prepared_source, $force_save_source ); |
|
| 606 | + if (0 >= $order->get_total()) { |
|
| 607 | + return $this->complete_free_order($order, $prepared_source, $force_save_source); |
|
| 608 | 608 | } |
| 609 | 609 | |
| 610 | 610 | // This will throw exception if not valid. |
| 611 | - $this->validate_minimum_order_amount( $order ); |
|
| 611 | + $this->validate_minimum_order_amount($order); |
|
| 612 | 612 | |
| 613 | - WC_Stripe_Logger::log( "Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}" ); |
|
| 613 | + WC_Stripe_Logger::log("Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}"); |
|
| 614 | 614 | |
| 615 | - if ( $intent ) { |
|
| 616 | - $intent = $this->update_existing_intent( $intent, $order, $prepared_source ); |
|
| 615 | + if ($intent) { |
|
| 616 | + $intent = $this->update_existing_intent($intent, $order, $prepared_source); |
|
| 617 | 617 | } else { |
| 618 | - $intent = $this->create_intent( $order, $prepared_source ); |
|
| 618 | + $intent = $this->create_intent($order, $prepared_source); |
|
| 619 | 619 | } |
| 620 | 620 | |
| 621 | 621 | // Confirm the intent after locking the order to make sure webhooks will not interfere. |
| 622 | - if ( empty( $intent->error ) ) { |
|
| 623 | - $this->lock_order_payment( $order, $intent ); |
|
| 624 | - $intent = $this->confirm_intent( $intent, $order, $prepared_source ); |
|
| 622 | + if (empty($intent->error)) { |
|
| 623 | + $this->lock_order_payment($order, $intent); |
|
| 624 | + $intent = $this->confirm_intent($intent, $order, $prepared_source); |
|
| 625 | 625 | } |
| 626 | 626 | |
| 627 | - if ( ! empty( $intent->error ) ) { |
|
| 628 | - $this->maybe_remove_non_existent_customer( $intent->error, $order ); |
|
| 627 | + if ( ! empty($intent->error)) { |
|
| 628 | + $this->maybe_remove_non_existent_customer($intent->error, $order); |
|
| 629 | 629 | |
| 630 | 630 | // We want to retry. |
| 631 | - if ( $this->is_retryable_error( $intent->error ) ) { |
|
| 632 | - return $this->retry_after_error( $intent, $order, $retry, $force_save_source, $previous_error, $use_order_source ); |
|
| 631 | + if ($this->is_retryable_error($intent->error)) { |
|
| 632 | + return $this->retry_after_error($intent, $order, $retry, $force_save_source, $previous_error, $use_order_source); |
|
| 633 | 633 | } |
| 634 | 634 | |
| 635 | - $this->unlock_order_payment( $order ); |
|
| 636 | - $this->throw_localized_message( $intent, $order ); |
|
| 635 | + $this->unlock_order_payment($order); |
|
| 636 | + $this->throw_localized_message($intent, $order); |
|
| 637 | 637 | } |
| 638 | 638 | |
| 639 | - if ( ! empty( $intent ) ) { |
|
| 639 | + if ( ! empty($intent)) { |
|
| 640 | 640 | // Use the last charge within the intent to proceed. |
| 641 | - $response = end( $intent->charges->data ); |
|
| 641 | + $response = end($intent->charges->data); |
|
| 642 | 642 | |
| 643 | 643 | // If the intent requires a 3DS flow, redirect to it. |
| 644 | - if ( 'requires_action' === $intent->status ) { |
|
| 645 | - $this->unlock_order_payment( $order ); |
|
| 644 | + if ('requires_action' === $intent->status) { |
|
| 645 | + $this->unlock_order_payment($order); |
|
| 646 | 646 | |
| 647 | - if ( is_wc_endpoint_url( 'order-pay' ) ) { |
|
| 648 | - $redirect_url = add_query_arg( 'wc-stripe-confirmation', 1, $order->get_checkout_payment_url( false ) ); |
|
| 647 | + if (is_wc_endpoint_url('order-pay')) { |
|
| 648 | + $redirect_url = add_query_arg('wc-stripe-confirmation', 1, $order->get_checkout_payment_url(false)); |
|
| 649 | 649 | |
| 650 | 650 | return array( |
| 651 | 651 | 'result' => 'success', |
@@ -660,7 +660,7 @@ discard block |
||
| 660 | 660 | |
| 661 | 661 | return array( |
| 662 | 662 | 'result' => 'success', |
| 663 | - 'redirect' => $this->get_return_url( $order ), |
|
| 663 | + 'redirect' => $this->get_return_url($order), |
|
| 664 | 664 | 'payment_intent_secret' => $intent->client_secret, |
| 665 | 665 | ); |
| 666 | 666 | } |
@@ -668,30 +668,30 @@ discard block |
||
| 668 | 668 | } |
| 669 | 669 | |
| 670 | 670 | // Process valid response. |
| 671 | - $this->process_response( $response, $order ); |
|
| 671 | + $this->process_response($response, $order); |
|
| 672 | 672 | |
| 673 | 673 | // Remove cart. |
| 674 | - if ( isset( WC()->cart ) ) { |
|
| 674 | + if (isset(WC()->cart)) { |
|
| 675 | 675 | WC()->cart->empty_cart(); |
| 676 | 676 | } |
| 677 | 677 | |
| 678 | 678 | // Unlock the order. |
| 679 | - $this->unlock_order_payment( $order ); |
|
| 679 | + $this->unlock_order_payment($order); |
|
| 680 | 680 | |
| 681 | 681 | // Return thank you page redirect. |
| 682 | 682 | return array( |
| 683 | 683 | 'result' => 'success', |
| 684 | - 'redirect' => $this->get_return_url( $order ), |
|
| 684 | + 'redirect' => $this->get_return_url($order), |
|
| 685 | 685 | ); |
| 686 | 686 | |
| 687 | - } catch ( WC_Stripe_Exception $e ) { |
|
| 688 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
| 689 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 687 | + } catch (WC_Stripe_Exception $e) { |
|
| 688 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
| 689 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 690 | 690 | |
| 691 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
| 691 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
| 692 | 692 | |
| 693 | 693 | /* translators: error message */ |
| 694 | - $order->update_status( 'failed' ); |
|
| 694 | + $order->update_status('failed'); |
|
| 695 | 695 | |
| 696 | 696 | return array( |
| 697 | 697 | 'result' => 'fail', |
@@ -707,17 +707,17 @@ discard block |
||
| 707 | 707 | * |
| 708 | 708 | * @param int $order_id The ID of the order. |
| 709 | 709 | */ |
| 710 | - public function display_order_fee( $order_id ) { |
|
| 711 | - if ( apply_filters( 'wc_stripe_hide_display_order_fee', false, $order_id ) ) { |
|
| 710 | + public function display_order_fee($order_id) { |
|
| 711 | + if (apply_filters('wc_stripe_hide_display_order_fee', false, $order_id)) { |
|
| 712 | 712 | return; |
| 713 | 713 | } |
| 714 | 714 | |
| 715 | - $order = wc_get_order( $order_id ); |
|
| 715 | + $order = wc_get_order($order_id); |
|
| 716 | 716 | |
| 717 | - $fee = WC_Stripe_Helper::get_stripe_fee( $order ); |
|
| 718 | - $currency = WC_Stripe_Helper::get_stripe_currency( $order ); |
|
| 717 | + $fee = WC_Stripe_Helper::get_stripe_fee($order); |
|
| 718 | + $currency = WC_Stripe_Helper::get_stripe_currency($order); |
|
| 719 | 719 | |
| 720 | - if ( ! $fee || ! $currency ) { |
|
| 720 | + if ( ! $fee || ! $currency) { |
|
| 721 | 721 | return; |
| 722 | 722 | } |
| 723 | 723 | |
@@ -725,12 +725,12 @@ discard block |
||
| 725 | 725 | |
| 726 | 726 | <tr> |
| 727 | 727 | <td class="label stripe-fee"> |
| 728 | - <?php echo wc_help_tip( __( 'This represents the fee Stripe collects for the transaction.', 'woocommerce-gateway-stripe' ) ); // wpcs: xss ok. ?> |
|
| 729 | - <?php esc_html_e( 'Stripe Fee:', 'woocommerce-gateway-stripe' ); ?> |
|
| 728 | + <?php echo wc_help_tip(__('This represents the fee Stripe collects for the transaction.', 'woocommerce-gateway-stripe')); // wpcs: xss ok. ?> |
|
| 729 | + <?php esc_html_e('Stripe Fee:', 'woocommerce-gateway-stripe'); ?> |
|
| 730 | 730 | </td> |
| 731 | 731 | <td width="1%"></td> |
| 732 | 732 | <td class="total"> |
| 733 | - - <?php echo wc_price( $fee, array( 'currency' => $currency ) ); // wpcs: xss ok. ?> |
|
| 733 | + - <?php echo wc_price($fee, array('currency' => $currency)); // wpcs: xss ok. ?> |
|
| 734 | 734 | </td> |
| 735 | 735 | </tr> |
| 736 | 736 | |
@@ -744,17 +744,17 @@ discard block |
||
| 744 | 744 | * |
| 745 | 745 | * @param int $order_id The ID of the order. |
| 746 | 746 | */ |
| 747 | - public function display_order_payout( $order_id ) { |
|
| 748 | - if ( apply_filters( 'wc_stripe_hide_display_order_payout', false, $order_id ) ) { |
|
| 747 | + public function display_order_payout($order_id) { |
|
| 748 | + if (apply_filters('wc_stripe_hide_display_order_payout', false, $order_id)) { |
|
| 749 | 749 | return; |
| 750 | 750 | } |
| 751 | 751 | |
| 752 | - $order = wc_get_order( $order_id ); |
|
| 752 | + $order = wc_get_order($order_id); |
|
| 753 | 753 | |
| 754 | - $net = WC_Stripe_Helper::get_stripe_net( $order ); |
|
| 755 | - $currency = WC_Stripe_Helper::get_stripe_currency( $order ); |
|
| 754 | + $net = WC_Stripe_Helper::get_stripe_net($order); |
|
| 755 | + $currency = WC_Stripe_Helper::get_stripe_currency($order); |
|
| 756 | 756 | |
| 757 | - if ( ! $net || ! $currency ) { |
|
| 757 | + if ( ! $net || ! $currency) { |
|
| 758 | 758 | return; |
| 759 | 759 | } |
| 760 | 760 | |
@@ -762,12 +762,12 @@ discard block |
||
| 762 | 762 | |
| 763 | 763 | <tr> |
| 764 | 764 | <td class="label stripe-payout"> |
| 765 | - <?php echo wc_help_tip( __( 'This represents the net total that will be credited to your Stripe bank account. This may be in the currency that is set in your Stripe account.', 'woocommerce-gateway-stripe' ) ); // wpcs: xss ok. ?> |
|
| 766 | - <?php esc_html_e( 'Stripe Payout:', 'woocommerce-gateway-stripe' ); ?> |
|
| 765 | + <?php echo wc_help_tip(__('This represents the net total that will be credited to your Stripe bank account. This may be in the currency that is set in your Stripe account.', 'woocommerce-gateway-stripe')); // wpcs: xss ok. ?> |
|
| 766 | + <?php esc_html_e('Stripe Payout:', 'woocommerce-gateway-stripe'); ?> |
|
| 767 | 767 | </td> |
| 768 | 768 | <td width="1%"></td> |
| 769 | 769 | <td class="total"> |
| 770 | - <?php echo wc_price( $net, array( 'currency' => $currency ) ); // wpcs: xss ok. ?> |
|
| 770 | + <?php echo wc_price($net, array('currency' => $currency)); // wpcs: xss ok. ?> |
|
| 771 | 771 | </td> |
| 772 | 772 | </tr> |
| 773 | 773 | |
@@ -783,13 +783,13 @@ discard block |
||
| 783 | 783 | * |
| 784 | 784 | * @return string The localized error message. |
| 785 | 785 | */ |
| 786 | - public function get_localized_error_message_from_response( $response ) { |
|
| 786 | + public function get_localized_error_message_from_response($response) { |
|
| 787 | 787 | $localized_messages = WC_Stripe_Helper::get_localized_messages(); |
| 788 | 788 | |
| 789 | - if ( 'card_error' === $response->error->type ) { |
|
| 790 | - $localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message; |
|
| 789 | + if ('card_error' === $response->error->type) { |
|
| 790 | + $localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message; |
|
| 791 | 791 | } else { |
| 792 | - $localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message; |
|
| 792 | + $localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message; |
|
| 793 | 793 | } |
| 794 | 794 | |
| 795 | 795 | return $localized_message; |
@@ -803,12 +803,12 @@ discard block |
||
| 803 | 803 | * @param WC_Order $order The order to add a note to. |
| 804 | 804 | * @throws WC_Stripe_Exception An exception with the right message. |
| 805 | 805 | */ |
| 806 | - public function throw_localized_message( $response, $order ) { |
|
| 807 | - $localized_message = $this->get_localized_error_message_from_response( $response ); |
|
| 806 | + public function throw_localized_message($response, $order) { |
|
| 807 | + $localized_message = $this->get_localized_error_message_from_response($response); |
|
| 808 | 808 | |
| 809 | - $order->add_order_note( $localized_message ); |
|
| 809 | + $order->add_order_note($localized_message); |
|
| 810 | 810 | |
| 811 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
| 811 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
| 812 | 812 | } |
| 813 | 813 | |
| 814 | 814 | /** |
@@ -824,22 +824,22 @@ discard block |
||
| 824 | 824 | * @throws WC_Stripe_Exception If the payment is not accepted. |
| 825 | 825 | * @return array|void |
| 826 | 826 | */ |
| 827 | - public function retry_after_error( $response, $order, $retry, $force_save_source, $previous_error, $use_order_source ) { |
|
| 828 | - if ( ! $retry ) { |
|
| 829 | - $localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' ); |
|
| 830 | - $order->add_order_note( $localized_message ); |
|
| 831 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions. |
|
| 827 | + public function retry_after_error($response, $order, $retry, $force_save_source, $previous_error, $use_order_source) { |
|
| 828 | + if ( ! $retry) { |
|
| 829 | + $localized_message = __('Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe'); |
|
| 830 | + $order->add_order_note($localized_message); |
|
| 831 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); // phpcs:ignore WordPress.PHP.DevelopmentFunctions. |
|
| 832 | 832 | } |
| 833 | 833 | |
| 834 | 834 | // Don't do anymore retries after this. |
| 835 | - if ( 5 <= $this->retry_interval ) { |
|
| 836 | - return $this->process_payment( $order->get_id(), false, $force_save_source, $response->error, $previous_error ); |
|
| 835 | + if (5 <= $this->retry_interval) { |
|
| 836 | + return $this->process_payment($order->get_id(), false, $force_save_source, $response->error, $previous_error); |
|
| 837 | 837 | } |
| 838 | 838 | |
| 839 | - sleep( $this->retry_interval ); |
|
| 839 | + sleep($this->retry_interval); |
|
| 840 | 840 | $this->retry_interval++; |
| 841 | 841 | |
| 842 | - return $this->process_payment( $order->get_id(), true, $force_save_source, $response->error, $previous_error, $use_order_source ); |
|
| 842 | + return $this->process_payment($order->get_id(), true, $force_save_source, $response->error, $previous_error, $use_order_source); |
|
| 843 | 843 | } |
| 844 | 844 | |
| 845 | 845 | /** |
@@ -850,23 +850,23 @@ discard block |
||
| 850 | 850 | * @param WC_Payment_Gateway[] $gateways A list of all available gateways. |
| 851 | 851 | * @return WC_Payment_Gateway[] Either the same list or an empty one in the right conditions. |
| 852 | 852 | */ |
| 853 | - public function prepare_order_pay_page( $gateways ) { |
|
| 854 | - if ( ! is_wc_endpoint_url( 'order-pay' ) || ! isset( $_GET['wc-stripe-confirmation'] ) ) { // wpcs: csrf ok. |
|
| 853 | + public function prepare_order_pay_page($gateways) { |
|
| 854 | + if ( ! is_wc_endpoint_url('order-pay') || ! isset($_GET['wc-stripe-confirmation'])) { // wpcs: csrf ok. |
|
| 855 | 855 | return $gateways; |
| 856 | 856 | } |
| 857 | 857 | |
| 858 | 858 | try { |
| 859 | 859 | $this->prepare_intent_for_order_pay_page(); |
| 860 | - } catch ( WC_Stripe_Exception $e ) { |
|
| 860 | + } catch (WC_Stripe_Exception $e) { |
|
| 861 | 861 | // Just show the full order pay page if there was a problem preparing the Payment Intent |
| 862 | 862 | return $gateways; |
| 863 | 863 | } |
| 864 | 864 | |
| 865 | - add_filter( 'woocommerce_checkout_show_terms', '__return_false' ); |
|
| 866 | - add_filter( 'woocommerce_pay_order_button_html', '__return_false' ); |
|
| 867 | - add_filter( 'woocommerce_available_payment_gateways', '__return_empty_array' ); |
|
| 868 | - add_filter( 'woocommerce_no_available_payment_methods_message', array( $this, 'change_no_available_methods_message' ) ); |
|
| 869 | - add_action( 'woocommerce_pay_order_after_submit', array( $this, 'render_payment_intent_inputs' ) ); |
|
| 865 | + add_filter('woocommerce_checkout_show_terms', '__return_false'); |
|
| 866 | + add_filter('woocommerce_pay_order_button_html', '__return_false'); |
|
| 867 | + add_filter('woocommerce_available_payment_gateways', '__return_empty_array'); |
|
| 868 | + add_filter('woocommerce_no_available_payment_methods_message', array($this, 'change_no_available_methods_message')); |
|
| 869 | + add_action('woocommerce_pay_order_after_submit', array($this, 'render_payment_intent_inputs')); |
|
| 870 | 870 | |
| 871 | 871 | return array(); |
| 872 | 872 | } |
@@ -879,7 +879,7 @@ discard block |
||
| 879 | 879 | * @return string the new message. |
| 880 | 880 | */ |
| 881 | 881 | public function change_no_available_methods_message() { |
| 882 | - return wpautop( __( "Almost there!\n\nYour order has already been created, the only thing that still needs to be done is for you to authorize the payment with your bank.", 'woocommerce-gateway-stripe' ) ); |
|
| 882 | + return wpautop(__("Almost there!\n\nYour order has already been created, the only thing that still needs to be done is for you to authorize the payment with your bank.", 'woocommerce-gateway-stripe')); |
|
| 883 | 883 | } |
| 884 | 884 | |
| 885 | 885 | /** |
@@ -890,19 +890,19 @@ discard block |
||
| 890 | 890 | * @throws WC_Stripe_Exception |
| 891 | 891 | * @since 4.3 |
| 892 | 892 | */ |
| 893 | - public function prepare_intent_for_order_pay_page( $order = null ) { |
|
| 894 | - if ( ! isset( $order ) || empty( $order ) ) { |
|
| 895 | - $order = wc_get_order( absint( get_query_var( 'order-pay' ) ) ); |
|
| 893 | + public function prepare_intent_for_order_pay_page($order = null) { |
|
| 894 | + if ( ! isset($order) || empty($order)) { |
|
| 895 | + $order = wc_get_order(absint(get_query_var('order-pay'))); |
|
| 896 | 896 | } |
| 897 | - $intent = $this->get_intent_from_order( $order ); |
|
| 897 | + $intent = $this->get_intent_from_order($order); |
|
| 898 | 898 | |
| 899 | - if ( ! $intent ) { |
|
| 900 | - throw new WC_Stripe_Exception( 'Payment Intent not found', __( 'Payment Intent not found for order #' . $order->get_id(), 'woocommerce-gateway-stripe' ) ); |
|
| 899 | + if ( ! $intent) { |
|
| 900 | + throw new WC_Stripe_Exception('Payment Intent not found', __('Payment Intent not found for order #' . $order->get_id(), 'woocommerce-gateway-stripe')); |
|
| 901 | 901 | } |
| 902 | 902 | |
| 903 | - if ( 'requires_payment_method' === $intent->status && isset( $intent->last_payment_error ) |
|
| 904 | - && 'authentication_required' === $intent->last_payment_error->code ) { |
|
| 905 | - $level3_data = $this->get_level3_data_from_order( $order ); |
|
| 903 | + if ('requires_payment_method' === $intent->status && isset($intent->last_payment_error) |
|
| 904 | + && 'authentication_required' === $intent->last_payment_error->code) { |
|
| 905 | + $level3_data = $this->get_level3_data_from_order($order); |
|
| 906 | 906 | $intent = WC_Stripe_API::request_with_level3_data( |
| 907 | 907 | array( |
| 908 | 908 | 'payment_method' => $intent->last_payment_error->source->id, |
@@ -912,8 +912,8 @@ discard block |
||
| 912 | 912 | $order |
| 913 | 913 | ); |
| 914 | 914 | |
| 915 | - if ( isset( $intent->error ) ) { |
|
| 916 | - throw new WC_Stripe_Exception( print_r( $intent, true ), $intent->error->message ); |
|
| 915 | + if (isset($intent->error)) { |
|
| 916 | + throw new WC_Stripe_Exception(print_r($intent, true), $intent->error->message); |
|
| 917 | 917 | } |
| 918 | 918 | } |
| 919 | 919 | |
@@ -928,26 +928,26 @@ discard block |
||
| 928 | 928 | * @throws WC_Stripe_Exception |
| 929 | 929 | * @since 4.2 |
| 930 | 930 | */ |
| 931 | - public function render_payment_intent_inputs( $order = null ) { |
|
| 932 | - if ( ! isset( $order ) || empty( $order ) ) { |
|
| 933 | - $order = wc_get_order( absint( get_query_var( 'order-pay' ) ) ); |
|
| 931 | + public function render_payment_intent_inputs($order = null) { |
|
| 932 | + if ( ! isset($order) || empty($order)) { |
|
| 933 | + $order = wc_get_order(absint(get_query_var('order-pay'))); |
|
| 934 | 934 | } |
| 935 | - if ( ! isset( $this->order_pay_intent ) ) { |
|
| 936 | - $this->prepare_intent_for_order_pay_page( $order ); |
|
| 935 | + if ( ! isset($this->order_pay_intent)) { |
|
| 936 | + $this->prepare_intent_for_order_pay_page($order); |
|
| 937 | 937 | } |
| 938 | 938 | |
| 939 | 939 | $verification_url = add_query_arg( |
| 940 | 940 | array( |
| 941 | 941 | 'order' => $order->get_id(), |
| 942 | - 'nonce' => wp_create_nonce( 'wc_stripe_confirm_pi' ), |
|
| 943 | - 'redirect_to' => rawurlencode( $this->get_return_url( $order ) ), |
|
| 942 | + 'nonce' => wp_create_nonce('wc_stripe_confirm_pi'), |
|
| 943 | + 'redirect_to' => rawurlencode($this->get_return_url($order)), |
|
| 944 | 944 | 'is_pay_for_order' => true, |
| 945 | 945 | ), |
| 946 | - WC_AJAX::get_endpoint( 'wc_stripe_verify_intent' ) |
|
| 946 | + WC_AJAX::get_endpoint('wc_stripe_verify_intent') |
|
| 947 | 947 | ); |
| 948 | 948 | |
| 949 | - echo '<input type="hidden" id="stripe-intent-id" value="' . esc_attr( $this->order_pay_intent->client_secret ) . '" />'; |
|
| 950 | - echo '<input type="hidden" id="stripe-intent-return" value="' . esc_attr( $verification_url ) . '" />'; |
|
| 949 | + echo '<input type="hidden" id="stripe-intent-id" value="' . esc_attr($this->order_pay_intent->client_secret) . '" />'; |
|
| 950 | + echo '<input type="hidden" id="stripe-intent-return" value="' . esc_attr($verification_url) . '" />'; |
|
| 951 | 951 | } |
| 952 | 952 | |
| 953 | 953 | /** |
@@ -957,11 +957,11 @@ discard block |
||
| 957 | 957 | * @param WC_Payment_Token $token Payment Token. |
| 958 | 958 | * @return string Generated payment method HTML |
| 959 | 959 | */ |
| 960 | - public function get_saved_payment_method_option_html( $token ) { |
|
| 961 | - $html = parent::get_saved_payment_method_option_html( $token ); |
|
| 960 | + public function get_saved_payment_method_option_html($token) { |
|
| 961 | + $html = parent::get_saved_payment_method_option_html($token); |
|
| 962 | 962 | $error_wrapper = '<div class="stripe-source-errors" role="alert"></div>'; |
| 963 | 963 | |
| 964 | - return preg_replace( '~</(\w+)>\s*$~', "$error_wrapper</$1>", $html ); |
|
| 964 | + return preg_replace('~</(\w+)>\s*$~', "$error_wrapper</$1>", $html); |
|
| 965 | 965 | } |
| 966 | 966 | |
| 967 | 967 | /** |
@@ -971,18 +971,18 @@ discard block |
||
| 971 | 971 | * @since 4.2.0 |
| 972 | 972 | * @param int $order_id The ID that will be used for the thank you page. |
| 973 | 973 | */ |
| 974 | - public function check_intent_status_on_order_page( $order_id ) { |
|
| 975 | - if ( empty( $order_id ) || absint( $order_id ) <= 0 ) { |
|
| 974 | + public function check_intent_status_on_order_page($order_id) { |
|
| 975 | + if (empty($order_id) || absint($order_id) <= 0) { |
|
| 976 | 976 | return; |
| 977 | 977 | } |
| 978 | 978 | |
| 979 | - $order = wc_get_order( absint( $order_id ) ); |
|
| 979 | + $order = wc_get_order(absint($order_id)); |
|
| 980 | 980 | |
| 981 | - if ( ! $order ) { |
|
| 981 | + if ( ! $order) { |
|
| 982 | 982 | return; |
| 983 | 983 | } |
| 984 | 984 | |
| 985 | - $this->verify_intent_after_checkout( $order ); |
|
| 985 | + $this->verify_intent_after_checkout($order); |
|
| 986 | 986 | } |
| 987 | 987 | |
| 988 | 988 | /** |
@@ -996,8 +996,8 @@ discard block |
||
| 996 | 996 | * @param int $order_id The ID of the order which is being paid for. |
| 997 | 997 | * @return array |
| 998 | 998 | */ |
| 999 | - public function modify_successful_payment_result( $result, $order_id ) { |
|
| 1000 | - if ( ! isset( $result['payment_intent_secret'] ) && ! isset( $result['setup_intent_secret'] ) ) { |
|
| 999 | + public function modify_successful_payment_result($result, $order_id) { |
|
| 1000 | + if ( ! isset($result['payment_intent_secret']) && ! isset($result['setup_intent_secret'])) { |
|
| 1001 | 1001 | // Only redirects with intents need to be modified. |
| 1002 | 1002 | return $result; |
| 1003 | 1003 | } |
@@ -1006,16 +1006,16 @@ discard block |
||
| 1006 | 1006 | $verification_url = add_query_arg( |
| 1007 | 1007 | array( |
| 1008 | 1008 | 'order' => $order_id, |
| 1009 | - 'nonce' => wp_create_nonce( 'wc_stripe_confirm_pi' ), |
|
| 1010 | - 'redirect_to' => rawurlencode( $result['redirect'] ), |
|
| 1009 | + 'nonce' => wp_create_nonce('wc_stripe_confirm_pi'), |
|
| 1010 | + 'redirect_to' => rawurlencode($result['redirect']), |
|
| 1011 | 1011 | ), |
| 1012 | - WC_AJAX::get_endpoint( 'wc_stripe_verify_intent' ) |
|
| 1012 | + WC_AJAX::get_endpoint('wc_stripe_verify_intent') |
|
| 1013 | 1013 | ); |
| 1014 | 1014 | |
| 1015 | - if ( isset( $result['payment_intent_secret'] ) ) { |
|
| 1016 | - $redirect = sprintf( '#confirm-pi-%s:%s', $result['payment_intent_secret'], rawurlencode( $verification_url ) ); |
|
| 1017 | - } else if ( isset( $result['setup_intent_secret'] ) ) { |
|
| 1018 | - $redirect = sprintf( '#confirm-si-%s:%s', $result['setup_intent_secret'], rawurlencode( $verification_url ) ); |
|
| 1015 | + if (isset($result['payment_intent_secret'])) { |
|
| 1016 | + $redirect = sprintf('#confirm-pi-%s:%s', $result['payment_intent_secret'], rawurlencode($verification_url)); |
|
| 1017 | + } else if (isset($result['setup_intent_secret'])) { |
|
| 1018 | + $redirect = sprintf('#confirm-si-%s:%s', $result['setup_intent_secret'], rawurlencode($verification_url)); |
|
| 1019 | 1019 | } |
| 1020 | 1020 | |
| 1021 | 1021 | return array( |
@@ -1027,8 +1027,8 @@ discard block |
||
| 1027 | 1027 | /** |
| 1028 | 1028 | * Proceed with current request using new login session (to ensure consistent nonce). |
| 1029 | 1029 | */ |
| 1030 | - public function set_cookie_on_current_request( $cookie ) { |
|
| 1031 | - $_COOKIE[ LOGGED_IN_COOKIE ] = $cookie; |
|
| 1030 | + public function set_cookie_on_current_request($cookie) { |
|
| 1031 | + $_COOKIE[LOGGED_IN_COOKIE] = $cookie; |
|
| 1032 | 1032 | } |
| 1033 | 1033 | |
| 1034 | 1034 | /** |
@@ -1038,48 +1038,48 @@ discard block |
||
| 1038 | 1038 | * @since 4.2.0 |
| 1039 | 1039 | * @param WC_Order $order The order which is in a transitional state. |
| 1040 | 1040 | */ |
| 1041 | - public function verify_intent_after_checkout( $order ) { |
|
| 1042 | - $payment_method = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->payment_method : $order->get_payment_method(); |
|
| 1043 | - if ( $payment_method !== $this->id ) { |
|
| 1041 | + public function verify_intent_after_checkout($order) { |
|
| 1042 | + $payment_method = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->payment_method : $order->get_payment_method(); |
|
| 1043 | + if ($payment_method !== $this->id) { |
|
| 1044 | 1044 | // If this is not the payment method, an intent would not be available. |
| 1045 | 1045 | return; |
| 1046 | 1046 | } |
| 1047 | 1047 | |
| 1048 | - $intent = $this->get_intent_from_order( $order ); |
|
| 1049 | - if ( ! $intent ) { |
|
| 1048 | + $intent = $this->get_intent_from_order($order); |
|
| 1049 | + if ( ! $intent) { |
|
| 1050 | 1050 | // No intent, redirect to the order received page for further actions. |
| 1051 | 1051 | return; |
| 1052 | 1052 | } |
| 1053 | 1053 | |
| 1054 | 1054 | // A webhook might have modified or locked the order while the intent was retreived. This ensures we are reading the right status. |
| 1055 | - clean_post_cache( $order->get_id() ); |
|
| 1056 | - $order = wc_get_order( $order->get_id() ); |
|
| 1055 | + clean_post_cache($order->get_id()); |
|
| 1056 | + $order = wc_get_order($order->get_id()); |
|
| 1057 | 1057 | |
| 1058 | - if ( ! $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
| 1058 | + if ( ! $order->has_status(array('pending', 'failed'))) { |
|
| 1059 | 1059 | // If payment has already been completed, this function is redundant. |
| 1060 | 1060 | return; |
| 1061 | 1061 | } |
| 1062 | 1062 | |
| 1063 | - if ( $this->lock_order_payment( $order, $intent ) ) { |
|
| 1063 | + if ($this->lock_order_payment($order, $intent)) { |
|
| 1064 | 1064 | return; |
| 1065 | 1065 | } |
| 1066 | 1066 | |
| 1067 | - if ( 'setup_intent' === $intent->object && 'succeeded' === $intent->status ) { |
|
| 1067 | + if ('setup_intent' === $intent->object && 'succeeded' === $intent->status) { |
|
| 1068 | 1068 | WC()->cart->empty_cart(); |
| 1069 | - if ( WC_Stripe_Helper::is_pre_orders_exists() && WC_Pre_Orders_Order::order_contains_pre_order( $order ) ) { |
|
| 1070 | - WC_Pre_Orders_Order::mark_order_as_pre_ordered( $order ); |
|
| 1069 | + if (WC_Stripe_Helper::is_pre_orders_exists() && WC_Pre_Orders_Order::order_contains_pre_order($order)) { |
|
| 1070 | + WC_Pre_Orders_Order::mark_order_as_pre_ordered($order); |
|
| 1071 | 1071 | } else { |
| 1072 | 1072 | $order->payment_complete(); |
| 1073 | 1073 | } |
| 1074 | - } else if ( 'succeeded' === $intent->status || 'requires_capture' === $intent->status ) { |
|
| 1074 | + } else if ('succeeded' === $intent->status || 'requires_capture' === $intent->status) { |
|
| 1075 | 1075 | // Proceed with the payment completion. |
| 1076 | - $this->handle_intent_verification_success( $order, $intent ); |
|
| 1077 | - } else if ( 'requires_payment_method' === $intent->status ) { |
|
| 1076 | + $this->handle_intent_verification_success($order, $intent); |
|
| 1077 | + } else if ('requires_payment_method' === $intent->status) { |
|
| 1078 | 1078 | // `requires_payment_method` means that SCA got denied for the current payment method. |
| 1079 | - $this->handle_intent_verification_failure( $order, $intent ); |
|
| 1079 | + $this->handle_intent_verification_failure($order, $intent); |
|
| 1080 | 1080 | } |
| 1081 | 1081 | |
| 1082 | - $this->unlock_order_payment( $order ); |
|
| 1082 | + $this->unlock_order_payment($order); |
|
| 1083 | 1083 | } |
| 1084 | 1084 | |
| 1085 | 1085 | /** |
@@ -1089,8 +1089,8 @@ discard block |
||
| 1089 | 1089 | * @param WC_Order $order The order whose verification succeeded. |
| 1090 | 1090 | * @param stdClass $intent The Payment Intent object. |
| 1091 | 1091 | */ |
| 1092 | - protected function handle_intent_verification_success( $order, $intent ) { |
|
| 1093 | - $this->process_response( end( $intent->charges->data ), $order ); |
|
| 1092 | + protected function handle_intent_verification_success($order, $intent) { |
|
| 1093 | + $this->process_response(end($intent->charges->data), $order); |
|
| 1094 | 1094 | } |
| 1095 | 1095 | |
| 1096 | 1096 | /** |
@@ -1100,8 +1100,8 @@ discard block |
||
| 1100 | 1100 | * @param WC_Order $order The order whose verification failed. |
| 1101 | 1101 | * @param stdClass $intent The Payment Intent object. |
| 1102 | 1102 | */ |
| 1103 | - protected function handle_intent_verification_failure( $order, $intent ) { |
|
| 1104 | - $this->failed_sca_auth( $order, $intent ); |
|
| 1103 | + protected function handle_intent_verification_failure($order, $intent) { |
|
| 1104 | + $this->failed_sca_auth($order, $intent); |
|
| 1105 | 1105 | } |
| 1106 | 1106 | |
| 1107 | 1107 | /** |
@@ -1111,18 +1111,18 @@ discard block |
||
| 1111 | 1111 | * @param WC_Order $order The order which should be checked. |
| 1112 | 1112 | * @param object $intent The intent, associated with the order. |
| 1113 | 1113 | */ |
| 1114 | - public function failed_sca_auth( $order, $intent ) { |
|
| 1114 | + public function failed_sca_auth($order, $intent) { |
|
| 1115 | 1115 | // If the order has already failed, do not repeat the same message. |
| 1116 | - if ( $order->has_status( 'failed' ) ) { |
|
| 1116 | + if ($order->has_status('failed')) { |
|
| 1117 | 1117 | return; |
| 1118 | 1118 | } |
| 1119 | 1119 | |
| 1120 | 1120 | // Load the right message and update the status. |
| 1121 | - $status_message = isset( $intent->last_payment_error ) |
|
| 1121 | + $status_message = isset($intent->last_payment_error) |
|
| 1122 | 1122 | /* translators: 1) The error message that was received from Stripe. */ |
| 1123 | - ? sprintf( __( 'Stripe SCA authentication failed. Reason: %s', 'woocommerce-gateway-stripe' ), $intent->last_payment_error->message ) |
|
| 1124 | - : __( 'Stripe SCA authentication failed.', 'woocommerce-gateway-stripe' ); |
|
| 1125 | - $order->update_status( 'failed', $status_message ); |
|
| 1123 | + ? sprintf(__('Stripe SCA authentication failed. Reason: %s', 'woocommerce-gateway-stripe'), $intent->last_payment_error->message) |
|
| 1124 | + : __('Stripe SCA authentication failed.', 'woocommerce-gateway-stripe'); |
|
| 1125 | + $order->update_status('failed', $status_message); |
|
| 1126 | 1126 | } |
| 1127 | 1127 | |
| 1128 | 1128 | /** |
@@ -1133,10 +1133,10 @@ discard block |
||
| 1133 | 1133 | * |
| 1134 | 1134 | * @return string Checkout URL for the given order. |
| 1135 | 1135 | */ |
| 1136 | - public function get_checkout_payment_url( $pay_url, $order ) { |
|
| 1136 | + public function get_checkout_payment_url($pay_url, $order) { |
|
| 1137 | 1137 | global $wp; |
| 1138 | - if ( isset( $_GET['wc-stripe-confirmation'] ) && isset( $wp->query_vars['order-pay'] ) && $wp->query_vars['order-pay'] == $order->get_id() ) { |
|
| 1139 | - $pay_url = add_query_arg( 'wc-stripe-confirmation', 1, $pay_url ); |
|
| 1138 | + if (isset($_GET['wc-stripe-confirmation']) && isset($wp->query_vars['order-pay']) && $wp->query_vars['order-pay'] == $order->get_id()) { |
|
| 1139 | + $pay_url = add_query_arg('wc-stripe-confirmation', 1, $pay_url); |
|
| 1140 | 1140 | } |
| 1141 | 1141 | return $pay_url; |
| 1142 | 1142 | } |
@@ -1146,63 +1146,63 @@ discard block |
||
| 1146 | 1146 | */ |
| 1147 | 1147 | public function process_admin_options() { |
| 1148 | 1148 | // Load all old values before the new settings get saved. |
| 1149 | - $old_publishable_key = $this->get_option( 'publishable_key' ); |
|
| 1150 | - $old_secret_key = $this->get_option( 'secret_key' ); |
|
| 1151 | - $old_test_publishable_key = $this->get_option( 'test_publishable_key' ); |
|
| 1152 | - $old_test_secret_key = $this->get_option( 'test_secret_key' ); |
|
| 1149 | + $old_publishable_key = $this->get_option('publishable_key'); |
|
| 1150 | + $old_secret_key = $this->get_option('secret_key'); |
|
| 1151 | + $old_test_publishable_key = $this->get_option('test_publishable_key'); |
|
| 1152 | + $old_test_secret_key = $this->get_option('test_secret_key'); |
|
| 1153 | 1153 | |
| 1154 | 1154 | parent::process_admin_options(); |
| 1155 | 1155 | |
| 1156 | 1156 | // Load all old values after the new settings have been saved. |
| 1157 | - $new_publishable_key = $this->get_option( 'publishable_key' ); |
|
| 1158 | - $new_secret_key = $this->get_option( 'secret_key' ); |
|
| 1159 | - $new_test_publishable_key = $this->get_option( 'test_publishable_key' ); |
|
| 1160 | - $new_test_secret_key = $this->get_option( 'test_secret_key' ); |
|
| 1157 | + $new_publishable_key = $this->get_option('publishable_key'); |
|
| 1158 | + $new_secret_key = $this->get_option('secret_key'); |
|
| 1159 | + $new_test_publishable_key = $this->get_option('test_publishable_key'); |
|
| 1160 | + $new_test_secret_key = $this->get_option('test_secret_key'); |
|
| 1161 | 1161 | |
| 1162 | 1162 | // Checks whether a value has transitioned from a non-empty value to a new one. |
| 1163 | - $has_changed = function( $old_value, $new_value ) { |
|
| 1164 | - return ! empty( $old_value ) && ( $old_value !== $new_value ); |
|
| 1163 | + $has_changed = function($old_value, $new_value) { |
|
| 1164 | + return ! empty($old_value) && ($old_value !== $new_value); |
|
| 1165 | 1165 | }; |
| 1166 | 1166 | |
| 1167 | 1167 | // Look for updates. |
| 1168 | 1168 | if ( |
| 1169 | - $has_changed( $old_publishable_key, $new_publishable_key ) |
|
| 1170 | - || $has_changed( $old_secret_key, $new_secret_key ) |
|
| 1171 | - || $has_changed( $old_test_publishable_key, $new_test_publishable_key ) |
|
| 1172 | - || $has_changed( $old_test_secret_key, $new_test_secret_key ) |
|
| 1169 | + $has_changed($old_publishable_key, $new_publishable_key) |
|
| 1170 | + || $has_changed($old_secret_key, $new_secret_key) |
|
| 1171 | + || $has_changed($old_test_publishable_key, $new_test_publishable_key) |
|
| 1172 | + || $has_changed($old_test_secret_key, $new_test_secret_key) |
|
| 1173 | 1173 | ) { |
| 1174 | - update_option( 'wc_stripe_show_changed_keys_notice', 'yes' ); |
|
| 1174 | + update_option('wc_stripe_show_changed_keys_notice', 'yes'); |
|
| 1175 | 1175 | } |
| 1176 | 1176 | } |
| 1177 | 1177 | |
| 1178 | - public function validate_publishable_key_field( $key, $value ) { |
|
| 1179 | - $value = $this->validate_text_field( $key, $value ); |
|
| 1180 | - if ( ! empty( $value ) && ! preg_match( '/^pk_live_/', $value ) ) { |
|
| 1181 | - throw new Exception( __( 'The "Live Publishable Key" should start with "pk_live", enter the correct key.', 'woocommerce-gateway-stripe' ) ); |
|
| 1178 | + public function validate_publishable_key_field($key, $value) { |
|
| 1179 | + $value = $this->validate_text_field($key, $value); |
|
| 1180 | + if ( ! empty($value) && ! preg_match('/^pk_live_/', $value)) { |
|
| 1181 | + throw new Exception(__('The "Live Publishable Key" should start with "pk_live", enter the correct key.', 'woocommerce-gateway-stripe')); |
|
| 1182 | 1182 | } |
| 1183 | 1183 | return $value; |
| 1184 | 1184 | } |
| 1185 | 1185 | |
| 1186 | - public function validate_secret_key_field( $key, $value ) { |
|
| 1187 | - $value = $this->validate_text_field( $key, $value ); |
|
| 1188 | - if ( ! empty( $value ) && ! preg_match( '/^[rs]k_live_/', $value ) ) { |
|
| 1189 | - throw new Exception( __( 'The "Live Secret Key" should start with "sk_live" or "rk_live", enter the correct key.', 'woocommerce-gateway-stripe' ) ); |
|
| 1186 | + public function validate_secret_key_field($key, $value) { |
|
| 1187 | + $value = $this->validate_text_field($key, $value); |
|
| 1188 | + if ( ! empty($value) && ! preg_match('/^[rs]k_live_/', $value)) { |
|
| 1189 | + throw new Exception(__('The "Live Secret Key" should start with "sk_live" or "rk_live", enter the correct key.', 'woocommerce-gateway-stripe')); |
|
| 1190 | 1190 | } |
| 1191 | 1191 | return $value; |
| 1192 | 1192 | } |
| 1193 | 1193 | |
| 1194 | - public function validate_test_publishable_key_field( $key, $value ) { |
|
| 1195 | - $value = $this->validate_text_field( $key, $value ); |
|
| 1196 | - if ( ! empty( $value ) && ! preg_match( '/^pk_test_/', $value ) ) { |
|
| 1197 | - throw new Exception( __( 'The "Test Publishable Key" should start with "pk_test", enter the correct key.', 'woocommerce-gateway-stripe' ) ); |
|
| 1194 | + public function validate_test_publishable_key_field($key, $value) { |
|
| 1195 | + $value = $this->validate_text_field($key, $value); |
|
| 1196 | + if ( ! empty($value) && ! preg_match('/^pk_test_/', $value)) { |
|
| 1197 | + throw new Exception(__('The "Test Publishable Key" should start with "pk_test", enter the correct key.', 'woocommerce-gateway-stripe')); |
|
| 1198 | 1198 | } |
| 1199 | 1199 | return $value; |
| 1200 | 1200 | } |
| 1201 | 1201 | |
| 1202 | - public function validate_test_secret_key_field( $key, $value ) { |
|
| 1203 | - $value = $this->validate_text_field( $key, $value ); |
|
| 1204 | - if ( ! empty( $value ) && ! preg_match( '/^[rs]k_test_/', $value ) ) { |
|
| 1205 | - throw new Exception( __( 'The "Test Secret Key" should start with "sk_test" or "rk_test", enter the correct key.', 'woocommerce-gateway-stripe' ) ); |
|
| 1202 | + public function validate_test_secret_key_field($key, $value) { |
|
| 1203 | + $value = $this->validate_text_field($key, $value); |
|
| 1204 | + if ( ! empty($value) && ! preg_match('/^[rs]k_test_/', $value)) { |
|
| 1205 | + throw new Exception(__('The "Test Secret Key" should start with "sk_test" or "rk_test", enter the correct key.', 'woocommerce-gateway-stripe')); |
|
| 1206 | 1206 | } |
| 1207 | 1207 | return $value; |
| 1208 | 1208 | } |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if ( ! defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -23,11 +23,11 @@ discard block |
||
| 23 | 23 | |
| 24 | 24 | $this->retry_interval = 1; |
| 25 | 25 | |
| 26 | - add_action( 'wp', array( $this, 'maybe_process_redirect_order' ) ); |
|
| 27 | - add_action( 'woocommerce_order_status_processing', array( $this, 'capture_payment' ) ); |
|
| 28 | - add_action( 'woocommerce_order_status_completed', array( $this, 'capture_payment' ) ); |
|
| 29 | - add_action( 'woocommerce_order_status_cancelled', array( $this, 'cancel_payment' ) ); |
|
| 30 | - add_action( 'woocommerce_order_status_refunded', array( $this, 'cancel_payment' ) ); |
|
| 26 | + add_action('wp', array($this, 'maybe_process_redirect_order')); |
|
| 27 | + add_action('woocommerce_order_status_processing', array($this, 'capture_payment')); |
|
| 28 | + add_action('woocommerce_order_status_completed', array($this, 'capture_payment')); |
|
| 29 | + add_action('woocommerce_order_status_cancelled', array($this, 'cancel_payment')); |
|
| 30 | + add_action('woocommerce_order_status_refunded', array($this, 'cancel_payment')); |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | /** |
@@ -51,25 +51,25 @@ discard block |
||
| 51 | 51 | * @param bool $retry |
| 52 | 52 | * @param mix $previous_error Any error message from previous request. |
| 53 | 53 | */ |
| 54 | - public function process_redirect_payment( $order_id, $retry = true, $previous_error = false ) { |
|
| 54 | + public function process_redirect_payment($order_id, $retry = true, $previous_error = false) { |
|
| 55 | 55 | try { |
| 56 | - $source = wc_clean( $_GET['source'] ); |
|
| 56 | + $source = wc_clean($_GET['source']); |
|
| 57 | 57 | |
| 58 | - if ( empty( $source ) ) { |
|
| 58 | + if (empty($source)) { |
|
| 59 | 59 | return; |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | - if ( empty( $order_id ) ) { |
|
| 62 | + if (empty($order_id)) { |
|
| 63 | 63 | return; |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - $order = wc_get_order( $order_id ); |
|
| 66 | + $order = wc_get_order($order_id); |
|
| 67 | 67 | |
| 68 | - if ( ! is_object( $order ) ) { |
|
| 68 | + if ( ! is_object($order)) { |
|
| 69 | 69 | return; |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - if ( $order->has_status( array( 'processing', 'completed', 'on-hold' ) ) ) { |
|
| 72 | + if ($order->has_status(array('processing', 'completed', 'on-hold'))) { |
|
| 73 | 73 | return; |
| 74 | 74 | } |
| 75 | 75 | |
@@ -77,124 +77,124 @@ discard block |
||
| 77 | 77 | $response = null; |
| 78 | 78 | |
| 79 | 79 | // This will throw exception if not valid. |
| 80 | - $this->validate_minimum_order_amount( $order ); |
|
| 80 | + $this->validate_minimum_order_amount($order); |
|
| 81 | 81 | |
| 82 | - WC_Stripe_Logger::log( "Info: (Redirect) Begin processing payment for order $order_id for the amount of {$order->get_total()}" ); |
|
| 82 | + WC_Stripe_Logger::log("Info: (Redirect) Begin processing payment for order $order_id for the amount of {$order->get_total()}"); |
|
| 83 | 83 | |
| 84 | 84 | /** |
| 85 | 85 | * First check if the source is chargeable at this time. If not, |
| 86 | 86 | * webhook will take care of it later. |
| 87 | 87 | */ |
| 88 | - $source_info = WC_Stripe_API::retrieve( 'sources/' . $source ); |
|
| 88 | + $source_info = WC_Stripe_API::retrieve('sources/' . $source); |
|
| 89 | 89 | |
| 90 | - if ( ! empty( $source_info->error ) ) { |
|
| 91 | - throw new WC_Stripe_Exception( print_r( $source_info, true ), $source_info->error->message ); |
|
| 90 | + if ( ! empty($source_info->error)) { |
|
| 91 | + throw new WC_Stripe_Exception(print_r($source_info, true), $source_info->error->message); |
|
| 92 | 92 | } |
| 93 | 93 | |
| 94 | - if ( 'failed' === $source_info->status || 'canceled' === $source_info->status ) { |
|
| 95 | - throw new WC_Stripe_Exception( print_r( $source_info, true ), __( 'Unable to process this payment, please try again or use alternative method.', 'woocommerce-gateway-stripe' ) ); |
|
| 94 | + if ('failed' === $source_info->status || 'canceled' === $source_info->status) { |
|
| 95 | + throw new WC_Stripe_Exception(print_r($source_info, true), __('Unable to process this payment, please try again or use alternative method.', 'woocommerce-gateway-stripe')); |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | // If already consumed, then ignore request. |
| 99 | - if ( 'consumed' === $source_info->status ) { |
|
| 99 | + if ('consumed' === $source_info->status) { |
|
| 100 | 100 | return; |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | // If not chargeable, then ignore request. |
| 104 | - if ( 'chargeable' !== $source_info->status ) { |
|
| 104 | + if ('chargeable' !== $source_info->status) { |
|
| 105 | 105 | return; |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | // Prep source object. |
| 109 | 109 | $source_object = new stdClass(); |
| 110 | 110 | $source_object->token_id = ''; |
| 111 | - $source_object->customer = $this->get_stripe_customer_id( $order ); |
|
| 111 | + $source_object->customer = $this->get_stripe_customer_id($order); |
|
| 112 | 112 | $source_object->source = $source_info->id; |
| 113 | 113 | $source_object->status = 'chargeable'; |
| 114 | 114 | |
| 115 | 115 | /* If we're doing a retry and source is chargeable, we need to pass |
| 116 | 116 | * a different idempotency key and retry for success. |
| 117 | 117 | */ |
| 118 | - if ( $this->need_update_idempotency_key( $source_object, $previous_error ) ) { |
|
| 119 | - add_filter( 'wc_stripe_idempotency_key', array( $this, 'change_idempotency_key' ), 10, 2 ); |
|
| 118 | + if ($this->need_update_idempotency_key($source_object, $previous_error)) { |
|
| 119 | + add_filter('wc_stripe_idempotency_key', array($this, 'change_idempotency_key'), 10, 2); |
|
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | // Make the request. |
| 123 | - $response = WC_Stripe_API::request( $this->generate_payment_request( $order, $source_object ), 'charges', 'POST', true ); |
|
| 123 | + $response = WC_Stripe_API::request($this->generate_payment_request($order, $source_object), 'charges', 'POST', true); |
|
| 124 | 124 | $headers = $response['headers']; |
| 125 | 125 | $response = $response['body']; |
| 126 | 126 | |
| 127 | - if ( ! empty( $response->error ) ) { |
|
| 127 | + if ( ! empty($response->error)) { |
|
| 128 | 128 | // Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without. |
| 129 | - if ( $this->is_no_such_customer_error( $response->error ) ) { |
|
| 130 | - if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
| 131 | - delete_user_option( $order->customer_user, '_stripe_customer_id' ); |
|
| 132 | - delete_post_meta( $order_id, '_stripe_customer_id' ); |
|
| 129 | + if ($this->is_no_such_customer_error($response->error)) { |
|
| 130 | + if (WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
| 131 | + delete_user_option($order->customer_user, '_stripe_customer_id'); |
|
| 132 | + delete_post_meta($order_id, '_stripe_customer_id'); |
|
| 133 | 133 | } else { |
| 134 | - delete_user_option( $order->get_customer_id(), '_stripe_customer_id' ); |
|
| 135 | - $order->delete_meta_data( '_stripe_customer_id' ); |
|
| 134 | + delete_user_option($order->get_customer_id(), '_stripe_customer_id'); |
|
| 135 | + $order->delete_meta_data('_stripe_customer_id'); |
|
| 136 | 136 | $order->save(); |
| 137 | 137 | } |
| 138 | 138 | } |
| 139 | 139 | |
| 140 | - if ( $this->is_no_such_token_error( $response->error ) && $prepared_source->token_id ) { |
|
| 140 | + if ($this->is_no_such_token_error($response->error) && $prepared_source->token_id) { |
|
| 141 | 141 | // Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message. |
| 142 | - $wc_token = WC_Payment_Tokens::get( $prepared_source->token_id ); |
|
| 142 | + $wc_token = WC_Payment_Tokens::get($prepared_source->token_id); |
|
| 143 | 143 | $wc_token->delete(); |
| 144 | - $localized_message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' ); |
|
| 145 | - $order->add_order_note( $localized_message ); |
|
| 146 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
| 144 | + $localized_message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe'); |
|
| 145 | + $order->add_order_note($localized_message); |
|
| 146 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | // We want to retry. |
| 150 | - if ( $this->is_retryable_error( $response->error ) ) { |
|
| 151 | - if ( $retry ) { |
|
| 150 | + if ($this->is_retryable_error($response->error)) { |
|
| 151 | + if ($retry) { |
|
| 152 | 152 | // Don't do anymore retries after this. |
| 153 | - if ( 5 <= $this->retry_interval ) { |
|
| 154 | - return $this->process_redirect_payment( $order_id, false, $response->error ); |
|
| 153 | + if (5 <= $this->retry_interval) { |
|
| 154 | + return $this->process_redirect_payment($order_id, false, $response->error); |
|
| 155 | 155 | } |
| 156 | 156 | |
| 157 | - sleep( $this->retry_interval ); |
|
| 157 | + sleep($this->retry_interval); |
|
| 158 | 158 | |
| 159 | 159 | $this->retry_interval++; |
| 160 | - return $this->process_redirect_payment( $order_id, true, $response->error ); |
|
| 160 | + return $this->process_redirect_payment($order_id, true, $response->error); |
|
| 161 | 161 | } else { |
| 162 | - $localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' ); |
|
| 163 | - $order->add_order_note( $localized_message ); |
|
| 164 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
| 162 | + $localized_message = __('Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe'); |
|
| 163 | + $order->add_order_note($localized_message); |
|
| 164 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
| 165 | 165 | } |
| 166 | 166 | } |
| 167 | 167 | |
| 168 | 168 | $localized_messages = WC_Stripe_Helper::get_localized_messages(); |
| 169 | 169 | |
| 170 | - if ( 'card_error' === $response->error->type ) { |
|
| 171 | - $message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message; |
|
| 170 | + if ('card_error' === $response->error->type) { |
|
| 171 | + $message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message; |
|
| 172 | 172 | } else { |
| 173 | - $message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message; |
|
| 173 | + $message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message; |
|
| 174 | 174 | } |
| 175 | 175 | |
| 176 | - throw new WC_Stripe_Exception( print_r( $response, true ), $message ); |
|
| 176 | + throw new WC_Stripe_Exception(print_r($response, true), $message); |
|
| 177 | 177 | } |
| 178 | 178 | |
| 179 | 179 | // To prevent double processing the order on WC side. |
| 180 | - if ( ! $this->is_original_request( $headers ) ) { |
|
| 180 | + if ( ! $this->is_original_request($headers)) { |
|
| 181 | 181 | return; |
| 182 | 182 | } |
| 183 | 183 | |
| 184 | - do_action( 'wc_gateway_stripe_process_redirect_payment', $response, $order ); |
|
| 184 | + do_action('wc_gateway_stripe_process_redirect_payment', $response, $order); |
|
| 185 | 185 | |
| 186 | - $this->process_response( $response, $order ); |
|
| 186 | + $this->process_response($response, $order); |
|
| 187 | 187 | |
| 188 | - } catch ( WC_Stripe_Exception $e ) { |
|
| 189 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 188 | + } catch (WC_Stripe_Exception $e) { |
|
| 189 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 190 | 190 | |
| 191 | - do_action( 'wc_gateway_stripe_process_redirect_payment_error', $e, $order ); |
|
| 191 | + do_action('wc_gateway_stripe_process_redirect_payment_error', $e, $order); |
|
| 192 | 192 | |
| 193 | 193 | /* translators: error message */ |
| 194 | - $order->update_status( 'failed', sprintf( __( 'Stripe payment failed: %s', 'woocommerce-gateway-stripe' ), $e->getLocalizedMessage() ) ); |
|
| 194 | + $order->update_status('failed', sprintf(__('Stripe payment failed: %s', 'woocommerce-gateway-stripe'), $e->getLocalizedMessage())); |
|
| 195 | 195 | |
| 196 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
| 197 | - wp_safe_redirect( wc_get_checkout_url() ); |
|
| 196 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
| 197 | + wp_safe_redirect(wc_get_checkout_url()); |
|
| 198 | 198 | exit; |
| 199 | 199 | } |
| 200 | 200 | } |
@@ -206,13 +206,13 @@ discard block |
||
| 206 | 206 | * @version 4.0.0 |
| 207 | 207 | */ |
| 208 | 208 | public function maybe_process_redirect_order() { |
| 209 | - if ( ! is_order_received_page() || empty( $_GET['client_secret'] ) || empty( $_GET['source'] ) ) { |
|
| 209 | + if ( ! is_order_received_page() || empty($_GET['client_secret']) || empty($_GET['source'])) { |
|
| 210 | 210 | return; |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | - $order_id = wc_clean( $_GET['order_id'] ); |
|
| 213 | + $order_id = wc_clean($_GET['order_id']); |
|
| 214 | 214 | |
| 215 | - $this->process_redirect_payment( $order_id ); |
|
| 215 | + $this->process_redirect_payment($order_id); |
|
| 216 | 216 | } |
| 217 | 217 | |
| 218 | 218 | /** |
@@ -222,32 +222,32 @@ discard block |
||
| 222 | 222 | * @version 4.0.0 |
| 223 | 223 | * @param int $order_id |
| 224 | 224 | */ |
| 225 | - public function capture_payment( $order_id ) { |
|
| 226 | - $order = wc_get_order( $order_id ); |
|
| 225 | + public function capture_payment($order_id) { |
|
| 226 | + $order = wc_get_order($order_id); |
|
| 227 | 227 | |
| 228 | - if ( 'stripe' === ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->payment_method : $order->get_payment_method() ) ) { |
|
| 229 | - $charge = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? get_post_meta( $order_id, '_transaction_id', true ) : $order->get_transaction_id(); |
|
| 230 | - $captured = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? get_post_meta( $order_id, '_stripe_charge_captured', true ) : $order->get_meta( '_stripe_charge_captured', true ); |
|
| 228 | + if ('stripe' === (WC_Stripe_Helper::is_wc_lt('3.0') ? $order->payment_method : $order->get_payment_method())) { |
|
| 229 | + $charge = WC_Stripe_Helper::is_wc_lt('3.0') ? get_post_meta($order_id, '_transaction_id', true) : $order->get_transaction_id(); |
|
| 230 | + $captured = WC_Stripe_Helper::is_wc_lt('3.0') ? get_post_meta($order_id, '_stripe_charge_captured', true) : $order->get_meta('_stripe_charge_captured', true); |
|
| 231 | 231 | $is_stripe_captured = false; |
| 232 | 232 | |
| 233 | - if ( $charge && 'no' === $captured ) { |
|
| 233 | + if ($charge && 'no' === $captured) { |
|
| 234 | 234 | $order_total = $order->get_total(); |
| 235 | 235 | |
| 236 | - if ( 0 < $order->get_total_refunded() ) { |
|
| 236 | + if (0 < $order->get_total_refunded()) { |
|
| 237 | 237 | $order_total = $order_total - $order->get_total_refunded(); |
| 238 | 238 | } |
| 239 | 239 | |
| 240 | - $intent = $this->get_intent_from_order( $order ); |
|
| 241 | - if ( $intent ) { |
|
| 240 | + $intent = $this->get_intent_from_order($order); |
|
| 241 | + if ($intent) { |
|
| 242 | 242 | // If the order has a Payment Intent, then the Intent itself must be captured, not the Charge |
| 243 | - if ( ! empty( $intent->error ) ) { |
|
| 243 | + if ( ! empty($intent->error)) { |
|
| 244 | 244 | /* translators: error message */ |
| 245 | - $order->add_order_note( sprintf( __( 'Unable to capture charge! %s', 'woocommerce-gateway-stripe' ), $intent->error->message ) ); |
|
| 246 | - } elseif ( 'requires_capture' === $intent->status ) { |
|
| 247 | - $level3_data = $this->get_level3_data_from_order( $order ); |
|
| 245 | + $order->add_order_note(sprintf(__('Unable to capture charge! %s', 'woocommerce-gateway-stripe'), $intent->error->message)); |
|
| 246 | + } elseif ('requires_capture' === $intent->status) { |
|
| 247 | + $level3_data = $this->get_level3_data_from_order($order); |
|
| 248 | 248 | $result = WC_Stripe_API::request_with_level3_data( |
| 249 | 249 | array( |
| 250 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $order_total ), |
|
| 250 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($order_total), |
|
| 251 | 251 | 'expand[]' => 'charges.data.balance_transaction', |
| 252 | 252 | ), |
| 253 | 253 | 'payment_intents/' . $intent->id . '/capture', |
@@ -255,30 +255,30 @@ discard block |
||
| 255 | 255 | $order |
| 256 | 256 | ); |
| 257 | 257 | |
| 258 | - if ( ! empty( $result->error ) ) { |
|
| 258 | + if ( ! empty($result->error)) { |
|
| 259 | 259 | /* translators: error message */ |
| 260 | - $order->update_status( 'failed', sprintf( __( 'Unable to capture charge! %s', 'woocommerce-gateway-stripe' ), $result->error->message ) ); |
|
| 260 | + $order->update_status('failed', sprintf(__('Unable to capture charge! %s', 'woocommerce-gateway-stripe'), $result->error->message)); |
|
| 261 | 261 | } else { |
| 262 | 262 | $is_stripe_captured = true; |
| 263 | - $result = end( $result->charges->data ); |
|
| 263 | + $result = end($result->charges->data); |
|
| 264 | 264 | } |
| 265 | - } elseif ( 'succeeded' === $intent->status ) { |
|
| 265 | + } elseif ('succeeded' === $intent->status) { |
|
| 266 | 266 | $is_stripe_captured = true; |
| 267 | 267 | } |
| 268 | 268 | } else { |
| 269 | 269 | // The order doesn't have a Payment Intent, fall back to capturing the Charge directly |
| 270 | 270 | |
| 271 | 271 | // First retrieve charge to see if it has been captured. |
| 272 | - $result = WC_Stripe_API::retrieve( 'charges/' . $charge ); |
|
| 272 | + $result = WC_Stripe_API::retrieve('charges/' . $charge); |
|
| 273 | 273 | |
| 274 | - if ( ! empty( $result->error ) ) { |
|
| 274 | + if ( ! empty($result->error)) { |
|
| 275 | 275 | /* translators: error message */ |
| 276 | - $order->add_order_note( sprintf( __( 'Unable to capture charge! %s', 'woocommerce-gateway-stripe' ), $result->error->message ) ); |
|
| 277 | - } elseif ( false === $result->captured ) { |
|
| 278 | - $level3_data = $this->get_level3_data_from_order( $order ); |
|
| 276 | + $order->add_order_note(sprintf(__('Unable to capture charge! %s', 'woocommerce-gateway-stripe'), $result->error->message)); |
|
| 277 | + } elseif (false === $result->captured) { |
|
| 278 | + $level3_data = $this->get_level3_data_from_order($order); |
|
| 279 | 279 | $result = WC_Stripe_API::request_with_level3_data( |
| 280 | 280 | array( |
| 281 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $order_total ), |
|
| 281 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($order_total), |
|
| 282 | 282 | 'expand[]' => 'balance_transaction', |
| 283 | 283 | ), |
| 284 | 284 | 'charges/' . $charge . '/capture', |
@@ -286,34 +286,34 @@ discard block |
||
| 286 | 286 | $order |
| 287 | 287 | ); |
| 288 | 288 | |
| 289 | - if ( ! empty( $result->error ) ) { |
|
| 289 | + if ( ! empty($result->error)) { |
|
| 290 | 290 | /* translators: error message */ |
| 291 | - $order->update_status( 'failed', sprintf( __( 'Unable to capture charge! %s', 'woocommerce-gateway-stripe' ), $result->error->message ) ); |
|
| 291 | + $order->update_status('failed', sprintf(__('Unable to capture charge! %s', 'woocommerce-gateway-stripe'), $result->error->message)); |
|
| 292 | 292 | } else { |
| 293 | 293 | $is_stripe_captured = true; |
| 294 | 294 | } |
| 295 | - } elseif ( true === $result->captured ) { |
|
| 295 | + } elseif (true === $result->captured) { |
|
| 296 | 296 | $is_stripe_captured = true; |
| 297 | 297 | } |
| 298 | 298 | } |
| 299 | 299 | |
| 300 | - if ( $is_stripe_captured ) { |
|
| 300 | + if ($is_stripe_captured) { |
|
| 301 | 301 | /* translators: transaction id */ |
| 302 | - $order->add_order_note( sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $result->id ) ); |
|
| 303 | - WC_Stripe_Helper::is_wc_lt( '3.0' ) ? update_post_meta( $order_id, '_stripe_charge_captured', 'yes' ) : $order->update_meta_data( '_stripe_charge_captured', 'yes' ); |
|
| 302 | + $order->add_order_note(sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $result->id)); |
|
| 303 | + WC_Stripe_Helper::is_wc_lt('3.0') ? update_post_meta($order_id, '_stripe_charge_captured', 'yes') : $order->update_meta_data('_stripe_charge_captured', 'yes'); |
|
| 304 | 304 | |
| 305 | 305 | // Store other data such as fees |
| 306 | - WC_Stripe_Helper::is_wc_lt( '3.0' ) ? update_post_meta( $order_id, '_transaction_id', $result->id ) : $order->set_transaction_id( $result->id ); |
|
| 306 | + WC_Stripe_Helper::is_wc_lt('3.0') ? update_post_meta($order_id, '_transaction_id', $result->id) : $order->set_transaction_id($result->id); |
|
| 307 | 307 | |
| 308 | - if ( is_callable( array( $order, 'save' ) ) ) { |
|
| 308 | + if (is_callable(array($order, 'save'))) { |
|
| 309 | 309 | $order->save(); |
| 310 | 310 | } |
| 311 | 311 | |
| 312 | - $this->update_fees( $order, $result->balance_transaction->id ); |
|
| 312 | + $this->update_fees($order, $result->balance_transaction->id); |
|
| 313 | 313 | } |
| 314 | 314 | |
| 315 | 315 | // This hook fires when admin manually changes order status to processing or completed. |
| 316 | - do_action( 'woocommerce_stripe_process_manual_capture', $order, $result ); |
|
| 316 | + do_action('woocommerce_stripe_process_manual_capture', $order, $result); |
|
| 317 | 317 | } |
| 318 | 318 | } |
| 319 | 319 | } |
@@ -325,19 +325,19 @@ discard block |
||
| 325 | 325 | * @version 4.2.2 |
| 326 | 326 | * @param int $order_id |
| 327 | 327 | */ |
| 328 | - public function cancel_payment( $order_id ) { |
|
| 329 | - $order = wc_get_order( $order_id ); |
|
| 330 | - |
|
| 331 | - if ( 'stripe' === ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->payment_method : $order->get_payment_method() ) ) { |
|
| 332 | - $captured = WC_Stripe_Helper::is_wc_lt( '3.0' ) |
|
| 333 | - ? get_post_meta( $order_id, '_stripe_charge_captured', true ) |
|
| 334 | - : $order->get_meta( '_stripe_charge_captured', true ); |
|
| 335 | - if ( 'no' === $captured ) { |
|
| 336 | - $this->process_refund( $order_id ); |
|
| 328 | + public function cancel_payment($order_id) { |
|
| 329 | + $order = wc_get_order($order_id); |
|
| 330 | + |
|
| 331 | + if ('stripe' === (WC_Stripe_Helper::is_wc_lt('3.0') ? $order->payment_method : $order->get_payment_method())) { |
|
| 332 | + $captured = WC_Stripe_Helper::is_wc_lt('3.0') |
|
| 333 | + ? get_post_meta($order_id, '_stripe_charge_captured', true) |
|
| 334 | + : $order->get_meta('_stripe_charge_captured', true); |
|
| 335 | + if ('no' === $captured) { |
|
| 336 | + $this->process_refund($order_id); |
|
| 337 | 337 | } |
| 338 | 338 | |
| 339 | 339 | // This hook fires when admin manually changes order status to cancel. |
| 340 | - do_action( 'woocommerce_stripe_process_manual_cancel', $order ); |
|
| 340 | + do_action('woocommerce_stripe_process_manual_cancel', $order); |
|
| 341 | 341 | } |
| 342 | 342 | } |
| 343 | 343 | } |
@@ -7,26 +7,26 @@ discard block |
||
| 7 | 7 | class WC_Stripe_level3_Data_Test extends WP_UnitTestCase { |
| 8 | 8 | public function test_data_for_mutli_item_order() { |
| 9 | 9 | // Skip this test because of the complexity of creating products in WC pre-3.0. |
| 10 | - if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
| 10 | + if (WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
| 11 | 11 | // Dummy assertion. |
| 12 | - $this->assertEquals( WC_Stripe_Helper::is_wc_lt( '3.0' ), true ); |
|
| 12 | + $this->assertEquals(WC_Stripe_Helper::is_wc_lt('3.0'), true); |
|
| 13 | 13 | return; |
| 14 | 14 | } |
| 15 | 15 | |
| 16 | 16 | $store_postcode = '90210'; |
| 17 | - update_option( 'woocommerce_store_postcode', $store_postcode ); |
|
| 17 | + update_option('woocommerce_store_postcode', $store_postcode); |
|
| 18 | 18 | |
| 19 | 19 | // Arrange: Create a couple of products to use. |
| 20 | 20 | $variation_product = WC_Helper_Product::create_variation_product(); |
| 21 | 21 | $variation_ids = $variation_product->get_children(); |
| 22 | 22 | |
| 23 | - $product_1 = wc_get_product ( $variation_ids[0] ); |
|
| 24 | - $product_1->set_regular_price( 19.19 ); |
|
| 25 | - $product_1->set_sale_price( 11.83 ); |
|
| 23 | + $product_1 = wc_get_product($variation_ids[0]); |
|
| 24 | + $product_1->set_regular_price(19.19); |
|
| 25 | + $product_1->set_sale_price(11.83); |
|
| 26 | 26 | $product_1->save(); |
| 27 | 27 | |
| 28 | - $product_2 = wc_get_product( $variation_ids[1] ); |
|
| 29 | - $product_2->set_regular_price( 20.05 ); |
|
| 28 | + $product_2 = wc_get_product($variation_ids[1]); |
|
| 29 | + $product_2->set_regular_price(20.05); |
|
| 30 | 30 | $product_2->save(); |
| 31 | 31 | |
| 32 | 32 | // Arrange: Set up an order with: |
@@ -34,16 +34,16 @@ discard block |
||
| 34 | 34 | // 2) The same product added several times. |
| 35 | 35 | // 3) A valid US ZIP code |
| 36 | 36 | $order = new WC_Order(); |
| 37 | - $order->set_shipping_postcode( '90210' ); |
|
| 38 | - $order->add_product( $product_1, 1 ); // Add one item of the first product variation |
|
| 39 | - $order->add_product( $product_2, 2 ); // Add two items of the second product variation |
|
| 37 | + $order->set_shipping_postcode('90210'); |
|
| 38 | + $order->add_product($product_1, 1); // Add one item of the first product variation |
|
| 39 | + $order->add_product($product_2, 2); // Add two items of the second product variation |
|
| 40 | 40 | |
| 41 | 41 | $order->save(); |
| 42 | 42 | $order->calculate_totals(); |
| 43 | 43 | |
| 44 | 44 | // Act: Call get_level3_data_from_order(). |
| 45 | 45 | $gateway = new WC_Gateway_Stripe(); |
| 46 | - $result = $gateway->get_level3_data_from_order( $order ); |
|
| 46 | + $result = $gateway->get_level3_data_from_order($order); |
|
| 47 | 47 | |
| 48 | 48 | // Assert. |
| 49 | 49 | $this->assertEquals( |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | 'line_items' => array( |
| 56 | 56 | (object) array( |
| 57 | 57 | 'product_code' => (string) $product_1->get_id(), |
| 58 | - 'product_description' => substr( $product_1->get_name(), 0, 26 ), |
|
| 58 | + 'product_description' => substr($product_1->get_name(), 0, 26), |
|
| 59 | 59 | 'unit_cost' => 1183, |
| 60 | 60 | 'quantity' => 1, |
| 61 | 61 | 'tax_amount' => 0, |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | ), |
| 64 | 64 | (object) array( |
| 65 | 65 | 'product_code' => (string) $product_2->get_id(), |
| 66 | - 'product_description' => substr( $product_2->get_name(), 0, 26 ), |
|
| 66 | + 'product_description' => substr($product_2->get_name(), 0, 26), |
|
| 67 | 67 | 'unit_cost' => 2005, |
| 68 | 68 | 'quantity' => 2, |
| 69 | 69 | 'tax_amount' => 0, |
@@ -75,14 +75,14 @@ discard block |
||
| 75 | 75 | ); |
| 76 | 76 | |
| 77 | 77 | // Assert: Check that Stripe's total charge check passes. |
| 78 | - $total_charged = WC_Stripe_Helper::get_stripe_amount( $order->get_total() ); |
|
| 79 | - $sum_of_unit_costs = array_reduce( $result['line_items'], function( $sum, $item ) { |
|
| 78 | + $total_charged = WC_Stripe_Helper::get_stripe_amount($order->get_total()); |
|
| 79 | + $sum_of_unit_costs = array_reduce($result['line_items'], function($sum, $item) { |
|
| 80 | 80 | return $sum + $item->quantity * $item->unit_cost; |
| 81 | 81 | } ); |
| 82 | - $sum_of_taxes = array_reduce( $result['line_items'], function( $sum, $item ) { |
|
| 82 | + $sum_of_taxes = array_reduce($result['line_items'], function($sum, $item) { |
|
| 83 | 83 | return $sum + $item->tax_amount; |
| 84 | 84 | } ); |
| 85 | - $sum_of_discounts = array_reduce( $result['line_items'], function( $sum, $item ) { |
|
| 85 | + $sum_of_discounts = array_reduce($result['line_items'], function($sum, $item) { |
|
| 86 | 86 | return $sum + $item->discount_amount; |
| 87 | 87 | } ); |
| 88 | 88 | $shipping_amount = $result['shipping_amount']; |
@@ -94,31 +94,31 @@ discard block |
||
| 94 | 94 | |
| 95 | 95 | public function test_non_us_shipping_zip_codes() { |
| 96 | 96 | // Skip this test because of the complexity of creating products in WC pre-3.0. |
| 97 | - if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
| 97 | + if (WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
| 98 | 98 | // Dummy assertion. |
| 99 | - $this->assertEquals( WC_Stripe_Helper::is_wc_lt( '3.0' ), true ); |
|
| 99 | + $this->assertEquals(WC_Stripe_Helper::is_wc_lt('3.0'), true); |
|
| 100 | 100 | return; |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | // Update the store with the right post code. |
| 104 | - update_option( 'woocommerce_store_postcode', 1040 ); |
|
| 104 | + update_option('woocommerce_store_postcode', 1040); |
|
| 105 | 105 | |
| 106 | 106 | // Arrange: Create a couple of products to use. |
| 107 | 107 | $product = WC_Helper_Product::create_simple_product(); |
| 108 | - $product->set_regular_price( 19.19 ); |
|
| 108 | + $product->set_regular_price(19.19); |
|
| 109 | 109 | $product->save(); |
| 110 | 110 | |
| 111 | 111 | // Arrange: Set up an order with a non-US postcode. |
| 112 | 112 | $order = new WC_Order(); |
| 113 | - $order->set_shipping_postcode( '1050' ); |
|
| 114 | - $order->add_product( $product, 1 ); |
|
| 113 | + $order->set_shipping_postcode('1050'); |
|
| 114 | + $order->add_product($product, 1); |
|
| 115 | 115 | $order->save(); |
| 116 | 116 | $order->calculate_totals(); |
| 117 | 117 | |
| 118 | 118 | // Act: Call get_level3_data_from_order(). |
| 119 | 119 | $store_postcode = '1100'; |
| 120 | 120 | $gateway = new WC_Gateway_Stripe(); |
| 121 | - $result = $gateway->get_level3_data_from_order( $order ); |
|
| 121 | + $result = $gateway->get_level3_data_from_order($order); |
|
| 122 | 122 | |
| 123 | 123 | // Assert. |
| 124 | 124 | $this->assertEquals( |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | 'line_items' => array( |
| 129 | 129 | (object) array( |
| 130 | 130 | 'product_code' => (string) $product->get_id(), |
| 131 | - 'product_description' => substr( $product->get_name(), 0, 26 ), |
|
| 131 | + 'product_description' => substr($product->get_name(), 0, 26), |
|
| 132 | 132 | 'unit_cost' => 1919, |
| 133 | 133 | 'quantity' => 1, |
| 134 | 134 | 'tax_amount' => 0, |
@@ -141,14 +141,14 @@ discard block |
||
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | public function test_pre_30_postal_code_omission() { |
| 144 | - if ( ! WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
| 144 | + if ( ! WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
| 145 | 145 | // Dummy assertion. |
| 146 | - $this->assertEquals( WC_Stripe_Helper::is_wc_lt( '3.0' ), false ); |
|
| 146 | + $this->assertEquals(WC_Stripe_Helper::is_wc_lt('3.0'), false); |
|
| 147 | 147 | return; |
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | $order = new WC_Order(); |
| 151 | 151 | $gateway = new WC_Gateway_Stripe(); |
| 152 | - $this->assertEquals( array(), $gateway->get_level3_data_from_order( $order ) ); |
|
| 152 | + $this->assertEquals(array(), $gateway->get_level3_data_from_order($order)); |
|
| 153 | 153 | } |
| 154 | 154 | } |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if ( ! defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function __construct() { |
| 59 | 59 | $this->id = 'stripe_sofort'; |
| 60 | - $this->method_title = __( 'Stripe SOFORT', 'woocommerce-gateway-stripe' ); |
|
| 60 | + $this->method_title = __('Stripe SOFORT', 'woocommerce-gateway-stripe'); |
|
| 61 | 61 | /* translators: link */ |
| 62 | - $this->method_description = sprintf( __( 'All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=stripe' ) ); |
|
| 62 | + $this->method_description = sprintf(__('All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe'), admin_url('admin.php?page=wc-settings&tab=checkout§ion=stripe')); |
|
| 63 | 63 | $this->supports = array( |
| 64 | 64 | 'products', |
| 65 | 65 | 'refunds', |
@@ -71,23 +71,23 @@ discard block |
||
| 71 | 71 | // Load the settings. |
| 72 | 72 | $this->init_settings(); |
| 73 | 73 | |
| 74 | - $main_settings = get_option( 'woocommerce_stripe_settings' ); |
|
| 75 | - $this->title = $this->get_option( 'title' ); |
|
| 76 | - $this->description = $this->get_option( 'description' ); |
|
| 77 | - $this->enabled = $this->get_option( 'enabled' ); |
|
| 78 | - $this->testmode = ( ! empty( $main_settings['testmode'] ) && 'yes' === $main_settings['testmode'] ) ? true : false; |
|
| 79 | - $this->saved_cards = ( ! empty( $main_settings['saved_cards'] ) && 'yes' === $main_settings['saved_cards'] ) ? true : false; |
|
| 80 | - $this->publishable_key = ! empty( $main_settings['publishable_key'] ) ? $main_settings['publishable_key'] : ''; |
|
| 81 | - $this->secret_key = ! empty( $main_settings['secret_key'] ) ? $main_settings['secret_key'] : ''; |
|
| 82 | - $this->statement_descriptor = ! empty( $main_settings['statement_descriptor'] ) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | - |
|
| 84 | - if ( $this->testmode ) { |
|
| 85 | - $this->publishable_key = ! empty( $main_settings['test_publishable_key'] ) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | - $this->secret_key = ! empty( $main_settings['test_secret_key'] ) ? $main_settings['test_secret_key'] : ''; |
|
| 74 | + $main_settings = get_option('woocommerce_stripe_settings'); |
|
| 75 | + $this->title = $this->get_option('title'); |
|
| 76 | + $this->description = $this->get_option('description'); |
|
| 77 | + $this->enabled = $this->get_option('enabled'); |
|
| 78 | + $this->testmode = ( ! empty($main_settings['testmode']) && 'yes' === $main_settings['testmode']) ? true : false; |
|
| 79 | + $this->saved_cards = ( ! empty($main_settings['saved_cards']) && 'yes' === $main_settings['saved_cards']) ? true : false; |
|
| 80 | + $this->publishable_key = ! empty($main_settings['publishable_key']) ? $main_settings['publishable_key'] : ''; |
|
| 81 | + $this->secret_key = ! empty($main_settings['secret_key']) ? $main_settings['secret_key'] : ''; |
|
| 82 | + $this->statement_descriptor = ! empty($main_settings['statement_descriptor']) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | + |
|
| 84 | + if ($this->testmode) { |
|
| 85 | + $this->publishable_key = ! empty($main_settings['test_publishable_key']) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | + $this->secret_key = ! empty($main_settings['test_secret_key']) ? $main_settings['test_secret_key'] : ''; |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); |
|
| 90 | - add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) ); |
|
| 89 | + add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options')); |
|
| 90 | + add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | /** |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | * @return bool |
| 115 | 115 | */ |
| 116 | 116 | public function is_available() { |
| 117 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 117 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 118 | 118 | return false; |
| 119 | 119 | } |
| 120 | 120 | |
@@ -133,9 +133,9 @@ discard block |
||
| 133 | 133 | |
| 134 | 134 | $icons_str = ''; |
| 135 | 135 | |
| 136 | - $icons_str .= isset( $icons['sofort'] ) ? $icons['sofort'] : ''; |
|
| 136 | + $icons_str .= isset($icons['sofort']) ? $icons['sofort'] : ''; |
|
| 137 | 137 | |
| 138 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
| 138 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | /** |
@@ -146,19 +146,19 @@ discard block |
||
| 146 | 146 | * @access public |
| 147 | 147 | */ |
| 148 | 148 | public function payment_scripts() { |
| 149 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
| 149 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
| 150 | 150 | return; |
| 151 | 151 | } |
| 152 | 152 | |
| 153 | - wp_enqueue_style( 'stripe_styles' ); |
|
| 154 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
| 153 | + wp_enqueue_style('stripe_styles'); |
|
| 154 | + wp_enqueue_script('woocommerce_stripe'); |
|
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | /** |
| 158 | 158 | * Initialize Gateway Settings Form Fields. |
| 159 | 159 | */ |
| 160 | 160 | public function init_form_fields() { |
| 161 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-sofort-settings.php' ); |
|
| 161 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-sofort-settings.php'); |
|
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | /** |
@@ -171,13 +171,13 @@ discard block |
||
| 171 | 171 | $description = $this->get_description(); |
| 172 | 172 | |
| 173 | 173 | // If paying from order, we need to get total from order not cart. |
| 174 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
| 175 | - $order = wc_get_order( wc_clean( $wp->query_vars['order-pay'] ) ); |
|
| 174 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
| 175 | + $order = wc_get_order(wc_clean($wp->query_vars['order-pay'])); |
|
| 176 | 176 | $total = $order->get_total(); |
| 177 | 177 | } |
| 178 | 178 | |
| 179 | - if ( is_add_payment_method_page() ) { |
|
| 180 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
| 179 | + if (is_add_payment_method_page()) { |
|
| 180 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
| 181 | 181 | $total = ''; |
| 182 | 182 | } else { |
| 183 | 183 | $pay_button_text = ''; |
@@ -185,11 +185,11 @@ discard block |
||
| 185 | 185 | |
| 186 | 186 | echo '<div |
| 187 | 187 | id="stripe-sofort-payment-data" |
| 188 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
| 189 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
| 188 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
| 189 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
| 190 | 190 | |
| 191 | - if ( $description ) { |
|
| 192 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); |
|
| 191 | + if ($description) { |
|
| 192 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | echo '</div>'; |
@@ -203,28 +203,28 @@ discard block |
||
| 203 | 203 | * @param object $order |
| 204 | 204 | * @return mixed |
| 205 | 205 | */ |
| 206 | - public function create_source( $order ) { |
|
| 207 | - $currency = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->get_order_currency() : $order->get_currency(); |
|
| 208 | - $bank_country = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->billing_country : $order->get_billing_country(); |
|
| 209 | - $return_url = $this->get_stripe_return_url( $order ); |
|
| 206 | + public function create_source($order) { |
|
| 207 | + $currency = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->get_order_currency() : $order->get_currency(); |
|
| 208 | + $bank_country = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->billing_country : $order->get_billing_country(); |
|
| 209 | + $return_url = $this->get_stripe_return_url($order); |
|
| 210 | 210 | $post_data = array(); |
| 211 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency ); |
|
| 212 | - $post_data['currency'] = strtolower( $currency ); |
|
| 211 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency); |
|
| 212 | + $post_data['currency'] = strtolower($currency); |
|
| 213 | 213 | $post_data['type'] = 'sofort'; |
| 214 | - $post_data['owner'] = $this->get_owner_details( $order ); |
|
| 215 | - $post_data['redirect'] = array( 'return_url' => $return_url ); |
|
| 214 | + $post_data['owner'] = $this->get_owner_details($order); |
|
| 215 | + $post_data['redirect'] = array('return_url' => $return_url); |
|
| 216 | 216 | $post_data['sofort'] = array( |
| 217 | 217 | 'country' => $bank_country, |
| 218 | 218 | 'preferred_language' => $this->get_locale(), |
| 219 | 219 | ); |
| 220 | 220 | |
| 221 | - if ( ! empty( $this->statement_descriptor ) ) { |
|
| 222 | - $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $this->statement_descriptor ); |
|
| 221 | + if ( ! empty($this->statement_descriptor)) { |
|
| 222 | + $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($this->statement_descriptor); |
|
| 223 | 223 | } |
| 224 | 224 | |
| 225 | - WC_Stripe_Logger::log( 'Info: Begin creating SOFORT source' ); |
|
| 225 | + WC_Stripe_Logger::log('Info: Begin creating SOFORT source'); |
|
| 226 | 226 | |
| 227 | - return WC_Stripe_API::request( apply_filters( 'wc_stripe_sofort_source', $post_data, $order ), 'sources' ); |
|
| 227 | + return WC_Stripe_API::request(apply_filters('wc_stripe_sofort_source', $post_data, $order), 'sources'); |
|
| 228 | 228 | } |
| 229 | 229 | |
| 230 | 230 | /** |
@@ -238,59 +238,59 @@ discard block |
||
| 238 | 238 | * |
| 239 | 239 | * @return array|void |
| 240 | 240 | */ |
| 241 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
| 241 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
| 242 | 242 | try { |
| 243 | - $order = wc_get_order( $order_id ); |
|
| 243 | + $order = wc_get_order($order_id); |
|
| 244 | 244 | |
| 245 | 245 | // This will throw exception if not valid. |
| 246 | - $this->validate_minimum_order_amount( $order ); |
|
| 246 | + $this->validate_minimum_order_amount($order); |
|
| 247 | 247 | |
| 248 | 248 | // This comes from the create account checkbox in the checkout page. |
| 249 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
| 249 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
| 250 | 250 | |
| 251 | - if ( $create_account ) { |
|
| 252 | - $new_customer_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->customer_user : $order->get_customer_id(); |
|
| 253 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
| 251 | + if ($create_account) { |
|
| 252 | + $new_customer_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->customer_user : $order->get_customer_id(); |
|
| 253 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
| 254 | 254 | $new_stripe_customer->create_customer(); |
| 255 | 255 | } |
| 256 | 256 | |
| 257 | - $response = $this->create_source( $order ); |
|
| 257 | + $response = $this->create_source($order); |
|
| 258 | 258 | |
| 259 | - if ( ! empty( $response->error ) ) { |
|
| 260 | - $order->add_order_note( $response->error->message ); |
|
| 259 | + if ( ! empty($response->error)) { |
|
| 260 | + $order->add_order_note($response->error->message); |
|
| 261 | 261 | |
| 262 | 262 | $localized_messages = WC_Stripe_Helper::get_localized_messages(); |
| 263 | 263 | |
| 264 | - if ( 'invalid_sofort_country' === $response->error->code ) { |
|
| 265 | - $localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message; |
|
| 264 | + if ('invalid_sofort_country' === $response->error->code) { |
|
| 265 | + $localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message; |
|
| 266 | 266 | } else { |
| 267 | - $localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message; |
|
| 267 | + $localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message; |
|
| 268 | 268 | } |
| 269 | 269 | |
| 270 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
| 270 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
| 271 | 271 | } |
| 272 | 272 | |
| 273 | - if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
| 274 | - update_post_meta( $order_id, '_stripe_source_id', $response->id ); |
|
| 273 | + if (WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
| 274 | + update_post_meta($order_id, '_stripe_source_id', $response->id); |
|
| 275 | 275 | } else { |
| 276 | - $order->update_meta_data( '_stripe_source_id', $response->id ); |
|
| 276 | + $order->update_meta_data('_stripe_source_id', $response->id); |
|
| 277 | 277 | $order->save(); |
| 278 | 278 | } |
| 279 | 279 | |
| 280 | - WC_Stripe_Logger::log( 'Info: Redirecting to SOFORT...' ); |
|
| 280 | + WC_Stripe_Logger::log('Info: Redirecting to SOFORT...'); |
|
| 281 | 281 | |
| 282 | 282 | return array( |
| 283 | 283 | 'result' => 'success', |
| 284 | - 'redirect' => esc_url_raw( $response->redirect->url ), |
|
| 284 | + 'redirect' => esc_url_raw($response->redirect->url), |
|
| 285 | 285 | ); |
| 286 | - } catch ( WC_Stripe_Exception $e ) { |
|
| 287 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
| 288 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 286 | + } catch (WC_Stripe_Exception $e) { |
|
| 287 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
| 288 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 289 | 289 | |
| 290 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
| 290 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
| 291 | 291 | |
| 292 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
| 293 | - $this->send_failed_order_email( $order_id ); |
|
| 292 | + if ($order->has_status(array('pending', 'failed'))) { |
|
| 293 | + $this->send_failed_order_email($order_id); |
|
| 294 | 294 | } |
| 295 | 295 | |
| 296 | 296 | return array( |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if ( ! defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function __construct() { |
| 59 | 59 | $this->id = 'stripe_giropay'; |
| 60 | - $this->method_title = __( 'Stripe Giropay', 'woocommerce-gateway-stripe' ); |
|
| 60 | + $this->method_title = __('Stripe Giropay', 'woocommerce-gateway-stripe'); |
|
| 61 | 61 | /* translators: link */ |
| 62 | - $this->method_description = sprintf( __( 'All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=stripe' ) ); |
|
| 62 | + $this->method_description = sprintf(__('All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe'), admin_url('admin.php?page=wc-settings&tab=checkout§ion=stripe')); |
|
| 63 | 63 | $this->supports = array( |
| 64 | 64 | 'products', |
| 65 | 65 | 'refunds', |
@@ -71,23 +71,23 @@ discard block |
||
| 71 | 71 | // Load the settings. |
| 72 | 72 | $this->init_settings(); |
| 73 | 73 | |
| 74 | - $main_settings = get_option( 'woocommerce_stripe_settings' ); |
|
| 75 | - $this->title = $this->get_option( 'title' ); |
|
| 76 | - $this->description = $this->get_option( 'description' ); |
|
| 77 | - $this->enabled = $this->get_option( 'enabled' ); |
|
| 78 | - $this->testmode = ( ! empty( $main_settings['testmode'] ) && 'yes' === $main_settings['testmode'] ) ? true : false; |
|
| 79 | - $this->saved_cards = ( ! empty( $main_settings['saved_cards'] ) && 'yes' === $main_settings['saved_cards'] ) ? true : false; |
|
| 80 | - $this->publishable_key = ! empty( $main_settings['publishable_key'] ) ? $main_settings['publishable_key'] : ''; |
|
| 81 | - $this->secret_key = ! empty( $main_settings['secret_key'] ) ? $main_settings['secret_key'] : ''; |
|
| 82 | - $this->statement_descriptor = ! empty( $main_settings['statement_descriptor'] ) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | - |
|
| 84 | - if ( $this->testmode ) { |
|
| 85 | - $this->publishable_key = ! empty( $main_settings['test_publishable_key'] ) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | - $this->secret_key = ! empty( $main_settings['test_secret_key'] ) ? $main_settings['test_secret_key'] : ''; |
|
| 74 | + $main_settings = get_option('woocommerce_stripe_settings'); |
|
| 75 | + $this->title = $this->get_option('title'); |
|
| 76 | + $this->description = $this->get_option('description'); |
|
| 77 | + $this->enabled = $this->get_option('enabled'); |
|
| 78 | + $this->testmode = ( ! empty($main_settings['testmode']) && 'yes' === $main_settings['testmode']) ? true : false; |
|
| 79 | + $this->saved_cards = ( ! empty($main_settings['saved_cards']) && 'yes' === $main_settings['saved_cards']) ? true : false; |
|
| 80 | + $this->publishable_key = ! empty($main_settings['publishable_key']) ? $main_settings['publishable_key'] : ''; |
|
| 81 | + $this->secret_key = ! empty($main_settings['secret_key']) ? $main_settings['secret_key'] : ''; |
|
| 82 | + $this->statement_descriptor = ! empty($main_settings['statement_descriptor']) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | + |
|
| 84 | + if ($this->testmode) { |
|
| 85 | + $this->publishable_key = ! empty($main_settings['test_publishable_key']) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | + $this->secret_key = ! empty($main_settings['test_secret_key']) ? $main_settings['test_secret_key'] : ''; |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); |
|
| 90 | - add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) ); |
|
| 89 | + add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options')); |
|
| 90 | + add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | /** |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | * @return bool |
| 115 | 115 | */ |
| 116 | 116 | public function is_available() { |
| 117 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 117 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 118 | 118 | return false; |
| 119 | 119 | } |
| 120 | 120 | |
@@ -133,9 +133,9 @@ discard block |
||
| 133 | 133 | |
| 134 | 134 | $icons_str = ''; |
| 135 | 135 | |
| 136 | - $icons_str .= isset( $icons['giropay'] ) ? $icons['giropay'] : ''; |
|
| 136 | + $icons_str .= isset($icons['giropay']) ? $icons['giropay'] : ''; |
|
| 137 | 137 | |
| 138 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
| 138 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | /** |
@@ -146,19 +146,19 @@ discard block |
||
| 146 | 146 | * @access public |
| 147 | 147 | */ |
| 148 | 148 | public function payment_scripts() { |
| 149 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
| 149 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
| 150 | 150 | return; |
| 151 | 151 | } |
| 152 | 152 | |
| 153 | - wp_enqueue_style( 'stripe_styles' ); |
|
| 154 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
| 153 | + wp_enqueue_style('stripe_styles'); |
|
| 154 | + wp_enqueue_script('woocommerce_stripe'); |
|
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | /** |
| 158 | 158 | * Initialize Gateway Settings Form Fields. |
| 159 | 159 | */ |
| 160 | 160 | public function init_form_fields() { |
| 161 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-giropay-settings.php' ); |
|
| 161 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-giropay-settings.php'); |
|
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | /** |
@@ -171,13 +171,13 @@ discard block |
||
| 171 | 171 | $description = $this->get_description(); |
| 172 | 172 | |
| 173 | 173 | // If paying from order, we need to get total from order not cart. |
| 174 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
| 175 | - $order = wc_get_order( wc_clean( $wp->query_vars['order-pay'] ) ); |
|
| 174 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
| 175 | + $order = wc_get_order(wc_clean($wp->query_vars['order-pay'])); |
|
| 176 | 176 | $total = $order->get_total(); |
| 177 | 177 | } |
| 178 | 178 | |
| 179 | - if ( is_add_payment_method_page() ) { |
|
| 180 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
| 179 | + if (is_add_payment_method_page()) { |
|
| 180 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
| 181 | 181 | $total = ''; |
| 182 | 182 | } else { |
| 183 | 183 | $pay_button_text = ''; |
@@ -185,11 +185,11 @@ discard block |
||
| 185 | 185 | |
| 186 | 186 | echo '<div |
| 187 | 187 | id="stripe-giropay-payment-data" |
| 188 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
| 189 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
| 188 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
| 189 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
| 190 | 190 | |
| 191 | - if ( $description ) { |
|
| 192 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); |
|
| 191 | + if ($description) { |
|
| 192 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | echo '</div>'; |
@@ -203,24 +203,24 @@ discard block |
||
| 203 | 203 | * @param object $order |
| 204 | 204 | * @return mixed |
| 205 | 205 | */ |
| 206 | - public function create_source( $order ) { |
|
| 207 | - $currency = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->get_order_currency() : $order->get_currency(); |
|
| 208 | - $order_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id(); |
|
| 209 | - $return_url = $this->get_stripe_return_url( $order ); |
|
| 206 | + public function create_source($order) { |
|
| 207 | + $currency = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->get_order_currency() : $order->get_currency(); |
|
| 208 | + $order_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id(); |
|
| 209 | + $return_url = $this->get_stripe_return_url($order); |
|
| 210 | 210 | $post_data = array(); |
| 211 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency ); |
|
| 212 | - $post_data['currency'] = strtolower( $currency ); |
|
| 211 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency); |
|
| 212 | + $post_data['currency'] = strtolower($currency); |
|
| 213 | 213 | $post_data['type'] = 'giropay'; |
| 214 | - $post_data['owner'] = $this->get_owner_details( $order ); |
|
| 215 | - $post_data['redirect'] = array( 'return_url' => $return_url ); |
|
| 214 | + $post_data['owner'] = $this->get_owner_details($order); |
|
| 215 | + $post_data['redirect'] = array('return_url' => $return_url); |
|
| 216 | 216 | |
| 217 | - if ( ! empty( $this->statement_descriptor ) ) { |
|
| 218 | - $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $this->statement_descriptor ); |
|
| 217 | + if ( ! empty($this->statement_descriptor)) { |
|
| 218 | + $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($this->statement_descriptor); |
|
| 219 | 219 | } |
| 220 | 220 | |
| 221 | - WC_Stripe_Logger::log( 'Info: Begin creating Giropay source' ); |
|
| 221 | + WC_Stripe_Logger::log('Info: Begin creating Giropay source'); |
|
| 222 | 222 | |
| 223 | - return WC_Stripe_API::request( apply_filters( 'wc_stripe_giropay_source', $post_data, $order ), 'sources' ); |
|
| 223 | + return WC_Stripe_API::request(apply_filters('wc_stripe_giropay_source', $post_data, $order), 'sources'); |
|
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | /** |
@@ -234,51 +234,51 @@ discard block |
||
| 234 | 234 | * |
| 235 | 235 | * @return array|void |
| 236 | 236 | */ |
| 237 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
| 237 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
| 238 | 238 | try { |
| 239 | - $order = wc_get_order( $order_id ); |
|
| 239 | + $order = wc_get_order($order_id); |
|
| 240 | 240 | |
| 241 | 241 | // This will throw exception if not valid. |
| 242 | - $this->validate_minimum_order_amount( $order ); |
|
| 242 | + $this->validate_minimum_order_amount($order); |
|
| 243 | 243 | |
| 244 | 244 | // This comes from the create account checkbox in the checkout page. |
| 245 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
| 245 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
| 246 | 246 | |
| 247 | - if ( $create_account ) { |
|
| 248 | - $new_customer_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->customer_user : $order->get_customer_id(); |
|
| 249 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
| 247 | + if ($create_account) { |
|
| 248 | + $new_customer_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->customer_user : $order->get_customer_id(); |
|
| 249 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
| 250 | 250 | $new_stripe_customer->create_customer(); |
| 251 | 251 | } |
| 252 | 252 | |
| 253 | - $response = $this->create_source( $order ); |
|
| 253 | + $response = $this->create_source($order); |
|
| 254 | 254 | |
| 255 | - if ( ! empty( $response->error ) ) { |
|
| 256 | - $order->add_order_note( $response->error->message ); |
|
| 255 | + if ( ! empty($response->error)) { |
|
| 256 | + $order->add_order_note($response->error->message); |
|
| 257 | 257 | |
| 258 | - throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message ); |
|
| 258 | + throw new WC_Stripe_Exception(print_r($response, true), $response->error->message); |
|
| 259 | 259 | } |
| 260 | 260 | |
| 261 | - if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
| 262 | - update_post_meta( $order_id, '_stripe_source_id', $response->id ); |
|
| 261 | + if (WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
| 262 | + update_post_meta($order_id, '_stripe_source_id', $response->id); |
|
| 263 | 263 | } else { |
| 264 | - $order->update_meta_data( '_stripe_source_id', $response->id ); |
|
| 264 | + $order->update_meta_data('_stripe_source_id', $response->id); |
|
| 265 | 265 | $order->save(); |
| 266 | 266 | } |
| 267 | 267 | |
| 268 | - WC_Stripe_Logger::log( 'Info: Redirecting to Giropay...' ); |
|
| 268 | + WC_Stripe_Logger::log('Info: Redirecting to Giropay...'); |
|
| 269 | 269 | |
| 270 | 270 | return array( |
| 271 | 271 | 'result' => 'success', |
| 272 | - 'redirect' => esc_url_raw( $response->redirect->url ), |
|
| 272 | + 'redirect' => esc_url_raw($response->redirect->url), |
|
| 273 | 273 | ); |
| 274 | - } catch ( WC_Stripe_Exception $e ) { |
|
| 275 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
| 276 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 274 | + } catch (WC_Stripe_Exception $e) { |
|
| 275 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
| 276 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 277 | 277 | |
| 278 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
| 278 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
| 279 | 279 | |
| 280 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
| 281 | - $this->send_failed_order_email( $order_id ); |
|
| 280 | + if ($order->has_status(array('pending', 'failed'))) { |
|
| 281 | + $this->send_failed_order_email($order_id); |
|
| 282 | 282 | } |
| 283 | 283 | |
| 284 | 284 | return array( |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if ( ! defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function __construct() { |
| 59 | 59 | $this->id = 'stripe_p24'; |
| 60 | - $this->method_title = __( 'Stripe P24', 'woocommerce-gateway-stripe' ); |
|
| 60 | + $this->method_title = __('Stripe P24', 'woocommerce-gateway-stripe'); |
|
| 61 | 61 | /* translators: link */ |
| 62 | - $this->method_description = sprintf( __( 'All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=stripe' ) ); |
|
| 62 | + $this->method_description = sprintf(__('All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe'), admin_url('admin.php?page=wc-settings&tab=checkout§ion=stripe')); |
|
| 63 | 63 | $this->supports = array( |
| 64 | 64 | 'products', |
| 65 | 65 | 'refunds', |
@@ -71,23 +71,23 @@ discard block |
||
| 71 | 71 | // Load the settings. |
| 72 | 72 | $this->init_settings(); |
| 73 | 73 | |
| 74 | - $main_settings = get_option( 'woocommerce_stripe_settings' ); |
|
| 75 | - $this->title = $this->get_option( 'title' ); |
|
| 76 | - $this->description = $this->get_option( 'description' ); |
|
| 77 | - $this->enabled = $this->get_option( 'enabled' ); |
|
| 78 | - $this->testmode = ( ! empty( $main_settings['testmode'] ) && 'yes' === $main_settings['testmode'] ) ? true : false; |
|
| 79 | - $this->saved_cards = ( ! empty( $main_settings['saved_cards'] ) && 'yes' === $main_settings['saved_cards'] ) ? true : false; |
|
| 80 | - $this->publishable_key = ! empty( $main_settings['publishable_key'] ) ? $main_settings['publishable_key'] : ''; |
|
| 81 | - $this->secret_key = ! empty( $main_settings['secret_key'] ) ? $main_settings['secret_key'] : ''; |
|
| 82 | - $this->statement_descriptor = ! empty( $main_settings['statement_descriptor'] ) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | - |
|
| 84 | - if ( $this->testmode ) { |
|
| 85 | - $this->publishable_key = ! empty( $main_settings['test_publishable_key'] ) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | - $this->secret_key = ! empty( $main_settings['test_secret_key'] ) ? $main_settings['test_secret_key'] : ''; |
|
| 74 | + $main_settings = get_option('woocommerce_stripe_settings'); |
|
| 75 | + $this->title = $this->get_option('title'); |
|
| 76 | + $this->description = $this->get_option('description'); |
|
| 77 | + $this->enabled = $this->get_option('enabled'); |
|
| 78 | + $this->testmode = ( ! empty($main_settings['testmode']) && 'yes' === $main_settings['testmode']) ? true : false; |
|
| 79 | + $this->saved_cards = ( ! empty($main_settings['saved_cards']) && 'yes' === $main_settings['saved_cards']) ? true : false; |
|
| 80 | + $this->publishable_key = ! empty($main_settings['publishable_key']) ? $main_settings['publishable_key'] : ''; |
|
| 81 | + $this->secret_key = ! empty($main_settings['secret_key']) ? $main_settings['secret_key'] : ''; |
|
| 82 | + $this->statement_descriptor = ! empty($main_settings['statement_descriptor']) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | + |
|
| 84 | + if ($this->testmode) { |
|
| 85 | + $this->publishable_key = ! empty($main_settings['test_publishable_key']) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | + $this->secret_key = ! empty($main_settings['test_secret_key']) ? $main_settings['test_secret_key'] : ''; |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); |
|
| 90 | - add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) ); |
|
| 89 | + add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options')); |
|
| 90 | + add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | /** |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | * @return bool |
| 116 | 116 | */ |
| 117 | 117 | public function is_available() { |
| 118 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 118 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 119 | 119 | return false; |
| 120 | 120 | } |
| 121 | 121 | |
@@ -134,9 +134,9 @@ discard block |
||
| 134 | 134 | |
| 135 | 135 | $icons_str = ''; |
| 136 | 136 | |
| 137 | - $icons_str .= isset( $icons['p24'] ) ? $icons['p24'] : ''; |
|
| 137 | + $icons_str .= isset($icons['p24']) ? $icons['p24'] : ''; |
|
| 138 | 138 | |
| 139 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
| 139 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | /** |
@@ -147,19 +147,19 @@ discard block |
||
| 147 | 147 | * @access public |
| 148 | 148 | */ |
| 149 | 149 | public function payment_scripts() { |
| 150 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
| 150 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
| 151 | 151 | return; |
| 152 | 152 | } |
| 153 | 153 | |
| 154 | - wp_enqueue_style( 'stripe_styles' ); |
|
| 155 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
| 154 | + wp_enqueue_style('stripe_styles'); |
|
| 155 | + wp_enqueue_script('woocommerce_stripe'); |
|
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | /** |
| 159 | 159 | * Initialize Gateway Settings Form Fields. |
| 160 | 160 | */ |
| 161 | 161 | public function init_form_fields() { |
| 162 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-p24-settings.php' ); |
|
| 162 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-p24-settings.php'); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |
@@ -172,13 +172,13 @@ discard block |
||
| 172 | 172 | $description = $this->get_description(); |
| 173 | 173 | |
| 174 | 174 | // If paying from order, we need to get total from order not cart. |
| 175 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
| 176 | - $order = wc_get_order( wc_clean( $wp->query_vars['order-pay'] ) ); |
|
| 175 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
| 176 | + $order = wc_get_order(wc_clean($wp->query_vars['order-pay'])); |
|
| 177 | 177 | $total = $order->get_total(); |
| 178 | 178 | } |
| 179 | 179 | |
| 180 | - if ( is_add_payment_method_page() ) { |
|
| 181 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
| 180 | + if (is_add_payment_method_page()) { |
|
| 181 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
| 182 | 182 | $total = ''; |
| 183 | 183 | } else { |
| 184 | 184 | $pay_button_text = ''; |
@@ -186,11 +186,11 @@ discard block |
||
| 186 | 186 | |
| 187 | 187 | echo '<div |
| 188 | 188 | id="stripe-p24-payment-data" |
| 189 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
| 190 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
| 189 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
| 190 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
| 191 | 191 | |
| 192 | - if ( $description ) { |
|
| 193 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); |
|
| 192 | + if ($description) { |
|
| 193 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); |
|
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | echo '</div>'; |
@@ -204,20 +204,20 @@ discard block |
||
| 204 | 204 | * @param object $order |
| 205 | 205 | * @return mixed |
| 206 | 206 | */ |
| 207 | - public function create_source( $order ) { |
|
| 208 | - $currency = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->get_order_currency() : $order->get_currency(); |
|
| 209 | - $order_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id(); |
|
| 210 | - $return_url = $this->get_stripe_return_url( $order ); |
|
| 207 | + public function create_source($order) { |
|
| 208 | + $currency = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->get_order_currency() : $order->get_currency(); |
|
| 209 | + $order_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id(); |
|
| 210 | + $return_url = $this->get_stripe_return_url($order); |
|
| 211 | 211 | $post_data = array(); |
| 212 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency ); |
|
| 213 | - $post_data['currency'] = strtolower( $currency ); |
|
| 212 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency); |
|
| 213 | + $post_data['currency'] = strtolower($currency); |
|
| 214 | 214 | $post_data['type'] = 'p24'; |
| 215 | - $post_data['owner'] = $this->get_owner_details( $order ); |
|
| 216 | - $post_data['redirect'] = array( 'return_url' => $return_url ); |
|
| 215 | + $post_data['owner'] = $this->get_owner_details($order); |
|
| 216 | + $post_data['redirect'] = array('return_url' => $return_url); |
|
| 217 | 217 | |
| 218 | - WC_Stripe_Logger::log( 'Info: Begin creating P24 source' ); |
|
| 218 | + WC_Stripe_Logger::log('Info: Begin creating P24 source'); |
|
| 219 | 219 | |
| 220 | - return WC_Stripe_API::request( apply_filters( 'wc_stripe_p24_source', $post_data, $order ), 'sources' ); |
|
| 220 | + return WC_Stripe_API::request(apply_filters('wc_stripe_p24_source', $post_data, $order), 'sources'); |
|
| 221 | 221 | } |
| 222 | 222 | |
| 223 | 223 | /** |
@@ -231,51 +231,51 @@ discard block |
||
| 231 | 231 | * |
| 232 | 232 | * @return array|void |
| 233 | 233 | */ |
| 234 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
| 234 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
| 235 | 235 | try { |
| 236 | - $order = wc_get_order( $order_id ); |
|
| 236 | + $order = wc_get_order($order_id); |
|
| 237 | 237 | |
| 238 | 238 | // This will throw exception if not valid. |
| 239 | - $this->validate_minimum_order_amount( $order ); |
|
| 239 | + $this->validate_minimum_order_amount($order); |
|
| 240 | 240 | |
| 241 | 241 | // This comes from the create account checkbox in the checkout page. |
| 242 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
| 242 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
| 243 | 243 | |
| 244 | - if ( $create_account ) { |
|
| 245 | - $new_customer_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->customer_user : $order->get_customer_id(); |
|
| 246 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
| 244 | + if ($create_account) { |
|
| 245 | + $new_customer_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->customer_user : $order->get_customer_id(); |
|
| 246 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
| 247 | 247 | $new_stripe_customer->create_customer(); |
| 248 | 248 | } |
| 249 | 249 | |
| 250 | - $response = $this->create_source( $order ); |
|
| 250 | + $response = $this->create_source($order); |
|
| 251 | 251 | |
| 252 | - if ( ! empty( $response->error ) ) { |
|
| 253 | - $order->add_order_note( $response->error->message ); |
|
| 252 | + if ( ! empty($response->error)) { |
|
| 253 | + $order->add_order_note($response->error->message); |
|
| 254 | 254 | |
| 255 | - throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message ); |
|
| 255 | + throw new WC_Stripe_Exception(print_r($response, true), $response->error->message); |
|
| 256 | 256 | } |
| 257 | 257 | |
| 258 | - if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
| 259 | - update_post_meta( $order_id, '_stripe_source_id', $response->id ); |
|
| 258 | + if (WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
| 259 | + update_post_meta($order_id, '_stripe_source_id', $response->id); |
|
| 260 | 260 | } else { |
| 261 | - $order->update_meta_data( '_stripe_source_id', $response->id ); |
|
| 261 | + $order->update_meta_data('_stripe_source_id', $response->id); |
|
| 262 | 262 | $order->save(); |
| 263 | 263 | } |
| 264 | 264 | |
| 265 | - WC_Stripe_Logger::log( 'Info: Redirecting to P24...' ); |
|
| 265 | + WC_Stripe_Logger::log('Info: Redirecting to P24...'); |
|
| 266 | 266 | |
| 267 | 267 | return array( |
| 268 | 268 | 'result' => 'success', |
| 269 | - 'redirect' => esc_url_raw( $response->redirect->url ), |
|
| 269 | + 'redirect' => esc_url_raw($response->redirect->url), |
|
| 270 | 270 | ); |
| 271 | - } catch ( WC_Stripe_Exception $e ) { |
|
| 272 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
| 273 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 271 | + } catch (WC_Stripe_Exception $e) { |
|
| 272 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
| 273 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 274 | 274 | |
| 275 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
| 275 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
| 276 | 276 | |
| 277 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
| 278 | - $this->send_failed_order_email( $order_id ); |
|
| 277 | + if ($order->has_status(array('pending', 'failed'))) { |
|
| 278 | + $this->send_failed_order_email($order_id); |
|
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | return array( |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if ( ! defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function __construct() { |
| 59 | 59 | $this->id = 'stripe_eps'; |
| 60 | - $this->method_title = __( 'Stripe EPS', 'woocommerce-gateway-stripe' ); |
|
| 60 | + $this->method_title = __('Stripe EPS', 'woocommerce-gateway-stripe'); |
|
| 61 | 61 | /* translators: link */ |
| 62 | - $this->method_description = sprintf( __( 'All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=stripe' ) ); |
|
| 62 | + $this->method_description = sprintf(__('All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe'), admin_url('admin.php?page=wc-settings&tab=checkout§ion=stripe')); |
|
| 63 | 63 | $this->supports = array( |
| 64 | 64 | 'products', |
| 65 | 65 | 'refunds', |
@@ -71,23 +71,23 @@ discard block |
||
| 71 | 71 | // Load the settings. |
| 72 | 72 | $this->init_settings(); |
| 73 | 73 | |
| 74 | - $main_settings = get_option( 'woocommerce_stripe_settings' ); |
|
| 75 | - $this->title = $this->get_option( 'title' ); |
|
| 76 | - $this->description = $this->get_option( 'description' ); |
|
| 77 | - $this->enabled = $this->get_option( 'enabled' ); |
|
| 78 | - $this->testmode = ( ! empty( $main_settings['testmode'] ) && 'yes' === $main_settings['testmode'] ) ? true : false; |
|
| 79 | - $this->saved_cards = ( ! empty( $main_settings['saved_cards'] ) && 'yes' === $main_settings['saved_cards'] ) ? true : false; |
|
| 80 | - $this->publishable_key = ! empty( $main_settings['publishable_key'] ) ? $main_settings['publishable_key'] : ''; |
|
| 81 | - $this->secret_key = ! empty( $main_settings['secret_key'] ) ? $main_settings['secret_key'] : ''; |
|
| 82 | - $this->statement_descriptor = ! empty( $main_settings['statement_descriptor'] ) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | - |
|
| 84 | - if ( $this->testmode ) { |
|
| 85 | - $this->publishable_key = ! empty( $main_settings['test_publishable_key'] ) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | - $this->secret_key = ! empty( $main_settings['test_secret_key'] ) ? $main_settings['test_secret_key'] : ''; |
|
| 74 | + $main_settings = get_option('woocommerce_stripe_settings'); |
|
| 75 | + $this->title = $this->get_option('title'); |
|
| 76 | + $this->description = $this->get_option('description'); |
|
| 77 | + $this->enabled = $this->get_option('enabled'); |
|
| 78 | + $this->testmode = ( ! empty($main_settings['testmode']) && 'yes' === $main_settings['testmode']) ? true : false; |
|
| 79 | + $this->saved_cards = ( ! empty($main_settings['saved_cards']) && 'yes' === $main_settings['saved_cards']) ? true : false; |
|
| 80 | + $this->publishable_key = ! empty($main_settings['publishable_key']) ? $main_settings['publishable_key'] : ''; |
|
| 81 | + $this->secret_key = ! empty($main_settings['secret_key']) ? $main_settings['secret_key'] : ''; |
|
| 82 | + $this->statement_descriptor = ! empty($main_settings['statement_descriptor']) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | + |
|
| 84 | + if ($this->testmode) { |
|
| 85 | + $this->publishable_key = ! empty($main_settings['test_publishable_key']) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | + $this->secret_key = ! empty($main_settings['test_secret_key']) ? $main_settings['test_secret_key'] : ''; |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); |
|
| 90 | - add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) ); |
|
| 89 | + add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options')); |
|
| 90 | + add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | /** |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | * @return bool |
| 115 | 115 | */ |
| 116 | 116 | public function is_available() { |
| 117 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 117 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 118 | 118 | return false; |
| 119 | 119 | } |
| 120 | 120 | |
@@ -133,9 +133,9 @@ discard block |
||
| 133 | 133 | |
| 134 | 134 | $icons_str = ''; |
| 135 | 135 | |
| 136 | - $icons_str .= isset( $icons['eps'] ) ? $icons['eps'] : ''; |
|
| 136 | + $icons_str .= isset($icons['eps']) ? $icons['eps'] : ''; |
|
| 137 | 137 | |
| 138 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
| 138 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | /** |
@@ -146,19 +146,19 @@ discard block |
||
| 146 | 146 | * @access public |
| 147 | 147 | */ |
| 148 | 148 | public function payment_scripts() { |
| 149 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
| 149 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
| 150 | 150 | return; |
| 151 | 151 | } |
| 152 | 152 | |
| 153 | - wp_enqueue_style( 'stripe_styles' ); |
|
| 154 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
| 153 | + wp_enqueue_style('stripe_styles'); |
|
| 154 | + wp_enqueue_script('woocommerce_stripe'); |
|
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | /** |
| 158 | 158 | * Initialize Gateway Settings Form Fields. |
| 159 | 159 | */ |
| 160 | 160 | public function init_form_fields() { |
| 161 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-eps-settings.php' ); |
|
| 161 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-eps-settings.php'); |
|
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | /** |
@@ -171,13 +171,13 @@ discard block |
||
| 171 | 171 | $description = $this->get_description(); |
| 172 | 172 | |
| 173 | 173 | // If paying from order, we need to get total from order not cart. |
| 174 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
| 175 | - $order = wc_get_order( wc_clean( $wp->query_vars['order-pay'] ) ); |
|
| 174 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
| 175 | + $order = wc_get_order(wc_clean($wp->query_vars['order-pay'])); |
|
| 176 | 176 | $total = $order->get_total(); |
| 177 | 177 | } |
| 178 | 178 | |
| 179 | - if ( is_add_payment_method_page() ) { |
|
| 180 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
| 179 | + if (is_add_payment_method_page()) { |
|
| 180 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
| 181 | 181 | $total = ''; |
| 182 | 182 | } else { |
| 183 | 183 | $pay_button_text = ''; |
@@ -185,11 +185,11 @@ discard block |
||
| 185 | 185 | |
| 186 | 186 | echo '<div |
| 187 | 187 | id="stripe-eps-payment-data" |
| 188 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
| 189 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
| 188 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
| 189 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
| 190 | 190 | |
| 191 | - if ( $description ) { |
|
| 192 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); |
|
| 191 | + if ($description) { |
|
| 192 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | echo '</div>'; |
@@ -203,24 +203,24 @@ discard block |
||
| 203 | 203 | * @param object $order |
| 204 | 204 | * @return mixed |
| 205 | 205 | */ |
| 206 | - public function create_source( $order ) { |
|
| 207 | - $currency = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->get_order_currency() : $order->get_currency(); |
|
| 208 | - $order_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id(); |
|
| 209 | - $return_url = $this->get_stripe_return_url( $order ); |
|
| 206 | + public function create_source($order) { |
|
| 207 | + $currency = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->get_order_currency() : $order->get_currency(); |
|
| 208 | + $order_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id(); |
|
| 209 | + $return_url = $this->get_stripe_return_url($order); |
|
| 210 | 210 | $post_data = array(); |
| 211 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency ); |
|
| 212 | - $post_data['currency'] = strtolower( $currency ); |
|
| 211 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency); |
|
| 212 | + $post_data['currency'] = strtolower($currency); |
|
| 213 | 213 | $post_data['type'] = 'eps'; |
| 214 | - $post_data['owner'] = $this->get_owner_details( $order ); |
|
| 215 | - $post_data['redirect'] = array( 'return_url' => $return_url ); |
|
| 214 | + $post_data['owner'] = $this->get_owner_details($order); |
|
| 215 | + $post_data['redirect'] = array('return_url' => $return_url); |
|
| 216 | 216 | |
| 217 | - if ( ! empty( $this->statement_descriptor ) ) { |
|
| 218 | - $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $this->statement_descriptor ); |
|
| 217 | + if ( ! empty($this->statement_descriptor)) { |
|
| 218 | + $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($this->statement_descriptor); |
|
| 219 | 219 | } |
| 220 | 220 | |
| 221 | - WC_Stripe_Logger::log( 'Info: Begin creating EPS source' ); |
|
| 221 | + WC_Stripe_Logger::log('Info: Begin creating EPS source'); |
|
| 222 | 222 | |
| 223 | - return WC_Stripe_API::request( $post_data, 'sources' ); |
|
| 223 | + return WC_Stripe_API::request($post_data, 'sources'); |
|
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | /** |
@@ -234,51 +234,51 @@ discard block |
||
| 234 | 234 | * |
| 235 | 235 | * @return array|void |
| 236 | 236 | */ |
| 237 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
| 237 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
| 238 | 238 | try { |
| 239 | - $order = wc_get_order( $order_id ); |
|
| 239 | + $order = wc_get_order($order_id); |
|
| 240 | 240 | |
| 241 | 241 | // This will throw exception if not valid. |
| 242 | - $this->validate_minimum_order_amount( $order ); |
|
| 242 | + $this->validate_minimum_order_amount($order); |
|
| 243 | 243 | |
| 244 | 244 | // This comes from the create account checkbox in the checkout page. |
| 245 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
| 245 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
| 246 | 246 | |
| 247 | - if ( $create_account ) { |
|
| 248 | - $new_customer_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->customer_user : $order->get_customer_id(); |
|
| 249 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
| 247 | + if ($create_account) { |
|
| 248 | + $new_customer_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->customer_user : $order->get_customer_id(); |
|
| 249 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
| 250 | 250 | $new_stripe_customer->create_customer(); |
| 251 | 251 | } |
| 252 | 252 | |
| 253 | - $response = $this->create_source( $order ); |
|
| 253 | + $response = $this->create_source($order); |
|
| 254 | 254 | |
| 255 | - if ( ! empty( $response->error ) ) { |
|
| 256 | - $order->add_order_note( $response->error->message ); |
|
| 255 | + if ( ! empty($response->error)) { |
|
| 256 | + $order->add_order_note($response->error->message); |
|
| 257 | 257 | |
| 258 | - throw new Exception( $response->error->message ); |
|
| 258 | + throw new Exception($response->error->message); |
|
| 259 | 259 | } |
| 260 | 260 | |
| 261 | - if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
| 262 | - update_post_meta( $order_id, '_stripe_source_id', $response->id ); |
|
| 261 | + if (WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
| 262 | + update_post_meta($order_id, '_stripe_source_id', $response->id); |
|
| 263 | 263 | } else { |
| 264 | - $order->update_meta_data( '_stripe_source_id', $response->id ); |
|
| 264 | + $order->update_meta_data('_stripe_source_id', $response->id); |
|
| 265 | 265 | $order->save(); |
| 266 | 266 | } |
| 267 | 267 | |
| 268 | - WC_Stripe_Logger::log( 'Info: Redirecting to EPS...' ); |
|
| 268 | + WC_Stripe_Logger::log('Info: Redirecting to EPS...'); |
|
| 269 | 269 | |
| 270 | 270 | return array( |
| 271 | 271 | 'result' => 'success', |
| 272 | - 'redirect' => esc_url_raw( $response->redirect->url ), |
|
| 272 | + 'redirect' => esc_url_raw($response->redirect->url), |
|
| 273 | 273 | ); |
| 274 | - } catch ( Exception $e ) { |
|
| 275 | - wc_add_notice( $e->getMessage(), 'error' ); |
|
| 276 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 274 | + } catch (Exception $e) { |
|
| 275 | + wc_add_notice($e->getMessage(), 'error'); |
|
| 276 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 277 | 277 | |
| 278 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
| 278 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
| 279 | 279 | |
| 280 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
| 281 | - $this->send_failed_order_email( $order_id ); |
|
| 280 | + if ($order->has_status(array('pending', 'failed'))) { |
|
| 281 | + $this->send_failed_order_email($order_id); |
|
| 282 | 282 | } |
| 283 | 283 | |
| 284 | 284 | return array( |