@@ -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_bancontact'; |
| 60 | - $this->method_title = __( 'Stripe Bancontact', 'woocommerce-gateway-stripe' ); |
|
| 60 | + $this->method_title = __('Stripe Bancontact', '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,25 +71,25 @@ 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( 'admin_notices', array( $this, 'check_environment' ) ); |
|
| 91 | - add_action( 'admin_head', array( $this, 'remove_admin_notice' ) ); |
|
| 92 | - 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('admin_notices', array($this, 'check_environment')); |
|
| 91 | + add_action('admin_head', array($this, 'remove_admin_notice')); |
|
| 92 | + add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | /** |
@@ -99,19 +99,19 @@ discard block |
||
| 99 | 99 | * @version 4.0.0 |
| 100 | 100 | */ |
| 101 | 101 | public function check_environment() { |
| 102 | - if ( ! current_user_can( 'manage_woocommerce' ) ) { |
|
| 102 | + if ( ! current_user_can('manage_woocommerce')) { |
|
| 103 | 103 | return; |
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | $environment_warning = $this->get_environment_warning(); |
| 107 | 107 | |
| 108 | - if ( $environment_warning ) { |
|
| 109 | - $this->add_admin_notice( 'bad_environment', 'error', $environment_warning ); |
|
| 108 | + if ($environment_warning) { |
|
| 109 | + $this->add_admin_notice('bad_environment', 'error', $environment_warning); |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | - foreach ( (array) $this->notices as $notice_key => $notice ) { |
|
| 113 | - echo "<div class='" . esc_attr( $notice['class'] ) . "'><p>"; |
|
| 114 | - echo wp_kses( $notice['message'], array( 'a' => array( 'href' => array() ) ) ); |
|
| 112 | + foreach ((array) $this->notices as $notice_key => $notice) { |
|
| 113 | + echo "<div class='" . esc_attr($notice['class']) . "'><p>"; |
|
| 114 | + echo wp_kses($notice['message'], array('a' => array('href' => array()))); |
|
| 115 | 115 | echo '</p></div>'; |
| 116 | 116 | } |
| 117 | 117 | } |
@@ -124,8 +124,8 @@ discard block |
||
| 124 | 124 | * @version 4.0.0 |
| 125 | 125 | */ |
| 126 | 126 | public function get_environment_warning() { |
| 127 | - if ( 'yes' === $this->enabled && ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 128 | - $message = __( 'Bancontact is enabled - it requires store currency to be set to Euros.', 'woocommerce-gateway-stripe' ); |
|
| 127 | + if ('yes' === $this->enabled && ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 128 | + $message = __('Bancontact is enabled - it requires store currency to be set to Euros.', 'woocommerce-gateway-stripe'); |
|
| 129 | 129 | |
| 130 | 130 | return $message; |
| 131 | 131 | } |
@@ -141,9 +141,9 @@ discard block |
||
| 141 | 141 | * @return array |
| 142 | 142 | */ |
| 143 | 143 | public function get_supported_currency() { |
| 144 | - return apply_filters( 'wc_stripe_bancontact_supported_currencies', array( |
|
| 144 | + return apply_filters('wc_stripe_bancontact_supported_currencies', array( |
|
| 145 | 145 | 'EUR', |
| 146 | - ) ); |
|
| 146 | + )); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | /** |
@@ -154,7 +154,7 @@ discard block |
||
| 154 | 154 | * @return bool |
| 155 | 155 | */ |
| 156 | 156 | public function is_available() { |
| 157 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 157 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 158 | 158 | return false; |
| 159 | 159 | } |
| 160 | 160 | |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | |
| 176 | 176 | $icons_str .= $icons['bancontact']; |
| 177 | 177 | |
| 178 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
| 178 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | /** |
@@ -186,19 +186,19 @@ discard block |
||
| 186 | 186 | * @access public |
| 187 | 187 | */ |
| 188 | 188 | public function payment_scripts() { |
| 189 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
| 189 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
| 190 | 190 | return; |
| 191 | 191 | } |
| 192 | 192 | |
| 193 | - wp_enqueue_style( 'stripe_paymentfonts' ); |
|
| 194 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
| 193 | + wp_enqueue_style('stripe_paymentfonts'); |
|
| 194 | + wp_enqueue_script('woocommerce_stripe'); |
|
| 195 | 195 | } |
| 196 | 196 | |
| 197 | 197 | /** |
| 198 | 198 | * Initialize Gateway Settings Form Fields. |
| 199 | 199 | */ |
| 200 | 200 | public function init_form_fields() { |
| 201 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-bancontact-settings.php' ); |
|
| 201 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-bancontact-settings.php'); |
|
| 202 | 202 | } |
| 203 | 203 | |
| 204 | 204 | /** |
@@ -209,25 +209,25 @@ discard block |
||
| 209 | 209 | $total = WC()->cart->total; |
| 210 | 210 | |
| 211 | 211 | // If paying from order, we need to get total from order not cart. |
| 212 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
| 213 | - $order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) ); |
|
| 212 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
| 213 | + $order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key']))); |
|
| 214 | 214 | $total = $order->get_total(); |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | - if ( is_add_payment_method_page() ) { |
|
| 218 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
| 219 | - $total = ''; |
|
| 217 | + if (is_add_payment_method_page()) { |
|
| 218 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
| 219 | + $total = ''; |
|
| 220 | 220 | } else { |
| 221 | 221 | $pay_button_text = ''; |
| 222 | 222 | } |
| 223 | 223 | |
| 224 | 224 | echo '<div |
| 225 | 225 | id="stripe-bancontact-payment-data" |
| 226 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
| 227 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
| 226 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
| 227 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
| 228 | 228 | |
| 229 | - if ( $this->description ) { |
|
| 230 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ) ); |
|
| 229 | + if ($this->description) { |
|
| 230 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($this->description))); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | echo '</div>'; |
@@ -241,25 +241,25 @@ discard block |
||
| 241 | 241 | * @param object $order |
| 242 | 242 | * @return mixed |
| 243 | 243 | */ |
| 244 | - public function create_source( $order ) { |
|
| 244 | + public function create_source($order) { |
|
| 245 | 245 | $currency = WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency(); |
| 246 | 246 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
| 247 | - $return_url = $this->get_stripe_return_url( $order ); |
|
| 247 | + $return_url = $this->get_stripe_return_url($order); |
|
| 248 | 248 | $post_data = array(); |
| 249 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency ); |
|
| 250 | - $post_data['currency'] = strtolower( $currency ); |
|
| 249 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency); |
|
| 250 | + $post_data['currency'] = strtolower($currency); |
|
| 251 | 251 | $post_data['type'] = 'bancontact'; |
| 252 | - $post_data['owner'] = $this->get_owner_details( $order ); |
|
| 253 | - $post_data['redirect'] = array( 'return_url' => $return_url ); |
|
| 254 | - $post_data['bancontact'] = array( 'preferred_language' => substr( get_locale(), 0, 2 ) ); |
|
| 252 | + $post_data['owner'] = $this->get_owner_details($order); |
|
| 253 | + $post_data['redirect'] = array('return_url' => $return_url); |
|
| 254 | + $post_data['bancontact'] = array('preferred_language' => substr(get_locale(), 0, 2)); |
|
| 255 | 255 | |
| 256 | - if ( ! empty( $this->statement_descriptor ) ) { |
|
| 257 | - $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $this->statement_descriptor ); |
|
| 256 | + if ( ! empty($this->statement_descriptor)) { |
|
| 257 | + $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($this->statement_descriptor); |
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | - WC_Stripe_Logger::log( 'Info: Begin creating Bancontact source' ); |
|
| 260 | + WC_Stripe_Logger::log('Info: Begin creating Bancontact source'); |
|
| 261 | 261 | |
| 262 | - return WC_Stripe_API::request( $post_data, 'sources' ); |
|
| 262 | + return WC_Stripe_API::request($post_data, 'sources'); |
|
| 263 | 263 | } |
| 264 | 264 | |
| 265 | 265 | /** |
@@ -273,51 +273,51 @@ discard block |
||
| 273 | 273 | * |
| 274 | 274 | * @return array|void |
| 275 | 275 | */ |
| 276 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
| 276 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
| 277 | 277 | try { |
| 278 | - $order = wc_get_order( $order_id ); |
|
| 278 | + $order = wc_get_order($order_id); |
|
| 279 | 279 | |
| 280 | 280 | // This will throw exception if not valid. |
| 281 | - $this->validate_minimum_order_amount( $order ); |
|
| 281 | + $this->validate_minimum_order_amount($order); |
|
| 282 | 282 | |
| 283 | 283 | // This comes from the create account checkbox in the checkout page. |
| 284 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
| 284 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
| 285 | 285 | |
| 286 | - if ( $create_account ) { |
|
| 286 | + if ($create_account) { |
|
| 287 | 287 | $new_customer_id = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(); |
| 288 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
| 288 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
| 289 | 289 | $new_stripe_customer->create_customer(); |
| 290 | 290 | } |
| 291 | 291 | |
| 292 | - $response = $this->create_source( $order ); |
|
| 292 | + $response = $this->create_source($order); |
|
| 293 | 293 | |
| 294 | - if ( ! empty( $response->error ) ) { |
|
| 295 | - $order->add_order_note( $response->error->message ); |
|
| 294 | + if ( ! empty($response->error)) { |
|
| 295 | + $order->add_order_note($response->error->message); |
|
| 296 | 296 | |
| 297 | - throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message ); |
|
| 297 | + throw new WC_Stripe_Exception(print_r($response, true), $response->error->message); |
|
| 298 | 298 | } |
| 299 | 299 | |
| 300 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
| 301 | - update_post_meta( $order_id, '_stripe_source_id', $response->id ); |
|
| 300 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
| 301 | + update_post_meta($order_id, '_stripe_source_id', $response->id); |
|
| 302 | 302 | } else { |
| 303 | - $order->update_meta_data( '_stripe_source_id', $response->id ); |
|
| 303 | + $order->update_meta_data('_stripe_source_id', $response->id); |
|
| 304 | 304 | $order->save(); |
| 305 | 305 | } |
| 306 | 306 | |
| 307 | - WC_Stripe_Logger::log( 'Info: Redirecting to Bancontact...' ); |
|
| 307 | + WC_Stripe_Logger::log('Info: Redirecting to Bancontact...'); |
|
| 308 | 308 | |
| 309 | 309 | return array( |
| 310 | 310 | 'result' => 'success', |
| 311 | - 'redirect' => esc_url_raw( $response->redirect->url ), |
|
| 311 | + 'redirect' => esc_url_raw($response->redirect->url), |
|
| 312 | 312 | ); |
| 313 | - } catch ( WC_Stripe_Exception $e ) { |
|
| 314 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
| 315 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 313 | + } catch (WC_Stripe_Exception $e) { |
|
| 314 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
| 315 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 316 | 316 | |
| 317 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
| 317 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
| 318 | 318 | |
| 319 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
| 320 | - $this->send_failed_order_email( $order_id ); |
|
| 319 | + if ($order->has_status(array('pending', 'failed'))) { |
|
| 320 | + $this->send_failed_order_email($order_id); |
|
| 321 | 321 | } |
| 322 | 322 | |
| 323 | 323 | return array( |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if ( ! defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function __construct() { |
| 59 | 59 | $this->id = 'stripe_sofort'; |
| 60 | - $this->method_title = __( 'Stripe SOFORT', 'woocommerce-gateway-stripe' ); |
|
| 60 | + $this->method_title = __('Stripe SOFORT', 'woocommerce-gateway-stripe'); |
|
| 61 | 61 | /* translators: link */ |
| 62 | - $this->method_description = sprintf( __( 'All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=stripe' ) ); |
|
| 62 | + $this->method_description = sprintf(__('All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe'), admin_url('admin.php?page=wc-settings&tab=checkout§ion=stripe')); |
|
| 63 | 63 | $this->supports = array( |
| 64 | 64 | 'products', |
| 65 | 65 | 'refunds', |
@@ -71,25 +71,25 @@ 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( 'admin_notices', array( $this, 'check_environment' ) ); |
|
| 91 | - add_action( 'admin_head', array( $this, 'remove_admin_notice' ) ); |
|
| 92 | - 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('admin_notices', array($this, 'check_environment')); |
|
| 91 | + add_action('admin_head', array($this, 'remove_admin_notice')); |
|
| 92 | + add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | /** |
@@ -99,19 +99,19 @@ discard block |
||
| 99 | 99 | * @version 4.0.0 |
| 100 | 100 | */ |
| 101 | 101 | public function check_environment() { |
| 102 | - if ( ! current_user_can( 'manage_woocommerce' ) ) { |
|
| 102 | + if ( ! current_user_can('manage_woocommerce')) { |
|
| 103 | 103 | return; |
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | $environment_warning = $this->get_environment_warning(); |
| 107 | 107 | |
| 108 | - if ( $environment_warning ) { |
|
| 109 | - $this->add_admin_notice( 'bad_environment', 'error', $environment_warning ); |
|
| 108 | + if ($environment_warning) { |
|
| 109 | + $this->add_admin_notice('bad_environment', 'error', $environment_warning); |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | - foreach ( (array) $this->notices as $notice_key => $notice ) { |
|
| 113 | - echo "<div class='" . esc_attr( $notice['class'] ) . "'><p>"; |
|
| 114 | - echo wp_kses( $notice['message'], array( 'a' => array( 'href' => array() ) ) ); |
|
| 112 | + foreach ((array) $this->notices as $notice_key => $notice) { |
|
| 113 | + echo "<div class='" . esc_attr($notice['class']) . "'><p>"; |
|
| 114 | + echo wp_kses($notice['message'], array('a' => array('href' => array()))); |
|
| 115 | 115 | echo '</p></div>'; |
| 116 | 116 | } |
| 117 | 117 | } |
@@ -124,8 +124,8 @@ discard block |
||
| 124 | 124 | * @version 4.0.0 |
| 125 | 125 | */ |
| 126 | 126 | public function get_environment_warning() { |
| 127 | - if ( 'yes' === $this->enabled && ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 128 | - $message = __( 'SOFORT is enabled - it requires store currency to be set to Euros.', 'woocommerce-gateway-stripe' ); |
|
| 127 | + if ('yes' === $this->enabled && ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 128 | + $message = __('SOFORT is enabled - it requires store currency to be set to Euros.', 'woocommerce-gateway-stripe'); |
|
| 129 | 129 | |
| 130 | 130 | return $message; |
| 131 | 131 | } |
@@ -141,9 +141,9 @@ discard block |
||
| 141 | 141 | * @return array |
| 142 | 142 | */ |
| 143 | 143 | public function get_supported_currency() { |
| 144 | - return apply_filters( 'wc_stripe_sofort_supported_currencies', array( |
|
| 144 | + return apply_filters('wc_stripe_sofort_supported_currencies', array( |
|
| 145 | 145 | 'EUR', |
| 146 | - ) ); |
|
| 146 | + )); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | /** |
@@ -154,7 +154,7 @@ discard block |
||
| 154 | 154 | * @return bool |
| 155 | 155 | */ |
| 156 | 156 | public function is_available() { |
| 157 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 157 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 158 | 158 | return false; |
| 159 | 159 | } |
| 160 | 160 | |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | |
| 176 | 176 | $icons_str .= $icons['sofort']; |
| 177 | 177 | |
| 178 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
| 178 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | /** |
@@ -186,19 +186,19 @@ discard block |
||
| 186 | 186 | * @access public |
| 187 | 187 | */ |
| 188 | 188 | public function payment_scripts() { |
| 189 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
| 189 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
| 190 | 190 | return; |
| 191 | 191 | } |
| 192 | 192 | |
| 193 | - wp_enqueue_style( 'stripe_paymentfonts' ); |
|
| 194 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
| 193 | + wp_enqueue_style('stripe_paymentfonts'); |
|
| 194 | + wp_enqueue_script('woocommerce_stripe'); |
|
| 195 | 195 | } |
| 196 | 196 | |
| 197 | 197 | /** |
| 198 | 198 | * Initialize Gateway Settings Form Fields. |
| 199 | 199 | */ |
| 200 | 200 | public function init_form_fields() { |
| 201 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-sofort-settings.php' ); |
|
| 201 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-sofort-settings.php'); |
|
| 202 | 202 | } |
| 203 | 203 | |
| 204 | 204 | /** |
@@ -209,25 +209,25 @@ discard block |
||
| 209 | 209 | $total = WC()->cart->total; |
| 210 | 210 | |
| 211 | 211 | // If paying from order, we need to get total from order not cart. |
| 212 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
| 213 | - $order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) ); |
|
| 212 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
| 213 | + $order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key']))); |
|
| 214 | 214 | $total = $order->get_total(); |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | - if ( is_add_payment_method_page() ) { |
|
| 218 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
| 219 | - $total = ''; |
|
| 217 | + if (is_add_payment_method_page()) { |
|
| 218 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
| 219 | + $total = ''; |
|
| 220 | 220 | } else { |
| 221 | 221 | $pay_button_text = ''; |
| 222 | 222 | } |
| 223 | 223 | |
| 224 | 224 | echo '<div |
| 225 | 225 | id="stripe-sofort-payment-data" |
| 226 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
| 227 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
| 226 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
| 227 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
| 228 | 228 | |
| 229 | - if ( $this->description ) { |
|
| 230 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ) ); |
|
| 229 | + if ($this->description) { |
|
| 230 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($this->description))); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | echo '</div>'; |
@@ -241,25 +241,25 @@ discard block |
||
| 241 | 241 | * @param object $order |
| 242 | 242 | * @return mixed |
| 243 | 243 | */ |
| 244 | - public function create_source( $order ) { |
|
| 244 | + public function create_source($order) { |
|
| 245 | 245 | $currency = WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency(); |
| 246 | 246 | $bank_country = WC_Stripe_Helper::is_pre_30() ? $order->billing_country : $order->get_billing_country(); |
| 247 | - $return_url = $this->get_stripe_return_url( $order ); |
|
| 247 | + $return_url = $this->get_stripe_return_url($order); |
|
| 248 | 248 | $post_data = array(); |
| 249 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency ); |
|
| 250 | - $post_data['currency'] = strtolower( $currency ); |
|
| 249 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency); |
|
| 250 | + $post_data['currency'] = strtolower($currency); |
|
| 251 | 251 | $post_data['type'] = 'sofort'; |
| 252 | - $post_data['owner'] = $this->get_owner_details( $order ); |
|
| 253 | - $post_data['redirect'] = array( 'return_url' => $return_url ); |
|
| 254 | - $post_data['sofort'] = array( 'country' => $bank_country, 'preferred_language' => substr( get_locale(), 0, 2 ) ); |
|
| 252 | + $post_data['owner'] = $this->get_owner_details($order); |
|
| 253 | + $post_data['redirect'] = array('return_url' => $return_url); |
|
| 254 | + $post_data['sofort'] = array('country' => $bank_country, 'preferred_language' => substr(get_locale(), 0, 2)); |
|
| 255 | 255 | |
| 256 | - if ( ! empty( $this->statement_descriptor ) ) { |
|
| 257 | - $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $this->statement_descriptor ); |
|
| 256 | + if ( ! empty($this->statement_descriptor)) { |
|
| 257 | + $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($this->statement_descriptor); |
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | - WC_Stripe_Logger::log( 'Info: Begin creating SOFORT source' ); |
|
| 260 | + WC_Stripe_Logger::log('Info: Begin creating SOFORT source'); |
|
| 261 | 261 | |
| 262 | - return WC_Stripe_API::request( $post_data, 'sources' ); |
|
| 262 | + return WC_Stripe_API::request($post_data, 'sources'); |
|
| 263 | 263 | } |
| 264 | 264 | |
| 265 | 265 | /** |
@@ -273,59 +273,59 @@ discard block |
||
| 273 | 273 | * |
| 274 | 274 | * @return array|void |
| 275 | 275 | */ |
| 276 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
| 276 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
| 277 | 277 | try { |
| 278 | - $order = wc_get_order( $order_id ); |
|
| 278 | + $order = wc_get_order($order_id); |
|
| 279 | 279 | |
| 280 | 280 | // This will throw exception if not valid. |
| 281 | - $this->validate_minimum_order_amount( $order ); |
|
| 281 | + $this->validate_minimum_order_amount($order); |
|
| 282 | 282 | |
| 283 | 283 | // This comes from the create account checkbox in the checkout page. |
| 284 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
| 284 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
| 285 | 285 | |
| 286 | - if ( $create_account ) { |
|
| 286 | + if ($create_account) { |
|
| 287 | 287 | $new_customer_id = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(); |
| 288 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
| 288 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
| 289 | 289 | $new_stripe_customer->create_customer(); |
| 290 | 290 | } |
| 291 | 291 | |
| 292 | - $response = $this->create_source( $order ); |
|
| 292 | + $response = $this->create_source($order); |
|
| 293 | 293 | |
| 294 | - if ( ! empty( $response->error ) ) { |
|
| 295 | - $order->add_order_note( $response->error->message ); |
|
| 294 | + if ( ! empty($response->error)) { |
|
| 295 | + $order->add_order_note($response->error->message); |
|
| 296 | 296 | |
| 297 | 297 | $localized_messages = WC_Stripe_Helper::get_localized_messages(); |
| 298 | 298 | |
| 299 | - if ( 'invalid_sofort_country' === $response->error->code ) { |
|
| 300 | - $localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message; |
|
| 299 | + if ('invalid_sofort_country' === $response->error->code) { |
|
| 300 | + $localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message; |
|
| 301 | 301 | } else { |
| 302 | - $localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message; |
|
| 302 | + $localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message; |
|
| 303 | 303 | } |
| 304 | 304 | |
| 305 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
| 305 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
| 306 | 306 | } |
| 307 | 307 | |
| 308 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
| 309 | - update_post_meta( $order_id, '_stripe_source_id', $response->id ); |
|
| 308 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
| 309 | + update_post_meta($order_id, '_stripe_source_id', $response->id); |
|
| 310 | 310 | } else { |
| 311 | - $order->update_meta_data( '_stripe_source_id', $response->id ); |
|
| 311 | + $order->update_meta_data('_stripe_source_id', $response->id); |
|
| 312 | 312 | $order->save(); |
| 313 | 313 | } |
| 314 | 314 | |
| 315 | - WC_Stripe_Logger::log( 'Info: Redirecting to SOFORT...' ); |
|
| 315 | + WC_Stripe_Logger::log('Info: Redirecting to SOFORT...'); |
|
| 316 | 316 | |
| 317 | 317 | return array( |
| 318 | 318 | 'result' => 'success', |
| 319 | - 'redirect' => esc_url_raw( $response->redirect->url ), |
|
| 319 | + 'redirect' => esc_url_raw($response->redirect->url), |
|
| 320 | 320 | ); |
| 321 | - } catch ( WC_Stripe_Exception $e ) { |
|
| 322 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
| 323 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 321 | + } catch (WC_Stripe_Exception $e) { |
|
| 322 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
| 323 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 324 | 324 | |
| 325 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
| 325 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
| 326 | 326 | |
| 327 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
| 328 | - $this->send_failed_order_email( $order_id ); |
|
| 327 | + if ($order->has_status(array('pending', 'failed'))) { |
|
| 328 | + $this->send_failed_order_email($order_id); |
|
| 329 | 329 | } |
| 330 | 330 | |
| 331 | 331 | return array( |