@@ -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 | |
@@ -7,14 +7,14 @@ discard block |
||
7 | 7 | |
8 | 8 | printf( |
9 | 9 | // translators: %s is a link to the payment re-authentication URL. |
10 | - _x( 'Your pre-order is now available, but payment cannot be completed automatically. Please complete the payment now: %s', 'woocommerce-gateway-stripe' ), |
|
10 | + _x('Your pre-order is now available, but payment cannot be completed automatically. Please complete the payment now: %s', 'woocommerce-gateway-stripe'), |
|
11 | 11 | $authorization_url |
12 | 12 | ); |
13 | 13 | |
14 | -if ( $email->get_custom_message() ) : |
|
14 | +if ($email->get_custom_message()) : |
|
15 | 15 | |
16 | 16 | echo "----------\n\n"; |
17 | - echo wptexturize( $email->get_custom_message() ) . "\n\n"; |
|
17 | + echo wptexturize($email->get_custom_message()) . "\n\n"; |
|
18 | 18 | echo "----------\n\n"; |
19 | 19 | |
20 | 20 | endif; |
@@ -22,8 +22,8 @@ discard block |
||
22 | 22 | |
23 | 23 | echo "\n\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n"; |
24 | 24 | |
25 | -do_action( 'woocommerce_subscriptions_email_order_details', $order, $sent_to_admin, $plain_text, $email ); |
|
25 | +do_action('woocommerce_subscriptions_email_order_details', $order, $sent_to_admin, $plain_text, $email); |
|
26 | 26 | |
27 | 27 | echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n"; |
28 | 28 | |
29 | -echo apply_filters( 'woocommerce_email_footer_text', get_option( 'woocommerce_email_footer_text' ) ); |
|
29 | +echo apply_filters('woocommerce_email_footer_text', get_option('woocommerce_email_footer_text')); |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if ( ! defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | public $saved_cards; |
12 | 12 | |
13 | 13 | public function __construct() { |
14 | - $this->saved_cards = WC_Stripe_Helper::get_settings( 'stripe', 'saved_cards' ); |
|
14 | + $this->saved_cards = WC_Stripe_Helper::get_settings('stripe', 'saved_cards'); |
|
15 | 15 | } |
16 | 16 | |
17 | 17 | /** |
@@ -19,22 +19,22 @@ discard block |
||
19 | 19 | * @param int $order_id |
20 | 20 | * @return boolean |
21 | 21 | */ |
22 | - public function is_pre_order( $order_id ) { |
|
23 | - return WC_Pre_Orders_Order::order_contains_pre_order( $order_id ); |
|
22 | + public function is_pre_order($order_id) { |
|
23 | + return WC_Pre_Orders_Order::order_contains_pre_order($order_id); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
27 | 27 | * Remove order meta |
28 | 28 | * @param object $order |
29 | 29 | */ |
30 | - public function remove_order_source_before_retry( $order ) { |
|
31 | - if ( WC_Stripe_Helper::is_wc_lt( '3.0' ) ) { |
|
32 | - delete_post_meta( $order->id, '_stripe_source_id' ); |
|
30 | + public function remove_order_source_before_retry($order) { |
|
31 | + if (WC_Stripe_Helper::is_wc_lt('3.0')) { |
|
32 | + delete_post_meta($order->id, '_stripe_source_id'); |
|
33 | 33 | // For BW compat will remove in the future. |
34 | - delete_post_meta( $order->id, '_stripe_card_id' ); |
|
34 | + delete_post_meta($order->id, '_stripe_card_id'); |
|
35 | 35 | } else { |
36 | - $order->delete_meta_data( '_stripe_source_id' ); |
|
37 | - $order->delete_meta_data( '_stripe_card_id' ); |
|
36 | + $order->delete_meta_data('_stripe_source_id'); |
|
37 | + $order->delete_meta_data('_stripe_card_id'); |
|
38 | 38 | $order->save(); |
39 | 39 | } |
40 | 40 | } |
@@ -43,31 +43,31 @@ discard block |
||
43 | 43 | * Process the pre-order when pay upon release is used. |
44 | 44 | * @param int $order_id |
45 | 45 | */ |
46 | - public function process_pre_order( $order_id ) { |
|
46 | + public function process_pre_order($order_id) { |
|
47 | 47 | try { |
48 | - $order = wc_get_order( $order_id ); |
|
48 | + $order = wc_get_order($order_id); |
|
49 | 49 | |
50 | 50 | // This will throw exception if not valid. |
51 | - $this->validate_minimum_order_amount( $order ); |
|
51 | + $this->validate_minimum_order_amount($order); |
|
52 | 52 | |
53 | - $prepared_source = $this->prepare_source( get_current_user_id(), true ); |
|
53 | + $prepared_source = $this->prepare_source(get_current_user_id(), true); |
|
54 | 54 | |
55 | 55 | // We need a source on file to continue. |
56 | - if ( empty( $prepared_source->customer ) || empty( $prepared_source->source ) ) { |
|
57 | - throw new WC_Stripe_Exception( __( 'Unable to store payment details. Please try again.', 'woocommerce-gateway-stripe' ) ); |
|
56 | + if (empty($prepared_source->customer) || empty($prepared_source->source)) { |
|
57 | + throw new WC_Stripe_Exception(__('Unable to store payment details. Please try again.', 'woocommerce-gateway-stripe')); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | // Setup the response early to allow later modifications. |
61 | 61 | $response = array( |
62 | 62 | 'result' => 'success', |
63 | - 'redirect' => $this->get_return_url( $order ), |
|
63 | + 'redirect' => $this->get_return_url($order), |
|
64 | 64 | ); |
65 | 65 | |
66 | - $this->save_source_to_order( $order, $prepared_source ); |
|
66 | + $this->save_source_to_order($order, $prepared_source); |
|
67 | 67 | |
68 | 68 | // Try setting up a payment intent. |
69 | - $intent_secret = $this->setup_intent( $order, $prepared_source ); |
|
70 | - if ( ! empty( $intent_secret ) ) { |
|
69 | + $intent_secret = $this->setup_intent($order, $prepared_source); |
|
70 | + if ( ! empty($intent_secret)) { |
|
71 | 71 | $response['setup_intent_secret'] = $intent_secret; |
72 | 72 | return $response; |
73 | 73 | } |
@@ -76,17 +76,17 @@ discard block |
||
76 | 76 | WC()->cart->empty_cart(); |
77 | 77 | |
78 | 78 | // Is pre ordered! |
79 | - WC_Pre_Orders_Order::mark_order_as_pre_ordered( $order ); |
|
79 | + WC_Pre_Orders_Order::mark_order_as_pre_ordered($order); |
|
80 | 80 | |
81 | 81 | // Return thank you page redirect |
82 | 82 | return $response; |
83 | - } catch ( WC_Stripe_Exception $e ) { |
|
84 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
85 | - WC_Stripe_Logger::log( 'Pre Orders Error: ' . $e->getMessage() ); |
|
83 | + } catch (WC_Stripe_Exception $e) { |
|
84 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
85 | + WC_Stripe_Logger::log('Pre Orders Error: ' . $e->getMessage()); |
|
86 | 86 | |
87 | 87 | return array( |
88 | 88 | 'result' => 'success', |
89 | - 'redirect' => $order->get_checkout_payment_url( true ), |
|
89 | + 'redirect' => $order->get_checkout_payment_url(true), |
|
90 | 90 | ); |
91 | 91 | } |
92 | 92 | } |
@@ -99,50 +99,50 @@ discard block |
||
99 | 99 | * |
100 | 100 | * @return void |
101 | 101 | */ |
102 | - public function process_pre_order_release_payment( $order, $retry = true ) { |
|
102 | + public function process_pre_order_release_payment($order, $retry = true) { |
|
103 | 103 | try { |
104 | - $source = $this->prepare_order_source( $order ); |
|
105 | - $response = $this->create_and_confirm_intent_for_off_session( $order, $source ); |
|
104 | + $source = $this->prepare_order_source($order); |
|
105 | + $response = $this->create_and_confirm_intent_for_off_session($order, $source); |
|
106 | 106 | |
107 | - $is_authentication_required = $this->is_authentication_required_for_payment( $response ); |
|
107 | + $is_authentication_required = $this->is_authentication_required_for_payment($response); |
|
108 | 108 | |
109 | - if ( ! empty( $response->error ) && ! $is_authentication_required ) { |
|
110 | - if ( ! $retry ) { |
|
111 | - throw new Exception( $response->error->message ); |
|
109 | + if ( ! empty($response->error) && ! $is_authentication_required) { |
|
110 | + if ( ! $retry) { |
|
111 | + throw new Exception($response->error->message); |
|
112 | 112 | } |
113 | - $this->remove_order_source_before_retry( $order ); |
|
114 | - $this->process_pre_order_release_payment( $order, false ); |
|
115 | - } else if ( $is_authentication_required ) { |
|
116 | - $charge = end( $response->error->payment_intent->charges->data ); |
|
113 | + $this->remove_order_source_before_retry($order); |
|
114 | + $this->process_pre_order_release_payment($order, false); |
|
115 | + } else if ($is_authentication_required) { |
|
116 | + $charge = end($response->error->payment_intent->charges->data); |
|
117 | 117 | $id = $charge->id; |
118 | - $order_id = WC_Stripe_Helper::is_wc_lt( '3.0' ) ? $order->id : $order->get_id(); |
|
118 | + $order_id = WC_Stripe_Helper::is_wc_lt('3.0') ? $order->id : $order->get_id(); |
|
119 | 119 | |
120 | - WC_Stripe_Helper::is_wc_lt( '3.0' ) ? update_post_meta( $order_id, '_transaction_id', $id ) : $order->set_transaction_id( $id ); |
|
121 | - $order->update_status( 'failed', sprintf( __( 'Stripe charge awaiting authentication by user: %s.', 'woocommerce-gateway-stripe' ), $id ) ); |
|
122 | - if ( is_callable( array( $order, 'save' ) ) ) { |
|
120 | + WC_Stripe_Helper::is_wc_lt('3.0') ? update_post_meta($order_id, '_transaction_id', $id) : $order->set_transaction_id($id); |
|
121 | + $order->update_status('failed', sprintf(__('Stripe charge awaiting authentication by user: %s.', 'woocommerce-gateway-stripe'), $id)); |
|
122 | + if (is_callable(array($order, 'save'))) { |
|
123 | 123 | $order->save(); |
124 | 124 | } |
125 | 125 | |
126 | 126 | WC_Emails::instance(); |
127 | 127 | |
128 | - do_action( 'wc_gateway_stripe_process_payment_authentication_required', $order ); |
|
128 | + do_action('wc_gateway_stripe_process_payment_authentication_required', $order); |
|
129 | 129 | |
130 | - throw new WC_Stripe_Exception( print_r( $response, true ), $response->error->message ); |
|
130 | + throw new WC_Stripe_Exception(print_r($response, true), $response->error->message); |
|
131 | 131 | } else { |
132 | 132 | // Successful |
133 | - $this->process_response( end( $response->charges->data ), $order ); |
|
133 | + $this->process_response(end($response->charges->data), $order); |
|
134 | 134 | } |
135 | - } catch ( Exception $e ) { |
|
136 | - $error_message = is_callable( array( $e, 'getLocalizedMessage' ) ) ? $e->getLocalizedMessage() : $e->getMessage(); |
|
135 | + } catch (Exception $e) { |
|
136 | + $error_message = is_callable(array($e, 'getLocalizedMessage')) ? $e->getLocalizedMessage() : $e->getMessage(); |
|
137 | 137 | /* translators: error message */ |
138 | - $order_note = sprintf( __( 'Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe' ), $error_message ); |
|
138 | + $order_note = sprintf(__('Stripe Transaction Failed (%s)', 'woocommerce-gateway-stripe'), $error_message); |
|
139 | 139 | |
140 | 140 | // Mark order as failed if not already set, |
141 | 141 | // otherwise, make sure we add the order note so we can detect when someone fails to check out multiple times |
142 | - if ( ! $order->has_status( 'failed' ) ) { |
|
143 | - $order->update_status( 'failed', $order_note ); |
|
142 | + if ( ! $order->has_status('failed')) { |
|
143 | + $order->update_status('failed', $order_note); |
|
144 | 144 | } else { |
145 | - $order->add_order_note( $order_note ); |
|
145 | + $order->add_order_note($order_note); |
|
146 | 146 | } |
147 | 147 | } |
148 | 148 | } |