@@ -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,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,9 +98,9 @@ discard block |
||
| 98 | 98 | * @return array |
| 99 | 99 | */ |
| 100 | 100 | public function get_supported_currency() { |
| 101 | - return apply_filters( 'wc_stripe_bancontact_supported_currencies', array( |
|
| 101 | + return apply_filters('wc_stripe_bancontact_supported_currencies', array( |
|
| 102 | 102 | 'EUR', |
| 103 | - ) ); |
|
| 103 | + )); |
|
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | /** |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | * @return bool |
| 112 | 112 | */ |
| 113 | 113 | public function is_available() { |
| 114 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 114 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 115 | 115 | return false; |
| 116 | 116 | } |
| 117 | 117 | |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | |
| 133 | 133 | $icons_str .= $icons['bancontact']; |
| 134 | 134 | |
| 135 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
| 135 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | /** |
@@ -143,19 +143,19 @@ discard block |
||
| 143 | 143 | * @access public |
| 144 | 144 | */ |
| 145 | 145 | public function payment_scripts() { |
| 146 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
| 146 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
| 147 | 147 | return; |
| 148 | 148 | } |
| 149 | 149 | |
| 150 | - wp_enqueue_style( 'stripe_styles' ); |
|
| 151 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
| 150 | + wp_enqueue_style('stripe_styles'); |
|
| 151 | + wp_enqueue_script('woocommerce_stripe'); |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | /** |
| 155 | 155 | * Initialize Gateway Settings Form Fields. |
| 156 | 156 | */ |
| 157 | 157 | public function init_form_fields() { |
| 158 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-bancontact-settings.php' ); |
|
| 158 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-bancontact-settings.php'); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | /** |
@@ -167,25 +167,25 @@ discard block |
||
| 167 | 167 | $description = $this->get_description(); |
| 168 | 168 | |
| 169 | 169 | // If paying from order, we need to get total from order not cart. |
| 170 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
| 171 | - $order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) ); |
|
| 170 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
| 171 | + $order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key']))); |
|
| 172 | 172 | $total = $order->get_total(); |
| 173 | 173 | } |
| 174 | 174 | |
| 175 | - if ( is_add_payment_method_page() ) { |
|
| 176 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
| 177 | - $total = ''; |
|
| 175 | + if (is_add_payment_method_page()) { |
|
| 176 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
| 177 | + $total = ''; |
|
| 178 | 178 | } else { |
| 179 | 179 | $pay_button_text = ''; |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | echo '<div |
| 183 | 183 | id="stripe-bancontact-payment-data" |
| 184 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
| 185 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
| 184 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
| 185 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
| 186 | 186 | |
| 187 | - if ( $description ) { |
|
| 188 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); |
|
| 187 | + if ($description) { |
|
| 188 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); |
|
| 189 | 189 | } |
| 190 | 190 | |
| 191 | 191 | echo '</div>'; |
@@ -199,25 +199,25 @@ discard block |
||
| 199 | 199 | * @param object $order |
| 200 | 200 | * @return mixed |
| 201 | 201 | */ |
| 202 | - public function create_source( $order ) { |
|
| 202 | + public function create_source($order) { |
|
| 203 | 203 | $currency = WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency(); |
| 204 | 204 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
| 205 | - $return_url = $this->get_stripe_return_url( $order ); |
|
| 205 | + $return_url = $this->get_stripe_return_url($order); |
|
| 206 | 206 | $post_data = array(); |
| 207 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency ); |
|
| 208 | - $post_data['currency'] = strtolower( $currency ); |
|
| 207 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency); |
|
| 208 | + $post_data['currency'] = strtolower($currency); |
|
| 209 | 209 | $post_data['type'] = 'bancontact'; |
| 210 | - $post_data['owner'] = $this->get_owner_details( $order ); |
|
| 211 | - $post_data['redirect'] = array( 'return_url' => $return_url ); |
|
| 212 | - $post_data['bancontact'] = array( 'preferred_language' => $this->get_locale() ); |
|
| 210 | + $post_data['owner'] = $this->get_owner_details($order); |
|
| 211 | + $post_data['redirect'] = array('return_url' => $return_url); |
|
| 212 | + $post_data['bancontact'] = array('preferred_language' => $this->get_locale()); |
|
| 213 | 213 | |
| 214 | - if ( ! empty( $this->statement_descriptor ) ) { |
|
| 215 | - $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $this->statement_descriptor ); |
|
| 214 | + if ( ! empty($this->statement_descriptor)) { |
|
| 215 | + $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($this->statement_descriptor); |
|
| 216 | 216 | } |
| 217 | 217 | |
| 218 | - WC_Stripe_Logger::log( 'Info: Begin creating Bancontact source' ); |
|
| 218 | + WC_Stripe_Logger::log('Info: Begin creating Bancontact source'); |
|
| 219 | 219 | |
| 220 | - return WC_Stripe_API::request( apply_filters( 'wc_stripe_bancontact_source', $post_data, $order ), 'sources' ); |
|
| 220 | + return WC_Stripe_API::request(apply_filters('wc_stripe_bancontact_source', $post_data, $order), 'sources'); |
|
| 221 | 221 | } |
| 222 | 222 | |
| 223 | 223 | /** |
@@ -231,51 +231,51 @@ discard block |
||
| 231 | 231 | * |
| 232 | 232 | * @return array|void |
| 233 | 233 | */ |
| 234 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
| 234 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
| 235 | 235 | try { |
| 236 | - $order = wc_get_order( $order_id ); |
|
| 236 | + $order = wc_get_order($order_id); |
|
| 237 | 237 | |
| 238 | 238 | // This will throw exception if not valid. |
| 239 | - $this->validate_minimum_order_amount( $order ); |
|
| 239 | + $this->validate_minimum_order_amount($order); |
|
| 240 | 240 | |
| 241 | 241 | // This comes from the create account checkbox in the checkout page. |
| 242 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
| 242 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
| 243 | 243 | |
| 244 | - if ( $create_account ) { |
|
| 244 | + if ($create_account) { |
|
| 245 | 245 | $new_customer_id = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(); |
| 246 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
| 246 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
| 247 | 247 | $new_stripe_customer->create_customer(); |
| 248 | 248 | } |
| 249 | 249 | |
| 250 | - $response = $this->create_source( $order ); |
|
| 250 | + $response = $this->create_source($order); |
|
| 251 | 251 | |
| 252 | - if ( ! empty( $response->error ) ) { |
|
| 253 | - $order->add_order_note( $response->error->message ); |
|
| 252 | + if ( ! empty($response->error)) { |
|
| 253 | + $order->add_order_note($response->error->message); |
|
| 254 | 254 | |
| 255 | - throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message ); |
|
| 255 | + throw new WC_Stripe_Exception(print_r($response, true), $response->error->message); |
|
| 256 | 256 | } |
| 257 | 257 | |
| 258 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
| 259 | - update_post_meta( $order_id, '_stripe_source_id', $response->id ); |
|
| 258 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
| 259 | + update_post_meta($order_id, '_stripe_source_id', $response->id); |
|
| 260 | 260 | } else { |
| 261 | - $order->update_meta_data( '_stripe_source_id', $response->id ); |
|
| 261 | + $order->update_meta_data('_stripe_source_id', $response->id); |
|
| 262 | 262 | $order->save(); |
| 263 | 263 | } |
| 264 | 264 | |
| 265 | - WC_Stripe_Logger::log( 'Info: Redirecting to Bancontact...' ); |
|
| 265 | + WC_Stripe_Logger::log('Info: Redirecting to Bancontact...'); |
|
| 266 | 266 | |
| 267 | 267 | return array( |
| 268 | 268 | 'result' => 'success', |
| 269 | - 'redirect' => esc_url_raw( $response->redirect->url ), |
|
| 269 | + 'redirect' => esc_url_raw($response->redirect->url), |
|
| 270 | 270 | ); |
| 271 | - } catch ( WC_Stripe_Exception $e ) { |
|
| 272 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
| 273 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 271 | + } catch (WC_Stripe_Exception $e) { |
|
| 272 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
| 273 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 274 | 274 | |
| 275 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
| 275 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
| 276 | 276 | |
| 277 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
| 278 | - $this->send_failed_order_email( $order_id ); |
|
| 277 | + if ($order->has_status(array('pending', 'failed'))) { |
|
| 278 | + $this->send_failed_order_email($order_id); |
|
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | return array( |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if ( ! defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function __construct() { |
| 59 | 59 | $this->id = 'stripe_ideal'; |
| 60 | - $this->method_title = __( 'Stripe iDeal', 'woocommerce-gateway-stripe' ); |
|
| 60 | + $this->method_title = __('Stripe iDeal', '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,9 +98,9 @@ discard block |
||
| 98 | 98 | * @return array |
| 99 | 99 | */ |
| 100 | 100 | public function get_supported_currency() { |
| 101 | - return apply_filters( 'wc_stripe_ideal_supported_currencies', array( |
|
| 101 | + return apply_filters('wc_stripe_ideal_supported_currencies', array( |
|
| 102 | 102 | 'EUR', |
| 103 | - ) ); |
|
| 103 | + )); |
|
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | /** |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | * @return bool |
| 112 | 112 | */ |
| 113 | 113 | public function is_available() { |
| 114 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 114 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 115 | 115 | return false; |
| 116 | 116 | } |
| 117 | 117 | |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | |
| 133 | 133 | $icons_str .= $icons['ideal']; |
| 134 | 134 | |
| 135 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
| 135 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | /** |
@@ -143,19 +143,19 @@ discard block |
||
| 143 | 143 | * @access public |
| 144 | 144 | */ |
| 145 | 145 | public function payment_scripts() { |
| 146 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
| 146 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
| 147 | 147 | return; |
| 148 | 148 | } |
| 149 | 149 | |
| 150 | - wp_enqueue_style( 'stripe_styles' ); |
|
| 151 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
| 150 | + wp_enqueue_style('stripe_styles'); |
|
| 151 | + wp_enqueue_script('woocommerce_stripe'); |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | /** |
| 155 | 155 | * Initialize Gateway Settings Form Fields. |
| 156 | 156 | */ |
| 157 | 157 | public function init_form_fields() { |
| 158 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-ideal-settings.php' ); |
|
| 158 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-ideal-settings.php'); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | /** |
@@ -167,25 +167,25 @@ discard block |
||
| 167 | 167 | $description = $this->get_description(); |
| 168 | 168 | |
| 169 | 169 | // If paying from order, we need to get total from order not cart. |
| 170 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
| 171 | - $order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) ); |
|
| 170 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
| 171 | + $order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key']))); |
|
| 172 | 172 | $total = $order->get_total(); |
| 173 | 173 | } |
| 174 | 174 | |
| 175 | - if ( is_add_payment_method_page() ) { |
|
| 176 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
| 177 | - $total = ''; |
|
| 175 | + if (is_add_payment_method_page()) { |
|
| 176 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
| 177 | + $total = ''; |
|
| 178 | 178 | } else { |
| 179 | 179 | $pay_button_text = ''; |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | echo '<div |
| 183 | 183 | id="stripe-ideal-payment-data" |
| 184 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
| 185 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
| 184 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
| 185 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
| 186 | 186 | |
| 187 | - if ( $description ) { |
|
| 188 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); |
|
| 187 | + if ($description) { |
|
| 188 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); |
|
| 189 | 189 | } |
| 190 | 190 | |
| 191 | 191 | echo '</div>'; |
@@ -199,24 +199,24 @@ discard block |
||
| 199 | 199 | * @param object $order |
| 200 | 200 | * @return mixed |
| 201 | 201 | */ |
| 202 | - public function create_source( $order ) { |
|
| 202 | + public function create_source($order) { |
|
| 203 | 203 | $currency = WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency(); |
| 204 | 204 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
| 205 | - $return_url = $this->get_stripe_return_url( $order ); |
|
| 205 | + $return_url = $this->get_stripe_return_url($order); |
|
| 206 | 206 | $post_data = array(); |
| 207 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency ); |
|
| 208 | - $post_data['currency'] = strtolower( $currency ); |
|
| 207 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency); |
|
| 208 | + $post_data['currency'] = strtolower($currency); |
|
| 209 | 209 | $post_data['type'] = 'ideal'; |
| 210 | - $post_data['owner'] = $this->get_owner_details( $order ); |
|
| 211 | - $post_data['redirect'] = array( 'return_url' => $return_url ); |
|
| 210 | + $post_data['owner'] = $this->get_owner_details($order); |
|
| 211 | + $post_data['redirect'] = array('return_url' => $return_url); |
|
| 212 | 212 | |
| 213 | - if ( ! empty( $this->statement_descriptor ) ) { |
|
| 214 | - $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $this->statement_descriptor ); |
|
| 213 | + if ( ! empty($this->statement_descriptor)) { |
|
| 214 | + $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($this->statement_descriptor); |
|
| 215 | 215 | } |
| 216 | 216 | |
| 217 | - WC_Stripe_Logger::log( 'Info: Begin creating iDeal source' ); |
|
| 217 | + WC_Stripe_Logger::log('Info: Begin creating iDeal source'); |
|
| 218 | 218 | |
| 219 | - return WC_Stripe_API::request( apply_filters( 'wc_stripe_ideal_source', $post_data, $order ), 'sources' ); |
|
| 219 | + return WC_Stripe_API::request(apply_filters('wc_stripe_ideal_source', $post_data, $order), 'sources'); |
|
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | /** |
@@ -230,51 +230,51 @@ discard block |
||
| 230 | 230 | * |
| 231 | 231 | * @return array|void |
| 232 | 232 | */ |
| 233 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
| 233 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
| 234 | 234 | try { |
| 235 | - $order = wc_get_order( $order_id ); |
|
| 235 | + $order = wc_get_order($order_id); |
|
| 236 | 236 | |
| 237 | 237 | // This will throw exception if not valid. |
| 238 | - $this->validate_minimum_order_amount( $order ); |
|
| 238 | + $this->validate_minimum_order_amount($order); |
|
| 239 | 239 | |
| 240 | 240 | // This comes from the create account checkbox in the checkout page. |
| 241 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
| 241 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
| 242 | 242 | |
| 243 | - if ( $create_account ) { |
|
| 243 | + if ($create_account) { |
|
| 244 | 244 | $new_customer_id = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(); |
| 245 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
| 245 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
| 246 | 246 | $new_stripe_customer->create_customer(); |
| 247 | 247 | } |
| 248 | 248 | |
| 249 | - $response = $this->create_source( $order ); |
|
| 249 | + $response = $this->create_source($order); |
|
| 250 | 250 | |
| 251 | - if ( ! empty( $response->error ) ) { |
|
| 252 | - $order->add_order_note( $response->error->message ); |
|
| 251 | + if ( ! empty($response->error)) { |
|
| 252 | + $order->add_order_note($response->error->message); |
|
| 253 | 253 | |
| 254 | - throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message ); |
|
| 254 | + throw new WC_Stripe_Exception(print_r($response, true), $response->error->message); |
|
| 255 | 255 | } |
| 256 | 256 | |
| 257 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
| 258 | - update_post_meta( $order_id, '_stripe_source_id', $response->id ); |
|
| 257 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
| 258 | + update_post_meta($order_id, '_stripe_source_id', $response->id); |
|
| 259 | 259 | } else { |
| 260 | - $order->update_meta_data( '_stripe_source_id', $response->id ); |
|
| 260 | + $order->update_meta_data('_stripe_source_id', $response->id); |
|
| 261 | 261 | $order->save(); |
| 262 | 262 | } |
| 263 | 263 | |
| 264 | - WC_Stripe_Logger::log( 'Info: Redirecting to iDeal...' ); |
|
| 264 | + WC_Stripe_Logger::log('Info: Redirecting to iDeal...'); |
|
| 265 | 265 | |
| 266 | 266 | return array( |
| 267 | 267 | 'result' => 'success', |
| 268 | - 'redirect' => esc_url_raw( $response->redirect->url ), |
|
| 268 | + 'redirect' => esc_url_raw($response->redirect->url), |
|
| 269 | 269 | ); |
| 270 | - } catch ( WC_Stripe_Exception $e ) { |
|
| 271 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
| 272 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 270 | + } catch (WC_Stripe_Exception $e) { |
|
| 271 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
| 272 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 273 | 273 | |
| 274 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
| 274 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
| 275 | 275 | |
| 276 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
| 277 | - $this->send_failed_order_email( $order_id ); |
|
| 276 | + if ($order->has_status(array('pending', 'failed'))) { |
|
| 277 | + $this->send_failed_order_email($order_id); |
|
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | return array( |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if ( ! defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function __construct() { |
| 59 | 59 | $this->id = 'stripe_p24'; |
| 60 | - $this->method_title = __( 'Stripe P24', 'woocommerce-gateway-stripe' ); |
|
| 60 | + $this->method_title = __('Stripe P24', 'woocommerce-gateway-stripe'); |
|
| 61 | 61 | /* translators: link */ |
| 62 | - $this->method_description = sprintf( __( 'All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=stripe' ) ); |
|
| 62 | + $this->method_description = sprintf(__('All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe'), admin_url('admin.php?page=wc-settings&tab=checkout§ion=stripe')); |
|
| 63 | 63 | $this->supports = array( |
| 64 | 64 | 'products', |
| 65 | 65 | 'refunds', |
@@ -71,23 +71,23 @@ discard block |
||
| 71 | 71 | // Load the settings. |
| 72 | 72 | $this->init_settings(); |
| 73 | 73 | |
| 74 | - $main_settings = get_option( 'woocommerce_stripe_settings' ); |
|
| 75 | - $this->title = $this->get_option( 'title' ); |
|
| 76 | - $this->description = $this->get_option( 'description' ); |
|
| 77 | - $this->enabled = $this->get_option( 'enabled' ); |
|
| 78 | - $this->testmode = ( ! empty( $main_settings['testmode'] ) && 'yes' === $main_settings['testmode'] ) ? true : false; |
|
| 79 | - $this->saved_cards = ( ! empty( $main_settings['saved_cards'] ) && 'yes' === $main_settings['saved_cards'] ) ? true : false; |
|
| 80 | - $this->publishable_key = ! empty( $main_settings['publishable_key'] ) ? $main_settings['publishable_key'] : ''; |
|
| 81 | - $this->secret_key = ! empty( $main_settings['secret_key'] ) ? $main_settings['secret_key'] : ''; |
|
| 82 | - $this->statement_descriptor = ! empty( $main_settings['statement_descriptor'] ) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | - |
|
| 84 | - if ( $this->testmode ) { |
|
| 85 | - $this->publishable_key = ! empty( $main_settings['test_publishable_key'] ) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | - $this->secret_key = ! empty( $main_settings['test_secret_key'] ) ? $main_settings['test_secret_key'] : ''; |
|
| 74 | + $main_settings = get_option('woocommerce_stripe_settings'); |
|
| 75 | + $this->title = $this->get_option('title'); |
|
| 76 | + $this->description = $this->get_option('description'); |
|
| 77 | + $this->enabled = $this->get_option('enabled'); |
|
| 78 | + $this->testmode = ( ! empty($main_settings['testmode']) && 'yes' === $main_settings['testmode']) ? true : false; |
|
| 79 | + $this->saved_cards = ( ! empty($main_settings['saved_cards']) && 'yes' === $main_settings['saved_cards']) ? true : false; |
|
| 80 | + $this->publishable_key = ! empty($main_settings['publishable_key']) ? $main_settings['publishable_key'] : ''; |
|
| 81 | + $this->secret_key = ! empty($main_settings['secret_key']) ? $main_settings['secret_key'] : ''; |
|
| 82 | + $this->statement_descriptor = ! empty($main_settings['statement_descriptor']) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | + |
|
| 84 | + if ($this->testmode) { |
|
| 85 | + $this->publishable_key = ! empty($main_settings['test_publishable_key']) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | + $this->secret_key = ! empty($main_settings['test_secret_key']) ? $main_settings['test_secret_key'] : ''; |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); |
|
| 90 | - add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) ); |
|
| 89 | + add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options')); |
|
| 90 | + add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | /** |
@@ -98,10 +98,10 @@ discard block |
||
| 98 | 98 | * @return array |
| 99 | 99 | */ |
| 100 | 100 | public function get_supported_currency() { |
| 101 | - return apply_filters( 'wc_stripe_p24_supported_currencies', array( |
|
| 101 | + return apply_filters('wc_stripe_p24_supported_currencies', array( |
|
| 102 | 102 | 'EUR', |
| 103 | 103 | 'PLN', |
| 104 | - ) ); |
|
| 104 | + )); |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | /** |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | * @return bool |
| 113 | 113 | */ |
| 114 | 114 | public function is_available() { |
| 115 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 115 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 116 | 116 | return false; |
| 117 | 117 | } |
| 118 | 118 | |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | |
| 134 | 134 | $icons_str .= $icons['p24']; |
| 135 | 135 | |
| 136 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
| 136 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | /** |
@@ -144,19 +144,19 @@ discard block |
||
| 144 | 144 | * @access public |
| 145 | 145 | */ |
| 146 | 146 | public function payment_scripts() { |
| 147 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
| 147 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
| 148 | 148 | return; |
| 149 | 149 | } |
| 150 | 150 | |
| 151 | - wp_enqueue_style( 'stripe_styles' ); |
|
| 152 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
| 151 | + wp_enqueue_style('stripe_styles'); |
|
| 152 | + wp_enqueue_script('woocommerce_stripe'); |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | /** |
| 156 | 156 | * Initialize Gateway Settings Form Fields. |
| 157 | 157 | */ |
| 158 | 158 | public function init_form_fields() { |
| 159 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-p24-settings.php' ); |
|
| 159 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-p24-settings.php'); |
|
| 160 | 160 | } |
| 161 | 161 | |
| 162 | 162 | /** |
@@ -168,25 +168,25 @@ discard block |
||
| 168 | 168 | $description = $this->get_description(); |
| 169 | 169 | |
| 170 | 170 | // If paying from order, we need to get total from order not cart. |
| 171 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
| 172 | - $order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) ); |
|
| 171 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
| 172 | + $order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key']))); |
|
| 173 | 173 | $total = $order->get_total(); |
| 174 | 174 | } |
| 175 | 175 | |
| 176 | - if ( is_add_payment_method_page() ) { |
|
| 177 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
| 178 | - $total = ''; |
|
| 176 | + if (is_add_payment_method_page()) { |
|
| 177 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
| 178 | + $total = ''; |
|
| 179 | 179 | } else { |
| 180 | 180 | $pay_button_text = ''; |
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | echo '<div |
| 184 | 184 | id="stripe-p24-payment-data" |
| 185 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
| 186 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
| 185 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
| 186 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
| 187 | 187 | |
| 188 | - if ( $description ) { |
|
| 189 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); |
|
| 188 | + if ($description) { |
|
| 189 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | echo '</div>'; |
@@ -200,20 +200,20 @@ discard block |
||
| 200 | 200 | * @param object $order |
| 201 | 201 | * @return mixed |
| 202 | 202 | */ |
| 203 | - public function create_source( $order ) { |
|
| 203 | + public function create_source($order) { |
|
| 204 | 204 | $currency = WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency(); |
| 205 | 205 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
| 206 | - $return_url = $this->get_stripe_return_url( $order ); |
|
| 206 | + $return_url = $this->get_stripe_return_url($order); |
|
| 207 | 207 | $post_data = array(); |
| 208 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency ); |
|
| 209 | - $post_data['currency'] = strtolower( $currency ); |
|
| 208 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency); |
|
| 209 | + $post_data['currency'] = strtolower($currency); |
|
| 210 | 210 | $post_data['type'] = 'p24'; |
| 211 | - $post_data['owner'] = $this->get_owner_details( $order ); |
|
| 212 | - $post_data['redirect'] = array( 'return_url' => $return_url ); |
|
| 211 | + $post_data['owner'] = $this->get_owner_details($order); |
|
| 212 | + $post_data['redirect'] = array('return_url' => $return_url); |
|
| 213 | 213 | |
| 214 | - WC_Stripe_Logger::log( 'Info: Begin creating P24 source' ); |
|
| 214 | + WC_Stripe_Logger::log('Info: Begin creating P24 source'); |
|
| 215 | 215 | |
| 216 | - return WC_Stripe_API::request( apply_filters( 'wc_stripe_p24_source', $post_data, $order ), 'sources' ); |
|
| 216 | + return WC_Stripe_API::request(apply_filters('wc_stripe_p24_source', $post_data, $order), 'sources'); |
|
| 217 | 217 | } |
| 218 | 218 | |
| 219 | 219 | /** |
@@ -227,51 +227,51 @@ discard block |
||
| 227 | 227 | * |
| 228 | 228 | * @return array|void |
| 229 | 229 | */ |
| 230 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
| 230 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
| 231 | 231 | try { |
| 232 | - $order = wc_get_order( $order_id ); |
|
| 232 | + $order = wc_get_order($order_id); |
|
| 233 | 233 | |
| 234 | 234 | // This will throw exception if not valid. |
| 235 | - $this->validate_minimum_order_amount( $order ); |
|
| 235 | + $this->validate_minimum_order_amount($order); |
|
| 236 | 236 | |
| 237 | 237 | // This comes from the create account checkbox in the checkout page. |
| 238 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
| 238 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
| 239 | 239 | |
| 240 | - if ( $create_account ) { |
|
| 240 | + if ($create_account) { |
|
| 241 | 241 | $new_customer_id = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(); |
| 242 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
| 242 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
| 243 | 243 | $new_stripe_customer->create_customer(); |
| 244 | 244 | } |
| 245 | 245 | |
| 246 | - $response = $this->create_source( $order ); |
|
| 246 | + $response = $this->create_source($order); |
|
| 247 | 247 | |
| 248 | - if ( ! empty( $response->error ) ) { |
|
| 249 | - $order->add_order_note( $response->error->message ); |
|
| 248 | + if ( ! empty($response->error)) { |
|
| 249 | + $order->add_order_note($response->error->message); |
|
| 250 | 250 | |
| 251 | - throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message ); |
|
| 251 | + throw new WC_Stripe_Exception(print_r($response, true), $response->error->message); |
|
| 252 | 252 | } |
| 253 | 253 | |
| 254 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
| 255 | - update_post_meta( $order_id, '_stripe_source_id', $response->id ); |
|
| 254 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
| 255 | + update_post_meta($order_id, '_stripe_source_id', $response->id); |
|
| 256 | 256 | } else { |
| 257 | - $order->update_meta_data( '_stripe_source_id', $response->id ); |
|
| 257 | + $order->update_meta_data('_stripe_source_id', $response->id); |
|
| 258 | 258 | $order->save(); |
| 259 | 259 | } |
| 260 | 260 | |
| 261 | - WC_Stripe_Logger::log( 'Info: Redirecting to P24...' ); |
|
| 261 | + WC_Stripe_Logger::log('Info: Redirecting to P24...'); |
|
| 262 | 262 | |
| 263 | 263 | return array( |
| 264 | 264 | 'result' => 'success', |
| 265 | - 'redirect' => esc_url_raw( $response->redirect->url ), |
|
| 265 | + 'redirect' => esc_url_raw($response->redirect->url), |
|
| 266 | 266 | ); |
| 267 | - } catch ( WC_Stripe_Exception $e ) { |
|
| 268 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
| 269 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 267 | + } catch (WC_Stripe_Exception $e) { |
|
| 268 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
| 269 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 270 | 270 | |
| 271 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
| 271 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
| 272 | 272 | |
| 273 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
| 274 | - $this->send_failed_order_email( $order_id ); |
|
| 273 | + if ($order->has_status(array('pending', 'failed'))) { |
|
| 274 | + $this->send_failed_order_email($order_id); |
|
| 275 | 275 | } |
| 276 | 276 | |
| 277 | 277 | 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_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,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if ( ! defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function __construct() { |
| 59 | 59 | $this->id = 'stripe_sofort'; |
| 60 | - $this->method_title = __( 'Stripe SOFORT', 'woocommerce-gateway-stripe' ); |
|
| 60 | + $this->method_title = __('Stripe SOFORT', 'woocommerce-gateway-stripe'); |
|
| 61 | 61 | /* translators: link */ |
| 62 | - $this->method_description = sprintf( __( 'All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=stripe' ) ); |
|
| 62 | + $this->method_description = sprintf(__('All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe'), admin_url('admin.php?page=wc-settings&tab=checkout§ion=stripe')); |
|
| 63 | 63 | $this->supports = array( |
| 64 | 64 | 'products', |
| 65 | 65 | 'refunds', |
@@ -71,23 +71,23 @@ discard block |
||
| 71 | 71 | // Load the settings. |
| 72 | 72 | $this->init_settings(); |
| 73 | 73 | |
| 74 | - $main_settings = get_option( 'woocommerce_stripe_settings' ); |
|
| 75 | - $this->title = $this->get_option( 'title' ); |
|
| 76 | - $this->description = $this->get_option( 'description' ); |
|
| 77 | - $this->enabled = $this->get_option( 'enabled' ); |
|
| 78 | - $this->testmode = ( ! empty( $main_settings['testmode'] ) && 'yes' === $main_settings['testmode'] ) ? true : false; |
|
| 79 | - $this->saved_cards = ( ! empty( $main_settings['saved_cards'] ) && 'yes' === $main_settings['saved_cards'] ) ? true : false; |
|
| 80 | - $this->publishable_key = ! empty( $main_settings['publishable_key'] ) ? $main_settings['publishable_key'] : ''; |
|
| 81 | - $this->secret_key = ! empty( $main_settings['secret_key'] ) ? $main_settings['secret_key'] : ''; |
|
| 82 | - $this->statement_descriptor = ! empty( $main_settings['statement_descriptor'] ) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | - |
|
| 84 | - if ( $this->testmode ) { |
|
| 85 | - $this->publishable_key = ! empty( $main_settings['test_publishable_key'] ) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | - $this->secret_key = ! empty( $main_settings['test_secret_key'] ) ? $main_settings['test_secret_key'] : ''; |
|
| 74 | + $main_settings = get_option('woocommerce_stripe_settings'); |
|
| 75 | + $this->title = $this->get_option('title'); |
|
| 76 | + $this->description = $this->get_option('description'); |
|
| 77 | + $this->enabled = $this->get_option('enabled'); |
|
| 78 | + $this->testmode = ( ! empty($main_settings['testmode']) && 'yes' === $main_settings['testmode']) ? true : false; |
|
| 79 | + $this->saved_cards = ( ! empty($main_settings['saved_cards']) && 'yes' === $main_settings['saved_cards']) ? true : false; |
|
| 80 | + $this->publishable_key = ! empty($main_settings['publishable_key']) ? $main_settings['publishable_key'] : ''; |
|
| 81 | + $this->secret_key = ! empty($main_settings['secret_key']) ? $main_settings['secret_key'] : ''; |
|
| 82 | + $this->statement_descriptor = ! empty($main_settings['statement_descriptor']) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | + |
|
| 84 | + if ($this->testmode) { |
|
| 85 | + $this->publishable_key = ! empty($main_settings['test_publishable_key']) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | + $this->secret_key = ! empty($main_settings['test_secret_key']) ? $main_settings['test_secret_key'] : ''; |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); |
|
| 90 | - add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) ); |
|
| 89 | + add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options')); |
|
| 90 | + add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | /** |
@@ -98,9 +98,9 @@ discard block |
||
| 98 | 98 | * @return array |
| 99 | 99 | */ |
| 100 | 100 | public function get_supported_currency() { |
| 101 | - return apply_filters( 'wc_stripe_sofort_supported_currencies', array( |
|
| 101 | + return apply_filters('wc_stripe_sofort_supported_currencies', array( |
|
| 102 | 102 | 'EUR', |
| 103 | - ) ); |
|
| 103 | + )); |
|
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | /** |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | * @return bool |
| 112 | 112 | */ |
| 113 | 113 | public function is_available() { |
| 114 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 114 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 115 | 115 | return false; |
| 116 | 116 | } |
| 117 | 117 | |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | |
| 133 | 133 | $icons_str .= $icons['sofort']; |
| 134 | 134 | |
| 135 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
| 135 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | /** |
@@ -143,19 +143,19 @@ discard block |
||
| 143 | 143 | * @access public |
| 144 | 144 | */ |
| 145 | 145 | public function payment_scripts() { |
| 146 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
| 146 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
| 147 | 147 | return; |
| 148 | 148 | } |
| 149 | 149 | |
| 150 | - wp_enqueue_style( 'stripe_styles' ); |
|
| 151 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
| 150 | + wp_enqueue_style('stripe_styles'); |
|
| 151 | + wp_enqueue_script('woocommerce_stripe'); |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | /** |
| 155 | 155 | * Initialize Gateway Settings Form Fields. |
| 156 | 156 | */ |
| 157 | 157 | public function init_form_fields() { |
| 158 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-sofort-settings.php' ); |
|
| 158 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-sofort-settings.php'); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | /** |
@@ -167,25 +167,25 @@ discard block |
||
| 167 | 167 | $description = $this->get_description(); |
| 168 | 168 | |
| 169 | 169 | // If paying from order, we need to get total from order not cart. |
| 170 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
| 171 | - $order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) ); |
|
| 170 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
| 171 | + $order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key']))); |
|
| 172 | 172 | $total = $order->get_total(); |
| 173 | 173 | } |
| 174 | 174 | |
| 175 | - if ( is_add_payment_method_page() ) { |
|
| 176 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
| 177 | - $total = ''; |
|
| 175 | + if (is_add_payment_method_page()) { |
|
| 176 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
| 177 | + $total = ''; |
|
| 178 | 178 | } else { |
| 179 | 179 | $pay_button_text = ''; |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | echo '<div |
| 183 | 183 | id="stripe-sofort-payment-data" |
| 184 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
| 185 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
| 184 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
| 185 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
| 186 | 186 | |
| 187 | - if ( $description ) { |
|
| 188 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); |
|
| 187 | + if ($description) { |
|
| 188 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); |
|
| 189 | 189 | } |
| 190 | 190 | |
| 191 | 191 | echo '</div>'; |
@@ -199,28 +199,28 @@ discard block |
||
| 199 | 199 | * @param object $order |
| 200 | 200 | * @return mixed |
| 201 | 201 | */ |
| 202 | - public function create_source( $order ) { |
|
| 202 | + public function create_source($order) { |
|
| 203 | 203 | $currency = WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency(); |
| 204 | 204 | $bank_country = WC_Stripe_Helper::is_pre_30() ? $order->billing_country : $order->get_billing_country(); |
| 205 | - $return_url = $this->get_stripe_return_url( $order ); |
|
| 205 | + $return_url = $this->get_stripe_return_url($order); |
|
| 206 | 206 | $post_data = array(); |
| 207 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency ); |
|
| 208 | - $post_data['currency'] = strtolower( $currency ); |
|
| 207 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency); |
|
| 208 | + $post_data['currency'] = strtolower($currency); |
|
| 209 | 209 | $post_data['type'] = 'sofort'; |
| 210 | - $post_data['owner'] = $this->get_owner_details( $order ); |
|
| 211 | - $post_data['redirect'] = array( 'return_url' => $return_url ); |
|
| 210 | + $post_data['owner'] = $this->get_owner_details($order); |
|
| 211 | + $post_data['redirect'] = array('return_url' => $return_url); |
|
| 212 | 212 | $post_data['sofort'] = array( |
| 213 | 213 | 'country' => $bank_country, |
| 214 | 214 | 'preferred_language' => $this->get_locale(), |
| 215 | 215 | ); |
| 216 | 216 | |
| 217 | - if ( ! empty( $this->statement_descriptor ) ) { |
|
| 218 | - $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $this->statement_descriptor ); |
|
| 217 | + if ( ! empty($this->statement_descriptor)) { |
|
| 218 | + $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($this->statement_descriptor); |
|
| 219 | 219 | } |
| 220 | 220 | |
| 221 | - WC_Stripe_Logger::log( 'Info: Begin creating SOFORT source' ); |
|
| 221 | + WC_Stripe_Logger::log('Info: Begin creating SOFORT source'); |
|
| 222 | 222 | |
| 223 | - return WC_Stripe_API::request( apply_filters( 'wc_stripe_sofort_source', $post_data, $order ), 'sources' ); |
|
| 223 | + return WC_Stripe_API::request(apply_filters('wc_stripe_sofort_source', $post_data, $order), 'sources'); |
|
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | /** |
@@ -234,59 +234,59 @@ discard block |
||
| 234 | 234 | * |
| 235 | 235 | * @return array|void |
| 236 | 236 | */ |
| 237 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
| 237 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
| 238 | 238 | try { |
| 239 | - $order = wc_get_order( $order_id ); |
|
| 239 | + $order = wc_get_order($order_id); |
|
| 240 | 240 | |
| 241 | 241 | // This will throw exception if not valid. |
| 242 | - $this->validate_minimum_order_amount( $order ); |
|
| 242 | + $this->validate_minimum_order_amount($order); |
|
| 243 | 243 | |
| 244 | 244 | // This comes from the create account checkbox in the checkout page. |
| 245 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
| 245 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
| 246 | 246 | |
| 247 | - if ( $create_account ) { |
|
| 247 | + if ($create_account) { |
|
| 248 | 248 | $new_customer_id = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(); |
| 249 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
| 249 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
| 250 | 250 | $new_stripe_customer->create_customer(); |
| 251 | 251 | } |
| 252 | 252 | |
| 253 | - $response = $this->create_source( $order ); |
|
| 253 | + $response = $this->create_source($order); |
|
| 254 | 254 | |
| 255 | - if ( ! empty( $response->error ) ) { |
|
| 256 | - $order->add_order_note( $response->error->message ); |
|
| 255 | + if ( ! empty($response->error)) { |
|
| 256 | + $order->add_order_note($response->error->message); |
|
| 257 | 257 | |
| 258 | 258 | $localized_messages = WC_Stripe_Helper::get_localized_messages(); |
| 259 | 259 | |
| 260 | - if ( 'invalid_sofort_country' === $response->error->code ) { |
|
| 261 | - $localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message; |
|
| 260 | + if ('invalid_sofort_country' === $response->error->code) { |
|
| 261 | + $localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message; |
|
| 262 | 262 | } else { |
| 263 | - $localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message; |
|
| 263 | + $localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message; |
|
| 264 | 264 | } |
| 265 | 265 | |
| 266 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
| 266 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
| 267 | 267 | } |
| 268 | 268 | |
| 269 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
| 270 | - update_post_meta( $order_id, '_stripe_source_id', $response->id ); |
|
| 269 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
| 270 | + update_post_meta($order_id, '_stripe_source_id', $response->id); |
|
| 271 | 271 | } else { |
| 272 | - $order->update_meta_data( '_stripe_source_id', $response->id ); |
|
| 272 | + $order->update_meta_data('_stripe_source_id', $response->id); |
|
| 273 | 273 | $order->save(); |
| 274 | 274 | } |
| 275 | 275 | |
| 276 | - WC_Stripe_Logger::log( 'Info: Redirecting to SOFORT...' ); |
|
| 276 | + WC_Stripe_Logger::log('Info: Redirecting to SOFORT...'); |
|
| 277 | 277 | |
| 278 | 278 | return array( |
| 279 | 279 | 'result' => 'success', |
| 280 | - 'redirect' => esc_url_raw( $response->redirect->url ), |
|
| 280 | + 'redirect' => esc_url_raw($response->redirect->url), |
|
| 281 | 281 | ); |
| 282 | - } catch ( WC_Stripe_Exception $e ) { |
|
| 283 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
| 284 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 282 | + } catch (WC_Stripe_Exception $e) { |
|
| 283 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
| 284 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 285 | 285 | |
| 286 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
| 286 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
| 287 | 287 | |
| 288 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
| 289 | - $this->send_failed_order_email( $order_id ); |
|
| 288 | + if ($order->has_status(array('pending', 'failed'))) { |
|
| 289 | + $this->send_failed_order_email($order_id); |
|
| 290 | 290 | } |
| 291 | 291 | |
| 292 | 292 | return array( |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if ( ! defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function __construct() { |
| 59 | 59 | $this->id = 'stripe_eps'; |
| 60 | - $this->method_title = __( 'Stripe EPS', 'woocommerce-gateway-stripe' ); |
|
| 60 | + $this->method_title = __('Stripe EPS', 'woocommerce-gateway-stripe'); |
|
| 61 | 61 | /* translators: link */ |
| 62 | - $this->method_description = sprintf( __( 'All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=stripe' ) ); |
|
| 62 | + $this->method_description = sprintf(__('All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe'), admin_url('admin.php?page=wc-settings&tab=checkout§ion=stripe')); |
|
| 63 | 63 | $this->supports = array( |
| 64 | 64 | 'products', |
| 65 | 65 | 'refunds', |
@@ -71,23 +71,23 @@ discard block |
||
| 71 | 71 | // Load the settings. |
| 72 | 72 | $this->init_settings(); |
| 73 | 73 | |
| 74 | - $main_settings = get_option( 'woocommerce_stripe_settings' ); |
|
| 75 | - $this->title = $this->get_option( 'title' ); |
|
| 76 | - $this->description = $this->get_option( 'description' ); |
|
| 77 | - $this->enabled = $this->get_option( 'enabled' ); |
|
| 78 | - $this->testmode = ( ! empty( $main_settings['testmode'] ) && 'yes' === $main_settings['testmode'] ) ? true : false; |
|
| 79 | - $this->saved_cards = ( ! empty( $main_settings['saved_cards'] ) && 'yes' === $main_settings['saved_cards'] ) ? true : false; |
|
| 80 | - $this->publishable_key = ! empty( $main_settings['publishable_key'] ) ? $main_settings['publishable_key'] : ''; |
|
| 81 | - $this->secret_key = ! empty( $main_settings['secret_key'] ) ? $main_settings['secret_key'] : ''; |
|
| 82 | - $this->statement_descriptor = ! empty( $main_settings['statement_descriptor'] ) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | - |
|
| 84 | - if ( $this->testmode ) { |
|
| 85 | - $this->publishable_key = ! empty( $main_settings['test_publishable_key'] ) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | - $this->secret_key = ! empty( $main_settings['test_secret_key'] ) ? $main_settings['test_secret_key'] : ''; |
|
| 74 | + $main_settings = get_option('woocommerce_stripe_settings'); |
|
| 75 | + $this->title = $this->get_option('title'); |
|
| 76 | + $this->description = $this->get_option('description'); |
|
| 77 | + $this->enabled = $this->get_option('enabled'); |
|
| 78 | + $this->testmode = ( ! empty($main_settings['testmode']) && 'yes' === $main_settings['testmode']) ? true : false; |
|
| 79 | + $this->saved_cards = ( ! empty($main_settings['saved_cards']) && 'yes' === $main_settings['saved_cards']) ? true : false; |
|
| 80 | + $this->publishable_key = ! empty($main_settings['publishable_key']) ? $main_settings['publishable_key'] : ''; |
|
| 81 | + $this->secret_key = ! empty($main_settings['secret_key']) ? $main_settings['secret_key'] : ''; |
|
| 82 | + $this->statement_descriptor = ! empty($main_settings['statement_descriptor']) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | + |
|
| 84 | + if ($this->testmode) { |
|
| 85 | + $this->publishable_key = ! empty($main_settings['test_publishable_key']) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | + $this->secret_key = ! empty($main_settings['test_secret_key']) ? $main_settings['test_secret_key'] : ''; |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); |
|
| 90 | - add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) ); |
|
| 89 | + add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options')); |
|
| 90 | + add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | /** |
@@ -98,9 +98,9 @@ discard block |
||
| 98 | 98 | * @return array |
| 99 | 99 | */ |
| 100 | 100 | public function get_supported_currency() { |
| 101 | - return apply_filters( 'wc_stripe_eps_supported_currencies', array( |
|
| 101 | + return apply_filters('wc_stripe_eps_supported_currencies', array( |
|
| 102 | 102 | 'EUR', |
| 103 | - ) ); |
|
| 103 | + )); |
|
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | /** |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | * @return bool |
| 112 | 112 | */ |
| 113 | 113 | public function is_available() { |
| 114 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 114 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 115 | 115 | return false; |
| 116 | 116 | } |
| 117 | 117 | |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | |
| 133 | 133 | $icons_str .= $icons['eps']; |
| 134 | 134 | |
| 135 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
| 135 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | /** |
@@ -143,19 +143,19 @@ discard block |
||
| 143 | 143 | * @access public |
| 144 | 144 | */ |
| 145 | 145 | public function payment_scripts() { |
| 146 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
| 146 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
| 147 | 147 | return; |
| 148 | 148 | } |
| 149 | 149 | |
| 150 | - wp_enqueue_style( 'stripe_styles' ); |
|
| 151 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
| 150 | + wp_enqueue_style('stripe_styles'); |
|
| 151 | + wp_enqueue_script('woocommerce_stripe'); |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | /** |
| 155 | 155 | * Initialize Gateway Settings Form Fields. |
| 156 | 156 | */ |
| 157 | 157 | public function init_form_fields() { |
| 158 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-eps-settings.php' ); |
|
| 158 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-eps-settings.php'); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | /** |
@@ -167,25 +167,25 @@ discard block |
||
| 167 | 167 | $description = $this->get_description(); |
| 168 | 168 | |
| 169 | 169 | // If paying from order, we need to get total from order not cart. |
| 170 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
| 171 | - $order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) ); |
|
| 170 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
| 171 | + $order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key']))); |
|
| 172 | 172 | $total = $order->get_total(); |
| 173 | 173 | } |
| 174 | 174 | |
| 175 | - if ( is_add_payment_method_page() ) { |
|
| 176 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
| 177 | - $total = ''; |
|
| 175 | + if (is_add_payment_method_page()) { |
|
| 176 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
| 177 | + $total = ''; |
|
| 178 | 178 | } else { |
| 179 | 179 | $pay_button_text = ''; |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | echo '<div |
| 183 | 183 | id="stripe-eps-payment-data" |
| 184 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
| 185 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
| 184 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
| 185 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
| 186 | 186 | |
| 187 | - if ( $description ) { |
|
| 188 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); |
|
| 187 | + if ($description) { |
|
| 188 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); |
|
| 189 | 189 | } |
| 190 | 190 | |
| 191 | 191 | echo '</div>'; |
@@ -199,24 +199,24 @@ discard block |
||
| 199 | 199 | * @param object $order |
| 200 | 200 | * @return mixed |
| 201 | 201 | */ |
| 202 | - public function create_source( $order ) { |
|
| 202 | + public function create_source($order) { |
|
| 203 | 203 | $currency = WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency(); |
| 204 | 204 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
| 205 | - $return_url = $this->get_stripe_return_url( $order ); |
|
| 205 | + $return_url = $this->get_stripe_return_url($order); |
|
| 206 | 206 | $post_data = array(); |
| 207 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency ); |
|
| 208 | - $post_data['currency'] = strtolower( $currency ); |
|
| 207 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency); |
|
| 208 | + $post_data['currency'] = strtolower($currency); |
|
| 209 | 209 | $post_data['type'] = 'eps'; |
| 210 | - $post_data['owner'] = $this->get_owner_details( $order ); |
|
| 211 | - $post_data['redirect'] = array( 'return_url' => $return_url ); |
|
| 210 | + $post_data['owner'] = $this->get_owner_details($order); |
|
| 211 | + $post_data['redirect'] = array('return_url' => $return_url); |
|
| 212 | 212 | |
| 213 | - if ( ! empty( $this->statement_descriptor ) ) { |
|
| 214 | - $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $this->statement_descriptor ); |
|
| 213 | + if ( ! empty($this->statement_descriptor)) { |
|
| 214 | + $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($this->statement_descriptor); |
|
| 215 | 215 | } |
| 216 | 216 | |
| 217 | - WC_Stripe_Logger::log( 'Info: Begin creating EPS source' ); |
|
| 217 | + WC_Stripe_Logger::log('Info: Begin creating EPS source'); |
|
| 218 | 218 | |
| 219 | - return WC_Stripe_API::request( $post_data, 'sources' ); |
|
| 219 | + return WC_Stripe_API::request($post_data, 'sources'); |
|
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | /** |
@@ -230,51 +230,51 @@ discard block |
||
| 230 | 230 | * |
| 231 | 231 | * @return array|void |
| 232 | 232 | */ |
| 233 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
| 233 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
| 234 | 234 | try { |
| 235 | - $order = wc_get_order( $order_id ); |
|
| 235 | + $order = wc_get_order($order_id); |
|
| 236 | 236 | |
| 237 | 237 | // This will throw exception if not valid. |
| 238 | - $this->validate_minimum_order_amount( $order ); |
|
| 238 | + $this->validate_minimum_order_amount($order); |
|
| 239 | 239 | |
| 240 | 240 | // This comes from the create account checkbox in the checkout page. |
| 241 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
| 241 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
| 242 | 242 | |
| 243 | - if ( $create_account ) { |
|
| 243 | + if ($create_account) { |
|
| 244 | 244 | $new_customer_id = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(); |
| 245 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
| 245 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
| 246 | 246 | $new_stripe_customer->create_customer(); |
| 247 | 247 | } |
| 248 | 248 | |
| 249 | - $response = $this->create_source( $order ); |
|
| 249 | + $response = $this->create_source($order); |
|
| 250 | 250 | |
| 251 | - if ( ! empty( $response->error ) ) { |
|
| 252 | - $order->add_order_note( $response->error->message ); |
|
| 251 | + if ( ! empty($response->error)) { |
|
| 252 | + $order->add_order_note($response->error->message); |
|
| 253 | 253 | |
| 254 | - throw new Exception( $response->error->message ); |
|
| 254 | + throw new Exception($response->error->message); |
|
| 255 | 255 | } |
| 256 | 256 | |
| 257 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
| 258 | - update_post_meta( $order_id, '_stripe_source_id', $response->id ); |
|
| 257 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
| 258 | + update_post_meta($order_id, '_stripe_source_id', $response->id); |
|
| 259 | 259 | } else { |
| 260 | - $order->update_meta_data( '_stripe_source_id', $response->id ); |
|
| 260 | + $order->update_meta_data('_stripe_source_id', $response->id); |
|
| 261 | 261 | $order->save(); |
| 262 | 262 | } |
| 263 | 263 | |
| 264 | - WC_Stripe_Logger::log( 'Info: Redirecting to EPS...' ); |
|
| 264 | + WC_Stripe_Logger::log('Info: Redirecting to EPS...'); |
|
| 265 | 265 | |
| 266 | 266 | return array( |
| 267 | 267 | 'result' => 'success', |
| 268 | - 'redirect' => esc_url_raw( $response->redirect->url ), |
|
| 268 | + 'redirect' => esc_url_raw($response->redirect->url), |
|
| 269 | 269 | ); |
| 270 | - } catch ( Exception $e ) { |
|
| 271 | - wc_add_notice( $e->getMessage(), 'error' ); |
|
| 272 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 270 | + } catch (Exception $e) { |
|
| 271 | + wc_add_notice($e->getMessage(), 'error'); |
|
| 272 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 273 | 273 | |
| 274 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
| 274 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
| 275 | 275 | |
| 276 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
| 277 | - $this->send_failed_order_email( $order_id ); |
|
| 276 | + if ($order->has_status(array('pending', 'failed'))) { |
|
| 277 | + $this->send_failed_order_email($order_id); |
|
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | 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 | |
@@ -64,9 +64,9 @@ discard block |
||
| 64 | 64 | */ |
| 65 | 65 | public function __construct() { |
| 66 | 66 | $this->id = 'stripe_bitcoin'; |
| 67 | - $this->method_title = __( 'Stripe Bitcoin', 'woocommerce-gateway-stripe' ); |
|
| 67 | + $this->method_title = __('Stripe Bitcoin', 'woocommerce-gateway-stripe'); |
|
| 68 | 68 | /* translators: link */ |
| 69 | - $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' ) ); |
|
| 69 | + $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')); |
|
| 70 | 70 | $this->supports = array( |
| 71 | 71 | 'products', |
| 72 | 72 | 'refunds', |
@@ -78,27 +78,27 @@ discard block |
||
| 78 | 78 | // Load the settings. |
| 79 | 79 | $this->init_settings(); |
| 80 | 80 | |
| 81 | - $main_settings = get_option( 'woocommerce_stripe_settings' ); |
|
| 82 | - $this->title = $this->get_option( 'title' ); |
|
| 83 | - $this->description = $this->get_option( 'description' ); |
|
| 84 | - $this->enabled = $this->get_option( 'enabled' ); |
|
| 85 | - $this->testmode = ( ! empty( $main_settings['testmode'] ) && 'yes' === $main_settings['testmode'] ) ? true : false; |
|
| 86 | - $this->saved_cards = ( ! empty( $main_settings['saved_cards'] ) && 'yes' === $main_settings['saved_cards'] ) ? true : false; |
|
| 87 | - $this->publishable_key = ! empty( $main_settings['publishable_key'] ) ? $main_settings['publishable_key'] : ''; |
|
| 88 | - $this->secret_key = ! empty( $main_settings['secret_key'] ) ? $main_settings['secret_key'] : ''; |
|
| 89 | - $this->statement_descriptor = ! empty( $main_settings['statement_descriptor'] ) ? $main_settings['statement_descriptor'] : ''; |
|
| 90 | - |
|
| 91 | - if ( $this->testmode ) { |
|
| 92 | - $this->publishable_key = ! empty( $main_settings['test_publishable_key'] ) ? $main_settings['test_publishable_key'] : ''; |
|
| 93 | - $this->secret_key = ! empty( $main_settings['test_secret_key'] ) ? $main_settings['test_secret_key'] : ''; |
|
| 81 | + $main_settings = get_option('woocommerce_stripe_settings'); |
|
| 82 | + $this->title = $this->get_option('title'); |
|
| 83 | + $this->description = $this->get_option('description'); |
|
| 84 | + $this->enabled = $this->get_option('enabled'); |
|
| 85 | + $this->testmode = ( ! empty($main_settings['testmode']) && 'yes' === $main_settings['testmode']) ? true : false; |
|
| 86 | + $this->saved_cards = ( ! empty($main_settings['saved_cards']) && 'yes' === $main_settings['saved_cards']) ? true : false; |
|
| 87 | + $this->publishable_key = ! empty($main_settings['publishable_key']) ? $main_settings['publishable_key'] : ''; |
|
| 88 | + $this->secret_key = ! empty($main_settings['secret_key']) ? $main_settings['secret_key'] : ''; |
|
| 89 | + $this->statement_descriptor = ! empty($main_settings['statement_descriptor']) ? $main_settings['statement_descriptor'] : ''; |
|
| 90 | + |
|
| 91 | + if ($this->testmode) { |
|
| 92 | + $this->publishable_key = ! empty($main_settings['test_publishable_key']) ? $main_settings['test_publishable_key'] : ''; |
|
| 93 | + $this->secret_key = ! empty($main_settings['test_secret_key']) ? $main_settings['test_secret_key'] : ''; |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); |
|
| 97 | - add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) ); |
|
| 98 | - add_action( 'woocommerce_thankyou_stripe_bitcoin', array( $this, 'thankyou_page' ) ); |
|
| 96 | + add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options')); |
|
| 97 | + add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); |
|
| 98 | + add_action('woocommerce_thankyou_stripe_bitcoin', array($this, 'thankyou_page')); |
|
| 99 | 99 | |
| 100 | 100 | // Customer Emails. |
| 101 | - add_action( 'woocommerce_email_before_order_table', array( $this, 'email_instructions' ), 10, 3 ); |
|
| 101 | + add_action('woocommerce_email_before_order_table', array($this, 'email_instructions'), 10, 3); |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | /** |
@@ -109,9 +109,9 @@ discard block |
||
| 109 | 109 | * @return array |
| 110 | 110 | */ |
| 111 | 111 | public function get_supported_currency() { |
| 112 | - return apply_filters( 'wc_stripe_bitcoin_supported_currencies', array( |
|
| 112 | + return apply_filters('wc_stripe_bitcoin_supported_currencies', array( |
|
| 113 | 113 | 'USD', |
| 114 | - ) ); |
|
| 114 | + )); |
|
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | /** |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | * @return bool |
| 123 | 123 | */ |
| 124 | 124 | public function is_available() { |
| 125 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 125 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 126 | 126 | return false; |
| 127 | 127 | } |
| 128 | 128 | |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | |
| 144 | 144 | $icons_str .= $icons['bitcoin']; |
| 145 | 145 | |
| 146 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
| 146 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | /** |
@@ -154,19 +154,19 @@ discard block |
||
| 154 | 154 | * @access public |
| 155 | 155 | */ |
| 156 | 156 | public function payment_scripts() { |
| 157 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
| 157 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
| 158 | 158 | return; |
| 159 | 159 | } |
| 160 | 160 | |
| 161 | - wp_enqueue_style( 'stripe_styles' ); |
|
| 162 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
| 161 | + wp_enqueue_style('stripe_styles'); |
|
| 162 | + wp_enqueue_script('woocommerce_stripe'); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |
| 166 | 166 | * Initialize Gateway Settings Form Fields. |
| 167 | 167 | */ |
| 168 | 168 | public function init_form_fields() { |
| 169 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-bitcoin-settings.php' ); |
|
| 169 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-bitcoin-settings.php'); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | /** |
@@ -178,25 +178,25 @@ discard block |
||
| 178 | 178 | $description = $this->get_description(); |
| 179 | 179 | |
| 180 | 180 | // If paying from order, we need to get total from order not cart. |
| 181 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
| 182 | - $order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) ); |
|
| 181 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
| 182 | + $order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key']))); |
|
| 183 | 183 | $total = $order->get_total(); |
| 184 | 184 | } |
| 185 | 185 | |
| 186 | - if ( is_add_payment_method_page() ) { |
|
| 187 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
| 188 | - $total = ''; |
|
| 186 | + if (is_add_payment_method_page()) { |
|
| 187 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
| 188 | + $total = ''; |
|
| 189 | 189 | } else { |
| 190 | 190 | $pay_button_text = ''; |
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | echo '<div |
| 194 | 194 | id="stripe-bitcoin-payment-data" |
| 195 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
| 196 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
| 195 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
| 196 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
| 197 | 197 | |
| 198 | - if ( $description ) { |
|
| 199 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); |
|
| 198 | + if ($description) { |
|
| 199 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); |
|
| 200 | 200 | } |
| 201 | 201 | |
| 202 | 202 | echo '</div>'; |
@@ -207,8 +207,8 @@ discard block |
||
| 207 | 207 | * |
| 208 | 208 | * @param int $order_id |
| 209 | 209 | */ |
| 210 | - public function thankyou_page( $order_id ) { |
|
| 211 | - $this->get_instructions( $order_id ); |
|
| 210 | + public function thankyou_page($order_id) { |
|
| 211 | + $this->get_instructions($order_id); |
|
| 212 | 212 | } |
| 213 | 213 | |
| 214 | 214 | /** |
@@ -220,15 +220,15 @@ discard block |
||
| 220 | 220 | * @param bool $sent_to_admin |
| 221 | 221 | * @param bool $plain_text |
| 222 | 222 | */ |
| 223 | - public function email_instructions( $order, $sent_to_admin, $plain_text = false ) { |
|
| 223 | + public function email_instructions($order, $sent_to_admin, $plain_text = false) { |
|
| 224 | 224 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
| 225 | 225 | |
| 226 | 226 | $payment_method = WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method(); |
| 227 | 227 | |
| 228 | - if ( ! $sent_to_admin && 'stripe_bitcoin' === $payment_method && $order->has_status( 'on-hold' ) ) { |
|
| 229 | - WC_Stripe_Logger::log( 'Sending bitcoin email for order #' . $order_id ); |
|
| 228 | + if ( ! $sent_to_admin && 'stripe_bitcoin' === $payment_method && $order->has_status('on-hold')) { |
|
| 229 | + WC_Stripe_Logger::log('Sending bitcoin email for order #' . $order_id); |
|
| 230 | 230 | |
| 231 | - $this->get_instructions( $order_id, $plain_text ); |
|
| 231 | + $this->get_instructions($order_id, $plain_text); |
|
| 232 | 232 | } |
| 233 | 233 | } |
| 234 | 234 | |
@@ -239,38 +239,38 @@ discard block |
||
| 239 | 239 | * @version 4.0.0 |
| 240 | 240 | * @param int $order_id |
| 241 | 241 | */ |
| 242 | - public function get_instructions( $order_id, $plain_text = false ) { |
|
| 243 | - $data = get_post_meta( $order_id, '_stripe_bitcoin', true ); |
|
| 242 | + public function get_instructions($order_id, $plain_text = false) { |
|
| 243 | + $data = get_post_meta($order_id, '_stripe_bitcoin', true); |
|
| 244 | 244 | |
| 245 | - if ( $plain_text ) { |
|
| 246 | - esc_html_e( 'Please pay the following:', 'woocommerce-gateway-stripe' ) . "\n\n"; |
|
| 245 | + if ($plain_text) { |
|
| 246 | + esc_html_e('Please pay the following:', 'woocommerce-gateway-stripe') . "\n\n"; |
|
| 247 | 247 | echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n"; |
| 248 | - esc_html_e( 'Bitcoin Amount:', 'woocommerce-gateway-stripe' ) . "\n\n"; |
|
| 248 | + esc_html_e('Bitcoin Amount:', 'woocommerce-gateway-stripe') . "\n\n"; |
|
| 249 | 249 | echo $data['amount'] . "\n\n"; |
| 250 | 250 | echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n"; |
| 251 | - esc_html_e( 'Receiver:', 'woocommerce-gateway-stripe' ) . "\n\n"; |
|
| 251 | + esc_html_e('Receiver:', 'woocommerce-gateway-stripe') . "\n\n"; |
|
| 252 | 252 | echo $data['address'] . "\n\n"; |
| 253 | 253 | echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n"; |
| 254 | - esc_html_e( 'URI:', 'woocommerce-gateway-stripe' ) . "\n\n"; |
|
| 254 | + esc_html_e('URI:', 'woocommerce-gateway-stripe') . "\n\n"; |
|
| 255 | 255 | echo $data['uri'] . "\n\n"; |
| 256 | 256 | } else { |
| 257 | 257 | ?> |
| 258 | - <h3><?php esc_html_e( 'Please pay the following:', 'woocommerce-gateway-stripe' ); ?></h3> |
|
| 258 | + <h3><?php esc_html_e('Please pay the following:', 'woocommerce-gateway-stripe'); ?></h3> |
|
| 259 | 259 | <ul class="woocommerce-order-overview woocommerce-thankyou-order-details order_details"> |
| 260 | 260 | <li class="woocommerce-order-overview__order order"> |
| 261 | - <?php esc_html_e( 'Bitcoin Amount:', 'woocommerce-gateway-stripe' ); ?> |
|
| 261 | + <?php esc_html_e('Bitcoin Amount:', 'woocommerce-gateway-stripe'); ?> |
|
| 262 | 262 | <strong><?php echo $data['amount']; ?></strong> |
| 263 | 263 | </li> |
| 264 | 264 | <li class="woocommerce-order-overview__order order"> |
| 265 | - <?php esc_html_e( 'Receiver:', 'woocommerce-gateway-stripe' ); ?> |
|
| 265 | + <?php esc_html_e('Receiver:', 'woocommerce-gateway-stripe'); ?> |
|
| 266 | 266 | <strong><?php echo $data['address']; ?></strong> |
| 267 | 267 | </li> |
| 268 | 268 | <li class="woocommerce-order-overview__order order"> |
| 269 | - <?php esc_html_e( 'URI:', 'woocommerce-gateway-stripe' ); ?> |
|
| 269 | + <?php esc_html_e('URI:', 'woocommerce-gateway-stripe'); ?> |
|
| 270 | 270 | <strong> |
| 271 | 271 | <?php |
| 272 | 272 | /* translators: link */ |
| 273 | - printf( __( '<a href="%s">Pay Bitcoin</a>', 'woocommerce-gateway-stripe' ), $data['uri'] ); |
|
| 273 | + printf(__('<a href="%s">Pay Bitcoin</a>', 'woocommerce-gateway-stripe'), $data['uri']); |
|
| 274 | 274 | ?> |
| 275 | 275 | </strong> |
| 276 | 276 | </li> |
@@ -287,7 +287,7 @@ discard block |
||
| 287 | 287 | * @param object $order |
| 288 | 288 | * @param object $source_object |
| 289 | 289 | */ |
| 290 | - public function save_instructions( $order, $source_object ) { |
|
| 290 | + public function save_instructions($order, $source_object) { |
|
| 291 | 291 | $data = array( |
| 292 | 292 | 'amount' => $source_object->bitcoin->amount, |
| 293 | 293 | 'address' => $source_object->bitcoin->address, |
@@ -296,7 +296,7 @@ discard block |
||
| 296 | 296 | |
| 297 | 297 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
| 298 | 298 | |
| 299 | - update_post_meta( $order_id, '_stripe_bitcoin', $data ); |
|
| 299 | + update_post_meta($order_id, '_stripe_bitcoin', $data); |
|
| 300 | 300 | } |
| 301 | 301 | |
| 302 | 302 | /** |
@@ -310,37 +310,37 @@ discard block |
||
| 310 | 310 | * |
| 311 | 311 | * @return array|void |
| 312 | 312 | */ |
| 313 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
| 313 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
| 314 | 314 | try { |
| 315 | - $order = wc_get_order( $order_id ); |
|
| 315 | + $order = wc_get_order($order_id); |
|
| 316 | 316 | |
| 317 | 317 | // This comes from the create account checkbox in the checkout page. |
| 318 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
| 318 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
| 319 | 319 | |
| 320 | - if ( $create_account ) { |
|
| 320 | + if ($create_account) { |
|
| 321 | 321 | $new_customer_id = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(); |
| 322 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
| 322 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
| 323 | 323 | $new_stripe_customer->create_customer(); |
| 324 | 324 | } |
| 325 | 325 | |
| 326 | - $prepared_source = $this->prepare_source( get_current_user_id(), $force_save_source ); |
|
| 326 | + $prepared_source = $this->prepare_source(get_current_user_id(), $force_save_source); |
|
| 327 | 327 | |
| 328 | - if ( empty( $prepared_source->source ) ) { |
|
| 329 | - $localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' ); |
|
| 330 | - throw new WC_Stripe_Exception( print_r( $prepared_source, true ), $localized_message ); |
|
| 328 | + if (empty($prepared_source->source)) { |
|
| 329 | + $localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe'); |
|
| 330 | + throw new WC_Stripe_Exception(print_r($prepared_source, true), $localized_message); |
|
| 331 | 331 | } |
| 332 | 332 | |
| 333 | - $this->save_source_to_order( $order, $prepared_source ); |
|
| 333 | + $this->save_source_to_order($order, $prepared_source); |
|
| 334 | 334 | |
| 335 | 335 | // This will throw exception if not valid. |
| 336 | - $this->validate_minimum_order_amount( $order ); |
|
| 336 | + $this->validate_minimum_order_amount($order); |
|
| 337 | 337 | |
| 338 | - $this->save_instructions( $order, $this->get_source_object( $prepared_source->source ) ); |
|
| 338 | + $this->save_instructions($order, $this->get_source_object($prepared_source->source)); |
|
| 339 | 339 | |
| 340 | 340 | // Mark as on-hold (we're awaiting the payment). |
| 341 | - $order->update_status( 'on-hold', __( 'Awaiting Bitcoin payment', 'woocommerce-gateway-stripe' ) ); |
|
| 341 | + $order->update_status('on-hold', __('Awaiting Bitcoin payment', 'woocommerce-gateway-stripe')); |
|
| 342 | 342 | |
| 343 | - wc_reduce_stock_levels( $order_id ); |
|
| 343 | + wc_reduce_stock_levels($order_id); |
|
| 344 | 344 | |
| 345 | 345 | // Remove cart. |
| 346 | 346 | WC()->cart->empty_cart(); |
@@ -348,16 +348,16 @@ discard block |
||
| 348 | 348 | // Return thankyou redirect. |
| 349 | 349 | return array( |
| 350 | 350 | 'result' => 'success', |
| 351 | - 'redirect' => $this->get_return_url( $order ), |
|
| 351 | + 'redirect' => $this->get_return_url($order), |
|
| 352 | 352 | ); |
| 353 | - } catch ( WC_Stripe_Exception $e ) { |
|
| 354 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
| 355 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 353 | + } catch (WC_Stripe_Exception $e) { |
|
| 354 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
| 355 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 356 | 356 | |
| 357 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
| 357 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
| 358 | 358 | |
| 359 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
| 360 | - $this->send_failed_order_email( $order_id ); |
|
| 359 | + if ($order->has_status(array('pending', 'failed'))) { |
|
| 360 | + $this->send_failed_order_email($order_id); |
|
| 361 | 361 | } |
| 362 | 362 | |
| 363 | 363 | return array( |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if ( ! defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function __construct() { |
| 59 | 59 | $this->id = 'stripe_giropay'; |
| 60 | - $this->method_title = __( 'Stripe Giropay', 'woocommerce-gateway-stripe' ); |
|
| 60 | + $this->method_title = __('Stripe Giropay', 'woocommerce-gateway-stripe'); |
|
| 61 | 61 | /* translators: link */ |
| 62 | - $this->method_description = sprintf( __( 'All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=stripe' ) ); |
|
| 62 | + $this->method_description = sprintf(__('All other general Stripe settings can be adjusted <a href="%s">here</a>.', 'woocommerce-gateway-stripe'), admin_url('admin.php?page=wc-settings&tab=checkout§ion=stripe')); |
|
| 63 | 63 | $this->supports = array( |
| 64 | 64 | 'products', |
| 65 | 65 | 'refunds', |
@@ -71,23 +71,23 @@ discard block |
||
| 71 | 71 | // Load the settings. |
| 72 | 72 | $this->init_settings(); |
| 73 | 73 | |
| 74 | - $main_settings = get_option( 'woocommerce_stripe_settings' ); |
|
| 75 | - $this->title = $this->get_option( 'title' ); |
|
| 76 | - $this->description = $this->get_option( 'description' ); |
|
| 77 | - $this->enabled = $this->get_option( 'enabled' ); |
|
| 78 | - $this->testmode = ( ! empty( $main_settings['testmode'] ) && 'yes' === $main_settings['testmode'] ) ? true : false; |
|
| 79 | - $this->saved_cards = ( ! empty( $main_settings['saved_cards'] ) && 'yes' === $main_settings['saved_cards'] ) ? true : false; |
|
| 80 | - $this->publishable_key = ! empty( $main_settings['publishable_key'] ) ? $main_settings['publishable_key'] : ''; |
|
| 81 | - $this->secret_key = ! empty( $main_settings['secret_key'] ) ? $main_settings['secret_key'] : ''; |
|
| 82 | - $this->statement_descriptor = ! empty( $main_settings['statement_descriptor'] ) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | - |
|
| 84 | - if ( $this->testmode ) { |
|
| 85 | - $this->publishable_key = ! empty( $main_settings['test_publishable_key'] ) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | - $this->secret_key = ! empty( $main_settings['test_secret_key'] ) ? $main_settings['test_secret_key'] : ''; |
|
| 74 | + $main_settings = get_option('woocommerce_stripe_settings'); |
|
| 75 | + $this->title = $this->get_option('title'); |
|
| 76 | + $this->description = $this->get_option('description'); |
|
| 77 | + $this->enabled = $this->get_option('enabled'); |
|
| 78 | + $this->testmode = ( ! empty($main_settings['testmode']) && 'yes' === $main_settings['testmode']) ? true : false; |
|
| 79 | + $this->saved_cards = ( ! empty($main_settings['saved_cards']) && 'yes' === $main_settings['saved_cards']) ? true : false; |
|
| 80 | + $this->publishable_key = ! empty($main_settings['publishable_key']) ? $main_settings['publishable_key'] : ''; |
|
| 81 | + $this->secret_key = ! empty($main_settings['secret_key']) ? $main_settings['secret_key'] : ''; |
|
| 82 | + $this->statement_descriptor = ! empty($main_settings['statement_descriptor']) ? $main_settings['statement_descriptor'] : ''; |
|
| 83 | + |
|
| 84 | + if ($this->testmode) { |
|
| 85 | + $this->publishable_key = ! empty($main_settings['test_publishable_key']) ? $main_settings['test_publishable_key'] : ''; |
|
| 86 | + $this->secret_key = ! empty($main_settings['test_secret_key']) ? $main_settings['test_secret_key'] : ''; |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); |
|
| 90 | - add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) ); |
|
| 89 | + add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options')); |
|
| 90 | + add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | /** |
@@ -98,9 +98,9 @@ discard block |
||
| 98 | 98 | * @return array |
| 99 | 99 | */ |
| 100 | 100 | public function get_supported_currency() { |
| 101 | - return apply_filters( 'wc_stripe_giropay_supported_currencies', array( |
|
| 101 | + return apply_filters('wc_stripe_giropay_supported_currencies', array( |
|
| 102 | 102 | 'EUR', |
| 103 | - ) ); |
|
| 103 | + )); |
|
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | /** |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | * @return bool |
| 112 | 112 | */ |
| 113 | 113 | public function is_available() { |
| 114 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 114 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 115 | 115 | return false; |
| 116 | 116 | } |
| 117 | 117 | |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | |
| 133 | 133 | $icons_str .= $icons['giropay']; |
| 134 | 134 | |
| 135 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
| 135 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | /** |
@@ -143,19 +143,19 @@ discard block |
||
| 143 | 143 | * @access public |
| 144 | 144 | */ |
| 145 | 145 | public function payment_scripts() { |
| 146 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
| 146 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
| 147 | 147 | return; |
| 148 | 148 | } |
| 149 | 149 | |
| 150 | - wp_enqueue_style( 'stripe_styles' ); |
|
| 151 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
| 150 | + wp_enqueue_style('stripe_styles'); |
|
| 151 | + wp_enqueue_script('woocommerce_stripe'); |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | /** |
| 155 | 155 | * Initialize Gateway Settings Form Fields. |
| 156 | 156 | */ |
| 157 | 157 | public function init_form_fields() { |
| 158 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-giropay-settings.php' ); |
|
| 158 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-giropay-settings.php'); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | /** |
@@ -167,25 +167,25 @@ discard block |
||
| 167 | 167 | $description = $this->get_description(); |
| 168 | 168 | |
| 169 | 169 | // If paying from order, we need to get total from order not cart. |
| 170 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
| 171 | - $order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) ); |
|
| 170 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
| 171 | + $order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key']))); |
|
| 172 | 172 | $total = $order->get_total(); |
| 173 | 173 | } |
| 174 | 174 | |
| 175 | - if ( is_add_payment_method_page() ) { |
|
| 176 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
| 177 | - $total = ''; |
|
| 175 | + if (is_add_payment_method_page()) { |
|
| 176 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
| 177 | + $total = ''; |
|
| 178 | 178 | } else { |
| 179 | 179 | $pay_button_text = ''; |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | echo '<div |
| 183 | 183 | id="stripe-giropay-payment-data" |
| 184 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
| 185 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
| 184 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
| 185 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
| 186 | 186 | |
| 187 | - if ( $description ) { |
|
| 188 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); |
|
| 187 | + if ($description) { |
|
| 188 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); |
|
| 189 | 189 | } |
| 190 | 190 | |
| 191 | 191 | echo '</div>'; |
@@ -199,24 +199,24 @@ discard block |
||
| 199 | 199 | * @param object $order |
| 200 | 200 | * @return mixed |
| 201 | 201 | */ |
| 202 | - public function create_source( $order ) { |
|
| 202 | + public function create_source($order) { |
|
| 203 | 203 | $currency = WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency(); |
| 204 | 204 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
| 205 | - $return_url = $this->get_stripe_return_url( $order ); |
|
| 205 | + $return_url = $this->get_stripe_return_url($order); |
|
| 206 | 206 | $post_data = array(); |
| 207 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency ); |
|
| 208 | - $post_data['currency'] = strtolower( $currency ); |
|
| 207 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency); |
|
| 208 | + $post_data['currency'] = strtolower($currency); |
|
| 209 | 209 | $post_data['type'] = 'giropay'; |
| 210 | - $post_data['owner'] = $this->get_owner_details( $order ); |
|
| 211 | - $post_data['redirect'] = array( 'return_url' => $return_url ); |
|
| 210 | + $post_data['owner'] = $this->get_owner_details($order); |
|
| 211 | + $post_data['redirect'] = array('return_url' => $return_url); |
|
| 212 | 212 | |
| 213 | - if ( ! empty( $this->statement_descriptor ) ) { |
|
| 214 | - $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $this->statement_descriptor ); |
|
| 213 | + if ( ! empty($this->statement_descriptor)) { |
|
| 214 | + $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($this->statement_descriptor); |
|
| 215 | 215 | } |
| 216 | 216 | |
| 217 | - WC_Stripe_Logger::log( 'Info: Begin creating Giropay source' ); |
|
| 217 | + WC_Stripe_Logger::log('Info: Begin creating Giropay source'); |
|
| 218 | 218 | |
| 219 | - return WC_Stripe_API::request( apply_filters( 'wc_stripe_giropay_source', $post_data, $order ), 'sources' ); |
|
| 219 | + return WC_Stripe_API::request(apply_filters('wc_stripe_giropay_source', $post_data, $order), 'sources'); |
|
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | /** |
@@ -230,51 +230,51 @@ discard block |
||
| 230 | 230 | * |
| 231 | 231 | * @return array|void |
| 232 | 232 | */ |
| 233 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
| 233 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
| 234 | 234 | try { |
| 235 | - $order = wc_get_order( $order_id ); |
|
| 235 | + $order = wc_get_order($order_id); |
|
| 236 | 236 | |
| 237 | 237 | // This will throw exception if not valid. |
| 238 | - $this->validate_minimum_order_amount( $order ); |
|
| 238 | + $this->validate_minimum_order_amount($order); |
|
| 239 | 239 | |
| 240 | 240 | // This comes from the create account checkbox in the checkout page. |
| 241 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
| 241 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
| 242 | 242 | |
| 243 | - if ( $create_account ) { |
|
| 243 | + if ($create_account) { |
|
| 244 | 244 | $new_customer_id = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(); |
| 245 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
| 245 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
| 246 | 246 | $new_stripe_customer->create_customer(); |
| 247 | 247 | } |
| 248 | 248 | |
| 249 | - $response = $this->create_source( $order ); |
|
| 249 | + $response = $this->create_source($order); |
|
| 250 | 250 | |
| 251 | - if ( ! empty( $response->error ) ) { |
|
| 252 | - $order->add_order_note( $response->error->message ); |
|
| 251 | + if ( ! empty($response->error)) { |
|
| 252 | + $order->add_order_note($response->error->message); |
|
| 253 | 253 | |
| 254 | - throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message ); |
|
| 254 | + throw new WC_Stripe_Exception(print_r($response, true), $response->error->message); |
|
| 255 | 255 | } |
| 256 | 256 | |
| 257 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
| 258 | - update_post_meta( $order_id, '_stripe_source_id', $response->id ); |
|
| 257 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
| 258 | + update_post_meta($order_id, '_stripe_source_id', $response->id); |
|
| 259 | 259 | } else { |
| 260 | - $order->update_meta_data( '_stripe_source_id', $response->id ); |
|
| 260 | + $order->update_meta_data('_stripe_source_id', $response->id); |
|
| 261 | 261 | $order->save(); |
| 262 | 262 | } |
| 263 | 263 | |
| 264 | - WC_Stripe_Logger::log( 'Info: Redirecting to Giropay...' ); |
|
| 264 | + WC_Stripe_Logger::log('Info: Redirecting to Giropay...'); |
|
| 265 | 265 | |
| 266 | 266 | return array( |
| 267 | 267 | 'result' => 'success', |
| 268 | - 'redirect' => esc_url_raw( $response->redirect->url ), |
|
| 268 | + 'redirect' => esc_url_raw($response->redirect->url), |
|
| 269 | 269 | ); |
| 270 | - } catch ( WC_Stripe_Exception $e ) { |
|
| 271 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
| 272 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 270 | + } catch (WC_Stripe_Exception $e) { |
|
| 271 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
| 272 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 273 | 273 | |
| 274 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
| 274 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
| 275 | 275 | |
| 276 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
| 277 | - $this->send_failed_order_email( $order_id ); |
|
| 276 | + if ($order->has_status(array('pending', 'failed'))) { |
|
| 277 | + $this->send_failed_order_email($order_id); |
|
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | 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_multibanco'; |
| 60 | - $this->method_title = __( 'Stripe Multibanco', 'woocommerce-gateway-stripe' ); |
|
| 60 | + $this->method_title = __('Stripe Multibanco', '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,27 +71,27 @@ 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' ) ); |
|
| 91 | - add_action( 'woocommerce_thankyou_stripe_multibanco', array( $this, 'thankyou_page' ) ); |
|
| 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 | + add_action('woocommerce_thankyou_stripe_multibanco', array($this, 'thankyou_page')); |
|
| 92 | 92 | |
| 93 | 93 | // Customer Emails |
| 94 | - add_action( 'woocommerce_email_before_order_table', array( $this, 'email_instructions' ), 10, 3 ); |
|
| 94 | + add_action('woocommerce_email_before_order_table', array($this, 'email_instructions'), 10, 3); |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | /** |
@@ -102,9 +102,9 @@ discard block |
||
| 102 | 102 | * @return array |
| 103 | 103 | */ |
| 104 | 104 | public function get_supported_currency() { |
| 105 | - return apply_filters( 'wc_stripe_multibanco_supported_currencies', array( |
|
| 105 | + return apply_filters('wc_stripe_multibanco_supported_currencies', array( |
|
| 106 | 106 | 'EUR', |
| 107 | - ) ); |
|
| 107 | + )); |
|
| 108 | 108 | } |
| 109 | 109 | |
| 110 | 110 | /** |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | * @return bool |
| 116 | 116 | */ |
| 117 | 117 | public function is_available() { |
| 118 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
| 118 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
| 119 | 119 | return false; |
| 120 | 120 | } |
| 121 | 121 | |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | |
| 137 | 137 | $icons_str .= $icons['multibanco']; |
| 138 | 138 | |
| 139 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
| 139 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | /** |
@@ -147,19 +147,19 @@ discard block |
||
| 147 | 147 | * @access public |
| 148 | 148 | */ |
| 149 | 149 | public function payment_scripts() { |
| 150 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
| 150 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
| 151 | 151 | return; |
| 152 | 152 | } |
| 153 | 153 | |
| 154 | - wp_enqueue_style( 'stripe_styles' ); |
|
| 155 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
| 154 | + wp_enqueue_style('stripe_styles'); |
|
| 155 | + wp_enqueue_script('woocommerce_stripe'); |
|
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | /** |
| 159 | 159 | * Initialize Gateway Settings Form Fields. |
| 160 | 160 | */ |
| 161 | 161 | public function init_form_fields() { |
| 162 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-multibanco-settings.php' ); |
|
| 162 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-multibanco-settings.php'); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |
@@ -171,25 +171,25 @@ discard block |
||
| 171 | 171 | $description = $this->get_description(); |
| 172 | 172 | |
| 173 | 173 | // If paying from order, we need to get total from order not cart. |
| 174 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
| 175 | - $order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) ); |
|
| 174 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
| 175 | + $order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key']))); |
|
| 176 | 176 | $total = $order->get_total(); |
| 177 | 177 | } |
| 178 | 178 | |
| 179 | - if ( is_add_payment_method_page() ) { |
|
| 180 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
| 181 | - $total = ''; |
|
| 179 | + if (is_add_payment_method_page()) { |
|
| 180 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
| 181 | + $total = ''; |
|
| 182 | 182 | } else { |
| 183 | 183 | $pay_button_text = ''; |
| 184 | 184 | } |
| 185 | 185 | |
| 186 | 186 | echo '<div |
| 187 | 187 | id="stripe-multibanco-payment-data" |
| 188 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
| 189 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
| 188 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
| 189 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
| 190 | 190 | |
| 191 | - if ( $description ) { |
|
| 192 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); |
|
| 191 | + if ($description) { |
|
| 192 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | echo '</div>'; |
@@ -200,8 +200,8 @@ discard block |
||
| 200 | 200 | * |
| 201 | 201 | * @param int $order_id |
| 202 | 202 | */ |
| 203 | - public function thankyou_page( $order_id ) { |
|
| 204 | - $this->get_instructions( $order_id ); |
|
| 203 | + public function thankyou_page($order_id) { |
|
| 204 | + $this->get_instructions($order_id); |
|
| 205 | 205 | } |
| 206 | 206 | |
| 207 | 207 | /** |
@@ -213,15 +213,15 @@ discard block |
||
| 213 | 213 | * @param bool $sent_to_admin |
| 214 | 214 | * @param bool $plain_text |
| 215 | 215 | */ |
| 216 | - public function email_instructions( $order, $sent_to_admin, $plain_text = false ) { |
|
| 216 | + public function email_instructions($order, $sent_to_admin, $plain_text = false) { |
|
| 217 | 217 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
| 218 | 218 | |
| 219 | 219 | $payment_method = WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method(); |
| 220 | 220 | |
| 221 | - if ( ! $sent_to_admin && 'stripe_multibanco' === $payment_method && $order->has_status( 'on-hold' ) ) { |
|
| 222 | - WC_Stripe_Logger::log( 'Sending multibanco email for order #' . $order_id ); |
|
| 221 | + if ( ! $sent_to_admin && 'stripe_multibanco' === $payment_method && $order->has_status('on-hold')) { |
|
| 222 | + WC_Stripe_Logger::log('Sending multibanco email for order #' . $order_id); |
|
| 223 | 223 | |
| 224 | - $this->get_instructions( $order_id, $plain_text ); |
|
| 224 | + $this->get_instructions($order_id, $plain_text); |
|
| 225 | 225 | } |
| 226 | 226 | } |
| 227 | 227 | |
@@ -232,34 +232,34 @@ discard block |
||
| 232 | 232 | * @version 4.1.0 |
| 233 | 233 | * @param int $order_id |
| 234 | 234 | */ |
| 235 | - public function get_instructions( $order_id, $plain_text = false ) { |
|
| 236 | - $data = get_post_meta( $order_id, '_stripe_multibanco', true ); |
|
| 235 | + public function get_instructions($order_id, $plain_text = false) { |
|
| 236 | + $data = get_post_meta($order_id, '_stripe_multibanco', true); |
|
| 237 | 237 | |
| 238 | - if ( $plain_text ) { |
|
| 239 | - esc_html_e( 'MULTIBANCO INFORMAÇÕES DE ENCOMENDA:', 'woocommerce-gateway-stripe' ) . "\n\n"; |
|
| 238 | + if ($plain_text) { |
|
| 239 | + esc_html_e('MULTIBANCO INFORMAÇÕES DE ENCOMENDA:', 'woocommerce-gateway-stripe') . "\n\n"; |
|
| 240 | 240 | echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n"; |
| 241 | - esc_html_e( 'Montante:', 'woocommerce-gateway-stripe' ) . "\n\n"; |
|
| 241 | + esc_html_e('Montante:', 'woocommerce-gateway-stripe') . "\n\n"; |
|
| 242 | 242 | echo $data['amount'] . "\n\n"; |
| 243 | 243 | echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n"; |
| 244 | - esc_html_e( 'Entidade:', 'woocommerce-gateway-stripe' ) . "\n\n"; |
|
| 244 | + esc_html_e('Entidade:', 'woocommerce-gateway-stripe') . "\n\n"; |
|
| 245 | 245 | echo $data['entity'] . "\n\n"; |
| 246 | 246 | echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n"; |
| 247 | - esc_html_e( 'Referencia:', 'woocommerce-gateway-stripe' ) . "\n\n"; |
|
| 247 | + esc_html_e('Referencia:', 'woocommerce-gateway-stripe') . "\n\n"; |
|
| 248 | 248 | echo $data['reference'] . "\n\n"; |
| 249 | 249 | } else { |
| 250 | 250 | ?> |
| 251 | - <h3><?php esc_html_e( 'MULTIBANCO INFORMAÇÕES DE ENCOMENDA:', 'woocommerce-gateway-stripe' ); ?></h3> |
|
| 251 | + <h3><?php esc_html_e('MULTIBANCO INFORMAÇÕES DE ENCOMENDA:', 'woocommerce-gateway-stripe'); ?></h3> |
|
| 252 | 252 | <ul class="woocommerce-order-overview woocommerce-thankyou-order-details order_details"> |
| 253 | 253 | <li class="woocommerce-order-overview__order order"> |
| 254 | - <?php esc_html_e( 'Montante:', 'woocommerce-gateway-stripe' ); ?> |
|
| 254 | + <?php esc_html_e('Montante:', 'woocommerce-gateway-stripe'); ?> |
|
| 255 | 255 | <strong><?php echo $data['amount']; ?></strong> |
| 256 | 256 | </li> |
| 257 | 257 | <li class="woocommerce-order-overview__order order"> |
| 258 | - <?php esc_html_e( 'Entidade:', 'woocommerce-gateway-stripe' ); ?> |
|
| 258 | + <?php esc_html_e('Entidade:', 'woocommerce-gateway-stripe'); ?> |
|
| 259 | 259 | <strong><?php echo $data['entity']; ?></strong> |
| 260 | 260 | </li> |
| 261 | 261 | <li class="woocommerce-order-overview__order order"> |
| 262 | - <?php esc_html_e( 'Referencia:', 'woocommerce-gateway-stripe' ); ?> |
|
| 262 | + <?php esc_html_e('Referencia:', 'woocommerce-gateway-stripe'); ?> |
|
| 263 | 263 | <strong><?php echo $data['reference']; ?></strong> |
| 264 | 264 | </li> |
| 265 | 265 | </ul> |
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | * @param object $order |
| 276 | 276 | * @param object $source_object |
| 277 | 277 | */ |
| 278 | - public function save_instructions( $order, $source_object ) { |
|
| 278 | + public function save_instructions($order, $source_object) { |
|
| 279 | 279 | $data = array( |
| 280 | 280 | 'amount' => $order->get_formatted_order_total(), |
| 281 | 281 | 'entity' => $source_object->multibanco->entity, |
@@ -284,7 +284,7 @@ discard block |
||
| 284 | 284 | |
| 285 | 285 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
| 286 | 286 | |
| 287 | - update_post_meta( $order_id, '_stripe_multibanco', $data ); |
|
| 287 | + update_post_meta($order_id, '_stripe_multibanco', $data); |
|
| 288 | 288 | } |
| 289 | 289 | |
| 290 | 290 | /** |
@@ -295,24 +295,24 @@ discard block |
||
| 295 | 295 | * @param object $order |
| 296 | 296 | * @return mixed |
| 297 | 297 | */ |
| 298 | - public function create_source( $order ) { |
|
| 298 | + public function create_source($order) { |
|
| 299 | 299 | $currency = WC_Stripe_Helper::is_pre_30() ? $order->get_order_currency() : $order->get_currency(); |
| 300 | 300 | $order_id = WC_Stripe_Helper::is_pre_30() ? $order->id : $order->get_id(); |
| 301 | - $return_url = $this->get_stripe_return_url( $order ); |
|
| 301 | + $return_url = $this->get_stripe_return_url($order); |
|
| 302 | 302 | $post_data = array(); |
| 303 | - $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount( $order->get_total(), $currency ); |
|
| 304 | - $post_data['currency'] = strtolower( $currency ); |
|
| 303 | + $post_data['amount'] = WC_Stripe_Helper::get_stripe_amount($order->get_total(), $currency); |
|
| 304 | + $post_data['currency'] = strtolower($currency); |
|
| 305 | 305 | $post_data['type'] = 'multibanco'; |
| 306 | - $post_data['owner'] = $this->get_owner_details( $order ); |
|
| 307 | - $post_data['redirect'] = array( 'return_url' => $return_url ); |
|
| 306 | + $post_data['owner'] = $this->get_owner_details($order); |
|
| 307 | + $post_data['redirect'] = array('return_url' => $return_url); |
|
| 308 | 308 | |
| 309 | - if ( ! empty( $this->statement_descriptor ) ) { |
|
| 310 | - $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor( $this->statement_descriptor ); |
|
| 309 | + if ( ! empty($this->statement_descriptor)) { |
|
| 310 | + $post_data['statement_descriptor'] = WC_Stripe_Helper::clean_statement_descriptor($this->statement_descriptor); |
|
| 311 | 311 | } |
| 312 | 312 | |
| 313 | - WC_Stripe_Logger::log( 'Info: Begin creating Multibanco source' ); |
|
| 313 | + WC_Stripe_Logger::log('Info: Begin creating Multibanco source'); |
|
| 314 | 314 | |
| 315 | - return WC_Stripe_API::request( $post_data, 'sources' ); |
|
| 315 | + return WC_Stripe_API::request($post_data, 'sources'); |
|
| 316 | 316 | } |
| 317 | 317 | |
| 318 | 318 | /** |
@@ -326,62 +326,62 @@ discard block |
||
| 326 | 326 | * |
| 327 | 327 | * @return array|void |
| 328 | 328 | */ |
| 329 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
| 329 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
| 330 | 330 | try { |
| 331 | - $order = wc_get_order( $order_id ); |
|
| 331 | + $order = wc_get_order($order_id); |
|
| 332 | 332 | |
| 333 | 333 | // This will throw exception if not valid. |
| 334 | - $this->validate_minimum_order_amount( $order ); |
|
| 334 | + $this->validate_minimum_order_amount($order); |
|
| 335 | 335 | |
| 336 | 336 | // This comes from the create account checkbox in the checkout page. |
| 337 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
| 337 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
| 338 | 338 | |
| 339 | - if ( $create_account ) { |
|
| 339 | + if ($create_account) { |
|
| 340 | 340 | $new_customer_id = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(); |
| 341 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
| 341 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
| 342 | 342 | $new_stripe_customer->create_customer(); |
| 343 | 343 | } |
| 344 | 344 | |
| 345 | - $response = $this->create_source( $order ); |
|
| 345 | + $response = $this->create_source($order); |
|
| 346 | 346 | |
| 347 | - if ( ! empty( $response->error ) ) { |
|
| 348 | - $order->add_order_note( $response->error->message ); |
|
| 347 | + if ( ! empty($response->error)) { |
|
| 348 | + $order->add_order_note($response->error->message); |
|
| 349 | 349 | |
| 350 | - throw new Exception( $response->error->message ); |
|
| 350 | + throw new Exception($response->error->message); |
|
| 351 | 351 | } |
| 352 | 352 | |
| 353 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
| 354 | - update_post_meta( $order_id, '_stripe_source_id', $response->id ); |
|
| 353 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
| 354 | + update_post_meta($order_id, '_stripe_source_id', $response->id); |
|
| 355 | 355 | } else { |
| 356 | - $order->update_meta_data( '_stripe_source_id', $response->id ); |
|
| 356 | + $order->update_meta_data('_stripe_source_id', $response->id); |
|
| 357 | 357 | $order->save(); |
| 358 | 358 | } |
| 359 | 359 | |
| 360 | - $this->save_instructions( $order, $response ); |
|
| 360 | + $this->save_instructions($order, $response); |
|
| 361 | 361 | |
| 362 | 362 | // Mark as on-hold (we're awaiting the payment) |
| 363 | - $order->update_status( 'on-hold', __( 'Awaiting Multibanco payment', 'woocommerce-gateway-stripe' ) ); |
|
| 363 | + $order->update_status('on-hold', __('Awaiting Multibanco payment', 'woocommerce-gateway-stripe')); |
|
| 364 | 364 | |
| 365 | 365 | // Reduce stock levels |
| 366 | - wc_reduce_stock_levels( $order_id ); |
|
| 366 | + wc_reduce_stock_levels($order_id); |
|
| 367 | 367 | |
| 368 | 368 | // Remove cart |
| 369 | 369 | WC()->cart->empty_cart(); |
| 370 | 370 | |
| 371 | - WC_Stripe_Logger::log( 'Info: Redirecting to Multibanco...' ); |
|
| 371 | + WC_Stripe_Logger::log('Info: Redirecting to Multibanco...'); |
|
| 372 | 372 | |
| 373 | 373 | return array( |
| 374 | 374 | 'result' => 'success', |
| 375 | - 'redirect' => esc_url_raw( $response->redirect->url ), |
|
| 375 | + 'redirect' => esc_url_raw($response->redirect->url), |
|
| 376 | 376 | ); |
| 377 | - } catch ( Exception $e ) { |
|
| 378 | - wc_add_notice( $e->getMessage(), 'error' ); |
|
| 379 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
| 377 | + } catch (Exception $e) { |
|
| 378 | + wc_add_notice($e->getMessage(), 'error'); |
|
| 379 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
| 380 | 380 | |
| 381 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
| 381 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
| 382 | 382 | |
| 383 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
| 384 | - $this->send_failed_order_email( $order_id ); |
|
| 383 | + if ($order->has_status(array('pending', 'failed'))) { |
|
| 384 | + $this->send_failed_order_email($order_id); |
|
| 385 | 385 | } |
| 386 | 386 | |
| 387 | 387 | return array( |