@@ -23,7 +23,6 @@ |
||
23 | 23 | |
24 | 24 | /** |
25 | 25 | * Set secret API Key. |
26 | - * @param string $key |
|
27 | 26 | */ |
28 | 27 | public static function set_secret_key( $secret_key ) { |
29 | 28 | self::$secret_key = $secret_key; |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if ( ! defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * Set secret API Key. |
27 | 27 | * @param string $key |
28 | 28 | */ |
29 | - public static function set_secret_key( $secret_key ) { |
|
29 | + public static function set_secret_key($secret_key) { |
|
30 | 30 | self::$secret_key = $secret_key; |
31 | 31 | } |
32 | 32 | |
@@ -35,11 +35,11 @@ discard block |
||
35 | 35 | * @return string |
36 | 36 | */ |
37 | 37 | public static function get_secret_key() { |
38 | - if ( ! self::$secret_key ) { |
|
39 | - $options = get_option( 'woocommerce_stripe_settings' ); |
|
38 | + if ( ! self::$secret_key) { |
|
39 | + $options = get_option('woocommerce_stripe_settings'); |
|
40 | 40 | |
41 | - if ( isset( $options['testmode'], $options['secret_key'], $options['test_secret_key'] ) ) { |
|
42 | - self::set_secret_key( 'yes' === $options['testmode'] ? $options['test_secret_key'] : $options['secret_key'] ); |
|
41 | + if (isset($options['testmode'], $options['secret_key'], $options['test_secret_key'])) { |
|
42 | + self::set_secret_key('yes' === $options['testmode'] ? $options['test_secret_key'] : $options['secret_key']); |
|
43 | 43 | } |
44 | 44 | } |
45 | 45 | return self::$secret_key; |
@@ -78,12 +78,12 @@ discard block |
||
78 | 78 | $user_agent = self::get_user_agent(); |
79 | 79 | $app_info = $user_agent['application']; |
80 | 80 | |
81 | - return apply_filters( 'woocommerce_stripe_request_headers', array( |
|
82 | - 'Authorization' => 'Basic ' . base64_encode( self::get_secret_key() . ':' ), |
|
81 | + return apply_filters('woocommerce_stripe_request_headers', array( |
|
82 | + 'Authorization' => 'Basic ' . base64_encode(self::get_secret_key() . ':'), |
|
83 | 83 | 'Stripe-Version' => self::STRIPE_API_VERSION, |
84 | 84 | 'User-Agent' => $app_info['name'] . '/' . $app_info['version'] . ' (' . $app_info['url'] . ')', |
85 | - 'X-Stripe-Client-User-Agent' => json_encode( $user_agent ), |
|
86 | - ) ); |
|
85 | + 'X-Stripe-Client-User-Agent' => json_encode($user_agent), |
|
86 | + )); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | /** |
@@ -96,16 +96,16 @@ discard block |
||
96 | 96 | * @param bool $with_headers To get the response with headers. |
97 | 97 | * @return array|WP_Error |
98 | 98 | */ |
99 | - public static function request( $request, $api = 'charges', $method = 'POST', $with_headers = false ) { |
|
100 | - WC_Stripe_Logger::log( "{$api} request: " . print_r( $request, true ) ); |
|
99 | + public static function request($request, $api = 'charges', $method = 'POST', $with_headers = false) { |
|
100 | + WC_Stripe_Logger::log("{$api} request: " . print_r($request, true)); |
|
101 | 101 | |
102 | 102 | $headers = self::get_headers(); |
103 | 103 | |
104 | - if ( 'charges' === $api && 'POST' === $method ) { |
|
105 | - $customer = ! empty( $request['customer'] ) ? $request['customer'] : ''; |
|
106 | - $source = ! empty( $request['source'] ) ? $request['source'] : $customer; |
|
104 | + if ('charges' === $api && 'POST' === $method) { |
|
105 | + $customer = ! empty($request['customer']) ? $request['customer'] : ''; |
|
106 | + $source = ! empty($request['source']) ? $request['source'] : $customer; |
|
107 | 107 | |
108 | - $headers['Idempotency-Key'] = apply_filters( 'wc_stripe_idempotency_key', $request['metadata']['order_id'] . '-' . $source, $request ); |
|
108 | + $headers['Idempotency-Key'] = apply_filters('wc_stripe_idempotency_key', $request['metadata']['order_id'] . '-' . $source, $request); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | $response = wp_safe_remote_post( |
@@ -113,21 +113,21 @@ discard block |
||
113 | 113 | array( |
114 | 114 | 'method' => $method, |
115 | 115 | 'headers' => $headers, |
116 | - 'body' => apply_filters( 'woocommerce_stripe_request_body', $request, $api ), |
|
116 | + 'body' => apply_filters('woocommerce_stripe_request_body', $request, $api), |
|
117 | 117 | 'timeout' => 70, |
118 | 118 | ) |
119 | 119 | ); |
120 | 120 | |
121 | - if ( is_wp_error( $response ) || empty( $response['body'] ) ) { |
|
122 | - WC_Stripe_Logger::log( 'Error Response: ' . print_r( $response, true ) ); |
|
123 | - throw new WC_Stripe_Exception( print_r( $response, true ), __( 'There was a problem connecting to the Stripe API endpoint.', 'woocommerce-gateway-stripe' ) ); |
|
121 | + if (is_wp_error($response) || empty($response['body'])) { |
|
122 | + WC_Stripe_Logger::log('Error Response: ' . print_r($response, true)); |
|
123 | + throw new WC_Stripe_Exception(print_r($response, true), __('There was a problem connecting to the Stripe API endpoint.', 'woocommerce-gateway-stripe')); |
|
124 | 124 | } |
125 | 125 | |
126 | - if ( $with_headers ) { |
|
127 | - return array( 'headers' => wp_remote_retrieve_headers( $response ), 'body' => json_decode( $response['body'] ) ); |
|
126 | + if ($with_headers) { |
|
127 | + return array('headers' => wp_remote_retrieve_headers($response), 'body' => json_decode($response['body'])); |
|
128 | 128 | } |
129 | 129 | |
130 | - return json_decode( $response['body'] ); |
|
130 | + return json_decode($response['body']); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | /** |
@@ -137,8 +137,8 @@ discard block |
||
137 | 137 | * @version 4.0.0 |
138 | 138 | * @param string $api |
139 | 139 | */ |
140 | - public static function retrieve( $api ) { |
|
141 | - WC_Stripe_Logger::log( "{$api}" ); |
|
140 | + public static function retrieve($api) { |
|
141 | + WC_Stripe_Logger::log("{$api}"); |
|
142 | 142 | |
143 | 143 | $response = wp_safe_remote_get( |
144 | 144 | self::ENDPOINT . $api, |
@@ -149,11 +149,11 @@ discard block |
||
149 | 149 | ) |
150 | 150 | ); |
151 | 151 | |
152 | - if ( is_wp_error( $response ) || empty( $response['body'] ) ) { |
|
153 | - WC_Stripe_Logger::log( 'Error Response: ' . print_r( $response, true ) ); |
|
154 | - return new WP_Error( 'stripe_error', __( 'There was a problem connecting to the Stripe API endpoint.', 'woocommerce-gateway-stripe' ) ); |
|
152 | + if (is_wp_error($response) || empty($response['body'])) { |
|
153 | + WC_Stripe_Logger::log('Error Response: ' . print_r($response, true)); |
|
154 | + return new WP_Error('stripe_error', __('There was a problem connecting to the Stripe API endpoint.', 'woocommerce-gateway-stripe')); |
|
155 | 155 | } |
156 | 156 | |
157 | - return json_decode( $response['body'] ); |
|
157 | + return json_decode($response['body']); |
|
158 | 158 | } |
159 | 159 | } |
@@ -289,7 +289,7 @@ |
||
289 | 289 | * |
290 | 290 | * @param int $order_id Reference. |
291 | 291 | * @param bool $retry Should we retry on fail. |
292 | - * @param bool $force_save_source Force payment source to be saved. |
|
292 | + * @param bool $force_save_save Force payment source to be saved. |
|
293 | 293 | * |
294 | 294 | * @throws Exception If payment will not be accepted. |
295 | 295 | * |
@@ -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_alipay'; |
60 | - $this->method_title = __( 'Stripe Alipay', 'woocommerce-gateway-stripe' ); |
|
60 | + $this->method_title = __('Stripe Alipay', '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 | /** |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | * @return array |
99 | 99 | */ |
100 | 100 | public function get_supported_currency() { |
101 | - return apply_filters( 'wc_stripe_alipay_supported_currencies', array( |
|
101 | + return apply_filters('wc_stripe_alipay_supported_currencies', array( |
|
102 | 102 | 'EUR', |
103 | 103 | 'AUD', |
104 | 104 | 'CAD', |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | 'NZD', |
109 | 109 | 'SGD', |
110 | 110 | 'USD', |
111 | - ) ); |
|
111 | + )); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | * @return bool |
120 | 120 | */ |
121 | 121 | public function is_available() { |
122 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
122 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
123 | 123 | return false; |
124 | 124 | } |
125 | 125 | |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | |
141 | 141 | $icons_str .= $icons['alipay']; |
142 | 142 | |
143 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
143 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -150,19 +150,19 @@ discard block |
||
150 | 150 | * @version 4.0.0 |
151 | 151 | */ |
152 | 152 | public function payment_scripts() { |
153 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
153 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
154 | 154 | return; |
155 | 155 | } |
156 | 156 | |
157 | - wp_enqueue_style( 'stripe_styles' ); |
|
158 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
157 | + wp_enqueue_style('stripe_styles'); |
|
158 | + wp_enqueue_script('woocommerce_stripe'); |
|
159 | 159 | } |
160 | 160 | |
161 | 161 | /** |
162 | 162 | * Initialize Gateway Settings Form Fields. |
163 | 163 | */ |
164 | 164 | public function init_form_fields() { |
165 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-alipay-settings.php' ); |
|
165 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-alipay-settings.php'); |
|
166 | 166 | } |
167 | 167 | |
168 | 168 | /** |
@@ -174,25 +174,25 @@ discard block |
||
174 | 174 | $description = $this->get_description(); |
175 | 175 | |
176 | 176 | // If paying from order, we need to get total from order not cart. |
177 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
178 | - $order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) ); |
|
177 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
178 | + $order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key']))); |
|
179 | 179 | $total = $order->get_total(); |
180 | 180 | } |
181 | 181 | |
182 | - if ( is_add_payment_method_page() ) { |
|
183 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
184 | - $total = ''; |
|
182 | + if (is_add_payment_method_page()) { |
|
183 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
184 | + $total = ''; |
|
185 | 185 | } else { |
186 | 186 | $pay_button_text = ''; |
187 | 187 | } |
188 | 188 | |
189 | 189 | echo '<div |
190 | 190 | id="stripe-alipay-payment-data" |
191 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
192 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
191 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
192 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
193 | 193 | |
194 | - if ( $description ) { |
|
195 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); |
|
194 | + if ($description) { |
|
195 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | echo '</div>'; |
@@ -206,24 +206,24 @@ discard block |
||
206 | 206 | * @param object $order |
207 | 207 | * @return mixed |
208 | 208 | */ |
209 | - public function create_source( $order ) { |
|
209 | + public function create_source($order) { |
|
210 | 210 | $currency = WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency(); |
211 | 211 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
212 | - $return_url = $this->get_stripe_return_url( $order ); |
|
212 | + $return_url = $this->get_stripe_return_url($order); |
|
213 | 213 | $post_data = array(); |
214 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency ); |
|
215 | - $post_data['currency'] = strtolower( $currency ); |
|
214 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency); |
|
215 | + $post_data['currency'] = strtolower($currency); |
|
216 | 216 | $post_data['type'] = 'alipay'; |
217 | - $post_data['owner'] = $this->get_owner_details( $order ); |
|
218 | - $post_data['redirect'] = array( 'return_url' => $return_url ); |
|
217 | + $post_data['owner'] = $this->get_owner_details($order); |
|
218 | + $post_data['redirect'] = array('return_url' => $return_url); |
|
219 | 219 | |
220 | - if ( ! empty( $this->statement_descriptor ) ) { |
|
221 | - $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $this->statement_descriptor ); |
|
220 | + if ( ! empty($this->statement_descriptor)) { |
|
221 | + $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($this->statement_descriptor); |
|
222 | 222 | } |
223 | 223 | |
224 | - WC_Stripe_Logger::log( 'Info: Begin creating Alipay source' ); |
|
224 | + WC_Stripe_Logger::log('Info: Begin creating Alipay source'); |
|
225 | 225 | |
226 | - return WC_Stripe_API::request( apply_filters( 'wc_stripe_alipay_source', $post_data, $order ), 'sources' ); |
|
226 | + return WC_Stripe_API::request(apply_filters('wc_stripe_alipay_source', $post_data, $order), 'sources'); |
|
227 | 227 | } |
228 | 228 | |
229 | 229 | /** |
@@ -237,53 +237,53 @@ discard block |
||
237 | 237 | * |
238 | 238 | * @return array|void |
239 | 239 | */ |
240 | - public function process_payment( $order_id, $retry = true, $force_save_save = false ) { |
|
240 | + public function process_payment($order_id, $retry = true, $force_save_save = false) { |
|
241 | 241 | try { |
242 | - $order = wc_get_order( $order_id ); |
|
242 | + $order = wc_get_order($order_id); |
|
243 | 243 | |
244 | 244 | // This will throw exception if not valid. |
245 | - $this->validate_minimum_order_amount( $order ); |
|
245 | + $this->validate_minimum_order_amount($order); |
|
246 | 246 | |
247 | 247 | // This comes from the create account checkbox in the checkout page. |
248 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
248 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
249 | 249 | |
250 | - if ( $create_account ) { |
|
250 | + if ($create_account) { |
|
251 | 251 | $new_customer_id = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(); |
252 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
252 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
253 | 253 | $new_stripe_customer->create_customer(); |
254 | 254 | } |
255 | 255 | |
256 | - $response = $this->create_source( $order ); |
|
256 | + $response = $this->create_source($order); |
|
257 | 257 | |
258 | - if ( ! empty( $response->error ) ) { |
|
259 | - $order->add_order_note( $response->error->message ); |
|
258 | + if ( ! empty($response->error)) { |
|
259 | + $order->add_order_note($response->error->message); |
|
260 | 260 | |
261 | - throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message ); |
|
261 | + throw new WC_Stripe_Exception(print_r($response, true), $response->error->message); |
|
262 | 262 | } |
263 | 263 | |
264 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
265 | - update_post_meta( $order_id, '_stripe_source_id', $response->id ); |
|
264 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
265 | + update_post_meta($order_id, '_stripe_source_id', $response->id); |
|
266 | 266 | } else { |
267 | - $order->update_meta_data( '_stripe_source_id', $response->id ); |
|
267 | + $order->update_meta_data('_stripe_source_id', $response->id); |
|
268 | 268 | $order->save(); |
269 | 269 | } |
270 | 270 | |
271 | - WC_Stripe_Logger::log( 'Info: Redirecting to Alipay...' ); |
|
271 | + WC_Stripe_Logger::log('Info: Redirecting to Alipay...'); |
|
272 | 272 | |
273 | 273 | return array( |
274 | 274 | 'result' => 'success', |
275 | - 'redirect' => esc_url_raw( $response->redirect->url ), |
|
275 | + 'redirect' => esc_url_raw($response->redirect->url), |
|
276 | 276 | ); |
277 | - } catch ( WC_Stripe_Exception $e ) { |
|
278 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
279 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
277 | + } catch (WC_Stripe_Exception $e) { |
|
278 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
279 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
280 | 280 | |
281 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
281 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
282 | 282 | |
283 | - $statuses = array( 'pending', 'failed' ); |
|
283 | + $statuses = array('pending', 'failed'); |
|
284 | 284 | |
285 | - if ( $order->has_status( $statuses ) ) { |
|
286 | - $this->send_failed_order_email( $order_id ); |
|
285 | + if ($order->has_status($statuses)) { |
|
286 | + $this->send_failed_order_email($order_id); |
|
287 | 287 | } |
288 | 288 | |
289 | 289 | return array( |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
3 | +if ( ! defined('ABSPATH')) { |
|
4 | 4 | exit; // Exit if accessed directly |
5 | 5 | } |
6 | 6 | |
@@ -35,10 +35,10 @@ discard block |
||
35 | 35 | * @param string $deprecated Deprecated since WooCommerce 3.0 |
36 | 36 | * @return string |
37 | 37 | */ |
38 | - public function get_display_name( $deprecated = '' ) { |
|
38 | + public function get_display_name($deprecated = '') { |
|
39 | 39 | $display = sprintf( |
40 | 40 | /* translators: last 4 digits of IBAN account */ |
41 | - __( 'SEPA IBAN ending in %s', 'woocommerce-gateway-stripe' ), |
|
41 | + __('SEPA IBAN ending in %s', 'woocommerce-gateway-stripe'), |
|
42 | 42 | $this->get_last4() |
43 | 43 | ); |
44 | 44 | |
@@ -66,11 +66,11 @@ discard block |
||
66 | 66 | * @return boolean True if the passed data is valid |
67 | 67 | */ |
68 | 68 | public function validate() { |
69 | - if ( false === parent::validate() ) { |
|
69 | + if (false === parent::validate()) { |
|
70 | 70 | return false; |
71 | 71 | } |
72 | 72 | |
73 | - if ( ! $this->get_last4( 'edit' ) ) { |
|
73 | + if ( ! $this->get_last4('edit')) { |
|
74 | 74 | return false; |
75 | 75 | } |
76 | 76 | |
@@ -85,8 +85,8 @@ discard block |
||
85 | 85 | * @param string $context |
86 | 86 | * @return string Last 4 digits |
87 | 87 | */ |
88 | - public function get_last4( $context = 'view' ) { |
|
89 | - return $this->get_prop( 'last4', $context ); |
|
88 | + public function get_last4($context = 'view') { |
|
89 | + return $this->get_prop('last4', $context); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * @version 4.0.0 |
96 | 96 | * @param string $last4 |
97 | 97 | */ |
98 | - public function set_last4( $last4 ) { |
|
99 | - $this->set_prop( 'last4', $last4 ); |
|
98 | + public function set_last4($last4) { |
|
99 | + $this->set_prop('last4', $last4); |
|
100 | 100 | } |
101 | 101 | } |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | * @since 4.0.2 |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if ( ! defined('ABSPATH')) { |
|
11 | 11 | exit; // Exit if accessed directly |
12 | 12 | } |
13 | 13 | |
@@ -23,9 +23,9 @@ discard block |
||
23 | 23 | * @param string $error_message Full response |
24 | 24 | * @param string $localized_message user-friendly translated error message |
25 | 25 | */ |
26 | - public function __construct( $error_message = '', $localized_message = '' ) { |
|
26 | + public function __construct($error_message = '', $localized_message = '') { |
|
27 | 27 | $this->localized_message = $localized_message; |
28 | - parent::__construct( $error_message ); |
|
28 | + parent::__construct($error_message); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -213,7 +213,6 @@ |
||
213 | 213 | /** |
214 | 214 | * Get a customers saved sources using their Stripe ID. |
215 | 215 | * |
216 | - * @param string $customer_id |
|
217 | 216 | * @return array |
218 | 217 | */ |
219 | 218 | public function get_sources() { |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if ( ! defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -32,10 +32,10 @@ discard block |
||
32 | 32 | * Constructor |
33 | 33 | * @param int $user_id The WP user ID |
34 | 34 | */ |
35 | - public function __construct( $user_id = 0 ) { |
|
36 | - if ( $user_id ) { |
|
37 | - $this->set_user_id( $user_id ); |
|
38 | - $this->set_id( get_user_meta( $user_id, '_stripe_customer_id', true ) ); |
|
35 | + public function __construct($user_id = 0) { |
|
36 | + if ($user_id) { |
|
37 | + $this->set_user_id($user_id); |
|
38 | + $this->set_id(get_user_meta($user_id, '_stripe_customer_id', true)); |
|
39 | 39 | } |
40 | 40 | } |
41 | 41 | |
@@ -51,15 +51,15 @@ discard block |
||
51 | 51 | * Set Stripe customer ID. |
52 | 52 | * @param [type] $id [description] |
53 | 53 | */ |
54 | - public function set_id( $id ) { |
|
54 | + public function set_id($id) { |
|
55 | 55 | // Backwards compat for customer ID stored in array format. (Pre 3.0) |
56 | - if ( is_array( $id ) && isset( $id['customer_id'] ) ) { |
|
56 | + if (is_array($id) && isset($id['customer_id'])) { |
|
57 | 57 | $id = $id['customer_id']; |
58 | 58 | |
59 | - update_user_meta( $this->get_user_id(), '_stripe_customer_id', $id ); |
|
59 | + update_user_meta($this->get_user_id(), '_stripe_customer_id', $id); |
|
60 | 60 | } |
61 | 61 | |
62 | - $this->id = wc_clean( $id ); |
|
62 | + $this->id = wc_clean($id); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
@@ -67,15 +67,15 @@ discard block |
||
67 | 67 | * @return int |
68 | 68 | */ |
69 | 69 | public function get_user_id() { |
70 | - return absint( $this->user_id ); |
|
70 | + return absint($this->user_id); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | /** |
74 | 74 | * Set User ID used by WordPress. |
75 | 75 | * @param int $user_id |
76 | 76 | */ |
77 | - public function set_user_id( $user_id ) { |
|
78 | - $this->user_id = absint( $user_id ); |
|
77 | + public function set_user_id($user_id) { |
|
78 | + $this->user_id = absint($user_id); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | /** |
@@ -83,13 +83,13 @@ discard block |
||
83 | 83 | * @return WP_User |
84 | 84 | */ |
85 | 85 | protected function get_user() { |
86 | - return $this->get_user_id() ? get_user_by( 'id', $this->get_user_id() ) : false; |
|
86 | + return $this->get_user_id() ? get_user_by('id', $this->get_user_id()) : false; |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | /** |
90 | 90 | * Store data from the Stripe API about this customer |
91 | 91 | */ |
92 | - public function set_customer_data( $data ) { |
|
92 | + public function set_customer_data($data) { |
|
93 | 93 | $this->customer_data = $data; |
94 | 94 | } |
95 | 95 | |
@@ -98,13 +98,13 @@ discard block |
||
98 | 98 | * @param array $args |
99 | 99 | * @return WP_Error|int |
100 | 100 | */ |
101 | - public function create_customer( $args = array() ) { |
|
102 | - $billing_email = isset( $_POST['billing_email'] ) ? filter_var( $_POST['billing_email'], FILTER_SANITIZE_EMAIL ) : ''; |
|
101 | + public function create_customer($args = array()) { |
|
102 | + $billing_email = isset($_POST['billing_email']) ? filter_var($_POST['billing_email'], FILTER_SANITIZE_EMAIL) : ''; |
|
103 | 103 | $user = $this->get_user(); |
104 | 104 | |
105 | - if ( $user ) { |
|
106 | - $billing_first_name = get_user_meta( $user->ID, 'billing_first_name', true ); |
|
107 | - $billing_last_name = get_user_meta( $user->ID, 'billing_last_name', true ); |
|
105 | + if ($user) { |
|
106 | + $billing_first_name = get_user_meta($user->ID, 'billing_first_name', true); |
|
107 | + $billing_last_name = get_user_meta($user->ID, 'billing_last_name', true); |
|
108 | 108 | |
109 | 109 | $defaults = array( |
110 | 110 | 'email' => $user->user_email, |
@@ -119,24 +119,24 @@ discard block |
||
119 | 119 | |
120 | 120 | $metadata = array(); |
121 | 121 | |
122 | - $defaults['metadata'] = apply_filters( 'wc_stripe_customer_metadata', $metadata, $user ); |
|
122 | + $defaults['metadata'] = apply_filters('wc_stripe_customer_metadata', $metadata, $user); |
|
123 | 123 | |
124 | - $args = wp_parse_args( $args, $defaults ); |
|
125 | - $response = WC_Stripe_API::request( apply_filters( 'wc_stripe_create_customer_args', $args ), 'customers' ); |
|
124 | + $args = wp_parse_args($args, $defaults); |
|
125 | + $response = WC_Stripe_API::request(apply_filters('wc_stripe_create_customer_args', $args), 'customers'); |
|
126 | 126 | |
127 | - if ( ! empty( $response->error ) ) { |
|
128 | - throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message ); |
|
127 | + if ( ! empty($response->error)) { |
|
128 | + throw new WC_Stripe_Exception(print_r($response, true), $response->error->message); |
|
129 | 129 | } |
130 | 130 | |
131 | - $this->set_id( $response->id ); |
|
131 | + $this->set_id($response->id); |
|
132 | 132 | $this->clear_cache(); |
133 | - $this->set_customer_data( $response ); |
|
133 | + $this->set_customer_data($response); |
|
134 | 134 | |
135 | - if ( $this->get_user_id() ) { |
|
136 | - update_user_meta( $this->get_user_id(), '_stripe_customer_id', $response->id ); |
|
135 | + if ($this->get_user_id()) { |
|
136 | + update_user_meta($this->get_user_id(), '_stripe_customer_id', $response->id); |
|
137 | 137 | } |
138 | 138 | |
139 | - do_action( 'woocommerce_stripe_add_customer', $args, $response ); |
|
139 | + do_action('woocommerce_stripe_add_customer', $args, $response); |
|
140 | 140 | |
141 | 141 | return $response->id; |
142 | 142 | } |
@@ -148,11 +148,11 @@ discard block |
||
148 | 148 | * @since 4.1.2 |
149 | 149 | * @param array $error |
150 | 150 | */ |
151 | - public function is_no_such_customer_error( $error ) { |
|
151 | + public function is_no_such_customer_error($error) { |
|
152 | 152 | return ( |
153 | 153 | $error && |
154 | 154 | 'invalid_request_error' === $error->type && |
155 | - preg_match( '/No such customer/i', $error->message ) |
|
155 | + preg_match('/No such customer/i', $error->message) |
|
156 | 156 | ); |
157 | 157 | } |
158 | 158 | |
@@ -162,74 +162,74 @@ discard block |
||
162 | 162 | * @param bool $retry |
163 | 163 | * @return WP_Error|int |
164 | 164 | */ |
165 | - public function add_source( $source_id, $retry = true ) { |
|
166 | - if ( ! $this->get_id() ) { |
|
167 | - $this->set_id( $this->create_customer() ); |
|
165 | + public function add_source($source_id, $retry = true) { |
|
166 | + if ( ! $this->get_id()) { |
|
167 | + $this->set_id($this->create_customer()); |
|
168 | 168 | } |
169 | 169 | |
170 | - $response = WC_Stripe_API::request( array( |
|
170 | + $response = WC_Stripe_API::request(array( |
|
171 | 171 | 'source' => $source_id, |
172 | - ), 'customers/' . $this->get_id() . '/sources' ); |
|
172 | + ), 'customers/' . $this->get_id() . '/sources'); |
|
173 | 173 | |
174 | 174 | $wc_token = false; |
175 | 175 | |
176 | - if ( ! empty( $response->error ) ) { |
|
176 | + if ( ! empty($response->error)) { |
|
177 | 177 | // It is possible the WC user once was linked to a customer on Stripe |
178 | 178 | // but no longer exists. Instead of failing, lets try to create a |
179 | 179 | // new customer. |
180 | - if ( $this->is_no_such_customer_error( $response->error ) ) { |
|
181 | - delete_user_meta( $this->get_user_id(), '_stripe_customer_id' ); |
|
180 | + if ($this->is_no_such_customer_error($response->error)) { |
|
181 | + delete_user_meta($this->get_user_id(), '_stripe_customer_id'); |
|
182 | 182 | $this->create_customer(); |
183 | - return $this->add_source( $source_id, false ); |
|
183 | + return $this->add_source($source_id, false); |
|
184 | 184 | } else { |
185 | 185 | return $response; |
186 | 186 | } |
187 | - } elseif ( empty( $response->id ) ) { |
|
188 | - return new WP_Error( 'error', __( 'Unable to add payment source.', 'woocommerce-gateway-stripe' ) ); |
|
187 | + } elseif (empty($response->id)) { |
|
188 | + return new WP_Error('error', __('Unable to add payment source.', 'woocommerce-gateway-stripe')); |
|
189 | 189 | } |
190 | 190 | |
191 | 191 | // Add token to WooCommerce. |
192 | - if ( $this->get_user_id() && class_exists( 'WC_Payment_Token_CC' ) ) { |
|
193 | - if ( ! empty( $response->type ) ) { |
|
194 | - switch ( $response->type ) { |
|
192 | + if ($this->get_user_id() && class_exists('WC_Payment_Token_CC')) { |
|
193 | + if ( ! empty($response->type)) { |
|
194 | + switch ($response->type) { |
|
195 | 195 | case 'alipay': |
196 | 196 | break; |
197 | 197 | case 'sepa_debit': |
198 | 198 | $wc_token = new WC_Payment_Token_SEPA(); |
199 | - $wc_token->set_token( $response->id ); |
|
200 | - $wc_token->set_gateway_id( 'stripe_sepa' ); |
|
201 | - $wc_token->set_last4( $response->sepa_debit->last4 ); |
|
199 | + $wc_token->set_token($response->id); |
|
200 | + $wc_token->set_gateway_id('stripe_sepa'); |
|
201 | + $wc_token->set_last4($response->sepa_debit->last4); |
|
202 | 202 | break; |
203 | 203 | default: |
204 | - if ( 'source' === $response->object && 'card' === $response->type ) { |
|
204 | + if ('source' === $response->object && 'card' === $response->type) { |
|
205 | 205 | $wc_token = new WC_Payment_Token_CC(); |
206 | - $wc_token->set_token( $response->id ); |
|
207 | - $wc_token->set_gateway_id( 'stripe' ); |
|
208 | - $wc_token->set_card_type( strtolower( $response->card->brand ) ); |
|
209 | - $wc_token->set_last4( $response->card->last4 ); |
|
210 | - $wc_token->set_expiry_month( $response->card->exp_month ); |
|
211 | - $wc_token->set_expiry_year( $response->card->exp_year ); |
|
206 | + $wc_token->set_token($response->id); |
|
207 | + $wc_token->set_gateway_id('stripe'); |
|
208 | + $wc_token->set_card_type(strtolower($response->card->brand)); |
|
209 | + $wc_token->set_last4($response->card->last4); |
|
210 | + $wc_token->set_expiry_month($response->card->exp_month); |
|
211 | + $wc_token->set_expiry_year($response->card->exp_year); |
|
212 | 212 | } |
213 | 213 | break; |
214 | 214 | } |
215 | 215 | } else { |
216 | 216 | // Legacy. |
217 | 217 | $wc_token = new WC_Payment_Token_CC(); |
218 | - $wc_token->set_token( $response->id ); |
|
219 | - $wc_token->set_gateway_id( 'stripe' ); |
|
220 | - $wc_token->set_card_type( strtolower( $response->brand ) ); |
|
221 | - $wc_token->set_last4( $response->last4 ); |
|
222 | - $wc_token->set_expiry_month( $response->exp_month ); |
|
223 | - $wc_token->set_expiry_year( $response->exp_year ); |
|
218 | + $wc_token->set_token($response->id); |
|
219 | + $wc_token->set_gateway_id('stripe'); |
|
220 | + $wc_token->set_card_type(strtolower($response->brand)); |
|
221 | + $wc_token->set_last4($response->last4); |
|
222 | + $wc_token->set_expiry_month($response->exp_month); |
|
223 | + $wc_token->set_expiry_year($response->exp_year); |
|
224 | 224 | } |
225 | 225 | |
226 | - $wc_token->set_user_id( $this->get_user_id() ); |
|
226 | + $wc_token->set_user_id($this->get_user_id()); |
|
227 | 227 | $wc_token->save(); |
228 | 228 | } |
229 | 229 | |
230 | 230 | $this->clear_cache(); |
231 | 231 | |
232 | - do_action( 'woocommerce_stripe_add_source', $this->get_id(), $wc_token, $response, $source_id ); |
|
232 | + do_action('woocommerce_stripe_add_source', $this->get_id(), $wc_token, $response, $source_id); |
|
233 | 233 | |
234 | 234 | return $response->id; |
235 | 235 | } |
@@ -241,42 +241,42 @@ discard block |
||
241 | 241 | * @return array |
242 | 242 | */ |
243 | 243 | public function get_sources() { |
244 | - if ( ! $this->get_id() ) { |
|
244 | + if ( ! $this->get_id()) { |
|
245 | 245 | return array(); |
246 | 246 | } |
247 | 247 | |
248 | - $sources = get_transient( 'stripe_sources_' . $this->get_id() ); |
|
248 | + $sources = get_transient('stripe_sources_' . $this->get_id()); |
|
249 | 249 | |
250 | - $response = WC_Stripe_API::request( array( |
|
250 | + $response = WC_Stripe_API::request(array( |
|
251 | 251 | 'limit' => 100, |
252 | - ), 'customers/' . $this->get_id() . '/sources', 'GET' ); |
|
252 | + ), 'customers/' . $this->get_id() . '/sources', 'GET'); |
|
253 | 253 | |
254 | - if ( ! empty( $response->error ) ) { |
|
254 | + if ( ! empty($response->error)) { |
|
255 | 255 | return array(); |
256 | 256 | } |
257 | 257 | |
258 | - if ( is_array( $response->data ) ) { |
|
258 | + if (is_array($response->data)) { |
|
259 | 259 | $sources = $response->data; |
260 | 260 | } |
261 | 261 | |
262 | - return empty( $sources ) ? array() : $sources; |
|
262 | + return empty($sources) ? array() : $sources; |
|
263 | 263 | } |
264 | 264 | |
265 | 265 | /** |
266 | 266 | * Delete a source from stripe. |
267 | 267 | * @param string $source_id |
268 | 268 | */ |
269 | - public function delete_source( $source_id ) { |
|
270 | - if ( ! $this->get_id() ) { |
|
269 | + public function delete_source($source_id) { |
|
270 | + if ( ! $this->get_id()) { |
|
271 | 271 | return false; |
272 | 272 | } |
273 | 273 | |
274 | - $response = WC_Stripe_API::request( array(), 'customers/' . $this->get_id() . '/sources/' . sanitize_text_field( $source_id ), 'DELETE' ); |
|
274 | + $response = WC_Stripe_API::request(array(), 'customers/' . $this->get_id() . '/sources/' . sanitize_text_field($source_id), 'DELETE'); |
|
275 | 275 | |
276 | 276 | $this->clear_cache(); |
277 | 277 | |
278 | - if ( empty( $response->error ) ) { |
|
279 | - do_action( 'wc_stripe_delete_source', $this->get_id(), $response ); |
|
278 | + if (empty($response->error)) { |
|
279 | + do_action('wc_stripe_delete_source', $this->get_id(), $response); |
|
280 | 280 | |
281 | 281 | return true; |
282 | 282 | } |
@@ -288,15 +288,15 @@ discard block |
||
288 | 288 | * Set default source in Stripe |
289 | 289 | * @param string $source_id |
290 | 290 | */ |
291 | - public function set_default_source( $source_id ) { |
|
292 | - $response = WC_Stripe_API::request( array( |
|
293 | - 'default_source' => sanitize_text_field( $source_id ), |
|
294 | - ), 'customers/' . $this->get_id(), 'POST' ); |
|
291 | + public function set_default_source($source_id) { |
|
292 | + $response = WC_Stripe_API::request(array( |
|
293 | + 'default_source' => sanitize_text_field($source_id), |
|
294 | + ), 'customers/' . $this->get_id(), 'POST'); |
|
295 | 295 | |
296 | 296 | $this->clear_cache(); |
297 | 297 | |
298 | - if ( empty( $response->error ) ) { |
|
299 | - do_action( 'wc_stripe_set_default_source', $this->get_id(), $response ); |
|
298 | + if (empty($response->error)) { |
|
299 | + do_action('wc_stripe_set_default_source', $this->get_id(), $response); |
|
300 | 300 | |
301 | 301 | return true; |
302 | 302 | } |
@@ -308,8 +308,8 @@ discard block |
||
308 | 308 | * Deletes caches for this users cards. |
309 | 309 | */ |
310 | 310 | public function clear_cache() { |
311 | - delete_transient( 'stripe_sources_' . $this->get_id() ); |
|
312 | - delete_transient( 'stripe_customer_' . $this->get_id() ); |
|
311 | + delete_transient('stripe_sources_' . $this->get_id()); |
|
312 | + delete_transient('stripe_customer_' . $this->get_id()); |
|
313 | 313 | $this->customer_data = array(); |
314 | 314 | } |
315 | 315 | } |
@@ -2,12 +2,12 @@ discard block |
||
2 | 2 | |
3 | 3 | class WC_Stripe_Test extends WP_UnitTestCase { |
4 | 4 | public function test_constants_defined() { |
5 | - $this->assertTrue( defined( 'WC_STRIPE_VERSION' ) ); |
|
6 | - $this->assertTrue( defined( 'WC_STRIPE_MIN_PHP_VER' ) ); |
|
7 | - $this->assertTrue( defined( 'WC_STRIPE_MIN_WC_VER' ) ); |
|
8 | - $this->assertTrue( defined( 'WC_STRIPE_MAIN_FILE' ) ); |
|
9 | - $this->assertTrue( defined( 'WC_STRIPE_PLUGIN_URL' ) ); |
|
10 | - $this->assertTrue( defined( 'WC_STRIPE_PLUGIN_PATH' ) ); |
|
5 | + $this->assertTrue(defined('WC_STRIPE_VERSION')); |
|
6 | + $this->assertTrue(defined('WC_STRIPE_MIN_PHP_VER')); |
|
7 | + $this->assertTrue(defined('WC_STRIPE_MIN_WC_VER')); |
|
8 | + $this->assertTrue(defined('WC_STRIPE_MAIN_FILE')); |
|
9 | + $this->assertTrue(defined('WC_STRIPE_PLUGIN_URL')); |
|
10 | + $this->assertTrue(defined('WC_STRIPE_PLUGIN_PATH')); |
|
11 | 11 | } |
12 | 12 | |
13 | 13 | /** |
@@ -15,11 +15,11 @@ discard block |
||
15 | 15 | * This test will see if we're indeed converting the price correctly. |
16 | 16 | */ |
17 | 17 | public function test_price_conversion_before_send_to_stripe() { |
18 | - $this->assertEquals( 10050, WC_Stripe_Helper::get_stripe_amount( 100.50, 'USD' ) ); |
|
19 | - $this->assertEquals( 10050, WC_Stripe_Helper::get_stripe_amount( 10050, 'JPY' ) ); |
|
20 | - $this->assertEquals( 100, WC_Stripe_Helper::get_stripe_amount( 100.50, 'JPY' ) ); |
|
21 | - $this->assertEquals( 10050, WC_Stripe_Helper::get_stripe_amount( 100.50 ) ); |
|
22 | - $this->assertInternalType( 'int', WC_Stripe_Helper::get_stripe_amount( 100.50, 'USD' ) ); |
|
18 | + $this->assertEquals(10050, WC_Stripe_Helper::get_stripe_amount(100.50, 'USD')); |
|
19 | + $this->assertEquals(10050, WC_Stripe_Helper::get_stripe_amount(10050, 'JPY')); |
|
20 | + $this->assertEquals(100, WC_Stripe_Helper::get_stripe_amount(100.50, 'JPY')); |
|
21 | + $this->assertEquals(10050, WC_Stripe_Helper::get_stripe_amount(100.50)); |
|
22 | + $this->assertInternalType('int', WC_Stripe_Helper::get_stripe_amount(100.50, 'USD')); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
@@ -33,37 +33,37 @@ discard block |
||
33 | 33 | $balance_fee1->net = 10000; |
34 | 34 | $balance_fee1->currency = 'USD'; |
35 | 35 | |
36 | - $this->assertEquals( 105.00, WC_Stripe_Helper::format_balance_fee( $balance_fee1, 'fee' ) ); |
|
36 | + $this->assertEquals(105.00, WC_Stripe_Helper::format_balance_fee($balance_fee1, 'fee')); |
|
37 | 37 | |
38 | 38 | $balance_fee2 = new stdClass(); |
39 | 39 | $balance_fee2->fee = 10500; |
40 | 40 | $balance_fee2->net = 10000; |
41 | 41 | $balance_fee2->currency = 'JPY'; |
42 | 42 | |
43 | - $this->assertEquals( 10500, WC_Stripe_Helper::format_balance_fee( $balance_fee2, 'fee' ) ); |
|
43 | + $this->assertEquals(10500, WC_Stripe_Helper::format_balance_fee($balance_fee2, 'fee')); |
|
44 | 44 | |
45 | 45 | $balance_fee3 = new stdClass(); |
46 | 46 | $balance_fee3->fee = 10500; |
47 | 47 | $balance_fee3->net = 10000; |
48 | 48 | $balance_fee3->currency = 'USD'; |
49 | 49 | |
50 | - $this->assertEquals( 100.00, WC_Stripe_Helper::format_balance_fee( $balance_fee3, 'net' ) ); |
|
50 | + $this->assertEquals(100.00, WC_Stripe_Helper::format_balance_fee($balance_fee3, 'net')); |
|
51 | 51 | |
52 | 52 | $balance_fee4 = new stdClass(); |
53 | 53 | $balance_fee4->fee = 10500; |
54 | 54 | $balance_fee4->net = 10000; |
55 | 55 | $balance_fee4->currency = 'JPY'; |
56 | 56 | |
57 | - $this->assertEquals( 10000, WC_Stripe_Helper::format_balance_fee( $balance_fee4, 'net' ) ); |
|
57 | + $this->assertEquals(10000, WC_Stripe_Helper::format_balance_fee($balance_fee4, 'net')); |
|
58 | 58 | |
59 | 59 | $balance_fee5 = new stdClass(); |
60 | 60 | $balance_fee5->fee = 10500; |
61 | 61 | $balance_fee5->net = 10000; |
62 | 62 | $balance_fee5->currency = 'USD'; |
63 | 63 | |
64 | - $this->assertEquals( 105.00, WC_Stripe_Helper::format_balance_fee( $balance_fee5 ) ); |
|
64 | + $this->assertEquals(105.00, WC_Stripe_Helper::format_balance_fee($balance_fee5)); |
|
65 | 65 | |
66 | - $this->assertInternalType( 'string', WC_Stripe_Helper::format_balance_fee( $balance_fee5 ) ); |
|
66 | + $this->assertInternalType('string', WC_Stripe_Helper::format_balance_fee($balance_fee5)); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
@@ -76,28 +76,28 @@ discard block |
||
76 | 76 | 'expected' => 'Tests Store', |
77 | 77 | ); |
78 | 78 | |
79 | - $this->assertEquals( $statement_descriptor1['expected'], WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor1['actual'] ) ); |
|
79 | + $this->assertEquals($statement_descriptor1['expected'], WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor1['actual'])); |
|
80 | 80 | |
81 | 81 | $statement_descriptor2 = array( |
82 | 82 | 'actual' => 'Test\'s Store > Driving Course Range', |
83 | 83 | 'expected' => 'Tests Store Driving C', |
84 | 84 | ); |
85 | 85 | |
86 | - $this->assertEquals( $statement_descriptor2['expected'], WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor2['actual'] ) ); |
|
86 | + $this->assertEquals($statement_descriptor2['expected'], WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor2['actual'])); |
|
87 | 87 | |
88 | 88 | $statement_descriptor3 = array( |
89 | 89 | 'actual' => 'Test\'s Store < Driving Course Range', |
90 | 90 | 'expected' => 'Tests Store Driving C', |
91 | 91 | ); |
92 | 92 | |
93 | - $this->assertEquals( $statement_descriptor3['expected'], WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor3['actual'] ) ); |
|
93 | + $this->assertEquals($statement_descriptor3['expected'], WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor3['actual'])); |
|
94 | 94 | |
95 | 95 | $statement_descriptor4 = array( |
96 | 96 | 'actual' => 'Test\'s Store " Driving Course Range', |
97 | 97 | 'expected' => 'Tests Store Driving C', |
98 | 98 | ); |
99 | 99 | |
100 | - $this->assertEquals( $statement_descriptor4['expected'], WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor4['actual'] ) ); |
|
100 | + $this->assertEquals($statement_descriptor4['expected'], WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor4['actual'])); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |
@@ -109,12 +109,12 @@ discard block |
||
109 | 109 | $source = new stdClass(); |
110 | 110 | $source->type = 'three_d_secure'; |
111 | 111 | |
112 | - $this->assertEquals( true, $stripe->is_3ds_card( $source ) ); |
|
112 | + $this->assertEquals(true, $stripe->is_3ds_card($source)); |
|
113 | 113 | |
114 | 114 | $source = new stdClass(); |
115 | 115 | $source->type = 'card'; |
116 | 116 | |
117 | - $this->assertEquals( false, $stripe->is_3ds_card( $source ) ); |
|
117 | + $this->assertEquals(false, $stripe->is_3ds_card($source)); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
@@ -128,20 +128,20 @@ discard block |
||
128 | 128 | $source->card = new stdClass(); |
129 | 129 | $source->card->three_d_secure = 'required'; |
130 | 130 | |
131 | - $this->assertEquals( true, $stripe->is_3ds_required( $source ) ); |
|
131 | + $this->assertEquals(true, $stripe->is_3ds_required($source)); |
|
132 | 132 | |
133 | 133 | $source = new stdClass(); |
134 | 134 | $source->type = 'card'; |
135 | 135 | $source->card = new stdClass(); |
136 | 136 | $source->card->three_d_secure = 'optional'; |
137 | 137 | |
138 | - $this->assertEquals( false, $stripe->is_3ds_required( $source ) ); |
|
138 | + $this->assertEquals(false, $stripe->is_3ds_required($source)); |
|
139 | 139 | |
140 | 140 | $source = new stdClass(); |
141 | 141 | $source->type = 'card'; |
142 | 142 | $source->card = new stdClass(); |
143 | 143 | $source->card->three_d_secure = 'not_supported'; |
144 | 144 | |
145 | - $this->assertEquals( false, $stripe->is_3ds_required( $source ) ); |
|
145 | + $this->assertEquals(false, $stripe->is_3ds_required($source)); |
|
146 | 146 | } |
147 | 147 | } |
@@ -104,7 +104,7 @@ |
||
104 | 104 | * Get this instance. |
105 | 105 | * |
106 | 106 | * @since 4.0.6 |
107 | - * @return class |
|
107 | + * @return WC_Stripe_Payment_Request |
|
108 | 108 | */ |
109 | 109 | public static function instance() { |
110 | 110 | return self::$_this; |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @since 4.0.0 |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
@@ -71,36 +71,36 @@ discard block |
||
71 | 71 | */ |
72 | 72 | public function __construct() { |
73 | 73 | self::$_this = $this; |
74 | - $this->stripe_settings = get_option( 'woocommerce_stripe_settings', array() ); |
|
75 | - $this->testmode = ( ! empty( $this->stripe_settings['testmode'] ) && 'yes' === $this->stripe_settings['testmode'] ) ? true : false; |
|
76 | - $this->publishable_key = ! empty( $this->stripe_settings['publishable_key'] ) ? $this->stripe_settings['publishable_key'] : ''; |
|
77 | - $this->secret_key = ! empty( $this->stripe_settings['secret_key'] ) ? $this->stripe_settings['secret_key'] : ''; |
|
78 | - $this->stripe_checkout_enabled = isset( $this->stripe_settings['stripe_checkout'] ) && 'yes' === $this->stripe_settings['stripe_checkout']; |
|
79 | - $this->total_label = ! empty( $this->stripe_settings['statement_descriptor'] ) ? WC_Stripe_Helper::clean_statement_descriptor( $this->stripe_settings['statement_descriptor'] ) : ''; |
|
74 | + $this->stripe_settings = get_option('woocommerce_stripe_settings', array()); |
|
75 | + $this->testmode = ( ! empty($this->stripe_settings['testmode']) && 'yes' === $this->stripe_settings['testmode']) ? true : false; |
|
76 | + $this->publishable_key = ! empty($this->stripe_settings['publishable_key']) ? $this->stripe_settings['publishable_key'] : ''; |
|
77 | + $this->secret_key = ! empty($this->stripe_settings['secret_key']) ? $this->stripe_settings['secret_key'] : ''; |
|
78 | + $this->stripe_checkout_enabled = isset($this->stripe_settings['stripe_checkout']) && 'yes' === $this->stripe_settings['stripe_checkout']; |
|
79 | + $this->total_label = ! empty($this->stripe_settings['statement_descriptor']) ? WC_Stripe_Helper::clean_statement_descriptor($this->stripe_settings['statement_descriptor']) : ''; |
|
80 | 80 | |
81 | - if ( $this->testmode ) { |
|
82 | - $this->publishable_key = ! empty( $this->stripe_settings['test_publishable_key'] ) ? $this->stripe_settings['test_publishable_key'] : ''; |
|
83 | - $this->secret_key = ! empty( $this->stripe_settings['test_secret_key'] ) ? $this->stripe_settings['test_secret_key'] : ''; |
|
81 | + if ($this->testmode) { |
|
82 | + $this->publishable_key = ! empty($this->stripe_settings['test_publishable_key']) ? $this->stripe_settings['test_publishable_key'] : ''; |
|
83 | + $this->secret_key = ! empty($this->stripe_settings['test_secret_key']) ? $this->stripe_settings['test_secret_key'] : ''; |
|
84 | 84 | } |
85 | 85 | |
86 | - $this->total_label = str_replace( "'", '', $this->total_label ) . apply_filters( 'wc_stripe_payment_request_total_label_suffix', ' (via WooCommerce)' ); |
|
86 | + $this->total_label = str_replace("'", '', $this->total_label) . apply_filters('wc_stripe_payment_request_total_label_suffix', ' (via WooCommerce)'); |
|
87 | 87 | |
88 | 88 | // Checks if Stripe Gateway is enabled. |
89 | - if ( empty( $this->stripe_settings ) || ( isset( $this->stripe_settings['enabled'] ) && 'yes' !== $this->stripe_settings['enabled'] ) ) { |
|
89 | + if (empty($this->stripe_settings) || (isset($this->stripe_settings['enabled']) && 'yes' !== $this->stripe_settings['enabled'])) { |
|
90 | 90 | return; |
91 | 91 | } |
92 | 92 | |
93 | 93 | // Checks if Payment Request is enabled. |
94 | - if ( ! isset( $this->stripe_settings['payment_request'] ) || 'yes' !== $this->stripe_settings['payment_request'] ) { |
|
94 | + if ( ! isset($this->stripe_settings['payment_request']) || 'yes' !== $this->stripe_settings['payment_request']) { |
|
95 | 95 | return; |
96 | 96 | } |
97 | 97 | |
98 | 98 | // Don't load for change payment method page. |
99 | - if ( isset( $_GET['change_payment_method'] ) ) { |
|
99 | + if (isset($_GET['change_payment_method'])) { |
|
100 | 100 | return; |
101 | 101 | } |
102 | 102 | |
103 | - add_action( 'template_redirect', array( $this, 'set_session' ) ); |
|
103 | + add_action('template_redirect', array($this, 'set_session')); |
|
104 | 104 | $this->init(); |
105 | 105 | } |
106 | 106 | |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * @return bool |
112 | 112 | */ |
113 | 113 | public function are_keys_set() { |
114 | - if ( empty( $this->secret_key ) || empty( $this->publishable_key ) ) { |
|
114 | + if (empty($this->secret_key) || empty($this->publishable_key)) { |
|
115 | 115 | return false; |
116 | 116 | } |
117 | 117 | |
@@ -135,18 +135,18 @@ discard block |
||
135 | 135 | * @since 4.0.0 |
136 | 136 | */ |
137 | 137 | public function set_session() { |
138 | - if ( ! is_product() || ( isset( WC()->session ) && WC()->session->has_session() ) ) { |
|
138 | + if ( ! is_product() || (isset(WC()->session) && WC()->session->has_session())) { |
|
139 | 139 | return; |
140 | 140 | } |
141 | 141 | |
142 | - $session_class = apply_filters( 'woocommerce_session_handler', 'WC_Session_Handler' ); |
|
142 | + $session_class = apply_filters('woocommerce_session_handler', 'WC_Session_Handler'); |
|
143 | 143 | $wc_session = new $session_class(); |
144 | 144 | |
145 | - if ( version_compare( WC_VERSION, '3.3', '>=' ) ) { |
|
145 | + if (version_compare(WC_VERSION, '3.3', '>=')) { |
|
146 | 146 | $wc_session->init(); |
147 | 147 | } |
148 | 148 | |
149 | - $wc_session->set_customer_session_cookie( true ); |
|
149 | + $wc_session->set_customer_session_cookie(true); |
|
150 | 150 | } |
151 | 151 | |
152 | 152 | /** |
@@ -156,40 +156,40 @@ discard block |
||
156 | 156 | * @version 4.0.0 |
157 | 157 | */ |
158 | 158 | public function init() { |
159 | - add_action( 'wp_enqueue_scripts', array( $this, 'scripts' ) ); |
|
159 | + add_action('wp_enqueue_scripts', array($this, 'scripts')); |
|
160 | 160 | |
161 | 161 | /* |
162 | 162 | * In order to display the Payment Request button in the correct position, |
163 | 163 | * a new hook was added to WooCommerce 3.0. In older versions of WooCommerce, |
164 | 164 | * CSS is used to position the button. |
165 | 165 | */ |
166 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
167 | - add_action( 'woocommerce_after_add_to_cart_button', array( $this, 'display_payment_request_button_html' ), 1 ); |
|
168 | - add_action( 'woocommerce_after_add_to_cart_button', array( $this, 'display_payment_request_button_separator_html' ), 2 ); |
|
166 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
167 | + add_action('woocommerce_after_add_to_cart_button', array($this, 'display_payment_request_button_html'), 1); |
|
168 | + add_action('woocommerce_after_add_to_cart_button', array($this, 'display_payment_request_button_separator_html'), 2); |
|
169 | 169 | } else { |
170 | - add_action( 'woocommerce_after_add_to_cart_quantity', array( $this, 'display_payment_request_button_html' ), 1 ); |
|
171 | - add_action( 'woocommerce_after_add_to_cart_quantity', array( $this, 'display_payment_request_button_separator_html' ), 2 ); |
|
170 | + add_action('woocommerce_after_add_to_cart_quantity', array($this, 'display_payment_request_button_html'), 1); |
|
171 | + add_action('woocommerce_after_add_to_cart_quantity', array($this, 'display_payment_request_button_separator_html'), 2); |
|
172 | 172 | } |
173 | 173 | |
174 | - add_action( 'woocommerce_proceed_to_checkout', array( $this, 'display_payment_request_button_html' ), 1 ); |
|
175 | - add_action( 'woocommerce_proceed_to_checkout', array( $this, 'display_payment_request_button_separator_html' ), 2 ); |
|
174 | + add_action('woocommerce_proceed_to_checkout', array($this, 'display_payment_request_button_html'), 1); |
|
175 | + add_action('woocommerce_proceed_to_checkout', array($this, 'display_payment_request_button_separator_html'), 2); |
|
176 | 176 | |
177 | - add_action( 'woocommerce_checkout_before_customer_details', array( $this, 'display_payment_request_button_html' ), 1 ); |
|
178 | - add_action( 'woocommerce_checkout_before_customer_details', array( $this, 'display_payment_request_button_separator_html' ), 2 ); |
|
177 | + add_action('woocommerce_checkout_before_customer_details', array($this, 'display_payment_request_button_html'), 1); |
|
178 | + add_action('woocommerce_checkout_before_customer_details', array($this, 'display_payment_request_button_separator_html'), 2); |
|
179 | 179 | |
180 | - add_action( 'wc_ajax_wc_stripe_get_cart_details', array( $this, 'ajax_get_cart_details' ) ); |
|
181 | - add_action( 'wc_ajax_wc_stripe_get_shipping_options', array( $this, 'ajax_get_shipping_options' ) ); |
|
182 | - add_action( 'wc_ajax_wc_stripe_update_shipping_method', array( $this, 'ajax_update_shipping_method' ) ); |
|
183 | - add_action( 'wc_ajax_wc_stripe_create_order', array( $this, 'ajax_create_order' ) ); |
|
184 | - add_action( 'wc_ajax_wc_stripe_add_to_cart', array( $this, 'ajax_add_to_cart' ) ); |
|
185 | - add_action( 'wc_ajax_wc_stripe_get_selected_product_data', array( $this, 'ajax_get_selected_product_data' ) ); |
|
186 | - add_action( 'wc_ajax_wc_stripe_clear_cart', array( $this, 'ajax_clear_cart' ) ); |
|
187 | - add_action( 'wc_ajax_wc_stripe_log_errors', array( $this, 'ajax_log_errors' ) ); |
|
180 | + add_action('wc_ajax_wc_stripe_get_cart_details', array($this, 'ajax_get_cart_details')); |
|
181 | + add_action('wc_ajax_wc_stripe_get_shipping_options', array($this, 'ajax_get_shipping_options')); |
|
182 | + add_action('wc_ajax_wc_stripe_update_shipping_method', array($this, 'ajax_update_shipping_method')); |
|
183 | + add_action('wc_ajax_wc_stripe_create_order', array($this, 'ajax_create_order')); |
|
184 | + add_action('wc_ajax_wc_stripe_add_to_cart', array($this, 'ajax_add_to_cart')); |
|
185 | + add_action('wc_ajax_wc_stripe_get_selected_product_data', array($this, 'ajax_get_selected_product_data')); |
|
186 | + add_action('wc_ajax_wc_stripe_clear_cart', array($this, 'ajax_clear_cart')); |
|
187 | + add_action('wc_ajax_wc_stripe_log_errors', array($this, 'ajax_log_errors')); |
|
188 | 188 | |
189 | - add_filter( 'woocommerce_gateway_title', array( $this, 'filter_gateway_title' ), 10, 2 ); |
|
190 | - add_filter( 'woocommerce_validate_postcode', array( $this, 'postal_code_validation' ), 10, 3 ); |
|
189 | + add_filter('woocommerce_gateway_title', array($this, 'filter_gateway_title'), 10, 2); |
|
190 | + add_filter('woocommerce_validate_postcode', array($this, 'postal_code_validation'), 10, 3); |
|
191 | 191 | |
192 | - add_action( 'woocommerce_checkout_order_processed', array( $this, 'add_order_meta' ), 10, 2 ); |
|
192 | + add_action('woocommerce_checkout_order_processed', array($this, 'add_order_meta'), 10, 2); |
|
193 | 193 | } |
194 | 194 | |
195 | 195 | /** |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | * @return string |
201 | 201 | */ |
202 | 202 | public function get_button_type() { |
203 | - return isset( $this->stripe_settings['payment_request_button_type'] ) ? $this->stripe_settings['payment_request_button_type'] : 'default'; |
|
203 | + return isset($this->stripe_settings['payment_request_button_type']) ? $this->stripe_settings['payment_request_button_type'] : 'default'; |
|
204 | 204 | } |
205 | 205 | |
206 | 206 | /** |
@@ -211,7 +211,7 @@ discard block |
||
211 | 211 | * @return string |
212 | 212 | */ |
213 | 213 | public function get_button_theme() { |
214 | - return isset( $this->stripe_settings['payment_request_button_theme'] ) ? $this->stripe_settings['payment_request_button_theme'] : 'dark'; |
|
214 | + return isset($this->stripe_settings['payment_request_button_theme']) ? $this->stripe_settings['payment_request_button_theme'] : 'dark'; |
|
215 | 215 | } |
216 | 216 | |
217 | 217 | /** |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | * @return string |
223 | 223 | */ |
224 | 224 | public function get_button_height() { |
225 | - return isset( $this->stripe_settings['payment_request_button_height'] ) ? str_replace( 'px', '', $this->stripe_settings['payment_request_button_height'] ) : '64'; |
|
225 | + return isset($this->stripe_settings['payment_request_button_height']) ? str_replace('px', '', $this->stripe_settings['payment_request_button_height']) : '64'; |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | /** |
@@ -232,40 +232,40 @@ discard block |
||
232 | 232 | * @version 4.0.0 |
233 | 233 | */ |
234 | 234 | public function get_product_data() { |
235 | - if ( ! is_product() ) { |
|
235 | + if ( ! is_product()) { |
|
236 | 236 | return false; |
237 | 237 | } |
238 | 238 | |
239 | 239 | global $post; |
240 | 240 | |
241 | - $product = wc_get_product( $post->ID ); |
|
241 | + $product = wc_get_product($post->ID); |
|
242 | 242 | |
243 | 243 | $data = array(); |
244 | 244 | $items = array(); |
245 | 245 | |
246 | 246 | $items[] = array( |
247 | 247 | 'label' => WC_Stripe_Helper::is_pre_30() ? $product->name : $product->get_name(), |
248 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( WC_Stripe_Helper::is_pre_30() ? $product->price : $product->get_price() ), |
|
248 | + 'amount' => WC_Stripe_Helper::get_stripe_amount(WC_Stripe_Helper::is_pre_30() ? $product->price : $product->get_price()), |
|
249 | 249 | ); |
250 | 250 | |
251 | - if ( wc_tax_enabled() ) { |
|
251 | + if (wc_tax_enabled()) { |
|
252 | 252 | $items[] = array( |
253 | - 'label' => __( 'Tax', 'woocommerce-gateway-stripe' ), |
|
253 | + 'label' => __('Tax', 'woocommerce-gateway-stripe'), |
|
254 | 254 | 'amount' => 0, |
255 | 255 | 'pending' => true, |
256 | 256 | ); |
257 | 257 | } |
258 | 258 | |
259 | - if ( wc_shipping_enabled() && $product->needs_shipping() ) { |
|
259 | + if (wc_shipping_enabled() && $product->needs_shipping()) { |
|
260 | 260 | $items[] = array( |
261 | - 'label' => __( 'Shipping', 'woocommerce-gateway-stripe' ), |
|
261 | + 'label' => __('Shipping', 'woocommerce-gateway-stripe'), |
|
262 | 262 | 'amount' => 0, |
263 | 263 | 'pending' => true, |
264 | 264 | ); |
265 | 265 | |
266 | - $data['shippingOptions'] = array( |
|
266 | + $data['shippingOptions'] = array( |
|
267 | 267 | 'id' => 'pending', |
268 | - 'label' => __( 'Pending', 'woocommerce-gateway-stripe' ), |
|
268 | + 'label' => __('Pending', 'woocommerce-gateway-stripe'), |
|
269 | 269 | 'detail' => '', |
270 | 270 | 'amount' => 0, |
271 | 271 | ); |
@@ -273,41 +273,41 @@ discard block |
||
273 | 273 | |
274 | 274 | $data['displayItems'] = $items; |
275 | 275 | $data['total'] = array( |
276 | - 'label' => apply_filters( 'wc_stripe_payment_request_total_label', $this->total_label ), |
|
277 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( WC_Stripe_Helper::is_pre_30() ? $product->price : $product->get_price() ), |
|
276 | + 'label' => apply_filters('wc_stripe_payment_request_total_label', $this->total_label), |
|
277 | + 'amount' => WC_Stripe_Helper::get_stripe_amount(WC_Stripe_Helper::is_pre_30() ? $product->price : $product->get_price()), |
|
278 | 278 | 'pending' => true, |
279 | 279 | ); |
280 | 280 | |
281 | - $data['requestShipping'] = ( wc_shipping_enabled() && $product->needs_shipping() ); |
|
282 | - $data['currency'] = strtolower( get_woocommerce_currency() ); |
|
283 | - $data['country_code'] = substr( get_option( 'woocommerce_default_country' ), 0, 2 ); |
|
281 | + $data['requestShipping'] = (wc_shipping_enabled() && $product->needs_shipping()); |
|
282 | + $data['currency'] = strtolower(get_woocommerce_currency()); |
|
283 | + $data['country_code'] = substr(get_option('woocommerce_default_country'), 0, 2); |
|
284 | 284 | |
285 | - return apply_filters( 'wc_stripe_payment_request_product_data', $data, $product ); |
|
285 | + return apply_filters('wc_stripe_payment_request_product_data', $data, $product); |
|
286 | 286 | } |
287 | 287 | |
288 | 288 | /** |
289 | 289 | * Filters the gateway title to reflect Payment Request type |
290 | 290 | * |
291 | 291 | */ |
292 | - public function filter_gateway_title( $title, $id ) { |
|
292 | + public function filter_gateway_title($title, $id) { |
|
293 | 293 | global $post; |
294 | 294 | |
295 | - if ( ! is_object( $post ) ) { |
|
295 | + if ( ! is_object($post)) { |
|
296 | 296 | return $title; |
297 | 297 | } |
298 | 298 | |
299 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
300 | - $method_title = get_post_meta( $post->ID, '_payment_method_title', true ); |
|
299 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
300 | + $method_title = get_post_meta($post->ID, '_payment_method_title', true); |
|
301 | 301 | } else { |
302 | - $order = wc_get_order( $post->ID ); |
|
303 | - $method_title = is_object( $order ) ? $order->get_payment_method_title() : ''; |
|
302 | + $order = wc_get_order($post->ID); |
|
303 | + $method_title = is_object($order) ? $order->get_payment_method_title() : ''; |
|
304 | 304 | } |
305 | 305 | |
306 | - if ( 'stripe' === $id && ! empty( $method_title ) && 'Apple Pay (Stripe)' === $method_title ) { |
|
306 | + if ('stripe' === $id && ! empty($method_title) && 'Apple Pay (Stripe)' === $method_title) { |
|
307 | 307 | return $method_title; |
308 | 308 | } |
309 | 309 | |
310 | - if ( 'stripe' === $id && ! empty( $method_title ) && 'Chrome Payment Request (Stripe)' === $method_title ) { |
|
310 | + if ('stripe' === $id && ! empty($method_title) && 'Chrome Payment Request (Stripe)' === $method_title) { |
|
311 | 311 | return $method_title; |
312 | 312 | } |
313 | 313 | |
@@ -320,16 +320,16 @@ discard block |
||
320 | 320 | * @since 3.1.4 |
321 | 321 | * @version 4.0.0 |
322 | 322 | */ |
323 | - public function postal_code_validation( $valid, $postcode, $country ) { |
|
323 | + public function postal_code_validation($valid, $postcode, $country) { |
|
324 | 324 | $gateways = WC()->payment_gateways->get_available_payment_gateways(); |
325 | 325 | |
326 | - if ( ! isset( $gateways['stripe'] ) ) { |
|
326 | + if ( ! isset($gateways['stripe'])) { |
|
327 | 327 | return $valid; |
328 | 328 | } |
329 | 329 | |
330 | - $payment_request_type = isset( $_POST['payment_request_type'] ) ? wc_clean( $_POST['payment_request_type'] ) : ''; |
|
330 | + $payment_request_type = isset($_POST['payment_request_type']) ? wc_clean($_POST['payment_request_type']) : ''; |
|
331 | 331 | |
332 | - if ( 'apple_pay' !== $payment_request_type ) { |
|
332 | + if ('apple_pay' !== $payment_request_type) { |
|
333 | 333 | return $valid; |
334 | 334 | } |
335 | 335 | |
@@ -339,7 +339,7 @@ discard block |
||
339 | 339 | * the order and not let it go through. The remedy for now is just to remove this validation. |
340 | 340 | * Note that this only works with shipping providers that don't validate full postal codes. |
341 | 341 | */ |
342 | - if ( 'GB' === $country || 'CA' === $country ) { |
|
342 | + if ('GB' === $country || 'CA' === $country) { |
|
343 | 343 | return true; |
344 | 344 | } |
345 | 345 | |
@@ -354,29 +354,29 @@ discard block |
||
354 | 354 | * @param int $order_id |
355 | 355 | * @param array $posted_data The posted data from checkout form. |
356 | 356 | */ |
357 | - public function add_order_meta( $order_id, $posted_data ) { |
|
358 | - if ( empty( $_POST['payment_request_type'] ) ) { |
|
357 | + public function add_order_meta($order_id, $posted_data) { |
|
358 | + if (empty($_POST['payment_request_type'])) { |
|
359 | 359 | return; |
360 | 360 | } |
361 | 361 | |
362 | - $order = wc_get_order( $order_id ); |
|
362 | + $order = wc_get_order($order_id); |
|
363 | 363 | |
364 | - $payment_request_type = wc_clean( $_POST['payment_request_type'] ); |
|
364 | + $payment_request_type = wc_clean($_POST['payment_request_type']); |
|
365 | 365 | |
366 | - if ( 'apple_pay' === $payment_request_type ) { |
|
367 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
368 | - update_post_meta( $order_id, '_payment_method_title', 'Apple Pay (Stripe)' ); |
|
366 | + if ('apple_pay' === $payment_request_type) { |
|
367 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
368 | + update_post_meta($order_id, '_payment_method_title', 'Apple Pay (Stripe)'); |
|
369 | 369 | } else { |
370 | - $order->set_payment_method_title( 'Apple Pay (Stripe)' ); |
|
370 | + $order->set_payment_method_title('Apple Pay (Stripe)'); |
|
371 | 371 | $order->save(); |
372 | 372 | } |
373 | 373 | } |
374 | 374 | |
375 | - if ( 'payment_request_api' === $payment_request_type ) { |
|
376 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
377 | - update_post_meta( $order_id, '_payment_method_title', 'Chrome Payment Request (Stripe)' ); |
|
375 | + if ('payment_request_api' === $payment_request_type) { |
|
376 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
377 | + update_post_meta($order_id, '_payment_method_title', 'Chrome Payment Request (Stripe)'); |
|
378 | 378 | } else { |
379 | - $order->set_payment_method_title( 'Chrome Payment Request (Stripe)' ); |
|
379 | + $order->set_payment_method_title('Chrome Payment Request (Stripe)'); |
|
380 | 380 | $order->save(); |
381 | 381 | } |
382 | 382 | } |
@@ -390,7 +390,7 @@ discard block |
||
390 | 390 | * @return array |
391 | 391 | */ |
392 | 392 | public function supported_product_types() { |
393 | - return apply_filters( 'wc_stripe_payment_request_supported_types', array( |
|
393 | + return apply_filters('wc_stripe_payment_request_supported_types', array( |
|
394 | 394 | 'simple', |
395 | 395 | 'variable', |
396 | 396 | 'variation', |
@@ -399,7 +399,7 @@ discard block |
||
399 | 399 | 'bundle', |
400 | 400 | 'composite', |
401 | 401 | 'mix-and-match', |
402 | - ) ); |
|
402 | + )); |
|
403 | 403 | } |
404 | 404 | |
405 | 405 | /** |
@@ -410,15 +410,15 @@ discard block |
||
410 | 410 | * @return bool |
411 | 411 | */ |
412 | 412 | public function allowed_items_in_cart() { |
413 | - foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { |
|
414 | - $_product = apply_filters( 'woocommerce_cart_item_product', $cart_item['data'], $cart_item, $cart_item_key ); |
|
413 | + foreach (WC()->cart->get_cart() as $cart_item_key => $cart_item) { |
|
414 | + $_product = apply_filters('woocommerce_cart_item_product', $cart_item['data'], $cart_item, $cart_item_key); |
|
415 | 415 | |
416 | - if ( ! in_array( ( WC_Stripe_Helper::is_pre_30() ? $_product->product_type : $_product->get_type() ), $this->supported_product_types() ) ) { |
|
416 | + if ( ! in_array((WC_Stripe_Helper::is_pre_30() ? $_product->product_type : $_product->get_type()), $this->supported_product_types())) { |
|
417 | 417 | return false; |
418 | 418 | } |
419 | 419 | |
420 | 420 | // Pre Orders compatbility where we don't support charge upon release. |
421 | - if ( class_exists( 'WC_Pre_Orders_Order' ) && WC_Pre_Orders_Cart::cart_contains_pre_order() && WC_Pre_Orders_Product::product_is_charged_upon_release( WC_Pre_Orders_Cart::get_pre_order_product() ) ) { |
|
421 | + if (class_exists('WC_Pre_Orders_Order') && WC_Pre_Orders_Cart::cart_contains_pre_order() && WC_Pre_Orders_Product::product_is_charged_upon_release(WC_Pre_Orders_Cart::get_pre_order_product())) { |
|
422 | 422 | return false; |
423 | 423 | } |
424 | 424 | } |
@@ -434,81 +434,81 @@ discard block |
||
434 | 434 | */ |
435 | 435 | public function scripts() { |
436 | 436 | // If keys are not set bail. |
437 | - if ( ! $this->are_keys_set() ) { |
|
438 | - WC_Stripe_Logger::log( 'Keys are not set correctly.' ); |
|
437 | + if ( ! $this->are_keys_set()) { |
|
438 | + WC_Stripe_Logger::log('Keys are not set correctly.'); |
|
439 | 439 | return; |
440 | 440 | } |
441 | 441 | |
442 | 442 | // If no SSL bail. |
443 | - if ( ! $this->testmode && ! is_ssl() ) { |
|
444 | - WC_Stripe_Logger::log( 'Stripe Payment Request live mode requires SSL.' ); |
|
443 | + if ( ! $this->testmode && ! is_ssl()) { |
|
444 | + WC_Stripe_Logger::log('Stripe Payment Request live mode requires SSL.'); |
|
445 | 445 | } |
446 | 446 | |
447 | - if ( ! is_product() && ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) ) { |
|
447 | + if ( ! is_product() && ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order'])) { |
|
448 | 448 | return; |
449 | 449 | } |
450 | 450 | |
451 | - if ( is_product() ) { |
|
451 | + if (is_product()) { |
|
452 | 452 | global $post; |
453 | 453 | |
454 | - $product = wc_get_product( $post->ID ); |
|
454 | + $product = wc_get_product($post->ID); |
|
455 | 455 | |
456 | - if ( ! is_object( $product ) || ! in_array( ( WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type() ), $this->supported_product_types() ) ) { |
|
456 | + if ( ! is_object($product) || ! in_array((WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type()), $this->supported_product_types())) { |
|
457 | 457 | return; |
458 | 458 | } |
459 | 459 | |
460 | - if ( apply_filters( 'wc_stripe_hide_payment_request_on_product_page', false, $post ) ) { |
|
460 | + if (apply_filters('wc_stripe_hide_payment_request_on_product_page', false, $post)) { |
|
461 | 461 | return; |
462 | 462 | } |
463 | 463 | } |
464 | 464 | |
465 | - $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; |
|
465 | + $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min'; |
|
466 | 466 | |
467 | - wp_register_script( 'stripe', 'https://js.stripe.com/v3/', '', '3.0', true ); |
|
468 | - wp_register_script( 'wc_stripe_payment_request', plugins_url( 'assets/js/stripe-payment-request' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array( 'jquery', 'stripe' ), WC_STRIPE_VERSION, true ); |
|
467 | + wp_register_script('stripe', 'https://js.stripe.com/v3/', '', '3.0', true); |
|
468 | + wp_register_script('wc_stripe_payment_request', plugins_url('assets/js/stripe-payment-request' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array('jquery', 'stripe'), WC_STRIPE_VERSION, true); |
|
469 | 469 | |
470 | 470 | wp_localize_script( |
471 | 471 | 'wc_stripe_payment_request', |
472 | 472 | 'wc_stripe_payment_request_params', |
473 | 473 | array( |
474 | - 'ajax_url' => WC_AJAX::get_endpoint( '%%endpoint%%' ), |
|
474 | + 'ajax_url' => WC_AJAX::get_endpoint('%%endpoint%%'), |
|
475 | 475 | 'stripe' => array( |
476 | 476 | 'key' => $this->publishable_key, |
477 | - 'allow_prepaid_card' => apply_filters( 'wc_stripe_allow_prepaid_card', true ) ? 'yes' : 'no', |
|
477 | + 'allow_prepaid_card' => apply_filters('wc_stripe_allow_prepaid_card', true) ? 'yes' : 'no', |
|
478 | 478 | ), |
479 | 479 | 'nonce' => array( |
480 | - 'payment' => wp_create_nonce( 'wc-stripe-payment-request' ), |
|
481 | - 'shipping' => wp_create_nonce( 'wc-stripe-payment-request-shipping' ), |
|
482 | - 'update_shipping' => wp_create_nonce( 'wc-stripe-update-shipping-method' ), |
|
483 | - 'checkout' => wp_create_nonce( 'woocommerce-process_checkout' ), |
|
484 | - 'add_to_cart' => wp_create_nonce( 'wc-stripe-add-to-cart' ), |
|
485 | - 'get_selected_product_data' => wp_create_nonce( 'wc-stripe-get-selected-product-data' ), |
|
486 | - 'log_errors' => wp_create_nonce( 'wc-stripe-log-errors' ), |
|
487 | - 'clear_cart' => wp_create_nonce( 'wc-stripe-clear-cart' ), |
|
480 | + 'payment' => wp_create_nonce('wc-stripe-payment-request'), |
|
481 | + 'shipping' => wp_create_nonce('wc-stripe-payment-request-shipping'), |
|
482 | + 'update_shipping' => wp_create_nonce('wc-stripe-update-shipping-method'), |
|
483 | + 'checkout' => wp_create_nonce('woocommerce-process_checkout'), |
|
484 | + 'add_to_cart' => wp_create_nonce('wc-stripe-add-to-cart'), |
|
485 | + 'get_selected_product_data' => wp_create_nonce('wc-stripe-get-selected-product-data'), |
|
486 | + 'log_errors' => wp_create_nonce('wc-stripe-log-errors'), |
|
487 | + 'clear_cart' => wp_create_nonce('wc-stripe-clear-cart'), |
|
488 | 488 | ), |
489 | 489 | 'i18n' => array( |
490 | - 'no_prepaid_card' => __( 'Sorry, we\'re not accepting prepaid cards at this time.', 'woocommerce-gateway-stripe' ), |
|
490 | + 'no_prepaid_card' => __('Sorry, we\'re not accepting prepaid cards at this time.', 'woocommerce-gateway-stripe'), |
|
491 | 491 | /* translators: Do not translate the [option] placeholder */ |
492 | - 'unknown_shipping' => __( 'Unknown shipping option "[option]".', 'woocommerce-gateway-stripe' ), |
|
492 | + 'unknown_shipping' => __('Unknown shipping option "[option]".', 'woocommerce-gateway-stripe'), |
|
493 | 493 | ), |
494 | 494 | 'checkout' => array( |
495 | 495 | 'url' => wc_get_checkout_url(), |
496 | - 'currency_code' => strtolower( get_woocommerce_currency() ), |
|
497 | - 'country_code' => substr( get_option( 'woocommerce_default_country' ), 0, 2 ), |
|
496 | + 'currency_code' => strtolower(get_woocommerce_currency()), |
|
497 | + 'country_code' => substr(get_option('woocommerce_default_country'), 0, 2), |
|
498 | 498 | 'needs_shipping' => WC()->cart->needs_shipping() ? 'yes' : 'no', |
499 | 499 | ), |
500 | 500 | 'button' => array( |
501 | 501 | 'type' => $this->get_button_type(), |
502 | 502 | 'theme' => $this->get_button_theme(), |
503 | 503 | 'height' => $this->get_button_height(), |
504 | - 'locale' => substr( get_locale(), 0, 2 ), // Default format is en_US. |
|
504 | + 'locale' => substr(get_locale(), 0, 2), // Default format is en_US. |
|
505 | 505 | ), |
506 | 506 | 'is_product_page' => is_product(), |
507 | 507 | 'product' => $this->get_product_data(), |
508 | 508 | ) |
509 | 509 | ); |
510 | 510 | |
511 | - wp_enqueue_script( 'wc_stripe_payment_request' ); |
|
511 | + wp_enqueue_script('wc_stripe_payment_request'); |
|
512 | 512 | } |
513 | 513 | |
514 | 514 | /** |
@@ -522,37 +522,37 @@ discard block |
||
522 | 522 | |
523 | 523 | $gateways = WC()->payment_gateways->get_available_payment_gateways(); |
524 | 524 | |
525 | - if ( ! isset( $gateways['stripe'] ) ) { |
|
525 | + if ( ! isset($gateways['stripe'])) { |
|
526 | 526 | return; |
527 | 527 | } |
528 | 528 | |
529 | - if ( ! is_cart() && ! is_checkout() && ! is_product() && ! isset( $_GET['pay_for_order'] ) ) { |
|
529 | + if ( ! is_cart() && ! is_checkout() && ! is_product() && ! isset($_GET['pay_for_order'])) { |
|
530 | 530 | return; |
531 | 531 | } |
532 | 532 | |
533 | - if ( is_product() && apply_filters( 'wc_stripe_hide_payment_request_on_product_page', false, $post ) ) { |
|
533 | + if (is_product() && apply_filters('wc_stripe_hide_payment_request_on_product_page', false, $post)) { |
|
534 | 534 | return; |
535 | 535 | } |
536 | 536 | |
537 | - if ( is_checkout() && ! apply_filters( 'wc_stripe_show_payment_request_on_checkout', false, $post ) ) { |
|
537 | + if (is_checkout() && ! apply_filters('wc_stripe_show_payment_request_on_checkout', false, $post)) { |
|
538 | 538 | return; |
539 | 539 | } |
540 | 540 | |
541 | - if ( is_product() ) { |
|
542 | - $product = wc_get_product( $post->ID ); |
|
541 | + if (is_product()) { |
|
542 | + $product = wc_get_product($post->ID); |
|
543 | 543 | |
544 | - if ( ! is_object( $product ) || ! in_array( ( WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type() ), $this->supported_product_types() ) ) { |
|
544 | + if ( ! is_object($product) || ! in_array((WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type()), $this->supported_product_types())) { |
|
545 | 545 | return; |
546 | 546 | } |
547 | 547 | |
548 | 548 | // Pre Orders charge upon release not supported. |
549 | - if ( class_exists( 'WC_Pre_Orders_Order' ) && WC_Pre_Orders_Product::product_is_charged_upon_release( $product ) ) { |
|
550 | - WC_Stripe_Logger::log( 'Pre Order charge upon release is not supported. ( Payment Request button disabled )' ); |
|
549 | + if (class_exists('WC_Pre_Orders_Order') && WC_Pre_Orders_Product::product_is_charged_upon_release($product)) { |
|
550 | + WC_Stripe_Logger::log('Pre Order charge upon release is not supported. ( Payment Request button disabled )'); |
|
551 | 551 | return; |
552 | 552 | } |
553 | 553 | } else { |
554 | - if ( ! $this->allowed_items_in_cart() ) { |
|
555 | - WC_Stripe_Logger::log( 'Items in the cart has unsupported product type ( Payment Request button disabled )' ); |
|
554 | + if ( ! $this->allowed_items_in_cart()) { |
|
555 | + WC_Stripe_Logger::log('Items in the cart has unsupported product type ( Payment Request button disabled )'); |
|
556 | 556 | return; |
557 | 557 | } |
558 | 558 | } |
@@ -576,42 +576,42 @@ discard block |
||
576 | 576 | |
577 | 577 | $gateways = WC()->payment_gateways->get_available_payment_gateways(); |
578 | 578 | |
579 | - if ( ! isset( $gateways['stripe'] ) ) { |
|
579 | + if ( ! isset($gateways['stripe'])) { |
|
580 | 580 | return; |
581 | 581 | } |
582 | 582 | |
583 | - if ( ! is_cart() && ! is_checkout() && ! is_product() && ! isset( $_GET['pay_for_order'] ) ) { |
|
583 | + if ( ! is_cart() && ! is_checkout() && ! is_product() && ! isset($_GET['pay_for_order'])) { |
|
584 | 584 | return; |
585 | 585 | } |
586 | 586 | |
587 | - if ( is_product() && apply_filters( 'wc_stripe_hide_payment_request_on_product_page', false, $post ) ) { |
|
587 | + if (is_product() && apply_filters('wc_stripe_hide_payment_request_on_product_page', false, $post)) { |
|
588 | 588 | return; |
589 | 589 | } |
590 | 590 | |
591 | - if ( is_checkout() && ! apply_filters( 'wc_stripe_show_payment_request_on_checkout', false, $post ) ) { |
|
591 | + if (is_checkout() && ! apply_filters('wc_stripe_show_payment_request_on_checkout', false, $post)) { |
|
592 | 592 | return; |
593 | 593 | } |
594 | 594 | |
595 | - if ( is_product() ) { |
|
596 | - $product = wc_get_product( $post->ID ); |
|
595 | + if (is_product()) { |
|
596 | + $product = wc_get_product($post->ID); |
|
597 | 597 | |
598 | - if ( ! is_object( $product ) || ! in_array( ( WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type() ), $this->supported_product_types() ) ) { |
|
598 | + if ( ! is_object($product) || ! in_array((WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type()), $this->supported_product_types())) { |
|
599 | 599 | return; |
600 | 600 | } |
601 | 601 | |
602 | 602 | // Pre Orders charge upon release not supported. |
603 | - if ( class_exists( 'WC_Pre_Orders_Order' ) && WC_Pre_Orders_Product::product_is_charged_upon_release( $product ) ) { |
|
604 | - WC_Stripe_Logger::log( 'Pre Order charge upon release is not supported. ( Payment Request button disabled )' ); |
|
603 | + if (class_exists('WC_Pre_Orders_Order') && WC_Pre_Orders_Product::product_is_charged_upon_release($product)) { |
|
604 | + WC_Stripe_Logger::log('Pre Order charge upon release is not supported. ( Payment Request button disabled )'); |
|
605 | 605 | return; |
606 | 606 | } |
607 | 607 | } else { |
608 | - if ( ! $this->allowed_items_in_cart() ) { |
|
609 | - WC_Stripe_Logger::log( 'Items in the cart has unsupported product type ( Payment Request button disabled )' ); |
|
608 | + if ( ! $this->allowed_items_in_cart()) { |
|
609 | + WC_Stripe_Logger::log('Items in the cart has unsupported product type ( Payment Request button disabled )'); |
|
610 | 610 | return; |
611 | 611 | } |
612 | 612 | } |
613 | 613 | ?> |
614 | - <p id="wc-stripe-payment-request-button-separator" style="margin-top:1.5em;text-align:center;display:none;">— <?php esc_html_e( 'OR', 'woocommerce-gateway-stripe' ); ?> —</p> |
|
614 | + <p id="wc-stripe-payment-request-button-separator" style="margin-top:1.5em;text-align:center;display:none;">— <?php esc_html_e('OR', 'woocommerce-gateway-stripe'); ?> —</p> |
|
615 | 615 | <?php |
616 | 616 | } |
617 | 617 | |
@@ -622,11 +622,11 @@ discard block |
||
622 | 622 | * @version 4.0.0 |
623 | 623 | */ |
624 | 624 | public function ajax_log_errors() { |
625 | - check_ajax_referer( 'wc-stripe-log-errors', 'security' ); |
|
625 | + check_ajax_referer('wc-stripe-log-errors', 'security'); |
|
626 | 626 | |
627 | - $errors = wc_clean( stripslashes( $_POST['errors'] ) ); |
|
627 | + $errors = wc_clean(stripslashes($_POST['errors'])); |
|
628 | 628 | |
629 | - WC_Stripe_Logger::log( $errors ); |
|
629 | + WC_Stripe_Logger::log($errors); |
|
630 | 630 | |
631 | 631 | exit; |
632 | 632 | } |
@@ -638,7 +638,7 @@ discard block |
||
638 | 638 | * @version 4.0.0 |
639 | 639 | */ |
640 | 640 | public function ajax_clear_cart() { |
641 | - check_ajax_referer( 'wc-stripe-clear-cart', 'security' ); |
|
641 | + check_ajax_referer('wc-stripe-clear-cart', 'security'); |
|
642 | 642 | |
643 | 643 | WC()->cart->empty_cart(); |
644 | 644 | exit; |
@@ -648,10 +648,10 @@ discard block |
||
648 | 648 | * Get cart details. |
649 | 649 | */ |
650 | 650 | public function ajax_get_cart_details() { |
651 | - check_ajax_referer( 'wc-stripe-payment-request', 'security' ); |
|
651 | + check_ajax_referer('wc-stripe-payment-request', 'security'); |
|
652 | 652 | |
653 | - if ( ! defined( 'WOOCOMMERCE_CART' ) ) { |
|
654 | - define( 'WOOCOMMERCE_CART', true ); |
|
653 | + if ( ! defined('WOOCOMMERCE_CART')) { |
|
654 | + define('WOOCOMMERCE_CART', true); |
|
655 | 655 | } |
656 | 656 | |
657 | 657 | WC()->cart->calculate_totals(); |
@@ -662,14 +662,14 @@ discard block |
||
662 | 662 | $data = array( |
663 | 663 | 'shipping_required' => WC()->cart->needs_shipping(), |
664 | 664 | 'order_data' => array( |
665 | - 'currency' => strtolower( $currency ), |
|
666 | - 'country_code' => substr( get_option( 'woocommerce_default_country' ), 0, 2 ), |
|
665 | + 'currency' => strtolower($currency), |
|
666 | + 'country_code' => substr(get_option('woocommerce_default_country'), 0, 2), |
|
667 | 667 | ), |
668 | 668 | ); |
669 | 669 | |
670 | 670 | $data['order_data'] += $this->build_display_items(); |
671 | 671 | |
672 | - wp_send_json( $data ); |
|
672 | + wp_send_json($data); |
|
673 | 673 | } |
674 | 674 | |
675 | 675 | /** |
@@ -680,47 +680,47 @@ discard block |
||
680 | 680 | * @see WC_Shipping::get_packages(). |
681 | 681 | */ |
682 | 682 | public function ajax_get_shipping_options() { |
683 | - check_ajax_referer( 'wc-stripe-payment-request-shipping', 'security' ); |
|
683 | + check_ajax_referer('wc-stripe-payment-request-shipping', 'security'); |
|
684 | 684 | |
685 | 685 | try { |
686 | 686 | // Set the shipping package. |
687 | - $posted = filter_input_array( INPUT_POST, array( |
|
687 | + $posted = filter_input_array(INPUT_POST, array( |
|
688 | 688 | 'country' => FILTER_SANITIZE_STRING, |
689 | 689 | 'state' => FILTER_SANITIZE_STRING, |
690 | 690 | 'postcode' => FILTER_SANITIZE_STRING, |
691 | 691 | 'city' => FILTER_SANITIZE_STRING, |
692 | 692 | 'address' => FILTER_SANITIZE_STRING, |
693 | 693 | 'address_2' => FILTER_SANITIZE_STRING, |
694 | - ) ); |
|
694 | + )); |
|
695 | 695 | |
696 | - $this->calculate_shipping( apply_filters( 'wc_stripe_payment_request_shipping_posted_values', $posted ) ); |
|
696 | + $this->calculate_shipping(apply_filters('wc_stripe_payment_request_shipping_posted_values', $posted)); |
|
697 | 697 | |
698 | 698 | // Set the shipping options. |
699 | 699 | $data = array(); |
700 | 700 | $packages = WC()->shipping->get_packages(); |
701 | 701 | |
702 | - if ( ! empty( $packages ) && WC()->customer->has_calculated_shipping() ) { |
|
703 | - foreach ( $packages as $package_key => $package ) { |
|
704 | - if ( empty( $package['rates'] ) ) { |
|
705 | - throw new Exception( __( 'Unable to find shipping method for address.', 'woocommerce-gateway-stripe' ) ); |
|
702 | + if ( ! empty($packages) && WC()->customer->has_calculated_shipping()) { |
|
703 | + foreach ($packages as $package_key => $package) { |
|
704 | + if (empty($package['rates'])) { |
|
705 | + throw new Exception(__('Unable to find shipping method for address.', 'woocommerce-gateway-stripe')); |
|
706 | 706 | } |
707 | 707 | |
708 | - foreach ( $package['rates'] as $key => $rate ) { |
|
708 | + foreach ($package['rates'] as $key => $rate) { |
|
709 | 709 | $data['shipping_options'][] = array( |
710 | 710 | 'id' => $rate->id, |
711 | 711 | 'label' => $rate->label, |
712 | 712 | 'detail' => '', |
713 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $rate->cost ), |
|
713 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($rate->cost), |
|
714 | 714 | ); |
715 | 715 | } |
716 | 716 | } |
717 | 717 | } else { |
718 | - throw new Exception( __( 'Unable to find shipping method for address.', 'woocommerce-gateway-stripe' ) ); |
|
718 | + throw new Exception(__('Unable to find shipping method for address.', 'woocommerce-gateway-stripe')); |
|
719 | 719 | } |
720 | 720 | |
721 | - if ( isset( $data[0] ) ) { |
|
721 | + if (isset($data[0])) { |
|
722 | 722 | // Auto select the first shipping method. |
723 | - WC()->session->set( 'chosen_shipping_methods', array( $data[0]['id'] ) ); |
|
723 | + WC()->session->set('chosen_shipping_methods', array($data[0]['id'])); |
|
724 | 724 | } |
725 | 725 | |
726 | 726 | WC()->cart->calculate_totals(); |
@@ -728,12 +728,12 @@ discard block |
||
728 | 728 | $data += $this->build_display_items(); |
729 | 729 | $data['result'] = 'success'; |
730 | 730 | |
731 | - wp_send_json( $data ); |
|
732 | - } catch ( Exception $e ) { |
|
731 | + wp_send_json($data); |
|
732 | + } catch (Exception $e) { |
|
733 | 733 | $data += $this->build_display_items(); |
734 | 734 | $data['result'] = 'invalid_shipping_address'; |
735 | 735 | |
736 | - wp_send_json( $data ); |
|
736 | + wp_send_json($data); |
|
737 | 737 | } |
738 | 738 | } |
739 | 739 | |
@@ -741,22 +741,22 @@ discard block |
||
741 | 741 | * Update shipping method. |
742 | 742 | */ |
743 | 743 | public function ajax_update_shipping_method() { |
744 | - check_ajax_referer( 'wc-stripe-update-shipping-method', 'security' ); |
|
744 | + check_ajax_referer('wc-stripe-update-shipping-method', 'security'); |
|
745 | 745 | |
746 | - if ( ! defined( 'WOOCOMMERCE_CART' ) ) { |
|
747 | - define( 'WOOCOMMERCE_CART', true ); |
|
746 | + if ( ! defined('WOOCOMMERCE_CART')) { |
|
747 | + define('WOOCOMMERCE_CART', true); |
|
748 | 748 | } |
749 | 749 | |
750 | - $chosen_shipping_methods = WC()->session->get( 'chosen_shipping_methods' ); |
|
751 | - $shipping_method = filter_input( INPUT_POST, 'shipping_method', FILTER_DEFAULT, FILTER_REQUIRE_ARRAY ); |
|
750 | + $chosen_shipping_methods = WC()->session->get('chosen_shipping_methods'); |
|
751 | + $shipping_method = filter_input(INPUT_POST, 'shipping_method', FILTER_DEFAULT, FILTER_REQUIRE_ARRAY); |
|
752 | 752 | |
753 | - if ( is_array( $shipping_method ) ) { |
|
754 | - foreach ( $shipping_method as $i => $value ) { |
|
755 | - $chosen_shipping_methods[ $i ] = wc_clean( $value ); |
|
753 | + if (is_array($shipping_method)) { |
|
754 | + foreach ($shipping_method as $i => $value) { |
|
755 | + $chosen_shipping_methods[$i] = wc_clean($value); |
|
756 | 756 | } |
757 | 757 | } |
758 | 758 | |
759 | - WC()->session->set( 'chosen_shipping_methods', $chosen_shipping_methods ); |
|
759 | + WC()->session->set('chosen_shipping_methods', $chosen_shipping_methods); |
|
760 | 760 | |
761 | 761 | WC()->cart->calculate_totals(); |
762 | 762 | |
@@ -764,7 +764,7 @@ discard block |
||
764 | 764 | $data += $this->build_display_items(); |
765 | 765 | $data['result'] = 'success'; |
766 | 766 | |
767 | - wp_send_json( $data ); |
|
767 | + wp_send_json($data); |
|
768 | 768 | } |
769 | 769 | |
770 | 770 | /** |
@@ -775,31 +775,31 @@ discard block |
||
775 | 775 | * @return array $data |
776 | 776 | */ |
777 | 777 | public function ajax_get_selected_product_data() { |
778 | - check_ajax_referer( 'wc-stripe-get-selected-product-data', 'security' ); |
|
778 | + check_ajax_referer('wc-stripe-get-selected-product-data', 'security'); |
|
779 | 779 | |
780 | - $product_id = absint( $_POST['product_id'] ); |
|
781 | - $qty = ! isset( $_POST['qty'] ) ? 1 : absint( $_POST['qty'] ); |
|
780 | + $product_id = absint($_POST['product_id']); |
|
781 | + $qty = ! isset($_POST['qty']) ? 1 : absint($_POST['qty']); |
|
782 | 782 | |
783 | - $product = wc_get_product( $product_id ); |
|
783 | + $product = wc_get_product($product_id); |
|
784 | 784 | |
785 | - if ( 'variable' === ( WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type() ) && isset( $_POST['attributes'] ) ) { |
|
786 | - $attributes = array_map( 'wc_clean', $_POST['attributes'] ); |
|
785 | + if ('variable' === (WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type()) && isset($_POST['attributes'])) { |
|
786 | + $attributes = array_map('wc_clean', $_POST['attributes']); |
|
787 | 787 | |
788 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
789 | - $variation_id = $product->get_matching_variation( $attributes ); |
|
788 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
789 | + $variation_id = $product->get_matching_variation($attributes); |
|
790 | 790 | } else { |
791 | - $data_store = WC_Data_Store::load( 'product' ); |
|
792 | - $variation_id = $data_store->find_matching_product_variation( $product, $attributes ); |
|
791 | + $data_store = WC_Data_Store::load('product'); |
|
792 | + $variation_id = $data_store->find_matching_product_variation($product, $attributes); |
|
793 | 793 | } |
794 | 794 | |
795 | - if ( ! empty( $variation_id ) ) { |
|
796 | - $product = wc_get_product( $variation_id ); |
|
795 | + if ( ! empty($variation_id)) { |
|
796 | + $product = wc_get_product($variation_id); |
|
797 | 797 | } |
798 | - } elseif ( 'simple' === ( WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type() ) ) { |
|
799 | - $product = wc_get_product( $product_id ); |
|
798 | + } elseif ('simple' === (WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type())) { |
|
799 | + $product = wc_get_product($product_id); |
|
800 | 800 | } |
801 | 801 | |
802 | - $total = $qty * ( WC_Stripe_Helper::is_pre_30() ? $product->price : $product->get_price() ); |
|
802 | + $total = $qty * (WC_Stripe_Helper::is_pre_30() ? $product->price : $product->get_price()); |
|
803 | 803 | |
804 | 804 | $quantity_label = 1 < $qty ? ' (x' . $qty . ')' : ''; |
805 | 805 | |
@@ -807,28 +807,28 @@ discard block |
||
807 | 807 | $items = array(); |
808 | 808 | |
809 | 809 | $items[] = array( |
810 | - 'label' => ( WC_Stripe_Helper::is_pre_30() ? $product->name : $product->get_name() ) . $quantity_label, |
|
811 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $total ), |
|
810 | + 'label' => (WC_Stripe_Helper::is_pre_30() ? $product->name : $product->get_name()) . $quantity_label, |
|
811 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($total), |
|
812 | 812 | ); |
813 | 813 | |
814 | - if ( wc_tax_enabled() ) { |
|
814 | + if (wc_tax_enabled()) { |
|
815 | 815 | $items[] = array( |
816 | - 'label' => __( 'Tax', 'woocommerce-gateway-stripe' ), |
|
816 | + 'label' => __('Tax', 'woocommerce-gateway-stripe'), |
|
817 | 817 | 'amount' => 0, |
818 | 818 | 'pending' => true, |
819 | 819 | ); |
820 | 820 | } |
821 | 821 | |
822 | - if ( wc_shipping_enabled() && $product->needs_shipping() ) { |
|
822 | + if (wc_shipping_enabled() && $product->needs_shipping()) { |
|
823 | 823 | $items[] = array( |
824 | - 'label' => __( 'Shipping', 'woocommerce-gateway-stripe' ), |
|
824 | + 'label' => __('Shipping', 'woocommerce-gateway-stripe'), |
|
825 | 825 | 'amount' => 0, |
826 | 826 | 'pending' => true, |
827 | 827 | ); |
828 | 828 | |
829 | - $data['shippingOptions'] = array( |
|
829 | + $data['shippingOptions'] = array( |
|
830 | 830 | 'id' => 'pending', |
831 | - 'label' => __( 'Pending', 'woocommerce-gateway-stripe' ), |
|
831 | + 'label' => __('Pending', 'woocommerce-gateway-stripe'), |
|
832 | 832 | 'detail' => '', |
833 | 833 | 'amount' => 0, |
834 | 834 | ); |
@@ -837,15 +837,15 @@ discard block |
||
837 | 837 | $data['displayItems'] = $items; |
838 | 838 | $data['total'] = array( |
839 | 839 | 'label' => $this->total_label, |
840 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $total ), |
|
840 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($total), |
|
841 | 841 | 'pending' => true, |
842 | 842 | ); |
843 | 843 | |
844 | - $data['requestShipping'] = ( wc_shipping_enabled() && $product->needs_shipping() ); |
|
845 | - $data['currency'] = strtolower( get_woocommerce_currency() ); |
|
846 | - $data['country_code'] = substr( get_option( 'woocommerce_default_country' ), 0, 2 ); |
|
844 | + $data['requestShipping'] = (wc_shipping_enabled() && $product->needs_shipping()); |
|
845 | + $data['currency'] = strtolower(get_woocommerce_currency()); |
|
846 | + $data['country_code'] = substr(get_option('woocommerce_default_country'), 0, 2); |
|
847 | 847 | |
848 | - wp_send_json( $data ); |
|
848 | + wp_send_json($data); |
|
849 | 849 | } |
850 | 850 | |
851 | 851 | /** |
@@ -856,37 +856,37 @@ discard block |
||
856 | 856 | * @return array $data |
857 | 857 | */ |
858 | 858 | public function ajax_add_to_cart() { |
859 | - check_ajax_referer( 'wc-stripe-add-to-cart', 'security' ); |
|
859 | + check_ajax_referer('wc-stripe-add-to-cart', 'security'); |
|
860 | 860 | |
861 | - if ( ! defined( 'WOOCOMMERCE_CART' ) ) { |
|
862 | - define( 'WOOCOMMERCE_CART', true ); |
|
861 | + if ( ! defined('WOOCOMMERCE_CART')) { |
|
862 | + define('WOOCOMMERCE_CART', true); |
|
863 | 863 | } |
864 | 864 | |
865 | 865 | WC()->shipping->reset_shipping(); |
866 | 866 | |
867 | - $product_id = absint( $_POST['product_id'] ); |
|
868 | - $qty = ! isset( $_POST['qty'] ) ? 1 : absint( $_POST['qty'] ); |
|
867 | + $product_id = absint($_POST['product_id']); |
|
868 | + $qty = ! isset($_POST['qty']) ? 1 : absint($_POST['qty']); |
|
869 | 869 | |
870 | - $product = wc_get_product( $product_id ); |
|
870 | + $product = wc_get_product($product_id); |
|
871 | 871 | |
872 | 872 | // First empty the cart to prevent wrong calculation. |
873 | 873 | WC()->cart->empty_cart(); |
874 | 874 | |
875 | - if ( 'variable' === ( WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type() ) && isset( $_POST['attributes'] ) ) { |
|
876 | - $attributes = array_map( 'wc_clean', $_POST['attributes'] ); |
|
875 | + if ('variable' === (WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type()) && isset($_POST['attributes'])) { |
|
876 | + $attributes = array_map('wc_clean', $_POST['attributes']); |
|
877 | 877 | |
878 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
879 | - $variation_id = $product->get_matching_variation( $attributes ); |
|
878 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
879 | + $variation_id = $product->get_matching_variation($attributes); |
|
880 | 880 | } else { |
881 | - $data_store = WC_Data_Store::load( 'product' ); |
|
882 | - $variation_id = $data_store->find_matching_product_variation( $product, $attributes ); |
|
881 | + $data_store = WC_Data_Store::load('product'); |
|
882 | + $variation_id = $data_store->find_matching_product_variation($product, $attributes); |
|
883 | 883 | } |
884 | 884 | |
885 | - WC()->cart->add_to_cart( $product->get_id(), $qty, $variation_id, $attributes ); |
|
885 | + WC()->cart->add_to_cart($product->get_id(), $qty, $variation_id, $attributes); |
|
886 | 886 | } |
887 | 887 | |
888 | - if ( 'simple' === ( WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type() ) ) { |
|
889 | - WC()->cart->add_to_cart( $product->get_id(), $qty ); |
|
888 | + if ('simple' === (WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type())) { |
|
889 | + WC()->cart->add_to_cart($product->get_id(), $qty); |
|
890 | 890 | } |
891 | 891 | |
892 | 892 | WC()->cart->calculate_totals(); |
@@ -895,7 +895,7 @@ discard block |
||
895 | 895 | $data += $this->build_display_items(); |
896 | 896 | $data['result'] = 'success'; |
897 | 897 | |
898 | - wp_send_json( $data ); |
|
898 | + wp_send_json($data); |
|
899 | 899 | } |
900 | 900 | |
901 | 901 | /** |
@@ -908,31 +908,31 @@ discard block |
||
908 | 908 | * @version 4.0.0 |
909 | 909 | */ |
910 | 910 | public function normalize_state() { |
911 | - $billing_country = ! empty( $_POST['billing_country'] ) ? wc_clean( $_POST['billing_country'] ) : ''; |
|
912 | - $shipping_country = ! empty( $_POST['shipping_country'] ) ? wc_clean( $_POST['shipping_country'] ) : ''; |
|
913 | - $billing_state = ! empty( $_POST['billing_state'] ) ? wc_clean( $_POST['billing_state'] ) : ''; |
|
914 | - $shipping_state = ! empty( $_POST['shipping_state'] ) ? wc_clean( $_POST['shipping_state'] ) : ''; |
|
911 | + $billing_country = ! empty($_POST['billing_country']) ? wc_clean($_POST['billing_country']) : ''; |
|
912 | + $shipping_country = ! empty($_POST['shipping_country']) ? wc_clean($_POST['shipping_country']) : ''; |
|
913 | + $billing_state = ! empty($_POST['billing_state']) ? wc_clean($_POST['billing_state']) : ''; |
|
914 | + $shipping_state = ! empty($_POST['shipping_state']) ? wc_clean($_POST['shipping_state']) : ''; |
|
915 | 915 | |
916 | - if ( $billing_state && $billing_country ) { |
|
917 | - $valid_states = WC()->countries->get_states( $billing_country ); |
|
916 | + if ($billing_state && $billing_country) { |
|
917 | + $valid_states = WC()->countries->get_states($billing_country); |
|
918 | 918 | |
919 | 919 | // Valid states found for country. |
920 | - if ( ! empty( $valid_states ) && is_array( $valid_states ) && sizeof( $valid_states ) > 0 ) { |
|
921 | - foreach ( $valid_states as $state_abbr => $state ) { |
|
922 | - if ( preg_match( '/' . preg_quote( $state ) . '/i', $billing_state ) ) { |
|
920 | + if ( ! empty($valid_states) && is_array($valid_states) && sizeof($valid_states) > 0) { |
|
921 | + foreach ($valid_states as $state_abbr => $state) { |
|
922 | + if (preg_match('/' . preg_quote($state) . '/i', $billing_state)) { |
|
923 | 923 | $_POST['billing_state'] = $state_abbr; |
924 | 924 | } |
925 | 925 | } |
926 | 926 | } |
927 | 927 | } |
928 | 928 | |
929 | - if ( $shipping_state && $shipping_country ) { |
|
930 | - $valid_states = WC()->countries->get_states( $shipping_country ); |
|
929 | + if ($shipping_state && $shipping_country) { |
|
930 | + $valid_states = WC()->countries->get_states($shipping_country); |
|
931 | 931 | |
932 | 932 | // Valid states found for country. |
933 | - if ( ! empty( $valid_states ) && is_array( $valid_states ) && sizeof( $valid_states ) > 0 ) { |
|
934 | - foreach ( $valid_states as $state_abbr => $state ) { |
|
935 | - if ( preg_match( '/' . preg_quote( $state ) . '/i', $shipping_state ) ) { |
|
933 | + if ( ! empty($valid_states) && is_array($valid_states) && sizeof($valid_states) > 0) { |
|
934 | + foreach ($valid_states as $state_abbr => $state) { |
|
935 | + if (preg_match('/' . preg_quote($state) . '/i', $shipping_state)) { |
|
936 | 936 | $_POST['shipping_state'] = $state_abbr; |
937 | 937 | } |
938 | 938 | } |
@@ -947,19 +947,19 @@ discard block |
||
947 | 947 | * @version 4.0.0 |
948 | 948 | */ |
949 | 949 | public function ajax_create_order() { |
950 | - if ( WC()->cart->is_empty() ) { |
|
951 | - wp_send_json_error( __( 'Empty cart', 'woocommerce-gateway-stripe' ) ); |
|
950 | + if (WC()->cart->is_empty()) { |
|
951 | + wp_send_json_error(__('Empty cart', 'woocommerce-gateway-stripe')); |
|
952 | 952 | } |
953 | 953 | |
954 | - if ( ! defined( 'WOOCOMMERCE_CHECKOUT' ) ) { |
|
955 | - define( 'WOOCOMMERCE_CHECKOUT', true ); |
|
954 | + if ( ! defined('WOOCOMMERCE_CHECKOUT')) { |
|
955 | + define('WOOCOMMERCE_CHECKOUT', true); |
|
956 | 956 | } |
957 | 957 | |
958 | 958 | $this->normalize_state(); |
959 | 959 | |
960 | 960 | WC()->checkout()->process_checkout(); |
961 | 961 | |
962 | - die( 0 ); |
|
962 | + die(0); |
|
963 | 963 | } |
964 | 964 | |
965 | 965 | /** |
@@ -969,7 +969,7 @@ discard block |
||
969 | 969 | * @version 4.0.0 |
970 | 970 | * @param array $address |
971 | 971 | */ |
972 | - protected function calculate_shipping( $address = array() ) { |
|
972 | + protected function calculate_shipping($address = array()) { |
|
973 | 973 | global $states; |
974 | 974 | |
975 | 975 | $country = $address['country']; |
@@ -986,28 +986,28 @@ discard block |
||
986 | 986 | * In some versions of Chrome, state can be a full name. So we need |
987 | 987 | * to convert that to abbreviation as WC is expecting that. |
988 | 988 | */ |
989 | - if ( 2 < strlen( $state ) ) { |
|
990 | - $state = array_search( ucfirst( strtolower( $state ) ), $states[ $country ] ); |
|
989 | + if (2 < strlen($state)) { |
|
990 | + $state = array_search(ucfirst(strtolower($state)), $states[$country]); |
|
991 | 991 | } |
992 | 992 | |
993 | 993 | WC()->shipping->reset_shipping(); |
994 | 994 | |
995 | - if ( $postcode && WC_Validation::is_postcode( $postcode, $country ) ) { |
|
996 | - $postcode = wc_format_postcode( $postcode, $country ); |
|
995 | + if ($postcode && WC_Validation::is_postcode($postcode, $country)) { |
|
996 | + $postcode = wc_format_postcode($postcode, $country); |
|
997 | 997 | } |
998 | 998 | |
999 | - if ( $country ) { |
|
1000 | - WC()->customer->set_location( $country, $state, $postcode, $city ); |
|
1001 | - WC()->customer->set_shipping_location( $country, $state, $postcode, $city ); |
|
999 | + if ($country) { |
|
1000 | + WC()->customer->set_location($country, $state, $postcode, $city); |
|
1001 | + WC()->customer->set_shipping_location($country, $state, $postcode, $city); |
|
1002 | 1002 | } else { |
1003 | 1003 | WC_Stripe_Helper::is_pre_30() ? WC()->customer->set_to_base() : WC()->customer->set_billing_address_to_base(); |
1004 | 1004 | WC_Stripe_Helper::is_pre_30() ? WC()->customer->set_shipping_to_base() : WC()->customer->set_shipping_address_to_base(); |
1005 | 1005 | } |
1006 | 1006 | |
1007 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
1008 | - WC()->customer->calculated_shipping( true ); |
|
1007 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
1008 | + WC()->customer->calculated_shipping(true); |
|
1009 | 1009 | } else { |
1010 | - WC()->customer->set_calculated_shipping( true ); |
|
1010 | + WC()->customer->set_calculated_shipping(true); |
|
1011 | 1011 | WC()->customer->save(); |
1012 | 1012 | } |
1013 | 1013 | |
@@ -1024,17 +1024,17 @@ discard block |
||
1024 | 1024 | $packages[0]['destination']['address'] = $address_1; |
1025 | 1025 | $packages[0]['destination']['address_2'] = $address_2; |
1026 | 1026 | |
1027 | - foreach ( WC()->cart->get_cart() as $item ) { |
|
1028 | - if ( $item['data']->needs_shipping() ) { |
|
1029 | - if ( isset( $item['line_total'] ) ) { |
|
1027 | + foreach (WC()->cart->get_cart() as $item) { |
|
1028 | + if ($item['data']->needs_shipping()) { |
|
1029 | + if (isset($item['line_total'])) { |
|
1030 | 1030 | $packages[0]['contents_cost'] += $item['line_total']; |
1031 | 1031 | } |
1032 | 1032 | } |
1033 | 1033 | } |
1034 | 1034 | |
1035 | - $packages = apply_filters( 'woocommerce_cart_shipping_packages', $packages ); |
|
1035 | + $packages = apply_filters('woocommerce_cart_shipping_packages', $packages); |
|
1036 | 1036 | |
1037 | - WC()->shipping->calculate_shipping( $packages ); |
|
1037 | + WC()->shipping->calculate_shipping($packages); |
|
1038 | 1038 | } |
1039 | 1039 | |
1040 | 1040 | /** |
@@ -1043,19 +1043,19 @@ discard block |
||
1043 | 1043 | * @since 3.1.0 |
1044 | 1044 | * @version 4.0.0 |
1045 | 1045 | */ |
1046 | - protected function build_shipping_methods( $shipping_methods ) { |
|
1047 | - if ( empty( $shipping_methods ) ) { |
|
1046 | + protected function build_shipping_methods($shipping_methods) { |
|
1047 | + if (empty($shipping_methods)) { |
|
1048 | 1048 | return array(); |
1049 | 1049 | } |
1050 | 1050 | |
1051 | 1051 | $shipping = array(); |
1052 | 1052 | |
1053 | - foreach ( $shipping_methods as $method ) { |
|
1053 | + foreach ($shipping_methods as $method) { |
|
1054 | 1054 | $shipping[] = array( |
1055 | 1055 | 'id' => $method['id'], |
1056 | 1056 | 'label' => $method['label'], |
1057 | 1057 | 'detail' => '', |
1058 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $method['amount']['value'] ), |
|
1058 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($method['amount']['value']), |
|
1059 | 1059 | ); |
1060 | 1060 | } |
1061 | 1061 | |
@@ -1069,8 +1069,8 @@ discard block |
||
1069 | 1069 | * @version 4.0.0 |
1070 | 1070 | */ |
1071 | 1071 | protected function build_display_items() { |
1072 | - if ( ! defined( 'WOOCOMMERCE_CART' ) ) { |
|
1073 | - define( 'WOOCOMMERCE_CART', true ); |
|
1072 | + if ( ! defined('WOOCOMMERCE_CART')) { |
|
1073 | + define('WOOCOMMERCE_CART', true); |
|
1074 | 1074 | } |
1075 | 1075 | |
1076 | 1076 | $items = array(); |
@@ -1078,71 +1078,71 @@ discard block |
||
1078 | 1078 | $discounts = 0; |
1079 | 1079 | |
1080 | 1080 | // Default show only subtotal instead of itemization. |
1081 | - if ( ! apply_filters( 'wc_stripe_payment_request_hide_itemization', true ) ) { |
|
1082 | - foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { |
|
1081 | + if ( ! apply_filters('wc_stripe_payment_request_hide_itemization', true)) { |
|
1082 | + foreach (WC()->cart->get_cart() as $cart_item_key => $cart_item) { |
|
1083 | 1083 | $amount = $cart_item['line_subtotal']; |
1084 | - $subtotal += $cart_item['line_subtotal']; |
|
1084 | + $subtotal += $cart_item['line_subtotal']; |
|
1085 | 1085 | $quantity_label = 1 < $cart_item['quantity'] ? ' (x' . $cart_item['quantity'] . ')' : ''; |
1086 | 1086 | |
1087 | 1087 | $product_name = WC_Stripe_Helper::is_pre_30() ? $cart_item['data']->post->post_title : $cart_item['data']->get_name(); |
1088 | 1088 | |
1089 | 1089 | $item = array( |
1090 | 1090 | 'label' => $product_name . $quantity_label, |
1091 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $amount ), |
|
1091 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($amount), |
|
1092 | 1092 | ); |
1093 | 1093 | |
1094 | 1094 | $items[] = $item; |
1095 | 1095 | } |
1096 | 1096 | } |
1097 | 1097 | |
1098 | - if ( version_compare( WC_VERSION, '3.2', '<' ) ) { |
|
1099 | - $discounts = wc_format_decimal( WC()->cart->get_cart_discount_total(), WC()->cart->dp ); |
|
1098 | + if (version_compare(WC_VERSION, '3.2', '<')) { |
|
1099 | + $discounts = wc_format_decimal(WC()->cart->get_cart_discount_total(), WC()->cart->dp); |
|
1100 | 1100 | } else { |
1101 | - $applied_coupons = array_values( WC()->cart->get_coupon_discount_totals() ); |
|
1101 | + $applied_coupons = array_values(WC()->cart->get_coupon_discount_totals()); |
|
1102 | 1102 | |
1103 | - foreach ( $applied_coupons as $amount ) { |
|
1103 | + foreach ($applied_coupons as $amount) { |
|
1104 | 1104 | $discounts += (float) $amount; |
1105 | 1105 | } |
1106 | 1106 | } |
1107 | 1107 | |
1108 | - $discounts = wc_format_decimal( $discounts, WC()->cart->dp ); |
|
1109 | - $tax = wc_format_decimal( WC()->cart->tax_total + WC()->cart->shipping_tax_total, WC()->cart->dp ); |
|
1110 | - $shipping = wc_format_decimal( WC()->cart->shipping_total, WC()->cart->dp ); |
|
1111 | - $items_total = wc_format_decimal( WC()->cart->cart_contents_total, WC()->cart->dp ) + $discounts; |
|
1112 | - $order_total = version_compare( WC_VERSION, '3.2', '<' ) ? wc_format_decimal( $items_total + $tax + $shipping - $discounts, WC()->cart->dp ) : WC()->cart->get_total( false ); |
|
1108 | + $discounts = wc_format_decimal($discounts, WC()->cart->dp); |
|
1109 | + $tax = wc_format_decimal(WC()->cart->tax_total + WC()->cart->shipping_tax_total, WC()->cart->dp); |
|
1110 | + $shipping = wc_format_decimal(WC()->cart->shipping_total, WC()->cart->dp); |
|
1111 | + $items_total = wc_format_decimal(WC()->cart->cart_contents_total, WC()->cart->dp) + $discounts; |
|
1112 | + $order_total = version_compare(WC_VERSION, '3.2', '<') ? wc_format_decimal($items_total + $tax + $shipping - $discounts, WC()->cart->dp) : WC()->cart->get_total(false); |
|
1113 | 1113 | |
1114 | - if ( wc_tax_enabled() ) { |
|
1114 | + if (wc_tax_enabled()) { |
|
1115 | 1115 | $items[] = array( |
1116 | - 'label' => esc_html( __( 'Tax', 'woocommerce-gateway-stripe' ) ), |
|
1117 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $tax ), |
|
1116 | + 'label' => esc_html(__('Tax', 'woocommerce-gateway-stripe')), |
|
1117 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($tax), |
|
1118 | 1118 | ); |
1119 | 1119 | } |
1120 | 1120 | |
1121 | - if ( WC()->cart->needs_shipping() ) { |
|
1121 | + if (WC()->cart->needs_shipping()) { |
|
1122 | 1122 | $items[] = array( |
1123 | - 'label' => esc_html( __( 'Shipping', 'woocommerce-gateway-stripe' ) ), |
|
1124 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $shipping ), |
|
1123 | + 'label' => esc_html(__('Shipping', 'woocommerce-gateway-stripe')), |
|
1124 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($shipping), |
|
1125 | 1125 | ); |
1126 | 1126 | } |
1127 | 1127 | |
1128 | - if ( WC()->cart->has_discount() ) { |
|
1128 | + if (WC()->cart->has_discount()) { |
|
1129 | 1129 | $items[] = array( |
1130 | - 'label' => esc_html( __( 'Discount', 'woocommerce-gateway-stripe' ) ), |
|
1131 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $discounts ), |
|
1130 | + 'label' => esc_html(__('Discount', 'woocommerce-gateway-stripe')), |
|
1131 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($discounts), |
|
1132 | 1132 | ); |
1133 | 1133 | } |
1134 | 1134 | |
1135 | - if ( version_compare( WC_VERSION, '3.2', '<' ) ) { |
|
1135 | + if (version_compare(WC_VERSION, '3.2', '<')) { |
|
1136 | 1136 | $cart_fees = WC()->cart->fees; |
1137 | 1137 | } else { |
1138 | 1138 | $cart_fees = WC()->cart->get_fees(); |
1139 | 1139 | } |
1140 | 1140 | |
1141 | 1141 | // Include fees and taxes as display items. |
1142 | - foreach ( $cart_fees as $key => $fee ) { |
|
1142 | + foreach ($cart_fees as $key => $fee) { |
|
1143 | 1143 | $items[] = array( |
1144 | 1144 | 'label' => $fee->name, |
1145 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $fee->amount ), |
|
1145 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($fee->amount), |
|
1146 | 1146 | ); |
1147 | 1147 | } |
1148 | 1148 | |
@@ -1150,7 +1150,7 @@ discard block |
||
1150 | 1150 | 'displayItems' => $items, |
1151 | 1151 | 'total' => array( |
1152 | 1152 | 'label' => $this->total_label, |
1153 | - 'amount' => max( 0, apply_filters( 'woocommerce_stripe_calculated_total', WC_Stripe_Helper::get_stripe_amount( $order_total ), $order_total, WC()->cart ) ), |
|
1153 | + 'amount' => max(0, apply_filters('woocommerce_stripe_calculated_total', WC_Stripe_Helper::get_stripe_amount($order_total), $order_total, WC()->cart)), |
|
1154 | 1154 | 'pending' => false, |
1155 | 1155 | ), |
1156 | 1156 | ); |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * @since 4.0.6 |
6 | 6 | */ |
7 | 7 | |
8 | -if ( ! defined( 'ABSPATH' ) ) { |
|
8 | +if ( ! defined('ABSPATH')) { |
|
9 | 9 | exit; |
10 | 10 | } |
11 | 11 | |
@@ -60,21 +60,21 @@ discard block |
||
60 | 60 | public $apple_pay_verify_notice; |
61 | 61 | |
62 | 62 | public function __construct() { |
63 | - $this->stripe_settings = get_option( 'woocommerce_stripe_settings', array() ); |
|
64 | - $this->stripe_enabled = $this->get_option( 'enabled' ); |
|
65 | - $this->payment_request = 'yes' === $this->get_option( 'payment_request', 'yes' ); |
|
66 | - $this->apple_pay_domain_set = 'yes' === $this->get_option( 'apple_pay_domain_set', 'no' ); |
|
63 | + $this->stripe_settings = get_option('woocommerce_stripe_settings', array()); |
|
64 | + $this->stripe_enabled = $this->get_option('enabled'); |
|
65 | + $this->payment_request = 'yes' === $this->get_option('payment_request', 'yes'); |
|
66 | + $this->apple_pay_domain_set = 'yes' === $this->get_option('apple_pay_domain_set', 'no'); |
|
67 | 67 | $this->apple_pay_verify_notice = ''; |
68 | - $this->testmode = 'yes' === $this->get_option( 'testmode', 'no' ); |
|
69 | - $this->secret_key = $this->testmode ? $this->get_option( 'test_secret_key' ) : $this->get_option( 'secret_key' ); |
|
68 | + $this->testmode = 'yes' === $this->get_option('testmode', 'no'); |
|
69 | + $this->secret_key = $this->testmode ? $this->get_option('test_secret_key') : $this->get_option('secret_key'); |
|
70 | 70 | |
71 | - if ( empty( $this->stripe_settings ) ) { |
|
71 | + if (empty($this->stripe_settings)) { |
|
72 | 72 | return; |
73 | 73 | } |
74 | 74 | |
75 | 75 | $this->init_apple_pay(); |
76 | 76 | |
77 | - add_action( 'admin_notices', array( $this, 'admin_notices' ) ); |
|
77 | + add_action('admin_notices', array($this, 'admin_notices')); |
|
78 | 78 | } |
79 | 79 | |
80 | 80 | /** |
@@ -85,13 +85,13 @@ discard block |
||
85 | 85 | * @param string default |
86 | 86 | * @return string $setting_value |
87 | 87 | */ |
88 | - public function get_option( $setting = '', $default = '' ) { |
|
89 | - if ( empty( $this->stripe_settings ) ) { |
|
88 | + public function get_option($setting = '', $default = '') { |
|
89 | + if (empty($this->stripe_settings)) { |
|
90 | 90 | return $default; |
91 | 91 | } |
92 | 92 | |
93 | - if ( ! empty( $this->stripe_settings[ $setting ] ) ) { |
|
94 | - return $this->stripe_settings[ $setting ]; |
|
93 | + if ( ! empty($this->stripe_settings[$setting])) { |
|
94 | + return $this->stripe_settings[$setting]; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | return $default; |
@@ -106,9 +106,9 @@ discard block |
||
106 | 106 | public function init_apple_pay() { |
107 | 107 | if ( |
108 | 108 | is_admin() && |
109 | - isset( $_GET['page'] ) && 'wc-settings' === $_GET['page'] && |
|
110 | - isset( $_GET['tab'] ) && 'checkout' === $_GET['tab'] && |
|
111 | - isset( $_GET['section'] ) && 'stripe' === $_GET['section'] && |
|
109 | + isset($_GET['page']) && 'wc-settings' === $_GET['page'] && |
|
110 | + isset($_GET['tab']) && 'checkout' === $_GET['tab'] && |
|
111 | + isset($_GET['section']) && 'stripe' === $_GET['section'] && |
|
112 | 112 | $this->payment_request |
113 | 113 | ) { |
114 | 114 | $this->process_apple_pay_verification(); |
@@ -122,9 +122,9 @@ discard block |
||
122 | 122 | * @version 3.1.0 |
123 | 123 | * @param string $secret_key |
124 | 124 | */ |
125 | - private function register_apple_pay_domain( $secret_key = '' ) { |
|
126 | - if ( empty( $secret_key ) ) { |
|
127 | - throw new Exception( __( 'Unable to verify domain - missing secret key.', 'woocommerce-gateway-stripe' ) ); |
|
125 | + private function register_apple_pay_domain($secret_key = '') { |
|
126 | + if (empty($secret_key)) { |
|
127 | + throw new Exception(__('Unable to verify domain - missing secret key.', 'woocommerce-gateway-stripe')); |
|
128 | 128 | } |
129 | 129 | |
130 | 130 | $endpoint = 'https://api.stripe.com/v1/apple_pay/domains'; |
@@ -138,23 +138,23 @@ discard block |
||
138 | 138 | 'Authorization' => 'Bearer ' . $secret_key, |
139 | 139 | ); |
140 | 140 | |
141 | - $response = wp_remote_post( $endpoint, array( |
|
141 | + $response = wp_remote_post($endpoint, array( |
|
142 | 142 | 'headers' => $headers, |
143 | - 'body' => http_build_query( $data ), |
|
144 | - ) ); |
|
143 | + 'body' => http_build_query($data), |
|
144 | + )); |
|
145 | 145 | |
146 | - if ( is_wp_error( $response ) ) { |
|
146 | + if (is_wp_error($response)) { |
|
147 | 147 | /* translators: error message */ |
148 | - throw new Exception( sprintf( __( 'Unable to verify domain - %s', 'woocommerce-gateway-stripe' ), $response->get_error_message() ) ); |
|
148 | + throw new Exception(sprintf(__('Unable to verify domain - %s', 'woocommerce-gateway-stripe'), $response->get_error_message())); |
|
149 | 149 | } |
150 | 150 | |
151 | - if ( 200 !== $response['response']['code'] ) { |
|
152 | - $parsed_response = json_decode( $response['body'] ); |
|
151 | + if (200 !== $response['response']['code']) { |
|
152 | + $parsed_response = json_decode($response['body']); |
|
153 | 153 | |
154 | 154 | $this->apple_pay_verify_notice = $parsed_response->error->message; |
155 | 155 | |
156 | 156 | /* translators: error message */ |
157 | - throw new Exception( sprintf( __( 'Unable to verify domain - %s', 'woocommerce-gateway-stripe' ), $parsed_response->error->message ) ); |
|
157 | + throw new Exception(sprintf(__('Unable to verify domain - %s', 'woocommerce-gateway-stripe'), $parsed_response->error->message)); |
|
158 | 158 | } |
159 | 159 | } |
160 | 160 | |
@@ -166,45 +166,45 @@ discard block |
||
166 | 166 | */ |
167 | 167 | public function process_apple_pay_verification() { |
168 | 168 | try { |
169 | - $path = untrailingslashit( $_SERVER['DOCUMENT_ROOT'] ); |
|
169 | + $path = untrailingslashit($_SERVER['DOCUMENT_ROOT']); |
|
170 | 170 | $dir = '.well-known'; |
171 | 171 | $file = 'apple-developer-merchantid-domain-association'; |
172 | 172 | $fullpath = $path . '/' . $dir . '/' . $file; |
173 | 173 | |
174 | - if ( $this->apple_pay_domain_set && file_exists( $fullpath ) ) { |
|
174 | + if ($this->apple_pay_domain_set && file_exists($fullpath)) { |
|
175 | 175 | return; |
176 | 176 | } |
177 | 177 | |
178 | - if ( ! file_exists( $path . '/' . $dir ) ) { |
|
179 | - if ( ! @mkdir( $path . '/' . $dir, 0755 ) ) { // @codingStandardsIgnoreLine |
|
180 | - throw new Exception( __( 'Unable to create domain association folder to domain root.', 'woocommerce-gateway-stripe' ) ); |
|
178 | + if ( ! file_exists($path . '/' . $dir)) { |
|
179 | + if ( ! @mkdir($path . '/' . $dir, 0755)) { // @codingStandardsIgnoreLine |
|
180 | + throw new Exception(__('Unable to create domain association folder to domain root.', 'woocommerce-gateway-stripe')); |
|
181 | 181 | } |
182 | 182 | } |
183 | 183 | |
184 | - if ( ! file_exists( $fullpath ) ) { |
|
185 | - if ( ! @copy( WC_STRIPE_PLUGIN_PATH . '/' . $file, $fullpath ) ) { // @codingStandardsIgnoreLine |
|
186 | - throw new Exception( __( 'Unable to copy domain association file to domain root.', 'woocommerce-gateway-stripe' ) ); |
|
184 | + if ( ! file_exists($fullpath)) { |
|
185 | + if ( ! @copy(WC_STRIPE_PLUGIN_PATH . '/' . $file, $fullpath)) { // @codingStandardsIgnoreLine |
|
186 | + throw new Exception(__('Unable to copy domain association file to domain root.', 'woocommerce-gateway-stripe')); |
|
187 | 187 | } |
188 | 188 | } |
189 | 189 | |
190 | 190 | // At this point then the domain association folder and file should be available. |
191 | 191 | // Proceed to verify/and or verify again. |
192 | - $this->register_apple_pay_domain( $this->secret_key ); |
|
192 | + $this->register_apple_pay_domain($this->secret_key); |
|
193 | 193 | |
194 | 194 | // No errors to this point, verification success! |
195 | 195 | $this->stripe_settings['apple_pay_domain_set'] = 'yes'; |
196 | 196 | $this->apple_pay_domain_set = true; |
197 | 197 | |
198 | - update_option( 'woocommerce_stripe_settings', $this->stripe_settings ); |
|
198 | + update_option('woocommerce_stripe_settings', $this->stripe_settings); |
|
199 | 199 | |
200 | - WC_Stripe_Logger::log( 'Your domain has been verified with Apple Pay!' ); |
|
200 | + WC_Stripe_Logger::log('Your domain has been verified with Apple Pay!'); |
|
201 | 201 | |
202 | - } catch ( Exception $e ) { |
|
202 | + } catch (Exception $e) { |
|
203 | 203 | $this->stripe_settings['apple_pay_domain_set'] = 'no'; |
204 | 204 | |
205 | - update_option( 'woocommerce_stripe_settings', $this->stripe_settings ); |
|
205 | + update_option('woocommerce_stripe_settings', $this->stripe_settings); |
|
206 | 206 | |
207 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
207 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
208 | 208 | } |
209 | 209 | } |
210 | 210 | |
@@ -214,11 +214,11 @@ discard block |
||
214 | 214 | * @since 4.0.6 |
215 | 215 | */ |
216 | 216 | public function admin_notices() { |
217 | - if ( ! $this->stripe_enabled ) { |
|
217 | + if ( ! $this->stripe_enabled) { |
|
218 | 218 | return; |
219 | 219 | } |
220 | 220 | |
221 | - if ( $this->payment_request && ! empty( $this->apple_pay_verify_notice ) ) { |
|
221 | + if ($this->payment_request && ! empty($this->apple_pay_verify_notice)) { |
|
222 | 222 | $allowed_html = array( |
223 | 223 | 'a' => array( |
224 | 224 | 'href' => array(), |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | ), |
227 | 227 | ); |
228 | 228 | |
229 | - echo '<div class="error stripe-apple-pay-message"><p>' . wp_kses( make_clickable( $this->apple_pay_verify_notice ), $allowed_html ) . '</p></div>'; |
|
229 | + echo '<div class="error stripe-apple-pay-message"><p>' . wp_kses(make_clickable($this->apple_pay_verify_notice), $allowed_html) . '</p></div>'; |
|
230 | 230 | } |
231 | 231 | |
232 | 232 | /** |
@@ -234,9 +234,9 @@ discard block |
||
234 | 234 | * when setting screen is displayed. So if domain verification is not set, |
235 | 235 | * something went wrong so lets notify user. |
236 | 236 | */ |
237 | - if ( ! empty( $this->secret_key ) && $this->payment_request && ! $this->apple_pay_domain_set ) { |
|
237 | + if ( ! empty($this->secret_key) && $this->payment_request && ! $this->apple_pay_domain_set) { |
|
238 | 238 | /* translators: 1) HTML anchor open tag 2) HTML anchor closing tag */ |
239 | - echo '<div class="error stripe-apple-pay-message"><p>' . sprintf( __( 'Apple Pay domain verification failed. Please check the %1$slog%2$s to see the issue. (Logging must be enabled to see recorded logs)', 'woocommerce-gateway-stripe' ), '<a href="' . admin_url( 'admin.php?page=wc-status&tab=logs' ) . '">', '</a>' ) . '</p></div>'; |
|
239 | + echo '<div class="error stripe-apple-pay-message"><p>' . sprintf(__('Apple Pay domain verification failed. Please check the %1$slog%2$s to see the issue. (Logging must be enabled to see recorded logs)', 'woocommerce-gateway-stripe'), '<a href="' . admin_url('admin.php?page=wc-status&tab=logs') . '">', '</a>') . '</p></div>'; |
|
240 | 240 | } |
241 | 241 | } |
242 | 242 | } |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | * Displays the admin settings webhook description. |
16 | 16 | * |
17 | 17 | * @since 4.1.0 |
18 | - * @return mixed |
|
18 | + * @return string |
|
19 | 19 | */ |
20 | 20 | public function display_admin_settings_webhook_description() { |
21 | 21 | /* translators: 1) webhook url */ |
@@ -579,7 +579,7 @@ discard block |
||
579 | 579 | * Checks if card is 3DS. |
580 | 580 | * |
581 | 581 | * @since 4.0.4 |
582 | - * @param object $source_object |
|
582 | + * @param stdClass $source_object |
|
583 | 583 | * @return bool |
584 | 584 | */ |
585 | 585 | public function is_3ds_card( $source_object ) { |
@@ -602,7 +602,7 @@ discard block |
||
602 | 602 | * |
603 | 603 | * @since 4.0.8 |
604 | 604 | * @param string $source_id |
605 | - * @return bool |
|
605 | + * @return integer |
|
606 | 606 | */ |
607 | 607 | public function is_type_legacy_card( $source_id ) { |
608 | 608 | return ( preg_match( '/^card_/', $source_id ) ); |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if ( ! defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | */ |
20 | 20 | public function display_admin_settings_webhook_description() { |
21 | 21 | /* translators: 1) webhook url */ |
22 | - return sprintf( __( 'You must add the following webhook endpoint <strong style="background-color:#ddd;"> %s </strong> to your <a href="https://dashboard.stripe.com/account/webhooks" target="_blank">Stripe account settings</a>. This will enable you to receive notifications on the charge statuses.', 'woocommerce-gateway-stripe' ), WC_Stripe_Helper::get_webhook_url() ); |
|
22 | + return sprintf(__('You must add the following webhook endpoint <strong style="background-color:#ddd;"> %s </strong> to your <a href="https://dashboard.stripe.com/account/webhooks" target="_blank">Stripe account settings</a>. This will enable you to receive notifications on the charge statuses.', 'woocommerce-gateway-stripe'), WC_Stripe_Helper::get_webhook_url()); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
@@ -33,8 +33,8 @@ discard block |
||
33 | 33 | <input id="wc-%1$s-new-payment-method" name="wc-%1$s-new-payment-method" type="checkbox" value="true" style="width:auto;" /> |
34 | 34 | <label for="wc-%1$s-new-payment-method" style="display:inline;">%2$s</label> |
35 | 35 | </p>', |
36 | - esc_attr( $this->id ), |
|
37 | - esc_html( apply_filters( 'wc_stripe_save_to_account_text', __( 'Save payment information to my account for future purchases.', 'woocommerce-gateway-stripe' ) ) ) |
|
36 | + esc_attr($this->id), |
|
37 | + esc_html(apply_filters('wc_stripe_save_to_account_text', __('Save payment information to my account for future purchases.', 'woocommerce-gateway-stripe'))) |
|
38 | 38 | ); |
39 | 39 | } |
40 | 40 | |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | * @since 4.0.5 |
46 | 46 | * @param array $error |
47 | 47 | */ |
48 | - public function is_retryable_error( $error ) { |
|
48 | + public function is_retryable_error($error) { |
|
49 | 49 | return ( |
50 | 50 | 'invalid_request_error' === $error->type || |
51 | 51 | 'idempotency_error' === $error->type || |
@@ -62,11 +62,11 @@ discard block |
||
62 | 62 | * @since 4.1.0 |
63 | 63 | * @param array $error |
64 | 64 | */ |
65 | - public function is_same_idempotency_error( $error ) { |
|
65 | + public function is_same_idempotency_error($error) { |
|
66 | 66 | return ( |
67 | 67 | $error && |
68 | 68 | 'idempotency_error' === $error->type && |
69 | - preg_match( '/Keys for idempotent requests can only be used with the same parameters they were first used with./i', $error->message ) |
|
69 | + preg_match('/Keys for idempotent requests can only be used with the same parameters they were first used with./i', $error->message) |
|
70 | 70 | ); |
71 | 71 | } |
72 | 72 | |
@@ -77,11 +77,11 @@ discard block |
||
77 | 77 | * @since 4.1.0 |
78 | 78 | * @param array $error |
79 | 79 | */ |
80 | - public function is_source_already_consumed_error( $error ) { |
|
80 | + public function is_source_already_consumed_error($error) { |
|
81 | 81 | return ( |
82 | 82 | $error && |
83 | 83 | 'invalid_request_error' === $error->type && |
84 | - preg_match( '/The reusable source you provided is consumed because it was previously charged without being attached to a customer or was detached from a customer. To charge a reusable source multiple time you must attach it to a customer first./i', $error->message ) |
|
84 | + preg_match('/The reusable source you provided is consumed because it was previously charged without being attached to a customer or was detached from a customer. To charge a reusable source multiple time you must attach it to a customer first./i', $error->message) |
|
85 | 85 | ); |
86 | 86 | } |
87 | 87 | |
@@ -92,11 +92,11 @@ discard block |
||
92 | 92 | * @since 4.1.0 |
93 | 93 | * @param array $error |
94 | 94 | */ |
95 | - public function is_no_such_customer_error( $error ) { |
|
95 | + public function is_no_such_customer_error($error) { |
|
96 | 96 | return ( |
97 | 97 | $error && |
98 | 98 | 'invalid_request_error' === $error->type && |
99 | - preg_match( '/No such customer/i', $error->message ) |
|
99 | + preg_match('/No such customer/i', $error->message) |
|
100 | 100 | ); |
101 | 101 | } |
102 | 102 | |
@@ -107,11 +107,11 @@ discard block |
||
107 | 107 | * @since 4.1.0 |
108 | 108 | * @param array $error |
109 | 109 | */ |
110 | - public function is_no_such_token_error( $error ) { |
|
110 | + public function is_no_such_token_error($error) { |
|
111 | 111 | return ( |
112 | 112 | $error && |
113 | 113 | 'invalid_request_error' === $error->type && |
114 | - preg_match( '/No such token/i', $error->message ) |
|
114 | + preg_match('/No such token/i', $error->message) |
|
115 | 115 | ); |
116 | 116 | } |
117 | 117 | |
@@ -122,11 +122,11 @@ discard block |
||
122 | 122 | * @since 4.1.0 |
123 | 123 | * @param array $error |
124 | 124 | */ |
125 | - public function is_no_such_source_error( $error ) { |
|
125 | + public function is_no_such_source_error($error) { |
|
126 | 126 | return ( |
127 | 127 | $error && |
128 | 128 | 'invalid_request_error' === $error->type && |
129 | - preg_match( '/No such source/i', $error->message ) |
|
129 | + preg_match('/No such source/i', $error->message) |
|
130 | 130 | ); |
131 | 131 | } |
132 | 132 | |
@@ -137,11 +137,11 @@ discard block |
||
137 | 137 | * @since 4.1.0 |
138 | 138 | * @param array $error |
139 | 139 | */ |
140 | - public function is_no_linked_source_error( $error ) { |
|
140 | + public function is_no_linked_source_error($error) { |
|
141 | 141 | return ( |
142 | 142 | $error && |
143 | 143 | 'invalid_request_error' === $error->type && |
144 | - preg_match( '/does not have a linked source with ID/i', $error->message ) |
|
144 | + preg_match('/does not have a linked source with ID/i', $error->message) |
|
145 | 145 | ); |
146 | 146 | } |
147 | 147 | |
@@ -154,13 +154,13 @@ discard block |
||
154 | 154 | * @param object $error |
155 | 155 | * @return bool |
156 | 156 | */ |
157 | - public function need_update_idempotency_key( $source_object, $error ) { |
|
157 | + public function need_update_idempotency_key($source_object, $error) { |
|
158 | 158 | return ( |
159 | 159 | $error && |
160 | 160 | 1 < $this->retry_interval && |
161 | - ! empty( $source_object ) && |
|
161 | + ! empty($source_object) && |
|
162 | 162 | 'chargeable' === $source_object->status && |
163 | - self::is_same_idempotency_error( $error ) |
|
163 | + self::is_same_idempotency_error($error) |
|
164 | 164 | ); |
165 | 165 | } |
166 | 166 | |
@@ -168,8 +168,8 @@ discard block |
||
168 | 168 | * Check if this gateway is enabled |
169 | 169 | */ |
170 | 170 | public function is_available() { |
171 | - if ( 'yes' === $this->enabled ) { |
|
172 | - if ( ! $this->secret_key || ! $this->publishable_key ) { |
|
171 | + if ('yes' === $this->enabled) { |
|
172 | + if ( ! $this->secret_key || ! $this->publishable_key) { |
|
173 | 173 | return false; |
174 | 174 | } |
175 | 175 | return true; |
@@ -186,12 +186,12 @@ discard block |
||
186 | 186 | * @param int $order_id |
187 | 187 | * @return bool |
188 | 188 | */ |
189 | - public function maybe_process_pre_orders( $order_id ) { |
|
189 | + public function maybe_process_pre_orders($order_id) { |
|
190 | 190 | return ( |
191 | 191 | WC_Stripe_Helper::is_pre_orders_exists() && |
192 | - $this->pre_orders->is_pre_order( $order_id ) && |
|
193 | - WC_Pre_Orders_Order::order_requires_payment_tokenization( $order_id ) && |
|
194 | - ! is_wc_endpoint_url( 'order-pay' ) |
|
192 | + $this->pre_orders->is_pre_order($order_id) && |
|
193 | + WC_Pre_Orders_Order::order_requires_payment_tokenization($order_id) && |
|
194 | + ! is_wc_endpoint_url('order-pay') |
|
195 | 195 | ); |
196 | 196 | } |
197 | 197 | |
@@ -201,8 +201,8 @@ discard block |
||
201 | 201 | * @since 1.0.0 |
202 | 202 | * @version 4.0.0 |
203 | 203 | */ |
204 | - public function add_admin_notice( $slug, $class, $message, $dismissible = false ) { |
|
205 | - $this->notices[ $slug ] = array( |
|
204 | + public function add_admin_notice($slug, $class, $message, $dismissible = false) { |
|
205 | + $this->notices[$slug] = array( |
|
206 | 206 | 'class' => $class, |
207 | 207 | 'message' => $message, |
208 | 208 | 'dismissible' => $dismissible, |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | * @return array |
219 | 219 | */ |
220 | 220 | public function payment_icons() { |
221 | - return apply_filters( 'wc_stripe_payment_icons', array( |
|
221 | + return apply_filters('wc_stripe_payment_icons', array( |
|
222 | 222 | 'visa' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/visa.svg" class="stripe-visa-icon stripe-icon" alt="Visa" />', |
223 | 223 | 'amex' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/amex.svg" class="stripe-amex-icon stripe-icon" alt="American Express" />', |
224 | 224 | 'mastercard' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/mastercard.svg" class="stripe-mastercard-icon stripe-icon" alt="Mastercard" />', |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | 'multibanco' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/multibanco.svg" class="stripe-multibanco-icon stripe-icon" alt="Multibanco" />', |
237 | 237 | 'sofort' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/sofort.svg" class="stripe-sofort-icon stripe-icon" alt="SOFORT" />', |
238 | 238 | 'sepa' => '<img src="' . WC_STRIPE_PLUGIN_URL . '/assets/images/sepa.svg" class="stripe-sepa-icon stripe-icon" alt="SEPA" />', |
239 | - ) ); |
|
239 | + )); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -247,10 +247,10 @@ discard block |
||
247 | 247 | * @version 4.0.0 |
248 | 248 | * @param object $order |
249 | 249 | */ |
250 | - public function validate_minimum_order_amount( $order ) { |
|
251 | - if ( $order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount() ) { |
|
250 | + public function validate_minimum_order_amount($order) { |
|
251 | + if ($order->get_total() * 100 < WC_Stripe_Helper::get_minimum_amount()) { |
|
252 | 252 | /* translators: 1) dollar amount */ |
253 | - throw new WC_Stripe_Exception( 'Did not meet minimum amount', sprintf( __( 'Sorry, the minimum allowed order total is %1$s to use this payment method.', 'woocommerce-gateway-stripe' ), wc_price( WC_Stripe_Helper::get_minimum_amount() / 100 ) ) ); |
|
253 | + throw new WC_Stripe_Exception('Did not meet minimum amount', sprintf(__('Sorry, the minimum allowed order total is %1$s to use this payment method.', 'woocommerce-gateway-stripe'), wc_price(WC_Stripe_Helper::get_minimum_amount() / 100))); |
|
254 | 254 | } |
255 | 255 | } |
256 | 256 | |
@@ -260,14 +260,14 @@ discard block |
||
260 | 260 | * @since 4.0.0 |
261 | 261 | * @version 4.0.0 |
262 | 262 | */ |
263 | - public function get_transaction_url( $order ) { |
|
264 | - if ( $this->testmode ) { |
|
263 | + public function get_transaction_url($order) { |
|
264 | + if ($this->testmode) { |
|
265 | 265 | $this->view_transaction_url = 'https://dashboard.stripe.com/test/payments/%s'; |
266 | 266 | } else { |
267 | 267 | $this->view_transaction_url = 'https://dashboard.stripe.com/payments/%s'; |
268 | 268 | } |
269 | 269 | |
270 | - return parent::get_transaction_url( $order ); |
|
270 | + return parent::get_transaction_url($order); |
|
271 | 271 | } |
272 | 272 | |
273 | 273 | /** |
@@ -276,15 +276,15 @@ discard block |
||
276 | 276 | * @since 4.0.0 |
277 | 277 | * @version 4.0.0 |
278 | 278 | */ |
279 | - public function get_stripe_customer_id( $order ) { |
|
280 | - $customer = get_user_meta( WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(), '_stripe_customer_id', true ); |
|
279 | + public function get_stripe_customer_id($order) { |
|
280 | + $customer = get_user_meta(WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(), '_stripe_customer_id', true); |
|
281 | 281 | |
282 | - if ( empty( $customer ) ) { |
|
282 | + if (empty($customer)) { |
|
283 | 283 | // Try to get it via the order. |
284 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
285 | - return get_post_meta( $order->id, '_stripe_customer_id', true ); |
|
284 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
285 | + return get_post_meta($order->id, '_stripe_customer_id', true); |
|
286 | 286 | } else { |
287 | - return $order->get_meta( '_stripe_customer_id', true ); |
|
287 | + return $order->get_meta('_stripe_customer_id', true); |
|
288 | 288 | } |
289 | 289 | } else { |
290 | 290 | return $customer; |
@@ -301,9 +301,9 @@ discard block |
||
301 | 301 | * @param object $order |
302 | 302 | * @param int $id Stripe session id. |
303 | 303 | */ |
304 | - public function get_stripe_return_url( $order = null, $id = null ) { |
|
305 | - if ( is_object( $order ) ) { |
|
306 | - if ( empty( $id ) ) { |
|
304 | + public function get_stripe_return_url($order = null, $id = null) { |
|
305 | + if (is_object($order)) { |
|
306 | + if (empty($id)) { |
|
307 | 307 | $id = uniqid(); |
308 | 308 | } |
309 | 309 | |
@@ -314,10 +314,10 @@ discard block |
||
314 | 314 | 'order_id' => $order_id, |
315 | 315 | ); |
316 | 316 | |
317 | - return esc_url_raw( add_query_arg( $args, $this->get_return_url( $order ) ) ); |
|
317 | + return esc_url_raw(add_query_arg($args, $this->get_return_url($order))); |
|
318 | 318 | } |
319 | 319 | |
320 | - return esc_url_raw( add_query_arg( array( 'utm_nooverride' => '1' ), $this->get_return_url() ) ); |
|
320 | + return esc_url_raw(add_query_arg(array('utm_nooverride' => '1'), $this->get_return_url())); |
|
321 | 321 | } |
322 | 322 | |
323 | 323 | /** |
@@ -325,8 +325,8 @@ discard block |
||
325 | 325 | * @param int $order_id |
326 | 326 | * @return boolean |
327 | 327 | */ |
328 | - public function has_subscription( $order_id ) { |
|
329 | - return ( function_exists( 'wcs_order_contains_subscription' ) && ( wcs_order_contains_subscription( $order_id ) || wcs_is_subscription( $order_id ) || wcs_order_contains_renewal( $order_id ) ) ); |
|
328 | + public function has_subscription($order_id) { |
|
329 | + return (function_exists('wcs_order_contains_subscription') && (wcs_order_contains_subscription($order_id) || wcs_is_subscription($order_id) || wcs_order_contains_renewal($order_id))); |
|
330 | 330 | } |
331 | 331 | |
332 | 332 | /** |
@@ -338,34 +338,33 @@ discard block |
||
338 | 338 | * @param object $prepared_source |
339 | 339 | * @return array() |
340 | 340 | */ |
341 | - public function generate_payment_request( $order, $prepared_source ) { |
|
342 | - $settings = get_option( 'woocommerce_stripe_settings', array() ); |
|
343 | - $statement_descriptor = ! empty( $settings['statement_descriptor'] ) ? str_replace( "'", '', $settings['statement_descriptor'] ) : ''; |
|
344 | - $capture = ! empty( $settings['capture'] ) && 'yes' === $settings['capture'] ? true : false; |
|
341 | + public function generate_payment_request($order, $prepared_source) { |
|
342 | + $settings = get_option('woocommerce_stripe_settings', array()); |
|
343 | + $statement_descriptor = ! empty($settings['statement_descriptor']) ? str_replace("'", '', $settings['statement_descriptor']) : ''; |
|
344 | + $capture = ! empty($settings['capture']) && 'yes' === $settings['capture'] ? true : false; |
|
345 | 345 | $post_data = array(); |
346 | - $post_data['currency'] = strtolower( WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency() ); |
|
347 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $post_data['currency'] ); |
|
346 | + $post_data['currency'] = strtolower(WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency()); |
|
347 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $post_data['currency']); |
|
348 | 348 | /* translators: 1) blog name 2) order number */ |
349 | - $post_data['description'] = sprintf( __( '%1$s - Order %2$s', 'woocommerce-gateway-stripe' ), wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ), $order->get_order_number() ); |
|
349 | + $post_data['description'] = sprintf(__('%1$s - Order %2$s', 'woocommerce-gateway-stripe'), wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES), $order->get_order_number()); |
|
350 | 350 | $billing_email = WC_Stripe_Helper::is_pre_30() ? $order->billing_email : $order->get_billing_email(); |
351 | 351 | $billing_first_name = WC_Stripe_Helper::is_pre_30() ? $order->billing_first_name : $order->get_billing_first_name(); |
352 | 352 | $billing_last_name = WC_Stripe_Helper::is_pre_30() ? $order->billing_last_name : $order->get_billing_last_name(); |
353 | 353 | |
354 | - if ( ! empty( $billing_email ) && apply_filters( 'wc_stripe_send_stripe_receipt', false ) ) { |
|
354 | + if ( ! empty($billing_email) && apply_filters('wc_stripe_send_stripe_receipt', false)) { |
|
355 | 355 | $post_data['receipt_email'] = $billing_email; |
356 | 356 | } |
357 | 357 | |
358 | - switch ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) { |
|
359 | - case 'stripe': |
|
360 | - if ( ! empty( $statement_descriptor ) ) { |
|
361 | - $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor ); |
|
358 | + switch (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method()) { |
|
359 | + case 'stripe' : if ( ! empty($statement_descriptor)) { |
|
360 | + $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor); |
|
362 | 361 | } |
363 | 362 | |
364 | 363 | $post_data['capture'] = $capture ? 'true' : 'false'; |
365 | 364 | break; |
366 | 365 | case 'stripe_sepa': |
367 | - if ( ! empty( $statement_descriptor ) ) { |
|
368 | - $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $statement_descriptor ); |
|
366 | + if ( ! empty($statement_descriptor)) { |
|
367 | + $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($statement_descriptor); |
|
369 | 368 | } |
370 | 369 | break; |
371 | 370 | } |
@@ -373,25 +372,25 @@ discard block |
||
373 | 372 | $post_data['expand[]'] = 'balance_transaction'; |
374 | 373 | |
375 | 374 | $metadata = array( |
376 | - __( 'customer_name', 'woocommerce-gateway-stripe' ) => sanitize_text_field( $billing_first_name ) . ' ' . sanitize_text_field( $billing_last_name ), |
|
377 | - __( 'customer_email', 'woocommerce-gateway-stripe' ) => sanitize_email( $billing_email ), |
|
375 | + __('customer_name', 'woocommerce-gateway-stripe') => sanitize_text_field($billing_first_name) . ' ' . sanitize_text_field($billing_last_name), |
|
376 | + __('customer_email', 'woocommerce-gateway-stripe') => sanitize_email($billing_email), |
|
378 | 377 | 'order_id' => $order->get_order_number(), |
379 | 378 | ); |
380 | 379 | |
381 | - if ( $this->has_subscription( WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id() ) ) { |
|
380 | + if ($this->has_subscription(WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id())) { |
|
382 | 381 | $metadata += array( |
383 | 382 | 'payment_type' => 'recurring', |
384 | - 'site_url' => esc_url( get_site_url() ), |
|
383 | + 'site_url' => esc_url(get_site_url()), |
|
385 | 384 | ); |
386 | 385 | } |
387 | 386 | |
388 | - $post_data['metadata'] = apply_filters( 'wc_stripe_payment_metadata', $metadata, $order, $prepared_source ); |
|
387 | + $post_data['metadata'] = apply_filters('wc_stripe_payment_metadata', $metadata, $order, $prepared_source); |
|
389 | 388 | |
390 | - if ( $prepared_source->customer ) { |
|
389 | + if ($prepared_source->customer) { |
|
391 | 390 | $post_data['customer'] = $prepared_source->customer; |
392 | 391 | } |
393 | 392 | |
394 | - if ( $prepared_source->source ) { |
|
393 | + if ($prepared_source->source) { |
|
395 | 394 | $post_data['source'] = $prepared_source->source; |
396 | 395 | } |
397 | 396 | |
@@ -403,83 +402,83 @@ discard block |
||
403 | 402 | * @param WC_Order $order |
404 | 403 | * @param object $source |
405 | 404 | */ |
406 | - return apply_filters( 'wc_stripe_generate_payment_request', $post_data, $order, $prepared_source ); |
|
405 | + return apply_filters('wc_stripe_generate_payment_request', $post_data, $order, $prepared_source); |
|
407 | 406 | } |
408 | 407 | |
409 | 408 | /** |
410 | 409 | * Store extra meta data for an order from a Stripe Response. |
411 | 410 | */ |
412 | - public function process_response( $response, $order ) { |
|
413 | - WC_Stripe_Logger::log( 'Processing response: ' . print_r( $response, true ) ); |
|
411 | + public function process_response($response, $order) { |
|
412 | + WC_Stripe_Logger::log('Processing response: ' . print_r($response, true)); |
|
414 | 413 | |
415 | 414 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
416 | 415 | |
417 | - $captured = ( isset( $response->captured ) && $response->captured ) ? 'yes' : 'no'; |
|
416 | + $captured = (isset($response->captured) && $response->captured) ? 'yes' : 'no'; |
|
418 | 417 | |
419 | 418 | // Store charge data. |
420 | - WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_charge_captured', $captured ) : $order->update_meta_data( '_stripe_charge_captured', $captured ); |
|
419 | + WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_charge_captured', $captured) : $order->update_meta_data('_stripe_charge_captured', $captured); |
|
421 | 420 | |
422 | 421 | // Store other data such as fees. |
423 | - if ( isset( $response->balance_transaction ) && isset( $response->balance_transaction->fee ) ) { |
|
422 | + if (isset($response->balance_transaction) && isset($response->balance_transaction->fee)) { |
|
424 | 423 | // Fees and Net needs to both come from Stripe to be accurate as the returned |
425 | 424 | // values are in the local currency of the Stripe account, not from WC. |
426 | - $fee = ! empty( $response->balance_transaction->fee ) ? WC_Stripe_Helper::format_balance_fee( $response->balance_transaction, 'fee' ) : 0; |
|
427 | - $net = ! empty( $response->balance_transaction->net ) ? WC_Stripe_Helper::format_balance_fee( $response->balance_transaction, 'net' ) : 0; |
|
428 | - WC_Stripe_Helper::update_stripe_fee( $order, $fee ); |
|
429 | - WC_Stripe_Helper::update_stripe_net( $order, $net ); |
|
425 | + $fee = ! empty($response->balance_transaction->fee) ? WC_Stripe_Helper::format_balance_fee($response->balance_transaction, 'fee') : 0; |
|
426 | + $net = ! empty($response->balance_transaction->net) ? WC_Stripe_Helper::format_balance_fee($response->balance_transaction, 'net') : 0; |
|
427 | + WC_Stripe_Helper::update_stripe_fee($order, $fee); |
|
428 | + WC_Stripe_Helper::update_stripe_net($order, $net); |
|
430 | 429 | |
431 | 430 | // Store currency stripe. |
432 | - $currency = ! empty( $response->balance_transaction->currency ) ? strtoupper( $response->balance_transaction->currency ) : null; |
|
433 | - WC_Stripe_Helper::update_stripe_currency( $order, $currency ); |
|
431 | + $currency = ! empty($response->balance_transaction->currency) ? strtoupper($response->balance_transaction->currency) : null; |
|
432 | + WC_Stripe_Helper::update_stripe_currency($order, $currency); |
|
434 | 433 | } |
435 | 434 | |
436 | - if ( 'yes' === $captured ) { |
|
435 | + if ('yes' === $captured) { |
|
437 | 436 | /** |
438 | 437 | * Charge can be captured but in a pending state. Payment methods |
439 | 438 | * that are asynchronous may take couple days to clear. Webhook will |
440 | 439 | * take care of the status changes. |
441 | 440 | */ |
442 | - if ( 'pending' === $response->status ) { |
|
443 | - $order_stock_reduced = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_order_stock_reduced', true ) : $order->get_meta( '_order_stock_reduced', true ); |
|
441 | + if ('pending' === $response->status) { |
|
442 | + $order_stock_reduced = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_order_stock_reduced', true) : $order->get_meta('_order_stock_reduced', true); |
|
444 | 443 | |
445 | - if ( ! $order_stock_reduced ) { |
|
446 | - WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels( $order_id ); |
|
444 | + if ( ! $order_stock_reduced) { |
|
445 | + WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels($order_id); |
|
447 | 446 | } |
448 | 447 | |
449 | - WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $response->id ) : $order->set_transaction_id( $response->id ); |
|
448 | + WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $response->id) : $order->set_transaction_id($response->id); |
|
450 | 449 | /* translators: transaction id */ |
451 | - $order->update_status( 'on-hold', sprintf( __( 'Stripe charge awaiting payment: %s.', 'woocommerce-gateway-stripe' ), $response->id ) ); |
|
450 | + $order->update_status('on-hold', sprintf(__('Stripe charge awaiting payment: %s.', 'woocommerce-gateway-stripe'), $response->id)); |
|
452 | 451 | } |
453 | 452 | |
454 | - if ( 'succeeded' === $response->status ) { |
|
455 | - $order->payment_complete( $response->id ); |
|
453 | + if ('succeeded' === $response->status) { |
|
454 | + $order->payment_complete($response->id); |
|
456 | 455 | |
457 | 456 | /* translators: transaction id */ |
458 | - $message = sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $response->id ); |
|
459 | - $order->add_order_note( $message ); |
|
457 | + $message = sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $response->id); |
|
458 | + $order->add_order_note($message); |
|
460 | 459 | } |
461 | 460 | |
462 | - if ( 'failed' === $response->status ) { |
|
463 | - $localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' ); |
|
464 | - $order->add_order_note( $localized_message ); |
|
465 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
461 | + if ('failed' === $response->status) { |
|
462 | + $localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe'); |
|
463 | + $order->add_order_note($localized_message); |
|
464 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
466 | 465 | } |
467 | 466 | } else { |
468 | - WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $response->id ) : $order->set_transaction_id( $response->id ); |
|
467 | + WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $response->id) : $order->set_transaction_id($response->id); |
|
469 | 468 | |
470 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
471 | - WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels( $order_id ); |
|
469 | + if ($order->has_status(array('pending', 'failed'))) { |
|
470 | + WC_Stripe_Helper::is_pre_30() ? $order->reduce_order_stock() : wc_reduce_stock_levels($order_id); |
|
472 | 471 | } |
473 | 472 | |
474 | 473 | /* translators: transaction id */ |
475 | - $order->update_status( 'on-hold', sprintf( __( 'Stripe charge authorized (Charge ID: %s). Process order to take payment, or cancel to remove the pre-authorization.', 'woocommerce-gateway-stripe' ), $response->id ) ); |
|
474 | + $order->update_status('on-hold', sprintf(__('Stripe charge authorized (Charge ID: %s). Process order to take payment, or cancel to remove the pre-authorization.', 'woocommerce-gateway-stripe'), $response->id)); |
|
476 | 475 | } |
477 | 476 | |
478 | - if ( is_callable( array( $order, 'save' ) ) ) { |
|
477 | + if (is_callable(array($order, 'save'))) { |
|
479 | 478 | $order->save(); |
480 | 479 | } |
481 | 480 | |
482 | - do_action( 'wc_gateway_stripe_process_response', $response, $order ); |
|
481 | + do_action('wc_gateway_stripe_process_response', $response, $order); |
|
483 | 482 | |
484 | 483 | return $response; |
485 | 484 | } |
@@ -492,10 +491,10 @@ discard block |
||
492 | 491 | * @param int $order_id |
493 | 492 | * @return null |
494 | 493 | */ |
495 | - public function send_failed_order_email( $order_id ) { |
|
494 | + public function send_failed_order_email($order_id) { |
|
496 | 495 | $emails = WC()->mailer()->get_emails(); |
497 | - if ( ! empty( $emails ) && ! empty( $order_id ) ) { |
|
498 | - $emails['WC_Email_Failed_Order']->trigger( $order_id ); |
|
496 | + if ( ! empty($emails) && ! empty($order_id)) { |
|
497 | + $emails['WC_Email_Failed_Order']->trigger($order_id); |
|
499 | 498 | } |
500 | 499 | } |
501 | 500 | |
@@ -507,7 +506,7 @@ discard block |
||
507 | 506 | * @param object $order |
508 | 507 | * @return object $details |
509 | 508 | */ |
510 | - public function get_owner_details( $order ) { |
|
509 | + public function get_owner_details($order) { |
|
511 | 510 | $billing_first_name = WC_Stripe_Helper::is_pre_30() ? $order->billing_first_name : $order->get_billing_first_name(); |
512 | 511 | $billing_last_name = WC_Stripe_Helper::is_pre_30() ? $order->billing_last_name : $order->get_billing_last_name(); |
513 | 512 | |
@@ -517,15 +516,15 @@ discard block |
||
517 | 516 | $email = WC_Stripe_Helper::is_pre_30() ? $order->billing_email : $order->get_billing_email(); |
518 | 517 | $phone = WC_Stripe_Helper::is_pre_30() ? $order->billing_phone : $order->get_billing_phone(); |
519 | 518 | |
520 | - if ( ! empty( $phone ) ) { |
|
519 | + if ( ! empty($phone)) { |
|
521 | 520 | $details['phone'] = $phone; |
522 | 521 | } |
523 | 522 | |
524 | - if ( ! empty( $name ) ) { |
|
523 | + if ( ! empty($name)) { |
|
525 | 524 | $details['name'] = $name; |
526 | 525 | } |
527 | 526 | |
528 | - if ( ! empty( $email ) ) { |
|
527 | + if ( ! empty($email)) { |
|
529 | 528 | $details['email'] = $email; |
530 | 529 | } |
531 | 530 | |
@@ -536,7 +535,7 @@ discard block |
||
536 | 535 | $details['address']['postal_code'] = WC_Stripe_Helper::is_pre_30() ? $order->billing_postcode : $order->get_billing_postcode(); |
537 | 536 | $details['address']['country'] = WC_Stripe_Helper::is_pre_30() ? $order->billing_country : $order->get_billing_country(); |
538 | 537 | |
539 | - return (object) apply_filters( 'wc_stripe_owner_details', $details, $order ); |
|
538 | + return (object) apply_filters('wc_stripe_owner_details', $details, $order); |
|
540 | 539 | } |
541 | 540 | |
542 | 541 | /** |
@@ -545,15 +544,15 @@ discard block |
||
545 | 544 | * @since 4.0.3 |
546 | 545 | * @param string $source_id The source ID to get source object for. |
547 | 546 | */ |
548 | - public function get_source_object( $source_id = '' ) { |
|
549 | - if ( empty( $source_id ) ) { |
|
547 | + public function get_source_object($source_id = '') { |
|
548 | + if (empty($source_id)) { |
|
550 | 549 | return ''; |
551 | 550 | } |
552 | 551 | |
553 | - $source_object = WC_Stripe_API::retrieve( 'sources/' . $source_id ); |
|
552 | + $source_object = WC_Stripe_API::retrieve('sources/' . $source_id); |
|
554 | 553 | |
555 | - if ( ! empty( $source_object->error ) ) { |
|
556 | - throw new WC_Stripe_Exception( print_r( $source_object, true ), $source_object->error->message ); |
|
554 | + if ( ! empty($source_object->error)) { |
|
555 | + throw new WC_Stripe_Exception(print_r($source_object, true), $source_object->error->message); |
|
557 | 556 | } |
558 | 557 | |
559 | 558 | return $source_object; |
@@ -567,12 +566,12 @@ discard block |
||
567 | 566 | * @param object $source_object |
568 | 567 | * @return bool |
569 | 568 | */ |
570 | - public function is_3ds_required( $source_object ) { |
|
571 | - return apply_filters( 'wc_stripe_require_3ds', ( |
|
572 | - $source_object && ! empty( $source_object->card ) ) && |
|
573 | - ( 'card' === $source_object->type && 'required' === $source_object->card->three_d_secure || |
|
574 | - ( $this->three_d_secure && 'recommended' === $source_object->card->three_d_secure ) |
|
575 | - ), $source_object, $this->three_d_secure ); |
|
569 | + public function is_3ds_required($source_object) { |
|
570 | + return apply_filters('wc_stripe_require_3ds', ( |
|
571 | + $source_object && ! empty($source_object->card) ) && |
|
572 | + ('card' === $source_object->type && 'required' === $source_object->card->three_d_secure || |
|
573 | + ($this->three_d_secure && 'recommended' === $source_object->card->three_d_secure) |
|
574 | + ), $source_object, $this->three_d_secure); |
|
576 | 575 | } |
577 | 576 | |
578 | 577 | /** |
@@ -582,8 +581,8 @@ discard block |
||
582 | 581 | * @param object $source_object |
583 | 582 | * @return bool |
584 | 583 | */ |
585 | - public function is_3ds_card( $source_object ) { |
|
586 | - return ( $source_object && 'three_d_secure' === $source_object->type ); |
|
584 | + public function is_3ds_card($source_object) { |
|
585 | + return ($source_object && 'three_d_secure' === $source_object->type); |
|
587 | 586 | } |
588 | 587 | |
589 | 588 | /** |
@@ -593,8 +592,8 @@ discard block |
||
593 | 592 | * @param object $source_object |
594 | 593 | * @return bool |
595 | 594 | */ |
596 | - public function is_prepaid_card( $source_object ) { |
|
597 | - return ( $source_object && 'token' === $source_object->object && 'prepaid' === $source_object->card->funding ); |
|
595 | + public function is_prepaid_card($source_object) { |
|
596 | + return ($source_object && 'token' === $source_object->object && 'prepaid' === $source_object->card->funding); |
|
598 | 597 | } |
599 | 598 | |
600 | 599 | /** |
@@ -604,8 +603,8 @@ discard block |
||
604 | 603 | * @param string $source_id |
605 | 604 | * @return bool |
606 | 605 | */ |
607 | - public function is_type_legacy_card( $source_id ) { |
|
608 | - return ( preg_match( '/^card_/', $source_id ) ); |
|
606 | + public function is_type_legacy_card($source_id) { |
|
607 | + return (preg_match('/^card_/', $source_id)); |
|
609 | 608 | } |
610 | 609 | |
611 | 610 | /** |
@@ -615,9 +614,9 @@ discard block |
||
615 | 614 | * @return bool |
616 | 615 | */ |
617 | 616 | public function is_using_saved_payment_method() { |
618 | - $payment_method = isset( $_POST['payment_method'] ) ? wc_clean( $_POST['payment_method'] ) : 'stripe'; |
|
617 | + $payment_method = isset($_POST['payment_method']) ? wc_clean($_POST['payment_method']) : 'stripe'; |
|
619 | 618 | |
620 | - return ( isset( $_POST[ 'wc-' . $payment_method . '-payment-token' ] ) && 'new' !== $_POST[ 'wc-' . $payment_method . '-payment-token' ] ); |
|
619 | + return (isset($_POST['wc-' . $payment_method . '-payment-token']) && 'new' !== $_POST['wc-' . $payment_method . '-payment-token']); |
|
621 | 620 | } |
622 | 621 | |
623 | 622 | /** |
@@ -630,22 +629,22 @@ discard block |
||
630 | 629 | * @param string $return_url |
631 | 630 | * @return mixed |
632 | 631 | */ |
633 | - public function create_3ds_source( $order, $source_object, $return_url = '' ) { |
|
632 | + public function create_3ds_source($order, $source_object, $return_url = '') { |
|
634 | 633 | $currency = WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency(); |
635 | 634 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
636 | - $return_url = empty( $return_url ) ? $this->get_stripe_return_url( $order ) : $return_url; |
|
635 | + $return_url = empty($return_url) ? $this->get_stripe_return_url($order) : $return_url; |
|
637 | 636 | |
638 | 637 | $post_data = array(); |
639 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency ); |
|
640 | - $post_data['currency'] = strtolower( $currency ); |
|
638 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency); |
|
639 | + $post_data['currency'] = strtolower($currency); |
|
641 | 640 | $post_data['type'] = 'three_d_secure'; |
642 | - $post_data['owner'] = $this->get_owner_details( $order ); |
|
643 | - $post_data['three_d_secure'] = array( 'card' => $source_object->id ); |
|
644 | - $post_data['redirect'] = array( 'return_url' => $return_url ); |
|
641 | + $post_data['owner'] = $this->get_owner_details($order); |
|
642 | + $post_data['three_d_secure'] = array('card' => $source_object->id); |
|
643 | + $post_data['redirect'] = array('return_url' => $return_url); |
|
645 | 644 | |
646 | - WC_Stripe_Logger::log( 'Info: Begin creating 3DS source...' ); |
|
645 | + WC_Stripe_Logger::log('Info: Begin creating 3DS source...'); |
|
647 | 646 | |
648 | - return WC_Stripe_API::request( apply_filters( 'wc_stripe_3ds_source', $post_data, $order ), 'sources' ); |
|
647 | + return WC_Stripe_API::request(apply_filters('wc_stripe_3ds_source', $post_data, $order), 'sources'); |
|
649 | 648 | } |
650 | 649 | |
651 | 650 | /** |
@@ -661,61 +660,61 @@ discard block |
||
661 | 660 | * @throws Exception When card was not added or for and invalid card. |
662 | 661 | * @return object |
663 | 662 | */ |
664 | - public function prepare_source( $user_id, $force_save_source = false ) { |
|
665 | - $customer = new WC_Stripe_Customer( $user_id ); |
|
663 | + public function prepare_source($user_id, $force_save_source = false) { |
|
664 | + $customer = new WC_Stripe_Customer($user_id); |
|
666 | 665 | $set_customer = true; |
667 | - $force_save_source = apply_filters( 'wc_stripe_force_save_source', $force_save_source, $customer ); |
|
666 | + $force_save_source = apply_filters('wc_stripe_force_save_source', $force_save_source, $customer); |
|
668 | 667 | $source_object = ''; |
669 | 668 | $source_id = ''; |
670 | 669 | $wc_token_id = false; |
671 | - $payment_method = isset( $_POST['payment_method'] ) ? wc_clean( $_POST['payment_method'] ) : 'stripe'; |
|
670 | + $payment_method = isset($_POST['payment_method']) ? wc_clean($_POST['payment_method']) : 'stripe'; |
|
672 | 671 | $is_token = false; |
673 | 672 | |
674 | 673 | // New CC info was entered and we have a new source to process. |
675 | - if ( ! empty( $_POST['stripe_source'] ) ) { |
|
676 | - $source_object = self::get_source_object( wc_clean( $_POST['stripe_source'] ) ); |
|
674 | + if ( ! empty($_POST['stripe_source'])) { |
|
675 | + $source_object = self::get_source_object(wc_clean($_POST['stripe_source'])); |
|
677 | 676 | $source_id = $source_object->id; |
678 | 677 | |
679 | 678 | // This checks to see if customer opted to save the payment method to file. |
680 | - $maybe_saved_card = isset( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] ) && ! empty( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] ); |
|
679 | + $maybe_saved_card = isset($_POST['wc-' . $payment_method . '-new-payment-method']) && ! empty($_POST['wc-' . $payment_method . '-new-payment-method']); |
|
681 | 680 | |
682 | 681 | /** |
683 | 682 | * This is true if the user wants to store the card to their account. |
684 | 683 | * Criteria to save to file is they are logged in, they opted to save or product requirements and the source is |
685 | 684 | * actually reusable. Either that or force_save_source is true. |
686 | 685 | */ |
687 | - if ( ( $user_id && $this->saved_cards && $maybe_saved_card && 'reusable' === $source_object->usage ) || $force_save_source ) { |
|
688 | - $response = $customer->add_source( $source_object->id ); |
|
686 | + if (($user_id && $this->saved_cards && $maybe_saved_card && 'reusable' === $source_object->usage) || $force_save_source) { |
|
687 | + $response = $customer->add_source($source_object->id); |
|
689 | 688 | |
690 | - if ( ! empty( $response->error ) ) { |
|
691 | - throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message ); |
|
689 | + if ( ! empty($response->error)) { |
|
690 | + throw new WC_Stripe_Exception(print_r($response, true), $response->error->message); |
|
692 | 691 | } |
693 | 692 | } |
694 | - } elseif ( $this->is_using_saved_payment_method() ) { |
|
693 | + } elseif ($this->is_using_saved_payment_method()) { |
|
695 | 694 | // Use an existing token, and then process the payment. |
696 | - $wc_token_id = wc_clean( $_POST[ 'wc-' . $payment_method . '-payment-token' ] ); |
|
697 | - $wc_token = WC_Payment_Tokens::get( $wc_token_id ); |
|
695 | + $wc_token_id = wc_clean($_POST['wc-' . $payment_method . '-payment-token']); |
|
696 | + $wc_token = WC_Payment_Tokens::get($wc_token_id); |
|
698 | 697 | |
699 | - if ( ! $wc_token || $wc_token->get_user_id() !== get_current_user_id() ) { |
|
700 | - WC()->session->set( 'refresh_totals', true ); |
|
701 | - throw new WC_Stripe_Exception( 'Invalid payment method', __( 'Invalid payment method. Please input a new card number.', 'woocommerce-gateway-stripe' ) ); |
|
698 | + if ( ! $wc_token || $wc_token->get_user_id() !== get_current_user_id()) { |
|
699 | + WC()->session->set('refresh_totals', true); |
|
700 | + throw new WC_Stripe_Exception('Invalid payment method', __('Invalid payment method. Please input a new card number.', 'woocommerce-gateway-stripe')); |
|
702 | 701 | } |
703 | 702 | |
704 | 703 | $source_id = $wc_token->get_token(); |
705 | 704 | |
706 | - if ( $this->is_type_legacy_card( $source_id ) ) { |
|
705 | + if ($this->is_type_legacy_card($source_id)) { |
|
707 | 706 | $is_token = true; |
708 | 707 | } |
709 | - } elseif ( isset( $_POST['stripe_token'] ) && 'new' !== $_POST['stripe_token'] ) { |
|
710 | - $stripe_token = wc_clean( $_POST['stripe_token'] ); |
|
711 | - $maybe_saved_card = isset( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] ) && ! empty( $_POST[ 'wc-' . $payment_method . '-new-payment-method' ] ); |
|
708 | + } elseif (isset($_POST['stripe_token']) && 'new' !== $_POST['stripe_token']) { |
|
709 | + $stripe_token = wc_clean($_POST['stripe_token']); |
|
710 | + $maybe_saved_card = isset($_POST['wc-' . $payment_method . '-new-payment-method']) && ! empty($_POST['wc-' . $payment_method . '-new-payment-method']); |
|
712 | 711 | |
713 | 712 | // This is true if the user wants to store the card to their account. |
714 | - if ( ( $user_id && $this->saved_cards && $maybe_saved_card ) || $force_save_source ) { |
|
715 | - $response = $customer->add_source( $stripe_token ); |
|
713 | + if (($user_id && $this->saved_cards && $maybe_saved_card) || $force_save_source) { |
|
714 | + $response = $customer->add_source($stripe_token); |
|
716 | 715 | |
717 | - if ( ! empty( $response->error ) ) { |
|
718 | - throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message ); |
|
716 | + if ( ! empty($response->error)) { |
|
717 | + throw new WC_Stripe_Exception(print_r($response, true), $response->error->message); |
|
719 | 718 | } |
720 | 719 | } else { |
721 | 720 | $set_customer = false; |
@@ -724,14 +723,14 @@ discard block |
||
724 | 723 | } |
725 | 724 | } |
726 | 725 | |
727 | - if ( ! $set_customer ) { |
|
726 | + if ( ! $set_customer) { |
|
728 | 727 | $customer_id = false; |
729 | 728 | } else { |
730 | 729 | $customer_id = $customer->get_id() ? $customer->get_id() : false; |
731 | 730 | } |
732 | 731 | |
733 | - if ( empty( $source_object ) && ! $is_token ) { |
|
734 | - $source_object = self::get_source_object( $source_id ); |
|
732 | + if (empty($source_object) && ! $is_token) { |
|
733 | + $source_object = self::get_source_object($source_id); |
|
735 | 734 | } |
736 | 735 | |
737 | 736 | return (object) array( |
@@ -755,39 +754,39 @@ discard block |
||
755 | 754 | * @param object $order |
756 | 755 | * @return object |
757 | 756 | */ |
758 | - public function prepare_order_source( $order = null ) { |
|
757 | + public function prepare_order_source($order = null) { |
|
759 | 758 | $stripe_customer = new WC_Stripe_Customer(); |
760 | 759 | $stripe_source = false; |
761 | 760 | $token_id = false; |
762 | 761 | $source_object = false; |
763 | 762 | |
764 | - if ( $order ) { |
|
763 | + if ($order) { |
|
765 | 764 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
766 | 765 | |
767 | - $stripe_customer_id = get_post_meta( $order_id, '_stripe_customer_id', true ); |
|
766 | + $stripe_customer_id = get_post_meta($order_id, '_stripe_customer_id', true); |
|
768 | 767 | |
769 | - if ( $stripe_customer_id ) { |
|
770 | - $stripe_customer->set_id( $stripe_customer_id ); |
|
768 | + if ($stripe_customer_id) { |
|
769 | + $stripe_customer->set_id($stripe_customer_id); |
|
771 | 770 | } |
772 | 771 | |
773 | - $source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_source_id', true ) : $order->get_meta( '_stripe_source_id', true ); |
|
772 | + $source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_source_id', true) : $order->get_meta('_stripe_source_id', true); |
|
774 | 773 | |
775 | 774 | // Since 4.0.0, we changed card to source so we need to account for that. |
776 | - if ( empty( $source_id ) ) { |
|
777 | - $source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_card_id', true ) : $order->get_meta( '_stripe_card_id', true ); |
|
775 | + if (empty($source_id)) { |
|
776 | + $source_id = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_card_id', true) : $order->get_meta('_stripe_card_id', true); |
|
778 | 777 | |
779 | 778 | // Take this opportunity to update the key name. |
780 | - WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_source_id', $source_id ) : $order->update_meta_data( '_stripe_source_id', $source_id ); |
|
779 | + WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_source_id', $source_id) : $order->update_meta_data('_stripe_source_id', $source_id); |
|
781 | 780 | |
782 | - if ( is_callable( array( $order, 'save' ) ) ) { |
|
781 | + if (is_callable(array($order, 'save'))) { |
|
783 | 782 | $order->save(); |
784 | 783 | } |
785 | 784 | } |
786 | 785 | |
787 | - if ( $source_id ) { |
|
786 | + if ($source_id) { |
|
788 | 787 | $stripe_source = $source_id; |
789 | - $source_object = WC_Stripe_API::retrieve( 'sources/' . $source_id ); |
|
790 | - } elseif ( apply_filters( 'wc_stripe_use_default_customer_source', true ) ) { |
|
788 | + $source_object = WC_Stripe_API::retrieve('sources/' . $source_id); |
|
789 | + } elseif (apply_filters('wc_stripe_use_default_customer_source', true)) { |
|
791 | 790 | /* |
792 | 791 | * We can attempt to charge the customer's default source |
793 | 792 | * by sending empty source id. |
@@ -812,27 +811,27 @@ discard block |
||
812 | 811 | * @param WC_Order $order For to which the source applies. |
813 | 812 | * @param stdClass $source Source information. |
814 | 813 | */ |
815 | - public function save_source_to_order( $order, $source ) { |
|
814 | + public function save_source_to_order($order, $source) { |
|
816 | 815 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
817 | 816 | |
818 | 817 | // Store source in the order. |
819 | - if ( $source->customer ) { |
|
820 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
821 | - update_post_meta( $order_id, '_stripe_customer_id', $source->customer ); |
|
818 | + if ($source->customer) { |
|
819 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
820 | + update_post_meta($order_id, '_stripe_customer_id', $source->customer); |
|
822 | 821 | } else { |
823 | - $order->update_meta_data( '_stripe_customer_id', $source->customer ); |
|
822 | + $order->update_meta_data('_stripe_customer_id', $source->customer); |
|
824 | 823 | } |
825 | 824 | } |
826 | 825 | |
827 | - if ( $source->source ) { |
|
828 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
829 | - update_post_meta( $order_id, '_stripe_source_id', $source->source ); |
|
826 | + if ($source->source) { |
|
827 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
828 | + update_post_meta($order_id, '_stripe_source_id', $source->source); |
|
830 | 829 | } else { |
831 | - $order->update_meta_data( '_stripe_source_id', $source->source ); |
|
830 | + $order->update_meta_data('_stripe_source_id', $source->source); |
|
832 | 831 | } |
833 | 832 | } |
834 | 833 | |
835 | - if ( is_callable( array( $order, 'save' ) ) ) { |
|
834 | + if (is_callable(array($order, 'save'))) { |
|
836 | 835 | $order->save(); |
837 | 836 | } |
838 | 837 | } |
@@ -846,35 +845,35 @@ discard block |
||
846 | 845 | * @param object $order The order object |
847 | 846 | * @param int $balance_transaction_id |
848 | 847 | */ |
849 | - public function update_fees( $order, $balance_transaction_id ) { |
|
848 | + public function update_fees($order, $balance_transaction_id) { |
|
850 | 849 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
851 | 850 | |
852 | - $balance_transaction = WC_Stripe_API::retrieve( 'balance/history/' . $balance_transaction_id ); |
|
851 | + $balance_transaction = WC_Stripe_API::retrieve('balance/history/' . $balance_transaction_id); |
|
853 | 852 | |
854 | - if ( empty( $balance_transaction->error ) ) { |
|
855 | - if ( isset( $balance_transaction ) && isset( $balance_transaction->fee ) ) { |
|
853 | + if (empty($balance_transaction->error)) { |
|
854 | + if (isset($balance_transaction) && isset($balance_transaction->fee)) { |
|
856 | 855 | // Fees and Net needs to both come from Stripe to be accurate as the returned |
857 | 856 | // values are in the local currency of the Stripe account, not from WC. |
858 | - $fee_refund = ! empty( $balance_transaction->fee ) ? WC_Stripe_Helper::format_balance_fee( $balance_transaction, 'fee' ) : 0; |
|
859 | - $net_refund = ! empty( $balance_transaction->net ) ? WC_Stripe_Helper::format_balance_fee( $balance_transaction, 'net' ) : 0; |
|
857 | + $fee_refund = ! empty($balance_transaction->fee) ? WC_Stripe_Helper::format_balance_fee($balance_transaction, 'fee') : 0; |
|
858 | + $net_refund = ! empty($balance_transaction->net) ? WC_Stripe_Helper::format_balance_fee($balance_transaction, 'net') : 0; |
|
860 | 859 | |
861 | 860 | // Current data fee & net. |
862 | - $fee_current = WC_Stripe_Helper::get_stripe_fee( $order ); |
|
863 | - $net_current = WC_Stripe_Helper::get_stripe_net( $order ); |
|
861 | + $fee_current = WC_Stripe_Helper::get_stripe_fee($order); |
|
862 | + $net_current = WC_Stripe_Helper::get_stripe_net($order); |
|
864 | 863 | |
865 | 864 | // Calculation. |
866 | 865 | $fee = (float) $fee_current + (float) $fee_refund; |
867 | 866 | $net = (float) $net_current + (float) $net_refund; |
868 | 867 | |
869 | - WC_Stripe_Helper::update_stripe_fee( $order, $fee ); |
|
870 | - WC_Stripe_Helper::update_stripe_net( $order, $net ); |
|
868 | + WC_Stripe_Helper::update_stripe_fee($order, $fee); |
|
869 | + WC_Stripe_Helper::update_stripe_net($order, $net); |
|
871 | 870 | |
872 | - if ( is_callable( array( $order, 'save' ) ) ) { |
|
871 | + if (is_callable(array($order, 'save'))) { |
|
873 | 872 | $order->save(); |
874 | 873 | } |
875 | 874 | } |
876 | 875 | } else { |
877 | - WC_Stripe_Logger::log( "Unable to update fees/net meta for order: {$order_id}" ); |
|
876 | + WC_Stripe_Logger::log("Unable to update fees/net meta for order: {$order_id}"); |
|
878 | 877 | } |
879 | 878 | } |
880 | 879 | |
@@ -887,33 +886,33 @@ discard block |
||
887 | 886 | * @param float $amount |
888 | 887 | * @return bool |
889 | 888 | */ |
890 | - public function process_refund( $order_id, $amount = null, $reason = '' ) { |
|
891 | - $order = wc_get_order( $order_id ); |
|
889 | + public function process_refund($order_id, $amount = null, $reason = '') { |
|
890 | + $order = wc_get_order($order_id); |
|
892 | 891 | |
893 | - if ( ! $order || ! $order->get_transaction_id() ) { |
|
892 | + if ( ! $order || ! $order->get_transaction_id()) { |
|
894 | 893 | return false; |
895 | 894 | } |
896 | 895 | |
897 | 896 | $request = array(); |
898 | 897 | |
899 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
900 | - $order_currency = get_post_meta( $order_id, '_order_currency', true ); |
|
901 | - $captured = get_post_meta( $order_id, '_stripe_charge_captured', true ); |
|
898 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
899 | + $order_currency = get_post_meta($order_id, '_order_currency', true); |
|
900 | + $captured = get_post_meta($order_id, '_stripe_charge_captured', true); |
|
902 | 901 | } else { |
903 | 902 | $order_currency = $order->get_currency(); |
904 | - $captured = $order->get_meta( '_stripe_charge_captured', true ); |
|
903 | + $captured = $order->get_meta('_stripe_charge_captured', true); |
|
905 | 904 | } |
906 | 905 | |
907 | - if ( ! is_null( $amount ) ) { |
|
908 | - $request['amount'] = WC_Stripe_Helper::get_stripe_amount( $amount, $order_currency ); |
|
906 | + if ( ! is_null($amount)) { |
|
907 | + $request['amount'] = WC_Stripe_Helper::get_stripe_amount($amount, $order_currency); |
|
909 | 908 | } |
910 | 909 | |
911 | 910 | // If order is only authorized, don't pass amount. |
912 | - if ( 'yes' !== $captured ) { |
|
913 | - unset( $request['amount'] ); |
|
911 | + if ('yes' !== $captured) { |
|
912 | + unset($request['amount']); |
|
914 | 913 | } |
915 | 914 | |
916 | - if ( $reason ) { |
|
915 | + if ($reason) { |
|
917 | 916 | $request['metadata'] = array( |
918 | 917 | 'reason' => $reason, |
919 | 918 | ); |
@@ -921,35 +920,35 @@ discard block |
||
921 | 920 | |
922 | 921 | $request['charge'] = $order->get_transaction_id(); |
923 | 922 | |
924 | - WC_Stripe_Logger::log( "Info: Beginning refund for order {$order->get_transaction_id()} for the amount of {$amount}" ); |
|
923 | + WC_Stripe_Logger::log("Info: Beginning refund for order {$order->get_transaction_id()} for the amount of {$amount}"); |
|
925 | 924 | |
926 | - $request = apply_filters( 'wc_stripe_refund_request', $request, $order ); |
|
925 | + $request = apply_filters('wc_stripe_refund_request', $request, $order); |
|
927 | 926 | |
928 | - $response = WC_Stripe_API::request( $request, 'refunds' ); |
|
927 | + $response = WC_Stripe_API::request($request, 'refunds'); |
|
929 | 928 | |
930 | - if ( ! empty( $response->error ) ) { |
|
931 | - WC_Stripe_Logger::log( 'Error: ' . $response->error->message ); |
|
929 | + if ( ! empty($response->error)) { |
|
930 | + WC_Stripe_Logger::log('Error: ' . $response->error->message); |
|
932 | 931 | |
933 | 932 | return $response; |
934 | 933 | |
935 | - } elseif ( ! empty( $response->id ) ) { |
|
936 | - WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_refund_id', $response->id ) : $order->update_meta_data( '_stripe_refund_id', $response->id ); |
|
934 | + } elseif ( ! empty($response->id)) { |
|
935 | + WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_refund_id', $response->id) : $order->update_meta_data('_stripe_refund_id', $response->id); |
|
937 | 936 | |
938 | - $amount = wc_price( $response->amount / 100 ); |
|
937 | + $amount = wc_price($response->amount / 100); |
|
939 | 938 | |
940 | - if ( in_array( strtolower( $order->get_currency() ), WC_Stripe_Helper::no_decimal_currencies() ) ) { |
|
941 | - $amount = wc_price( $response->amount ); |
|
939 | + if (in_array(strtolower($order->get_currency()), WC_Stripe_Helper::no_decimal_currencies())) { |
|
940 | + $amount = wc_price($response->amount); |
|
942 | 941 | } |
943 | 942 | |
944 | - if ( isset( $response->balance_transaction ) ) { |
|
945 | - $this->update_fees( $order, $response->balance_transaction ); |
|
943 | + if (isset($response->balance_transaction)) { |
|
944 | + $this->update_fees($order, $response->balance_transaction); |
|
946 | 945 | } |
947 | 946 | |
948 | 947 | /* translators: 1) dollar amount 2) transaction id 3) refund message */ |
949 | - $refund_message = ( isset( $captured ) && 'yes' === $captured ) ? sprintf( __( 'Refunded %1$s - Refund ID: %2$s - Reason: %3$s', 'woocommerce-gateway-stripe' ), $amount, $response->id, $reason ) : __( 'Pre-Authorization Released', 'woocommerce-gateway-stripe' ); |
|
948 | + $refund_message = (isset($captured) && 'yes' === $captured) ? sprintf(__('Refunded %1$s - Refund ID: %2$s - Reason: %3$s', 'woocommerce-gateway-stripe'), $amount, $response->id, $reason) : __('Pre-Authorization Released', 'woocommerce-gateway-stripe'); |
|
950 | 949 | |
951 | - $order->add_order_note( $refund_message ); |
|
952 | - WC_Stripe_Logger::log( 'Success: ' . html_entity_decode( strip_tags( $refund_message ) ) ); |
|
950 | + $order->add_order_note($refund_message); |
|
951 | + WC_Stripe_Logger::log('Success: ' . html_entity_decode(strip_tags($refund_message))); |
|
953 | 952 | |
954 | 953 | return true; |
955 | 954 | } |
@@ -964,44 +963,44 @@ discard block |
||
964 | 963 | */ |
965 | 964 | public function add_payment_method() { |
966 | 965 | $error = false; |
967 | - $error_msg = __( 'There was a problem adding the card.', 'woocommerce-gateway-stripe' ); |
|
966 | + $error_msg = __('There was a problem adding the card.', 'woocommerce-gateway-stripe'); |
|
968 | 967 | $source_id = ''; |
969 | 968 | |
970 | - if ( empty( $_POST['stripe_source'] ) && empty( $_POST['stripe_token'] ) || ! is_user_logged_in() ) { |
|
969 | + if (empty($_POST['stripe_source']) && empty($_POST['stripe_token']) || ! is_user_logged_in()) { |
|
971 | 970 | $error = true; |
972 | 971 | } |
973 | 972 | |
974 | - $stripe_customer = new WC_Stripe_Customer( get_current_user_id() ); |
|
973 | + $stripe_customer = new WC_Stripe_Customer(get_current_user_id()); |
|
975 | 974 | |
976 | - $source = ! empty( $_POST['stripe_source'] ) ? wc_clean( $_POST['stripe_source'] ) : ''; |
|
975 | + $source = ! empty($_POST['stripe_source']) ? wc_clean($_POST['stripe_source']) : ''; |
|
977 | 976 | |
978 | - $source_object = WC_Stripe_API::retrieve( 'sources/' . $source ); |
|
977 | + $source_object = WC_Stripe_API::retrieve('sources/' . $source); |
|
979 | 978 | |
980 | - if ( isset( $source_object ) ) { |
|
981 | - if ( ! empty( $source_object->error ) ) { |
|
979 | + if (isset($source_object)) { |
|
980 | + if ( ! empty($source_object->error)) { |
|
982 | 981 | $error = true; |
983 | 982 | } |
984 | 983 | |
985 | 984 | $source_id = $source_object->id; |
986 | - } elseif ( isset( $_POST['stripe_token'] ) ) { |
|
987 | - $source_id = wc_clean( $_POST['stripe_token'] ); |
|
985 | + } elseif (isset($_POST['stripe_token'])) { |
|
986 | + $source_id = wc_clean($_POST['stripe_token']); |
|
988 | 987 | } |
989 | 988 | |
990 | - $response = $stripe_customer->add_source( $source_id ); |
|
989 | + $response = $stripe_customer->add_source($source_id); |
|
991 | 990 | |
992 | - if ( ! $response || is_wp_error( $response ) || ! empty( $response->error ) ) { |
|
991 | + if ( ! $response || is_wp_error($response) || ! empty($response->error)) { |
|
993 | 992 | $error = true; |
994 | 993 | } |
995 | 994 | |
996 | - if ( $error ) { |
|
997 | - wc_add_notice( $error_msg, 'error' ); |
|
998 | - WC_Stripe_Logger::log( 'Add payment method Error: ' . $error_msg ); |
|
995 | + if ($error) { |
|
996 | + wc_add_notice($error_msg, 'error'); |
|
997 | + WC_Stripe_Logger::log('Add payment method Error: ' . $error_msg); |
|
999 | 998 | return; |
1000 | 999 | } |
1001 | 1000 | |
1002 | 1001 | return array( |
1003 | 1002 | 'result' => 'success', |
1004 | - 'redirect' => wc_get_endpoint_url( 'payment-methods' ), |
|
1003 | + 'redirect' => wc_get_endpoint_url('payment-methods'), |
|
1005 | 1004 | ); |
1006 | 1005 | } |
1007 | 1006 | |
@@ -1018,10 +1017,10 @@ discard block |
||
1018 | 1017 | * Stripe expects Norwegian to only be passed NO. |
1019 | 1018 | * But WP has different dialects. |
1020 | 1019 | */ |
1021 | - if ( 'NO' === substr( $locale, 3, 2 ) ) { |
|
1020 | + if ('NO' === substr($locale, 3, 2)) { |
|
1022 | 1021 | $locale = 'no'; |
1023 | 1022 | } else { |
1024 | - $locale = substr( get_locale(), 0, 2 ); |
|
1023 | + $locale = substr(get_locale(), 0, 2); |
|
1025 | 1024 | } |
1026 | 1025 | |
1027 | 1026 | return $locale; |
@@ -1035,9 +1034,9 @@ discard block |
||
1035 | 1034 | * @param string $idempotency_key |
1036 | 1035 | * @param array $request |
1037 | 1036 | */ |
1038 | - public function change_idempotency_key( $idempotency_key, $request ) { |
|
1039 | - $customer = ! empty( $request['customer'] ) ? $request['customer'] : ''; |
|
1040 | - $source = ! empty( $request['source'] ) ? $request['source'] : $customer; |
|
1037 | + public function change_idempotency_key($idempotency_key, $request) { |
|
1038 | + $customer = ! empty($request['customer']) ? $request['customer'] : ''; |
|
1039 | + $source = ! empty($request['source']) ? $request['source'] : $customer; |
|
1041 | 1040 | $count = $this->retry_interval; |
1042 | 1041 | |
1043 | 1042 | return $request['metadata']['order_id'] . '-' . $count . '-' . $source; |
@@ -1051,8 +1050,8 @@ discard block |
||
1051 | 1050 | * @since 4.0.6 |
1052 | 1051 | * @param array $headers |
1053 | 1052 | */ |
1054 | - public function is_original_request( $headers ) { |
|
1055 | - if ( $headers['original-request'] === $headers['request-id'] ) { |
|
1053 | + public function is_original_request($headers) { |
|
1054 | + if ($headers['original-request'] === $headers['request-id']) { |
|
1056 | 1055 | return true; |
1057 | 1056 | } |
1058 | 1057 |