@@ -15,20 +15,20 @@ discard block |
||
15 | 15 | * |
16 | 16 | */ |
17 | 17 | |
18 | -if ( ! defined( 'ABSPATH' ) ) { |
|
18 | +if ( ! defined('ABSPATH')) { |
|
19 | 19 | exit; |
20 | 20 | } |
21 | 21 | |
22 | -if ( ! class_exists( 'WC_Stripe' ) ) : |
|
22 | +if ( ! class_exists('WC_Stripe')) : |
|
23 | 23 | /** |
24 | 24 | * Required minimums and constants |
25 | 25 | */ |
26 | - define( 'WC_STRIPE_VERSION', '4.1.0' ); |
|
27 | - define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' ); |
|
28 | - define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' ); |
|
29 | - define( 'WC_STRIPE_MAIN_FILE', __FILE__ ); |
|
30 | - define( 'WC_STRIPE_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) ); |
|
31 | - define( 'WC_STRIPE_PLUGIN_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) ); |
|
26 | + define('WC_STRIPE_VERSION', '4.1.0'); |
|
27 | + define('WC_STRIPE_MIN_PHP_VER', '5.6.0'); |
|
28 | + define('WC_STRIPE_MIN_WC_VER', '2.6.0'); |
|
29 | + define('WC_STRIPE_MAIN_FILE', __FILE__); |
|
30 | + define('WC_STRIPE_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__)))); |
|
31 | + define('WC_STRIPE_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__))); |
|
32 | 32 | |
33 | 33 | class WC_Stripe { |
34 | 34 | |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * @return Singleton The *Singleton* instance. |
49 | 49 | */ |
50 | 50 | public static function get_instance() { |
51 | - if ( null === self::$instance ) { |
|
51 | + if (null === self::$instance) { |
|
52 | 52 | self::$instance = new self(); |
53 | 53 | } |
54 | 54 | return self::$instance; |
@@ -75,8 +75,8 @@ discard block |
||
75 | 75 | * *Singleton* via the `new` operator from outside of this class. |
76 | 76 | */ |
77 | 77 | private function __construct() { |
78 | - add_action( 'admin_init', array( $this, 'install' ) ); |
|
79 | - add_action( 'plugins_loaded', array( $this, 'init' ) ); |
|
78 | + add_action('admin_init', array($this, 'install')); |
|
79 | + add_action('plugins_loaded', array($this, 'init')); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -86,51 +86,51 @@ discard block |
||
86 | 86 | * @version 4.0.0 |
87 | 87 | */ |
88 | 88 | public function init() { |
89 | - if ( function_exists( 'is_woocommerce_active' ) && ! is_woocommerce_active() ) { |
|
90 | - add_action( 'admin_notices', array( $this, 'woocommerce_missing_notice' ) ); |
|
89 | + if (function_exists('is_woocommerce_active') && ! is_woocommerce_active()) { |
|
90 | + add_action('admin_notices', array($this, 'woocommerce_missing_notice')); |
|
91 | 91 | return; |
92 | 92 | } |
93 | 93 | |
94 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-exception.php' ); |
|
95 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-logger.php' ); |
|
96 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-helper.php' ); |
|
97 | - include_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-api.php' ); |
|
94 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-exception.php'); |
|
95 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-logger.php'); |
|
96 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-helper.php'); |
|
97 | + include_once(dirname(__FILE__) . '/includes/class-wc-stripe-api.php'); |
|
98 | 98 | |
99 | - load_plugin_textdomain( 'woocommerce-gateway-stripe', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' ); |
|
99 | + load_plugin_textdomain('woocommerce-gateway-stripe', false, plugin_basename(dirname(__FILE__)) . '/languages'); |
|
100 | 100 | |
101 | - require_once( dirname( __FILE__ ) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php' ); |
|
102 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-webhook-handler.php' ); |
|
103 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-sepa-payment-token.php' ); |
|
104 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-apple-pay-registration.php' ); |
|
105 | - require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-pre-orders-compat.php' ); |
|
106 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-gateway-stripe.php' ); |
|
107 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php' ); |
|
108 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php' ); |
|
109 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php' ); |
|
110 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php' ); |
|
111 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php' ); |
|
112 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php' ); |
|
113 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php' ); |
|
114 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php' ); |
|
115 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bitcoin.php' ); |
|
116 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php' ); |
|
117 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-payment-request.php' ); |
|
118 | - require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-subs-compat.php' ); |
|
119 | - require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php' ); |
|
120 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-order-handler.php' ); |
|
121 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-payment-tokens.php' ); |
|
122 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-customer.php' ); |
|
101 | + require_once(dirname(__FILE__) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php'); |
|
102 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-webhook-handler.php'); |
|
103 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-sepa-payment-token.php'); |
|
104 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-apple-pay-registration.php'); |
|
105 | + require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-pre-orders-compat.php'); |
|
106 | + require_once(dirname(__FILE__) . '/includes/class-wc-gateway-stripe.php'); |
|
107 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php'); |
|
108 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php'); |
|
109 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php'); |
|
110 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php'); |
|
111 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php'); |
|
112 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php'); |
|
113 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php'); |
|
114 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php'); |
|
115 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-bitcoin.php'); |
|
116 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php'); |
|
117 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-stripe-payment-request.php'); |
|
118 | + require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-subs-compat.php'); |
|
119 | + require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php'); |
|
120 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-order-handler.php'); |
|
121 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-payment-tokens.php'); |
|
122 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-customer.php'); |
|
123 | 123 | |
124 | - if ( is_admin() ) { |
|
125 | - require_once( dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-admin-notices.php' ); |
|
124 | + if (is_admin()) { |
|
125 | + require_once(dirname(__FILE__) . '/includes/admin/class-wc-stripe-admin-notices.php'); |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | // REMOVE IN THE FUTURE. |
129 | - require_once( dirname( __FILE__ ) . '/includes/deprecated/class-wc-stripe-apple-pay.php' ); |
|
129 | + require_once(dirname(__FILE__) . '/includes/deprecated/class-wc-stripe-apple-pay.php'); |
|
130 | 130 | |
131 | - add_filter( 'woocommerce_payment_gateways', array( $this, 'add_gateways' ) ); |
|
132 | - add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'plugin_action_links' ) ); |
|
133 | - add_filter( 'woocommerce_get_sections_checkout', array( $this, 'filter_gateway_order_admin' ) ); |
|
131 | + add_filter('woocommerce_payment_gateways', array($this, 'add_gateways')); |
|
132 | + add_filter('plugin_action_links_' . plugin_basename(__FILE__), array($this, 'plugin_action_links')); |
|
133 | + add_filter('woocommerce_get_sections_checkout', array($this, 'filter_gateway_order_admin')); |
|
134 | 134 | } |
135 | 135 | |
136 | 136 | /** |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | * @return string |
141 | 141 | */ |
142 | 142 | public function woocommerce_missing_notice() { |
143 | - echo '<div class="error"><p><strong>' . sprintf( esc_html__( 'Stripe requires WooCommerce to be installed and active. You can download %s here.', 'woocommerce-gateway-stripe' ), '<a href="https://woocommerce.com/" target="_blank">WooCommerce</a>' ) . '</strong></p></div>'; |
|
143 | + echo '<div class="error"><p><strong>' . sprintf(esc_html__('Stripe requires WooCommerce to be installed and active. You can download %s here.', 'woocommerce-gateway-stripe'), '<a href="https://woocommerce.com/" target="_blank">WooCommerce</a>') . '</strong></p></div>'; |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -150,8 +150,8 @@ discard block |
||
150 | 150 | * @version 4.0.0 |
151 | 151 | */ |
152 | 152 | public function update_plugin_version() { |
153 | - delete_option( 'wc_stripe_version' ); |
|
154 | - update_option( 'wc_stripe_version', WC_STRIPE_VERSION ); |
|
153 | + delete_option('wc_stripe_version'); |
|
154 | + update_option('wc_stripe_version', WC_STRIPE_VERSION); |
|
155 | 155 | } |
156 | 156 | |
157 | 157 | /** |
@@ -161,15 +161,15 @@ discard block |
||
161 | 161 | * @version 3.1.0 |
162 | 162 | */ |
163 | 163 | public function install() { |
164 | - if ( ! is_plugin_active( plugin_basename( __FILE__ ) ) ) { |
|
164 | + if ( ! is_plugin_active(plugin_basename(__FILE__))) { |
|
165 | 165 | return; |
166 | 166 | } |
167 | 167 | |
168 | - if ( ! defined( 'IFRAME_REQUEST' ) && ( WC_STRIPE_VERSION !== get_option( 'wc_stripe_version' ) ) ) { |
|
169 | - do_action( 'woocommerce_stripe_updated' ); |
|
168 | + if ( ! defined('IFRAME_REQUEST') && (WC_STRIPE_VERSION !== get_option('wc_stripe_version'))) { |
|
169 | + do_action('woocommerce_stripe_updated'); |
|
170 | 170 | |
171 | - if ( ! defined( 'WC_STRIPE_INSTALLING' ) ) { |
|
172 | - define( 'WC_STRIPE_INSTALLING', true ); |
|
171 | + if ( ! defined('WC_STRIPE_INSTALLING')) { |
|
172 | + define('WC_STRIPE_INSTALLING', true); |
|
173 | 173 | } |
174 | 174 | |
175 | 175 | $this->update_plugin_version(); |
@@ -182,13 +182,13 @@ discard block |
||
182 | 182 | * @since 1.0.0 |
183 | 183 | * @version 4.0.0 |
184 | 184 | */ |
185 | - public function plugin_action_links( $links ) { |
|
185 | + public function plugin_action_links($links) { |
|
186 | 186 | $plugin_links = array( |
187 | - '<a href="admin.php?page=wc-settings&tab=checkout§ion=stripe">' . esc_html__( 'Settings', 'woocommerce-gateway-stripe' ) . '</a>', |
|
188 | - '<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__( 'Docs', 'woocommerce-gateway-stripe' ) . '</a>', |
|
189 | - '<a href="https://woocommerce.com/contact-us/">' . esc_html__( 'Support', 'woocommerce-gateway-stripe' ) . '</a>', |
|
187 | + '<a href="admin.php?page=wc-settings&tab=checkout§ion=stripe">' . esc_html__('Settings', 'woocommerce-gateway-stripe') . '</a>', |
|
188 | + '<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__('Docs', 'woocommerce-gateway-stripe') . '</a>', |
|
189 | + '<a href="https://woocommerce.com/contact-us/">' . esc_html__('Support', 'woocommerce-gateway-stripe') . '</a>', |
|
190 | 190 | ); |
191 | - return array_merge( $plugin_links, $links ); |
|
191 | + return array_merge($plugin_links, $links); |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | /** |
@@ -197,8 +197,8 @@ discard block |
||
197 | 197 | * @since 1.0.0 |
198 | 198 | * @version 4.0.0 |
199 | 199 | */ |
200 | - public function add_gateways( $methods ) { |
|
201 | - if ( class_exists( 'WC_Subscriptions_Order' ) && function_exists( 'wcs_create_renewal_order' ) ) { |
|
200 | + public function add_gateways($methods) { |
|
201 | + if (class_exists('WC_Subscriptions_Order') && function_exists('wcs_create_renewal_order')) { |
|
202 | 202 | $methods[] = 'WC_Stripe_Subs_Compat'; |
203 | 203 | $methods[] = 'WC_Stripe_Sepa_Subs_Compat'; |
204 | 204 | } else { |
@@ -225,30 +225,30 @@ discard block |
||
225 | 225 | * @since 4.0.0 |
226 | 226 | * @version 4.0.0 |
227 | 227 | */ |
228 | - public function filter_gateway_order_admin( $sections ) { |
|
229 | - unset( $sections['stripe'] ); |
|
230 | - unset( $sections['stripe_bancontact'] ); |
|
231 | - unset( $sections['stripe_sofort'] ); |
|
232 | - unset( $sections['stripe_giropay'] ); |
|
233 | - unset( $sections['stripe_eps'] ); |
|
234 | - unset( $sections['stripe_ideal'] ); |
|
235 | - unset( $sections['stripe_p24'] ); |
|
236 | - unset( $sections['stripe_alipay'] ); |
|
237 | - unset( $sections['stripe_sepa'] ); |
|
238 | - unset( $sections['stripe_bitcoin'] ); |
|
239 | - unset( $sections['stripe_multibanco'] ); |
|
228 | + public function filter_gateway_order_admin($sections) { |
|
229 | + unset($sections['stripe']); |
|
230 | + unset($sections['stripe_bancontact']); |
|
231 | + unset($sections['stripe_sofort']); |
|
232 | + unset($sections['stripe_giropay']); |
|
233 | + unset($sections['stripe_eps']); |
|
234 | + unset($sections['stripe_ideal']); |
|
235 | + unset($sections['stripe_p24']); |
|
236 | + unset($sections['stripe_alipay']); |
|
237 | + unset($sections['stripe_sepa']); |
|
238 | + unset($sections['stripe_bitcoin']); |
|
239 | + unset($sections['stripe_multibanco']); |
|
240 | 240 | |
241 | 241 | $sections['stripe'] = 'Stripe'; |
242 | - $sections['stripe_bancontact'] = __( 'Stripe Bancontact', 'woocommerce-gateway-stripe' ); |
|
243 | - $sections['stripe_sofort'] = __( 'Stripe SOFORT', 'woocommerce-gateway-stripe' ); |
|
244 | - $sections['stripe_giropay'] = __( 'Stripe Giropay', 'woocommerce-gateway-stripe' ); |
|
245 | - $sections['stripe_eps'] = __( 'Stripe EPS', 'woocommerce-gateway-stripe' ); |
|
246 | - $sections['stripe_ideal'] = __( 'Stripe iDeal', 'woocommerce-gateway-stripe' ); |
|
247 | - $sections['stripe_p24'] = __( 'Stripe P24', 'woocommerce-gateway-stripe' ); |
|
248 | - $sections['stripe_alipay'] = __( 'Stripe Alipay', 'woocommerce-gateway-stripe' ); |
|
249 | - $sections['stripe_sepa'] = __( 'Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe' ); |
|
250 | - $sections['stripe_bitcoin'] = __( 'Stripe Bitcoin', 'woocommerce-gateway-stripe' ); |
|
251 | - $sections['stripe_multibanco'] = __( 'Stripe Multibanco', 'woocommerce-gateway-stripe' ); |
|
242 | + $sections['stripe_bancontact'] = __('Stripe Bancontact', 'woocommerce-gateway-stripe'); |
|
243 | + $sections['stripe_sofort'] = __('Stripe SOFORT', 'woocommerce-gateway-stripe'); |
|
244 | + $sections['stripe_giropay'] = __('Stripe Giropay', 'woocommerce-gateway-stripe'); |
|
245 | + $sections['stripe_eps'] = __('Stripe EPS', 'woocommerce-gateway-stripe'); |
|
246 | + $sections['stripe_ideal'] = __('Stripe iDeal', 'woocommerce-gateway-stripe'); |
|
247 | + $sections['stripe_p24'] = __('Stripe P24', 'woocommerce-gateway-stripe'); |
|
248 | + $sections['stripe_alipay'] = __('Stripe Alipay', 'woocommerce-gateway-stripe'); |
|
249 | + $sections['stripe_sepa'] = __('Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe'); |
|
250 | + $sections['stripe_bitcoin'] = __('Stripe Bitcoin', 'woocommerce-gateway-stripe'); |
|
251 | + $sections['stripe_multibanco'] = __('Stripe Multibanco', 'woocommerce-gateway-stripe'); |
|
252 | 252 | |
253 | 253 | return $sections; |
254 | 254 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if ( ! defined('ABSPATH')) { |
|
3 | 3 | exit; // Exit if accessed directly |
4 | 4 | } |
5 | 5 | |
@@ -20,28 +20,28 @@ discard block |
||
20 | 20 | * @since 4.0.0 |
21 | 21 | * @version 4.0.0 |
22 | 22 | */ |
23 | - public static function log( $message, $start_time = null, $end_time = null ) { |
|
24 | - if ( ! class_exists( 'WC_Logger' ) ) { |
|
23 | + public static function log($message, $start_time = null, $end_time = null) { |
|
24 | + if ( ! class_exists('WC_Logger')) { |
|
25 | 25 | return; |
26 | 26 | } |
27 | 27 | |
28 | - if ( apply_filters( 'wc_stripe_logging', true, $message ) ) { |
|
29 | - if ( empty( self::$logger ) ) { |
|
28 | + if (apply_filters('wc_stripe_logging', true, $message)) { |
|
29 | + if (empty(self::$logger)) { |
|
30 | 30 | self::$logger = new WC_Logger(); |
31 | 31 | } |
32 | 32 | |
33 | - $settings = get_option( 'woocommerce_stripe_settings' ); |
|
33 | + $settings = get_option('woocommerce_stripe_settings'); |
|
34 | 34 | |
35 | - if ( empty( $settings ) || isset( $settings['logging'] ) && 'yes' !== $settings['logging'] ) { |
|
35 | + if (empty($settings) || isset($settings['logging']) && 'yes' !== $settings['logging']) { |
|
36 | 36 | return; |
37 | 37 | } |
38 | 38 | |
39 | - if ( ! is_null( $start_time ) ) { |
|
39 | + if ( ! is_null($start_time)) { |
|
40 | 40 | |
41 | - $formatted_start_time = date_i18n( get_option( 'date_format' ) . ' g:ia', $start_time ); |
|
42 | - $end_time = is_null( $end_time ) ? current_time( 'timestamp' ) : $end_time; |
|
43 | - $formatted_end_time = date_i18n( get_option( 'date_format' ) . ' g:ia', $end_time ); |
|
44 | - $elapsed_time = round( abs( $end_time - $start_time ) / 60, 2 ); |
|
41 | + $formatted_start_time = date_i18n(get_option('date_format') . ' g:ia', $start_time); |
|
42 | + $end_time = is_null($end_time) ? current_time('timestamp') : $end_time; |
|
43 | + $formatted_end_time = date_i18n(get_option('date_format') . ' g:ia', $end_time); |
|
44 | + $elapsed_time = round(abs($end_time - $start_time) / 60, 2); |
|
45 | 45 | |
46 | 46 | $log_entry = "\n" . '====Stripe Version: ' . WC_STRIPE_VERSION . '====' . "\n"; |
47 | 47 | $log_entry .= '====Start Log ' . $formatted_start_time . '====' . "\n" . $message . "\n"; |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | |
54 | 54 | } |
55 | 55 | |
56 | - self::$logger->add( self::WC_LOG_FILENAME, $log_entry ); |
|
56 | + self::$logger->add(self::WC_LOG_FILENAME, $log_entry); |
|
57 | 57 | } |
58 | 58 | } |
59 | 59 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if ( ! defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -21,8 +21,8 @@ discard block |
||
21 | 21 | * @since 4.1.0 |
22 | 22 | */ |
23 | 23 | public function __construct() { |
24 | - add_action( 'admin_notices', array( $this, 'admin_notices' ) ); |
|
25 | - add_action( 'wp_loaded', array( $this, 'hide_notices' ) ); |
|
24 | + add_action('admin_notices', array($this, 'admin_notices')); |
|
25 | + add_action('wp_loaded', array($this, 'hide_notices')); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | /** |
@@ -31,8 +31,8 @@ discard block |
||
31 | 31 | * @since 1.0.0 |
32 | 32 | * @version 4.0.0 |
33 | 33 | */ |
34 | - public function add_admin_notice( $slug, $class, $message, $dismissible = false ) { |
|
35 | - $this->notices[ $slug ] = array( |
|
34 | + public function add_admin_notice($slug, $class, $message, $dismissible = false) { |
|
35 | + $this->notices[$slug] = array( |
|
36 | 36 | 'class' => $class, |
37 | 37 | 'message' => $message, |
38 | 38 | 'dismissible' => $dismissible, |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | * @version 4.0.0 |
47 | 47 | */ |
48 | 48 | public function admin_notices() { |
49 | - if ( ! current_user_can( 'manage_woocommerce' ) ) { |
|
49 | + if ( ! current_user_can('manage_woocommerce')) { |
|
50 | 50 | return; |
51 | 51 | } |
52 | 52 | |
@@ -56,17 +56,17 @@ discard block |
||
56 | 56 | // All other payment methods. |
57 | 57 | $this->payment_methods_check_environment(); |
58 | 58 | |
59 | - foreach ( (array) $this->notices as $notice_key => $notice ) { |
|
60 | - echo '<div class="' . esc_attr( $notice['class'] ) . '" style="position:relative;">'; |
|
59 | + foreach ((array) $this->notices as $notice_key => $notice) { |
|
60 | + echo '<div class="' . esc_attr($notice['class']) . '" style="position:relative;">'; |
|
61 | 61 | |
62 | - if ( $notice['dismissible'] ) { |
|
62 | + if ($notice['dismissible']) { |
|
63 | 63 | ?> |
64 | - <a href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'wc-stripe-hide-notice', $notice_key ), 'wc_stripe_hide_notices_nonce', '_wc_stripe_notice_nonce' ) ); ?>" class="woocommerce-message-close notice-dismiss" style="position:absolute;right:1px;padding:9px;text-decoration:none;"></a> |
|
64 | + <a href="<?php echo esc_url(wp_nonce_url(add_query_arg('wc-stripe-hide-notice', $notice_key), 'wc_stripe_hide_notices_nonce', '_wc_stripe_notice_nonce')); ?>" class="woocommerce-message-close notice-dismiss" style="position:absolute;right:1px;padding:9px;text-decoration:none;"></a> |
|
65 | 65 | <?php |
66 | 66 | } |
67 | 67 | |
68 | 68 | echo '<p>'; |
69 | - echo wp_kses( $notice['message'], array( 'a' => array( 'href' => array() ) ) ); |
|
69 | + echo wp_kses($notice['message'], array('a' => array('href' => array()))); |
|
70 | 70 | echo '</p></div>'; |
71 | 71 | } |
72 | 72 | } |
@@ -100,85 +100,85 @@ discard block |
||
100 | 100 | * @version 4.0.0 |
101 | 101 | */ |
102 | 102 | public function stripe_check_environment() { |
103 | - $show_ssl_notice = get_option( 'wc_stripe_show_ssl_notice' ); |
|
104 | - $show_keys_notice = get_option( 'wc_stripe_show_keys_notice' ); |
|
105 | - $show_phpver_notice = get_option( 'wc_stripe_show_phpver_notice' ); |
|
106 | - $show_wcver_notice = get_option( 'wc_stripe_show_wcver_notice' ); |
|
107 | - $show_curl_notice = get_option( 'wc_stripe_show_curl_notice' ); |
|
108 | - $options = get_option( 'woocommerce_stripe_settings' ); |
|
109 | - $testmode = ( isset( $options['testmode'] ) && 'yes' === $options['testmode'] ) ? true : false; |
|
110 | - $test_pub_key = isset( $options['test_publishable_key'] ) ? $options['test_publishable_key'] : ''; |
|
111 | - $test_secret_key = isset( $options['test_secret_key'] ) ? $options['test_secret_key'] : ''; |
|
112 | - $live_pub_key = isset( $options['publishable_key'] ) ? $options['publishable_key'] : ''; |
|
113 | - $live_secret_key = isset( $options['secret_key'] ) ? $options['secret_key'] : ''; |
|
114 | - |
|
115 | - if ( isset( $options['enabled'] ) && 'yes' === $options['enabled'] ) { |
|
116 | - if ( empty( $show_phpver_notice ) ) { |
|
117 | - if ( version_compare( phpversion(), WC_STRIPE_MIN_PHP_VER, '<' ) ) { |
|
103 | + $show_ssl_notice = get_option('wc_stripe_show_ssl_notice'); |
|
104 | + $show_keys_notice = get_option('wc_stripe_show_keys_notice'); |
|
105 | + $show_phpver_notice = get_option('wc_stripe_show_phpver_notice'); |
|
106 | + $show_wcver_notice = get_option('wc_stripe_show_wcver_notice'); |
|
107 | + $show_curl_notice = get_option('wc_stripe_show_curl_notice'); |
|
108 | + $options = get_option('woocommerce_stripe_settings'); |
|
109 | + $testmode = (isset($options['testmode']) && 'yes' === $options['testmode']) ? true : false; |
|
110 | + $test_pub_key = isset($options['test_publishable_key']) ? $options['test_publishable_key'] : ''; |
|
111 | + $test_secret_key = isset($options['test_secret_key']) ? $options['test_secret_key'] : ''; |
|
112 | + $live_pub_key = isset($options['publishable_key']) ? $options['publishable_key'] : ''; |
|
113 | + $live_secret_key = isset($options['secret_key']) ? $options['secret_key'] : ''; |
|
114 | + |
|
115 | + if (isset($options['enabled']) && 'yes' === $options['enabled']) { |
|
116 | + if (empty($show_phpver_notice)) { |
|
117 | + if (version_compare(phpversion(), WC_STRIPE_MIN_PHP_VER, '<')) { |
|
118 | 118 | /* translators: 1) int version 2) int version */ |
119 | - $message = __( 'WooCommerce Stripe - The minimum PHP version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe' ); |
|
119 | + $message = __('WooCommerce Stripe - The minimum PHP version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe'); |
|
120 | 120 | |
121 | - $this->add_admin_notice( 'phpver', 'error', sprintf( $message, WC_STRIPE_MIN_PHP_VER, phpversion() ), true ); |
|
121 | + $this->add_admin_notice('phpver', 'error', sprintf($message, WC_STRIPE_MIN_PHP_VER, phpversion()), true); |
|
122 | 122 | |
123 | 123 | return; |
124 | 124 | } |
125 | 125 | } |
126 | 126 | |
127 | - if ( empty( $show_wcver_notice ) ) { |
|
128 | - if ( version_compare( WC_VERSION, WC_STRIPE_MIN_WC_VER, '<' ) ) { |
|
127 | + if (empty($show_wcver_notice)) { |
|
128 | + if (version_compare(WC_VERSION, WC_STRIPE_MIN_WC_VER, '<')) { |
|
129 | 129 | /* translators: 1) int version 2) int version */ |
130 | - $message = __( 'WooCommerce Stripe - The minimum WooCommerce version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe' ); |
|
130 | + $message = __('WooCommerce Stripe - The minimum WooCommerce version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe'); |
|
131 | 131 | |
132 | - $this->add_admin_notice( 'wcver', 'notice notice-warning', sprintf( $message, WC_STRIPE_MIN_WC_VER, WC_VERSION ), true ); |
|
132 | + $this->add_admin_notice('wcver', 'notice notice-warning', sprintf($message, WC_STRIPE_MIN_WC_VER, WC_VERSION), true); |
|
133 | 133 | |
134 | 134 | return; |
135 | 135 | } |
136 | 136 | } |
137 | 137 | |
138 | - if ( empty( $show_curl_notice ) ) { |
|
139 | - if ( ! function_exists( 'curl_init' ) ) { |
|
140 | - $this->add_admin_notice( 'curl', 'notice notice-warning', __( 'WooCommerce Stripe - cURL is not installed.', 'woocommerce-gateway-stripe' ), true ); |
|
138 | + if (empty($show_curl_notice)) { |
|
139 | + if ( ! function_exists('curl_init')) { |
|
140 | + $this->add_admin_notice('curl', 'notice notice-warning', __('WooCommerce Stripe - cURL is not installed.', 'woocommerce-gateway-stripe'), true); |
|
141 | 141 | } |
142 | 142 | } |
143 | 143 | |
144 | - if ( empty( $show_keys_notice ) ) { |
|
144 | + if (empty($show_keys_notice)) { |
|
145 | 145 | $secret = WC_Stripe_API::get_secret_key(); |
146 | 146 | |
147 | - if ( empty( $secret ) && ! ( isset( $_GET['page'], $_GET['section'] ) && 'wc-settings' === $_GET['page'] && 'stripe' === $_GET['section'] ) ) { |
|
147 | + if (empty($secret) && ! (isset($_GET['page'], $_GET['section']) && 'wc-settings' === $_GET['page'] && 'stripe' === $_GET['section'])) { |
|
148 | 148 | $setting_link = $this->get_setting_link(); |
149 | 149 | /* translators: 1) link */ |
150 | - $this->add_admin_notice( 'keys', 'notice notice-warning', sprintf( __( 'Stripe is almost ready. To get started, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), $setting_link ), true ); |
|
150 | + $this->add_admin_notice('keys', 'notice notice-warning', sprintf(__('Stripe is almost ready. To get started, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe'), $setting_link), true); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | // Check if keys are entered properly per live/test mode. |
154 | - if ( $testmode ) { |
|
154 | + if ($testmode) { |
|
155 | 155 | if ( |
156 | - ! empty( $test_pub_key ) && ! preg_match( '/^pk_test_/', $test_pub_key ) |
|
157 | - || ( ! empty( $test_secret_key ) && ! preg_match( '/^sk_test_/', $test_secret_key ) |
|
158 | - && ! empty( $test_secret_key ) && ! preg_match( '/^rk_test_/', $test_secret_key ) ) ) |
|
156 | + ! empty($test_pub_key) && ! preg_match('/^pk_test_/', $test_pub_key) |
|
157 | + || ( ! empty($test_secret_key) && ! preg_match('/^sk_test_/', $test_secret_key) |
|
158 | + && ! empty($test_secret_key) && ! preg_match('/^rk_test_/', $test_secret_key)) ) |
|
159 | 159 | { |
160 | 160 | $setting_link = $this->get_setting_link(); |
161 | 161 | /* translators: 1) link */ |
162 | - $this->add_admin_notice( 'keys', 'notice notice-error', sprintf( __( 'Stripe is in test mode however your test keys may not be valid. Test keys start with pk_test and sk_test or rk_test. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), $setting_link ), true ); |
|
162 | + $this->add_admin_notice('keys', 'notice notice-error', sprintf(__('Stripe is in test mode however your test keys may not be valid. Test keys start with pk_test and sk_test or rk_test. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe'), $setting_link), true); |
|
163 | 163 | } |
164 | 164 | } else { |
165 | 165 | if ( |
166 | - ! empty( $live_pub_key ) && ! preg_match( '/^pk_live_/', $live_pub_key ) |
|
167 | - || ( ! empty( $live_secret_key ) && ! preg_match( '/^sk_live_/', $live_secret_key ) |
|
168 | - && ! empty( $live_secret_key ) && ! preg_match( '/^rk_live_/', $live_secret_key ) ) ) |
|
166 | + ! empty($live_pub_key) && ! preg_match('/^pk_live_/', $live_pub_key) |
|
167 | + || ( ! empty($live_secret_key) && ! preg_match('/^sk_live_/', $live_secret_key) |
|
168 | + && ! empty($live_secret_key) && ! preg_match('/^rk_live_/', $live_secret_key)) ) |
|
169 | 169 | { |
170 | 170 | $setting_link = $this->get_setting_link(); |
171 | 171 | /* translators: 1) link */ |
172 | - $this->add_admin_notice( 'keys', 'notice notice-error', sprintf( __( 'Stripe is in live mode however your test keys may not be valid. Live keys start with pk_live and sk_live or rk_live. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), $setting_link ), true ); |
|
172 | + $this->add_admin_notice('keys', 'notice notice-error', sprintf(__('Stripe is in live mode however your test keys may not be valid. Live keys start with pk_live and sk_live or rk_live. Please go to your settings and, <a href="%s">set your Stripe account keys</a>.', 'woocommerce-gateway-stripe'), $setting_link), true); |
|
173 | 173 | } |
174 | 174 | } |
175 | 175 | } |
176 | 176 | |
177 | - if ( empty( $show_ssl_notice ) ) { |
|
177 | + if (empty($show_ssl_notice)) { |
|
178 | 178 | // Show message if enabled and FORCE SSL is disabled and WordpressHTTPS plugin is not detected. |
179 | - if ( ( function_exists( 'wc_site_is_https' ) && ! wc_site_is_https() ) && ( 'no' === get_option( 'woocommerce_force_ssl_checkout' ) && ! class_exists( 'WordPressHTTPS' ) ) ) { |
|
179 | + if ((function_exists('wc_site_is_https') && ! wc_site_is_https()) && ('no' === get_option('woocommerce_force_ssl_checkout') && ! class_exists('WordPressHTTPS'))) { |
|
180 | 180 | /* translators: 1) link 2) link */ |
181 | - $this->add_admin_notice( 'ssl', 'notice notice-warning', sprintf( __( 'Stripe is enabled, but the <a href="%1$s">force SSL option</a> is disabled; your checkout may not be secure! Please enable SSL and ensure your server has a valid <a href="%2$s" target="_blank">SSL certificate</a> - Stripe will only work in test mode.', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout' ), 'https://en.wikipedia.org/wiki/Transport_Layer_Security' ), true ); |
|
181 | + $this->add_admin_notice('ssl', 'notice notice-warning', sprintf(__('Stripe is enabled, but the <a href="%1$s">force SSL option</a> is disabled; your checkout may not be secure! Please enable SSL and ensure your server has a valid <a href="%2$s" target="_blank">SSL certificate</a> - Stripe will only work in test mode.', 'woocommerce-gateway-stripe'), admin_url('admin.php?page=wc-settings&tab=checkout'), 'https://en.wikipedia.org/wiki/Transport_Layer_Security'), true); |
|
182 | 182 | } |
183 | 183 | } |
184 | 184 | } |
@@ -192,16 +192,16 @@ discard block |
||
192 | 192 | public function payment_methods_check_environment() { |
193 | 193 | $payment_methods = $this->get_payment_methods(); |
194 | 194 | |
195 | - foreach ( $payment_methods as $method => $class ) { |
|
196 | - $show_notice = get_option( 'wc_stripe_show_' . strtolower( $method ) . '_notice' ); |
|
195 | + foreach ($payment_methods as $method => $class) { |
|
196 | + $show_notice = get_option('wc_stripe_show_' . strtolower($method) . '_notice'); |
|
197 | 197 | $gateway = new $class(); |
198 | 198 | |
199 | - if ( 'yes' !== $gateway->enabled || 'no' === $show_notice ) { |
|
199 | + if ('yes' !== $gateway->enabled || 'no' === $show_notice) { |
|
200 | 200 | continue; |
201 | 201 | } |
202 | 202 | |
203 | - if ( ! in_array( get_woocommerce_currency(), $gateway->get_supported_currency() ) ) { |
|
204 | - $this->add_admin_notice( $method, 'notice notice-error', sprintf( __( '%s is enabled - it requires store currency to be set to %s', 'woocommerce-gateway-stripe' ), $method, implode( ', ', $gateway->get_supported_currency() ) ), true ); |
|
203 | + if ( ! in_array(get_woocommerce_currency(), $gateway->get_supported_currency())) { |
|
204 | + $this->add_admin_notice($method, 'notice notice-error', sprintf(__('%s is enabled - it requires store currency to be set to %s', 'woocommerce-gateway-stripe'), $method, implode(', ', $gateway->get_supported_currency())), true); |
|
205 | 205 | } |
206 | 206 | } |
207 | 207 | } |
@@ -213,62 +213,62 @@ discard block |
||
213 | 213 | * @version 4.0.0 |
214 | 214 | */ |
215 | 215 | public function hide_notices() { |
216 | - if ( isset( $_GET['wc-stripe-hide-notice'] ) && isset( $_GET['_wc_stripe_notice_nonce'] ) ) { |
|
217 | - if ( ! wp_verify_nonce( $_GET['_wc_stripe_notice_nonce'], 'wc_stripe_hide_notices_nonce' ) ) { |
|
218 | - wp_die( __( 'Action failed. Please refresh the page and retry.', 'woocommerce-gateway-stripe' ) ); |
|
216 | + if (isset($_GET['wc-stripe-hide-notice']) && isset($_GET['_wc_stripe_notice_nonce'])) { |
|
217 | + if ( ! wp_verify_nonce($_GET['_wc_stripe_notice_nonce'], 'wc_stripe_hide_notices_nonce')) { |
|
218 | + wp_die(__('Action failed. Please refresh the page and retry.', 'woocommerce-gateway-stripe')); |
|
219 | 219 | } |
220 | 220 | |
221 | - if ( ! current_user_can( 'manage_woocommerce' ) ) { |
|
222 | - wp_die( __( 'Cheatin’ huh?', 'woocommerce-gateway-stripe' ) ); |
|
221 | + if ( ! current_user_can('manage_woocommerce')) { |
|
222 | + wp_die(__('Cheatin’ huh?', 'woocommerce-gateway-stripe')); |
|
223 | 223 | } |
224 | 224 | |
225 | - $notice = wc_clean( $_GET['wc-stripe-hide-notice'] ); |
|
225 | + $notice = wc_clean($_GET['wc-stripe-hide-notice']); |
|
226 | 226 | |
227 | - switch ( $notice ) { |
|
227 | + switch ($notice) { |
|
228 | 228 | case 'phpver': |
229 | - update_option( 'wc_stripe_show_phpver_notice', 'no' ); |
|
229 | + update_option('wc_stripe_show_phpver_notice', 'no'); |
|
230 | 230 | break; |
231 | 231 | case 'wcver': |
232 | - update_option( 'wc_stripe_show_wcver_notice', 'no' ); |
|
232 | + update_option('wc_stripe_show_wcver_notice', 'no'); |
|
233 | 233 | break; |
234 | 234 | case 'curl': |
235 | - update_option( 'wc_stripe_show_curl_notice', 'no' ); |
|
235 | + update_option('wc_stripe_show_curl_notice', 'no'); |
|
236 | 236 | break; |
237 | 237 | case 'ssl': |
238 | - update_option( 'wc_stripe_show_ssl_notice', 'no' ); |
|
238 | + update_option('wc_stripe_show_ssl_notice', 'no'); |
|
239 | 239 | break; |
240 | 240 | case 'keys': |
241 | - update_option( 'wc_stripe_show_keys_notice', 'no' ); |
|
241 | + update_option('wc_stripe_show_keys_notice', 'no'); |
|
242 | 242 | break; |
243 | 243 | case 'Alipay': |
244 | - update_option( 'wc_stripe_show_alipay_notice', 'no' ); |
|
244 | + update_option('wc_stripe_show_alipay_notice', 'no'); |
|
245 | 245 | break; |
246 | 246 | case 'Bancontact': |
247 | - update_option( 'wc_stripe_show_bancontact_notice', 'no' ); |
|
247 | + update_option('wc_stripe_show_bancontact_notice', 'no'); |
|
248 | 248 | break; |
249 | 249 | case 'Bitcoin': |
250 | - update_option( 'wc_stripe_show_bitcoin_notice', 'no' ); |
|
250 | + update_option('wc_stripe_show_bitcoin_notice', 'no'); |
|
251 | 251 | break; |
252 | 252 | case 'EPS': |
253 | - update_option( 'wc_stripe_show_eps_notice', 'no' ); |
|
253 | + update_option('wc_stripe_show_eps_notice', 'no'); |
|
254 | 254 | break; |
255 | 255 | case 'Giropay': |
256 | - update_option( 'wc_stripe_show_giropay_notice', 'no' ); |
|
256 | + update_option('wc_stripe_show_giropay_notice', 'no'); |
|
257 | 257 | break; |
258 | 258 | case 'iDeal': |
259 | - update_option( 'wc_stripe_show_ideal_notice', 'no' ); |
|
259 | + update_option('wc_stripe_show_ideal_notice', 'no'); |
|
260 | 260 | break; |
261 | 261 | case 'Multibanco': |
262 | - update_option( 'wc_stripe_show_multibanco_notice', 'no' ); |
|
262 | + update_option('wc_stripe_show_multibanco_notice', 'no'); |
|
263 | 263 | break; |
264 | 264 | case 'P24': |
265 | - update_option( 'wc_stripe_show_p24_notice', 'no' ); |
|
265 | + update_option('wc_stripe_show_p24_notice', 'no'); |
|
266 | 266 | break; |
267 | 267 | case 'SEPA': |
268 | - update_option( 'wc_stripe_show_sepa_notice', 'no' ); |
|
268 | + update_option('wc_stripe_show_sepa_notice', 'no'); |
|
269 | 269 | break; |
270 | 270 | case 'SOFORT': |
271 | - update_option( 'wc_stripe_show_sofort_notice', 'no' ); |
|
271 | + update_option('wc_stripe_show_sofort_notice', 'no'); |
|
272 | 272 | break; |
273 | 273 | } |
274 | 274 | } |
@@ -282,11 +282,11 @@ discard block |
||
282 | 282 | * @return string Setting link |
283 | 283 | */ |
284 | 284 | public function get_setting_link() { |
285 | - $use_id_as_section = function_exists( 'WC' ) ? version_compare( WC()->version, '2.6', '>=' ) : false; |
|
285 | + $use_id_as_section = function_exists('WC') ? version_compare(WC()->version, '2.6', '>=') : false; |
|
286 | 286 | |
287 | - $section_slug = $use_id_as_section ? 'stripe' : strtolower( 'WC_Gateway_Stripe' ); |
|
287 | + $section_slug = $use_id_as_section ? 'stripe' : strtolower('WC_Gateway_Stripe'); |
|
288 | 288 | |
289 | - return admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=' . $section_slug ); |
|
289 | + return admin_url('admin.php?page=wc-settings&tab=checkout§ion=' . $section_slug); |
|
290 | 290 | } |
291 | 291 | } |
292 | 292 |
@@ -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_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 | |
@@ -72,9 +72,9 @@ discard block |
||
72 | 72 | public function __construct() { |
73 | 73 | $this->retry_interval = 1; |
74 | 74 | $this->id = 'stripe_sepa'; |
75 | - $this->method_title = __( 'Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe' ); |
|
75 | + $this->method_title = __('Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe'); |
|
76 | 76 | /* translators: link */ |
77 | - $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' ) ); |
|
77 | + $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')); |
|
78 | 78 | $this->supports = array( |
79 | 79 | 'products', |
80 | 80 | 'refunds', |
@@ -99,28 +99,28 @@ discard block |
||
99 | 99 | // Load the settings. |
100 | 100 | $this->init_settings(); |
101 | 101 | |
102 | - $main_settings = get_option( 'woocommerce_stripe_settings' ); |
|
103 | - $this->title = $this->get_option( 'title' ); |
|
104 | - $this->description = $this->get_option( 'description' ); |
|
105 | - $this->enabled = $this->get_option( 'enabled' ); |
|
106 | - $this->testmode = ( ! empty( $main_settings['testmode'] ) && 'yes' === $main_settings['testmode'] ) ? true : false; |
|
107 | - $this->saved_cards = ( ! empty( $main_settings['saved_cards'] ) && 'yes' === $main_settings['saved_cards'] ) ? true : false; |
|
108 | - $this->publishable_key = ! empty( $main_settings['publishable_key'] ) ? $main_settings['publishable_key'] : ''; |
|
109 | - $this->secret_key = ! empty( $main_settings['secret_key'] ) ? $main_settings['secret_key'] : ''; |
|
110 | - $this->statement_descriptor = ! empty( $main_settings['statement_descriptor'] ) ? $main_settings['statement_descriptor'] : ''; |
|
111 | - |
|
112 | - if ( $this->testmode ) { |
|
113 | - $this->publishable_key = ! empty( $main_settings['test_publishable_key'] ) ? $main_settings['test_publishable_key'] : ''; |
|
114 | - $this->secret_key = ! empty( $main_settings['test_secret_key'] ) ? $main_settings['test_secret_key'] : ''; |
|
102 | + $main_settings = get_option('woocommerce_stripe_settings'); |
|
103 | + $this->title = $this->get_option('title'); |
|
104 | + $this->description = $this->get_option('description'); |
|
105 | + $this->enabled = $this->get_option('enabled'); |
|
106 | + $this->testmode = ( ! empty($main_settings['testmode']) && 'yes' === $main_settings['testmode']) ? true : false; |
|
107 | + $this->saved_cards = ( ! empty($main_settings['saved_cards']) && 'yes' === $main_settings['saved_cards']) ? true : false; |
|
108 | + $this->publishable_key = ! empty($main_settings['publishable_key']) ? $main_settings['publishable_key'] : ''; |
|
109 | + $this->secret_key = ! empty($main_settings['secret_key']) ? $main_settings['secret_key'] : ''; |
|
110 | + $this->statement_descriptor = ! empty($main_settings['statement_descriptor']) ? $main_settings['statement_descriptor'] : ''; |
|
111 | + |
|
112 | + if ($this->testmode) { |
|
113 | + $this->publishable_key = ! empty($main_settings['test_publishable_key']) ? $main_settings['test_publishable_key'] : ''; |
|
114 | + $this->secret_key = ! empty($main_settings['test_secret_key']) ? $main_settings['test_secret_key'] : ''; |
|
115 | 115 | } |
116 | 116 | |
117 | - add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); |
|
118 | - add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) ); |
|
117 | + add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options')); |
|
118 | + add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); |
|
119 | 119 | |
120 | - if ( WC_Stripe_Helper::is_pre_orders_exists() ) { |
|
120 | + if (WC_Stripe_Helper::is_pre_orders_exists()) { |
|
121 | 121 | $this->pre_orders = new WC_Stripe_Pre_Orders_Compat(); |
122 | 122 | |
123 | - add_action( 'wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array( $this->pre_orders, 'process_pre_order_release_payment' ) ); |
|
123 | + add_action('wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array($this->pre_orders, 'process_pre_order_release_payment')); |
|
124 | 124 | } |
125 | 125 | } |
126 | 126 | |
@@ -132,9 +132,9 @@ discard block |
||
132 | 132 | * @return array |
133 | 133 | */ |
134 | 134 | public function get_supported_currency() { |
135 | - return apply_filters( 'wc_stripe_sepa_supported_currencies', array( |
|
135 | + return apply_filters('wc_stripe_sepa_supported_currencies', array( |
|
136 | 136 | 'EUR', |
137 | - ) ); |
|
137 | + )); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | /** |
@@ -145,11 +145,11 @@ discard block |
||
145 | 145 | * @return bool |
146 | 146 | */ |
147 | 147 | public function is_available() { |
148 | - if ( ! in_array( get_woocommerce_currency(), $this->get_supported_currency() ) ) { |
|
148 | + if ( ! in_array(get_woocommerce_currency(), $this->get_supported_currency())) { |
|
149 | 149 | return false; |
150 | 150 | } |
151 | 151 | |
152 | - if ( is_add_payment_method_page() && ! $this->saved_cards ) { |
|
152 | + if (is_add_payment_method_page() && ! $this->saved_cards) { |
|
153 | 153 | return false; |
154 | 154 | } |
155 | 155 | |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | |
171 | 171 | $icons_str .= $icons['sepa']; |
172 | 172 | |
173 | - return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id ); |
|
173 | + return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id); |
|
174 | 174 | } |
175 | 175 | |
176 | 176 | /** |
@@ -181,19 +181,19 @@ discard block |
||
181 | 181 | * @access public |
182 | 182 | */ |
183 | 183 | public function payment_scripts() { |
184 | - if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() ) { |
|
184 | + if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page()) { |
|
185 | 185 | return; |
186 | 186 | } |
187 | 187 | |
188 | - wp_enqueue_style( 'stripe_styles' ); |
|
189 | - wp_enqueue_script( 'woocommerce_stripe' ); |
|
188 | + wp_enqueue_style('stripe_styles'); |
|
189 | + wp_enqueue_script('woocommerce_stripe'); |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
193 | 193 | * Initialize Gateway Settings Form Fields. |
194 | 194 | */ |
195 | 195 | public function init_form_fields() { |
196 | - $this->form_fields = require( WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-sepa-settings.php' ); |
|
196 | + $this->form_fields = require(WC_STRIPE_PLUGIN_PATH . '/includes/admin/stripe-sepa-settings.php'); |
|
197 | 197 | } |
198 | 198 | |
199 | 199 | /** |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | */ |
206 | 206 | public function mandate_display() { |
207 | 207 | /* translators: statement descriptor */ |
208 | - printf( __( 'By providing your IBAN and confirming this payment, you are authorizing %s and Stripe, our payment service provider, to send instructions to your bank to debit your account and your bank to debit your account in accordance with those instructions. You are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed within 8 weeks starting from the date on which your account was debited.', 'woocommerce-gateway-stripe' ), WC_Stripe_Helper::clean_statement_descriptor( $this->statement_descriptor ) ); |
|
208 | + printf(__('By providing your IBAN and confirming this payment, you are authorizing %s and Stripe, our payment service provider, to send instructions to your bank to debit your account and your bank to debit your account in accordance with those instructions. You are entitled to a refund from your bank under the terms and conditions of your agreement with your bank. A refund must be claimed within 8 weeks starting from the date on which your account was debited.', 'woocommerce-gateway-stripe'), WC_Stripe_Helper::clean_statement_descriptor($this->statement_descriptor)); |
|
209 | 209 | } |
210 | 210 | |
211 | 211 | /** |
@@ -216,24 +216,24 @@ discard block |
||
216 | 216 | */ |
217 | 217 | public function form() { |
218 | 218 | ?> |
219 | - <fieldset id="wc-<?php echo esc_attr( $this->id ); ?>-form" class="wc-payment-form"> |
|
220 | - <?php do_action( 'woocommerce_credit_card_form_start', $this->id ); ?> |
|
219 | + <fieldset id="wc-<?php echo esc_attr($this->id); ?>-form" class="wc-payment-form"> |
|
220 | + <?php do_action('woocommerce_credit_card_form_start', $this->id); ?> |
|
221 | 221 | <p class="wc-stripe-sepa-mandate" style="margin-bottom:40px;"><?php $this->mandate_display(); ?></p> |
222 | 222 | <p class="form-row form-row-wide"> |
223 | 223 | <label for="stripe-sepa-owner"> |
224 | - <?php esc_html_e( 'IBAN Account Name.', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span> |
|
224 | + <?php esc_html_e('IBAN Account Name.', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span> |
|
225 | 225 | </label> |
226 | 226 | <input id="stripe-sepa-owner" name="stripe_sepa_owner" value="" style="border:1px solid #ddd;margin:5px 0;padding:10px 5px;background-color:#fff;outline:0;" /> |
227 | 227 | </p> |
228 | 228 | <p class="form-row form-row-wide"> |
229 | 229 | <label for="stripe-sepa-iban"> |
230 | - <?php esc_html_e( 'IBAN Account Number.', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span> |
|
230 | + <?php esc_html_e('IBAN Account Number.', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span> |
|
231 | 231 | </label> |
232 | 232 | <input id="stripe-sepa-iban" name="stripe_sepa_iban" value="" style="border:1px solid #ddd;margin:5px 0;padding:10px 5px;background-color:#fff;outline:0;" /> |
233 | 233 | </p> |
234 | 234 | <!-- Used to display form errors --> |
235 | 235 | <div class="stripe-source-errors" role="alert"></div> |
236 | - <?php do_action( 'woocommerce_credit_card_form_end', $this->id ); ?> |
|
236 | + <?php do_action('woocommerce_credit_card_form_end', $this->id); ?> |
|
237 | 237 | <div class="clear"></div> |
238 | 238 | </fieldset> |
239 | 239 | <?php |
@@ -245,43 +245,43 @@ discard block |
||
245 | 245 | public function payment_fields() { |
246 | 246 | $user = wp_get_current_user(); |
247 | 247 | $total = WC()->cart->total; |
248 | - $display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards; |
|
248 | + $display_tokenization = $this->supports('tokenization') && is_checkout() && $this->saved_cards; |
|
249 | 249 | $description = $this->get_description() ? $this->get_description() : ''; |
250 | 250 | |
251 | 251 | // If paying from order, we need to get total from order not cart. |
252 | - if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) { |
|
253 | - $order = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) ); |
|
252 | + if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) { |
|
253 | + $order = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key']))); |
|
254 | 254 | $total = $order->get_total(); |
255 | 255 | } |
256 | 256 | |
257 | - if ( is_add_payment_method_page() ) { |
|
258 | - $pay_button_text = __( 'Add Payment', 'woocommerce-gateway-stripe' ); |
|
259 | - $total = ''; |
|
257 | + if (is_add_payment_method_page()) { |
|
258 | + $pay_button_text = __('Add Payment', 'woocommerce-gateway-stripe'); |
|
259 | + $total = ''; |
|
260 | 260 | } else { |
261 | 261 | $pay_button_text = ''; |
262 | 262 | } |
263 | 263 | |
264 | 264 | echo '<div |
265 | 265 | id="stripe-sepa_debit-payment-data" |
266 | - data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '" |
|
267 | - data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '">'; |
|
266 | + data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '" |
|
267 | + data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '">'; |
|
268 | 268 | |
269 | - if ( $description ) { |
|
270 | - if ( $this->testmode ) { |
|
271 | - $description .= ' ' . __( 'TEST MODE ENABLED. In test mode, you can use IBAN number DE89370400440532013000.', 'woocommerce-gateway-stripe' ); |
|
272 | - $description = trim( $description ); |
|
269 | + if ($description) { |
|
270 | + if ($this->testmode) { |
|
271 | + $description .= ' ' . __('TEST MODE ENABLED. In test mode, you can use IBAN number DE89370400440532013000.', 'woocommerce-gateway-stripe'); |
|
272 | + $description = trim($description); |
|
273 | 273 | } |
274 | - echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $description ) ), $this->id ); |
|
274 | + echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($description)), $this->id); |
|
275 | 275 | } |
276 | 276 | |
277 | - if ( $display_tokenization ) { |
|
277 | + if ($display_tokenization) { |
|
278 | 278 | $this->tokenization_script(); |
279 | 279 | $this->saved_payment_methods(); |
280 | 280 | } |
281 | 281 | |
282 | 282 | $this->form(); |
283 | 283 | |
284 | - if ( apply_filters( 'wc_stripe_display_save_payment_method_checkbox', $display_tokenization ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) ) { |
|
284 | + if (apply_filters('wc_stripe_display_save_payment_method_checkbox', $display_tokenization) && ! is_add_payment_method_page() && ! isset($_GET['change_payment_method'])) { |
|
285 | 285 | $this->save_payment_method_checkbox(); |
286 | 286 | } |
287 | 287 | |
@@ -299,99 +299,99 @@ discard block |
||
299 | 299 | * |
300 | 300 | * @return array|void |
301 | 301 | */ |
302 | - public function process_payment( $order_id, $retry = true, $force_save_source = false ) { |
|
302 | + public function process_payment($order_id, $retry = true, $force_save_source = false) { |
|
303 | 303 | try { |
304 | - $order = wc_get_order( $order_id ); |
|
304 | + $order = wc_get_order($order_id); |
|
305 | 305 | |
306 | - if ( $this->maybe_process_pre_orders( $order_id ) ) { |
|
307 | - return $this->pre_orders->process_pre_order( $order_id ); |
|
306 | + if ($this->maybe_process_pre_orders($order_id)) { |
|
307 | + return $this->pre_orders->process_pre_order($order_id); |
|
308 | 308 | } |
309 | 309 | |
310 | 310 | // This comes from the create account checkbox in the checkout page. |
311 | - $create_account = ! empty( $_POST['createaccount'] ) ? true : false; |
|
311 | + $create_account = ! empty($_POST['createaccount']) ? true : false; |
|
312 | 312 | |
313 | - if ( $create_account ) { |
|
313 | + if ($create_account) { |
|
314 | 314 | $new_customer_id = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id(); |
315 | - $new_stripe_customer = new WC_Stripe_Customer( $new_customer_id ); |
|
315 | + $new_stripe_customer = new WC_Stripe_Customer($new_customer_id); |
|
316 | 316 | $new_stripe_customer->create_customer(); |
317 | 317 | } |
318 | 318 | |
319 | - $prepared_source = $this->prepare_source( get_current_user_id(), $force_save_source ); |
|
319 | + $prepared_source = $this->prepare_source(get_current_user_id(), $force_save_source); |
|
320 | 320 | |
321 | - $this->save_source_to_order( $order, $prepared_source ); |
|
321 | + $this->save_source_to_order($order, $prepared_source); |
|
322 | 322 | |
323 | 323 | // Result from Stripe API request. |
324 | 324 | $response = null; |
325 | 325 | |
326 | - if ( $order->get_total() > 0 ) { |
|
326 | + if ($order->get_total() > 0) { |
|
327 | 327 | // This will throw exception if not valid. |
328 | - $this->validate_minimum_order_amount( $order ); |
|
328 | + $this->validate_minimum_order_amount($order); |
|
329 | 329 | |
330 | - WC_Stripe_Logger::log( "Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}" ); |
|
330 | + WC_Stripe_Logger::log("Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}"); |
|
331 | 331 | |
332 | 332 | // Make the request. |
333 | - $response = WC_Stripe_API::request( $this->generate_payment_request( $order, $prepared_source ) ); |
|
333 | + $response = WC_Stripe_API::request($this->generate_payment_request($order, $prepared_source)); |
|
334 | 334 | |
335 | - if ( ! empty( $response->error ) ) { |
|
335 | + if ( ! empty($response->error)) { |
|
336 | 336 | // Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without. |
337 | - if ( $this->is_no_such_customer_error( $response->error ) ) { |
|
338 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
339 | - delete_user_meta( $order->customer_user, '_stripe_customer_id' ); |
|
340 | - delete_post_meta( $order_id, '_stripe_customer_id' ); |
|
337 | + if ($this->is_no_such_customer_error($response->error)) { |
|
338 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
339 | + delete_user_meta($order->customer_user, '_stripe_customer_id'); |
|
340 | + delete_post_meta($order_id, '_stripe_customer_id'); |
|
341 | 341 | } else { |
342 | - delete_user_meta( $order->get_customer_id(), '_stripe_customer_id' ); |
|
343 | - $order->delete_meta_data( '_stripe_customer_id' ); |
|
342 | + delete_user_meta($order->get_customer_id(), '_stripe_customer_id'); |
|
343 | + $order->delete_meta_data('_stripe_customer_id'); |
|
344 | 344 | $order->save(); |
345 | 345 | } |
346 | 346 | } |
347 | 347 | |
348 | - if ( $this->is_no_such_token_error( $response->error ) && $prepared_source->token_id ) { |
|
348 | + if ($this->is_no_such_token_error($response->error) && $prepared_source->token_id) { |
|
349 | 349 | // Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message. |
350 | - $wc_token = WC_Payment_Tokens::get( $prepared_source->token_id ); |
|
350 | + $wc_token = WC_Payment_Tokens::get($prepared_source->token_id); |
|
351 | 351 | $wc_token->delete(); |
352 | - $localized_message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' ); |
|
353 | - $order->add_order_note( $localized_message ); |
|
354 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
352 | + $localized_message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe'); |
|
353 | + $order->add_order_note($localized_message); |
|
354 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
355 | 355 | } |
356 | 356 | |
357 | 357 | // We want to retry. |
358 | - if ( $this->is_retryable_error( $response->error ) ) { |
|
359 | - if ( $retry ) { |
|
358 | + if ($this->is_retryable_error($response->error)) { |
|
359 | + if ($retry) { |
|
360 | 360 | // Don't do anymore retries after this. |
361 | - if ( 5 <= $this->retry_interval ) { |
|
361 | + if (5 <= $this->retry_interval) { |
|
362 | 362 | |
363 | - return $this->process_payment( $order_id, false, $force_save_source ); |
|
363 | + return $this->process_payment($order_id, false, $force_save_source); |
|
364 | 364 | } |
365 | 365 | |
366 | - sleep( $this->retry_interval ); |
|
366 | + sleep($this->retry_interval); |
|
367 | 367 | |
368 | 368 | $this->retry_interval++; |
369 | 369 | |
370 | - return $this->process_payment( $order_id, true, $force_save_source ); |
|
370 | + return $this->process_payment($order_id, true, $force_save_source); |
|
371 | 371 | } else { |
372 | - $localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' ); |
|
373 | - $order->add_order_note( $localized_message ); |
|
374 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
372 | + $localized_message = __('Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe'); |
|
373 | + $order->add_order_note($localized_message); |
|
374 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
375 | 375 | } |
376 | 376 | } |
377 | 377 | |
378 | 378 | $localized_messages = WC_Stripe_Helper::get_localized_messages(); |
379 | 379 | |
380 | - if ( 'card_error' === $response->error->type ) { |
|
381 | - $localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message; |
|
380 | + if ('card_error' === $response->error->type) { |
|
381 | + $localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message; |
|
382 | 382 | } else { |
383 | - $localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message; |
|
383 | + $localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message; |
|
384 | 384 | } |
385 | 385 | |
386 | - $order->add_order_note( $localized_message ); |
|
386 | + $order->add_order_note($localized_message); |
|
387 | 387 | |
388 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
388 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
389 | 389 | } |
390 | 390 | |
391 | - do_action( 'wc_gateway_stripe_process_payment', $response, $order ); |
|
391 | + do_action('wc_gateway_stripe_process_payment', $response, $order); |
|
392 | 392 | |
393 | 393 | // Process valid response. |
394 | - $this->process_response( $response, $order ); |
|
394 | + $this->process_response($response, $order); |
|
395 | 395 | } else { |
396 | 396 | $order->payment_complete(); |
397 | 397 | } |
@@ -402,17 +402,17 @@ discard block |
||
402 | 402 | // Return thank you page redirect. |
403 | 403 | return array( |
404 | 404 | 'result' => 'success', |
405 | - 'redirect' => $this->get_return_url( $order ), |
|
405 | + 'redirect' => $this->get_return_url($order), |
|
406 | 406 | ); |
407 | 407 | |
408 | - } catch ( WC_Stripe_Exception $e ) { |
|
409 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
410 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
408 | + } catch (WC_Stripe_Exception $e) { |
|
409 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
410 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
411 | 411 | |
412 | - do_action( 'wc_gateway_stripe_process_payment_error', $e, $order ); |
|
412 | + do_action('wc_gateway_stripe_process_payment_error', $e, $order); |
|
413 | 413 | |
414 | - if ( $order->has_status( array( 'pending', 'failed' ) ) ) { |
|
415 | - $this->send_failed_order_email( $order_id ); |
|
414 | + if ($order->has_status(array('pending', 'failed'))) { |
|
415 | + $this->send_failed_order_email($order_id); |
|
416 | 416 | } |
417 | 417 | |
418 | 418 | return array( |