@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Paypal Payment Gateway class. |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * |
25 | 25 | * @var array |
26 | 26 | */ |
27 | - protected $supports = array( 'subscription', 'sandbox', 'single_subscription_group' ); |
|
27 | + protected $supports = array('subscription', 'sandbox', 'single_subscription_group'); |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * Payment method order. |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * |
60 | 60 | * @var array |
61 | 61 | */ |
62 | - public $currencies = array( 'AUD', 'BRL', 'CAD', 'MXN', 'NZD', 'HKD', 'SGD', 'USD', 'EUR', 'JPY', 'TRY', 'NOK', 'CZK', 'DKK', 'HUF', 'ILS', 'MYR', 'PHP', 'PLN', 'SEK', 'CHF', 'TWD', 'THB', 'GBP', 'RMB', 'RUB', 'INR' ); |
|
62 | + public $currencies = array('AUD', 'BRL', 'CAD', 'MXN', 'NZD', 'HKD', 'SGD', 'USD', 'EUR', 'JPY', 'TRY', 'NOK', 'CZK', 'DKK', 'HUF', 'ILS', 'MYR', 'PHP', 'PLN', 'SEK', 'CHF', 'TWD', 'THB', 'GBP', 'RMB', 'RUB', 'INR'); |
|
63 | 63 | |
64 | 64 | /** |
65 | 65 | * URL to view a transaction. |
@@ -80,17 +80,17 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function __construct() { |
82 | 82 | |
83 | - $this->title = __( 'PayPal Standard', 'invoicing' ); |
|
84 | - $this->method_title = __( 'PayPal Standard', 'invoicing' ); |
|
85 | - $this->checkout_button_text = __( 'Proceed to PayPal', 'invoicing' ); |
|
86 | - $this->notify_url = wpinv_get_ipn_url( $this->id ); |
|
87 | - |
|
88 | - add_filter( 'wpinv_subscription_cancel_url', array( $this, 'filter_cancel_subscription_url' ), 10, 2 ); |
|
89 | - add_filter( 'getpaid_paypal_args', array( $this, 'process_subscription' ), 10, 2 ); |
|
90 | - add_filter( 'getpaid_paypal_sandbox_notice', array( $this, 'sandbox_notice' ) ); |
|
91 | - add_filter( 'getpaid_get_paypal_connect_url', array( $this, 'maybe_get_connect_url' ), 10, 2 ); |
|
92 | - add_action( 'getpaid_authenticated_admin_action_connect_paypal', array( $this, 'connect_paypal' ) ); |
|
93 | - add_action( 'wpinv_paypal_connect', array( $this, 'display_connect_buttons' ) ); |
|
83 | + $this->title = __('PayPal Standard', 'invoicing'); |
|
84 | + $this->method_title = __('PayPal Standard', 'invoicing'); |
|
85 | + $this->checkout_button_text = __('Proceed to PayPal', 'invoicing'); |
|
86 | + $this->notify_url = wpinv_get_ipn_url($this->id); |
|
87 | + |
|
88 | + add_filter('wpinv_subscription_cancel_url', array($this, 'filter_cancel_subscription_url'), 10, 2); |
|
89 | + add_filter('getpaid_paypal_args', array($this, 'process_subscription'), 10, 2); |
|
90 | + add_filter('getpaid_paypal_sandbox_notice', array($this, 'sandbox_notice')); |
|
91 | + add_filter('getpaid_get_paypal_connect_url', array($this, 'maybe_get_connect_url'), 10, 2); |
|
92 | + add_action('getpaid_authenticated_admin_action_connect_paypal', array($this, 'connect_paypal')); |
|
93 | + add_action('wpinv_paypal_connect', array($this, 'display_connect_buttons')); |
|
94 | 94 | parent::__construct(); |
95 | 95 | } |
96 | 96 | |
@@ -103,16 +103,16 @@ discard block |
||
103 | 103 | * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
104 | 104 | * @return array |
105 | 105 | */ |
106 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
106 | + public function process_payment($invoice, $submission_data, $submission) { |
|
107 | 107 | |
108 | 108 | // Get redirect url. |
109 | - $paypal_redirect = $this->get_request_url( $invoice ); |
|
109 | + $paypal_redirect = $this->get_request_url($invoice); |
|
110 | 110 | |
111 | 111 | // Add a note about the request url. |
112 | 112 | $invoice->add_note( |
113 | 113 | sprintf( |
114 | - __( 'Redirecting to PayPal: %s', 'invoicing' ), |
|
115 | - esc_url( $paypal_redirect ) |
|
114 | + __('Redirecting to PayPal: %s', 'invoicing'), |
|
115 | + esc_url($paypal_redirect) |
|
116 | 116 | ), |
117 | 117 | false, |
118 | 118 | false, |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | ); |
121 | 121 | |
122 | 122 | // Redirect to PayPal |
123 | - wp_redirect( $paypal_redirect ); |
|
123 | + wp_redirect($paypal_redirect); |
|
124 | 124 | exit; |
125 | 125 | |
126 | 126 | } |
@@ -131,21 +131,21 @@ discard block |
||
131 | 131 | * @param WPInv_Invoice $invoice Invoice object. |
132 | 132 | * @return string |
133 | 133 | */ |
134 | - public function get_request_url( $invoice ) { |
|
134 | + public function get_request_url($invoice) { |
|
135 | 135 | |
136 | 136 | // Endpoint for this request |
137 | - $this->endpoint = $this->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr?test_ipn=1&' : 'https://www.paypal.com/cgi-bin/webscr?'; |
|
137 | + $this->endpoint = $this->is_sandbox($invoice) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr?test_ipn=1&' : 'https://www.paypal.com/cgi-bin/webscr?'; |
|
138 | 138 | |
139 | 139 | // Retrieve paypal args. |
140 | - $paypal_args = map_deep( $this->get_paypal_args( $invoice ), 'urlencode' ); |
|
140 | + $paypal_args = map_deep($this->get_paypal_args($invoice), 'urlencode'); |
|
141 | 141 | |
142 | - if ( $invoice->is_recurring() ) { |
|
142 | + if ($invoice->is_recurring()) { |
|
143 | 143 | $paypal_args['bn'] = 'GetPaid_Subscribe_WPS_US'; |
144 | 144 | } else { |
145 | 145 | $paypal_args['bn'] = 'GetPaid_ShoppingCart_WPS_US'; |
146 | 146 | } |
147 | 147 | |
148 | - return add_query_arg( $paypal_args, $this->endpoint ); |
|
148 | + return add_query_arg($paypal_args, $this->endpoint); |
|
149 | 149 | |
150 | 150 | } |
151 | 151 | |
@@ -155,25 +155,25 @@ discard block |
||
155 | 155 | * @param WPInv_Invoice $invoice Invoice object. |
156 | 156 | * @return array |
157 | 157 | */ |
158 | - protected function get_paypal_args( $invoice ) { |
|
158 | + protected function get_paypal_args($invoice) { |
|
159 | 159 | |
160 | 160 | // Whether or not to send the line items as one item. |
161 | - $force_one_line_item = apply_filters( 'getpaid_paypal_force_one_line_item', true, $invoice ); |
|
161 | + $force_one_line_item = apply_filters('getpaid_paypal_force_one_line_item', true, $invoice); |
|
162 | 162 | |
163 | - if ( $invoice->is_recurring() || ( wpinv_use_taxes() && wpinv_prices_include_tax() ) ) { |
|
163 | + if ($invoice->is_recurring() || (wpinv_use_taxes() && wpinv_prices_include_tax())) { |
|
164 | 164 | $force_one_line_item = true; |
165 | 165 | } |
166 | 166 | |
167 | 167 | $paypal_args = apply_filters( |
168 | 168 | 'getpaid_paypal_args', |
169 | 169 | array_merge( |
170 | - $this->get_transaction_args( $invoice ), |
|
171 | - $this->get_line_item_args( $invoice, $force_one_line_item ) |
|
170 | + $this->get_transaction_args($invoice), |
|
171 | + $this->get_line_item_args($invoice, $force_one_line_item) |
|
172 | 172 | ), |
173 | 173 | $invoice |
174 | 174 | ); |
175 | 175 | |
176 | - return $this->fix_request_length( $invoice, $paypal_args ); |
|
176 | + return $this->fix_request_length($invoice, $paypal_args); |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | /** |
@@ -182,9 +182,9 @@ discard block |
||
182 | 182 | * @param WPInv_Invoice $invoice Invoice object. |
183 | 183 | * @return array |
184 | 184 | */ |
185 | - protected function get_transaction_args( $invoice ) { |
|
185 | + protected function get_transaction_args($invoice) { |
|
186 | 186 | |
187 | - $email = $this->is_sandbox( $invoice ) ? wpinv_get_option( 'paypal_sandbox_email', wpinv_get_option( 'paypal_email', '' ) ) : wpinv_get_option( 'paypal_email', '' ); |
|
187 | + $email = $this->is_sandbox($invoice) ? wpinv_get_option('paypal_sandbox_email', wpinv_get_option('paypal_email', '')) : wpinv_get_option('paypal_email', ''); |
|
188 | 188 | return array( |
189 | 189 | 'cmd' => '_cart', |
190 | 190 | 'business' => $email, |
@@ -195,16 +195,16 @@ discard block |
||
195 | 195 | 'rm' => is_ssl() ? 2 : 1, |
196 | 196 | 'upload' => 1, |
197 | 197 | 'currency_code' => $invoice->get_currency(), // https://developer.paypal.com/docs/nvp-soap-api/currency-codes/#paypal |
198 | - 'return' => esc_url_raw( $this->get_return_url( $invoice ) ), |
|
199 | - 'cancel_return' => esc_url_raw( $invoice->get_checkout_payment_url() ), |
|
200 | - 'notify_url' => getpaid_limit_length( $this->notify_url, 255 ), |
|
201 | - 'invoice' => getpaid_limit_length( $invoice->get_number(), 127 ), |
|
198 | + 'return' => esc_url_raw($this->get_return_url($invoice)), |
|
199 | + 'cancel_return' => esc_url_raw($invoice->get_checkout_payment_url()), |
|
200 | + 'notify_url' => getpaid_limit_length($this->notify_url, 255), |
|
201 | + 'invoice' => getpaid_limit_length($invoice->get_number(), 127), |
|
202 | 202 | 'custom' => $invoice->get_id(), |
203 | - 'first_name' => getpaid_limit_length( $invoice->get_first_name(), 32 ), |
|
204 | - 'last_name' => getpaid_limit_length( $invoice->get_last_name(), 64 ), |
|
205 | - 'country' => getpaid_limit_length( $invoice->get_country(), 2 ), |
|
206 | - 'email' => getpaid_limit_length( $invoice->get_email(), 127 ), |
|
207 | - 'cbt' => get_bloginfo( 'name' ), |
|
203 | + 'first_name' => getpaid_limit_length($invoice->get_first_name(), 32), |
|
204 | + 'last_name' => getpaid_limit_length($invoice->get_last_name(), 64), |
|
205 | + 'country' => getpaid_limit_length($invoice->get_country(), 2), |
|
206 | + 'email' => getpaid_limit_length($invoice->get_email(), 127), |
|
207 | + 'cbt' => get_bloginfo('name'), |
|
208 | 208 | ); |
209 | 209 | |
210 | 210 | } |
@@ -216,30 +216,30 @@ discard block |
||
216 | 216 | * @param bool $force_one_line_item Create only one item for this invoice. |
217 | 217 | * @return array |
218 | 218 | */ |
219 | - protected function get_line_item_args( $invoice, $force_one_line_item = false ) { |
|
219 | + protected function get_line_item_args($invoice, $force_one_line_item = false) { |
|
220 | 220 | |
221 | 221 | // Maybe send invoice as a single item. |
222 | - if ( $force_one_line_item ) { |
|
223 | - return $this->get_line_item_args_single_item( $invoice ); |
|
222 | + if ($force_one_line_item) { |
|
223 | + return $this->get_line_item_args_single_item($invoice); |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | // Send each line item individually. |
227 | 227 | $line_item_args = array(); |
228 | 228 | |
229 | 229 | // Prepare line items. |
230 | - $this->prepare_line_items( $invoice ); |
|
230 | + $this->prepare_line_items($invoice); |
|
231 | 231 | |
232 | 232 | // Add taxes to the cart |
233 | - if ( wpinv_use_taxes() && $invoice->is_taxable() ) { |
|
234 | - $line_item_args['tax_cart'] = wpinv_sanitize_amount( (float) $invoice->get_total_tax(), 2 ); |
|
233 | + if (wpinv_use_taxes() && $invoice->is_taxable()) { |
|
234 | + $line_item_args['tax_cart'] = wpinv_sanitize_amount((float) $invoice->get_total_tax(), 2); |
|
235 | 235 | } |
236 | 236 | |
237 | 237 | // Add discount. |
238 | - if ( $invoice->get_total_discount() > 0 ) { |
|
239 | - $line_item_args['discount_amount_cart'] = wpinv_sanitize_amount( (float) $invoice->get_total_discount(), 2 ); |
|
238 | + if ($invoice->get_total_discount() > 0) { |
|
239 | + $line_item_args['discount_amount_cart'] = wpinv_sanitize_amount((float) $invoice->get_total_discount(), 2); |
|
240 | 240 | } |
241 | 241 | |
242 | - return array_merge( $line_item_args, $this->get_line_items() ); |
|
242 | + return array_merge($line_item_args, $this->get_line_items()); |
|
243 | 243 | |
244 | 244 | } |
245 | 245 | |
@@ -249,11 +249,11 @@ discard block |
||
249 | 249 | * @param WPInv_Invoice $invoice Invoice object. |
250 | 250 | * @return array |
251 | 251 | */ |
252 | - protected function get_line_item_args_single_item( $invoice ) { |
|
252 | + protected function get_line_item_args_single_item($invoice) { |
|
253 | 253 | $this->delete_line_items(); |
254 | 254 | |
255 | - $item_name = wp_sprintf( __( 'Invoice %s', 'invoicing' ), $invoice->get_number() ); |
|
256 | - $this->add_line_item( $item_name, 1, wpinv_round_amount( (float) $invoice->get_total(), 2, true ), $invoice->get_id() ); |
|
255 | + $item_name = wp_sprintf(__('Invoice %s', 'invoicing'), $invoice->get_number()); |
|
256 | + $this->add_line_item($item_name, 1, wpinv_round_amount((float) $invoice->get_total(), 2, true), $invoice->get_id()); |
|
257 | 257 | |
258 | 258 | return $this->get_line_items(); |
259 | 259 | } |
@@ -277,19 +277,19 @@ discard block |
||
277 | 277 | * |
278 | 278 | * @param WPInv_Invoice $invoice Invoice object. |
279 | 279 | */ |
280 | - protected function prepare_line_items( $invoice ) { |
|
280 | + protected function prepare_line_items($invoice) { |
|
281 | 281 | $this->delete_line_items(); |
282 | 282 | |
283 | 283 | // Items. |
284 | - foreach ( $invoice->get_items() as $item ) { |
|
284 | + foreach ($invoice->get_items() as $item) { |
|
285 | 285 | $amount = $item->get_price(); |
286 | 286 | $quantity = $invoice->get_template() == 'amount' ? 1 : $item->get_quantity(); |
287 | - $this->add_line_item( $item->get_raw_name(), $quantity, $amount, $item->get_id() ); |
|
287 | + $this->add_line_item($item->get_raw_name(), $quantity, $amount, $item->get_id()); |
|
288 | 288 | } |
289 | 289 | |
290 | 290 | // Fees. |
291 | - foreach ( $invoice->get_fees() as $fee => $data ) { |
|
292 | - $this->add_line_item( $fee, 1, wpinv_sanitize_amount( $data['initial_fee'] ) ); |
|
291 | + foreach ($invoice->get_fees() as $fee => $data) { |
|
292 | + $this->add_line_item($fee, 1, wpinv_sanitize_amount($data['initial_fee'])); |
|
293 | 293 | } |
294 | 294 | |
295 | 295 | } |
@@ -302,20 +302,20 @@ discard block |
||
302 | 302 | * @param float $amount Amount. |
303 | 303 | * @param string $item_number Item number. |
304 | 304 | */ |
305 | - protected function add_line_item( $item_name, $quantity = 1, $amount = 0.0, $item_number = '' ) { |
|
306 | - $index = ( count( $this->line_items ) / 4 ) + 1; |
|
305 | + protected function add_line_item($item_name, $quantity = 1, $amount = 0.0, $item_number = '') { |
|
306 | + $index = (count($this->line_items) / 4) + 1; |
|
307 | 307 | |
308 | 308 | /** |
309 | 309 | * Prevent error "Things don't appear to be working at the moment. (https://www.sandbox.paypal.com/webapps/hermes/error)" |
310 | 310 | */ |
311 | - $item_name = str_replace( "#", "", $item_name ); |
|
311 | + $item_name = str_replace("#", "", $item_name); |
|
312 | 312 | |
313 | 313 | $item = apply_filters( |
314 | 314 | 'getpaid_paypal_line_item', |
315 | 315 | array( |
316 | - 'item_name' => html_entity_decode( getpaid_limit_length( $item_name ? wp_strip_all_tags( $item_name ) : __( 'Item', 'invoicing' ), 127 ), ENT_NOQUOTES, 'UTF-8' ), |
|
316 | + 'item_name' => html_entity_decode(getpaid_limit_length($item_name ? wp_strip_all_tags($item_name) : __('Item', 'invoicing'), 127), ENT_NOQUOTES, 'UTF-8'), |
|
317 | 317 | 'quantity' => (float) $quantity, |
318 | - 'amount' => wpinv_sanitize_amount( (float) $amount, 2 ), |
|
318 | + 'amount' => wpinv_sanitize_amount((float) $amount, 2), |
|
319 | 319 | 'item_number' => $item_number, |
320 | 320 | ), |
321 | 321 | $item_name, |
@@ -324,12 +324,12 @@ discard block |
||
324 | 324 | $item_number |
325 | 325 | ); |
326 | 326 | |
327 | - $this->line_items[ 'item_name_' . $index ] = getpaid_limit_length( $item['item_name'], 127 ); |
|
328 | - $this->line_items[ 'quantity_' . $index ] = $item['quantity']; |
|
327 | + $this->line_items['item_name_' . $index] = getpaid_limit_length($item['item_name'], 127); |
|
328 | + $this->line_items['quantity_' . $index] = $item['quantity']; |
|
329 | 329 | |
330 | 330 | // The price or amount of the product, service, or contribution, not including shipping, handling, or tax. |
331 | - $this->line_items[ 'amount_' . $index ] = $item['amount'] * $item['quantity']; |
|
332 | - $this->line_items[ 'item_number_' . $index ] = getpaid_limit_length( $item['item_number'], 127 ); |
|
331 | + $this->line_items['amount_' . $index] = $item['amount'] * $item['quantity']; |
|
332 | + $this->line_items['item_number_' . $index] = getpaid_limit_length($item['item_number'], 127); |
|
333 | 333 | } |
334 | 334 | |
335 | 335 | /** |
@@ -341,19 +341,19 @@ discard block |
||
341 | 341 | * @param array $paypal_args Arguments sent to Paypal in the request. |
342 | 342 | * @return array |
343 | 343 | */ |
344 | - protected function fix_request_length( $invoice, $paypal_args ) { |
|
344 | + protected function fix_request_length($invoice, $paypal_args) { |
|
345 | 345 | $max_paypal_length = 2083; |
346 | - $query_candidate = http_build_query( $paypal_args, '', '&' ); |
|
346 | + $query_candidate = http_build_query($paypal_args, '', '&'); |
|
347 | 347 | |
348 | - if ( strlen( $this->endpoint . $query_candidate ) <= $max_paypal_length ) { |
|
348 | + if (strlen($this->endpoint . $query_candidate) <= $max_paypal_length) { |
|
349 | 349 | return $paypal_args; |
350 | 350 | } |
351 | 351 | |
352 | 352 | return apply_filters( |
353 | 353 | 'getpaid_paypal_args', |
354 | 354 | array_merge( |
355 | - $this->get_transaction_args( $invoice ), |
|
356 | - $this->get_line_item_args( $invoice, true ) |
|
355 | + $this->get_transaction_args($invoice), |
|
356 | + $this->get_line_item_args($invoice, true) |
|
357 | 357 | ), |
358 | 358 | $invoice |
359 | 359 | ); |
@@ -366,10 +366,10 @@ discard block |
||
366 | 366 | * @param array $paypal_args PayPal args. |
367 | 367 | * @param WPInv_Invoice $invoice Invoice object. |
368 | 368 | */ |
369 | - public function process_subscription( $paypal_args, $invoice ) { |
|
369 | + public function process_subscription($paypal_args, $invoice) { |
|
370 | 370 | |
371 | 371 | // Make sure this is a subscription. |
372 | - if ( ! $invoice->is_recurring() || ! $subscription = getpaid_get_invoice_subscription( $invoice ) ) { |
|
372 | + if (!$invoice->is_recurring() || !$subscription = getpaid_get_invoice_subscription($invoice)) { |
|
373 | 373 | return $paypal_args; |
374 | 374 | } |
375 | 375 | |
@@ -377,23 +377,23 @@ discard block |
||
377 | 377 | $paypal_args['cmd'] = '_xclick-subscriptions'; |
378 | 378 | |
379 | 379 | // Subscription name. |
380 | - $paypal_args['item_name'] = wp_sprintf( __( 'Invoice %s', 'invoicing' ), $invoice->get_number() ); |
|
380 | + $paypal_args['item_name'] = wp_sprintf(__('Invoice %s', 'invoicing'), $invoice->get_number()); |
|
381 | 381 | |
382 | 382 | // Get subscription args. |
383 | - $period = strtoupper( substr( $subscription->get_period(), 0, 1 ) ); |
|
383 | + $period = strtoupper(substr($subscription->get_period(), 0, 1)); |
|
384 | 384 | $interval = (int) $subscription->get_frequency(); |
385 | 385 | $bill_times = (int) $subscription->get_bill_times(); |
386 | - $initial_amount = (float) wpinv_sanitize_amount( $invoice->get_initial_total(), 2 ); |
|
387 | - $recurring_amount = (float) wpinv_sanitize_amount( $invoice->get_recurring_total(), 2 ); |
|
388 | - $subscription_item = $invoice->get_recurring( true ); |
|
386 | + $initial_amount = (float) wpinv_sanitize_amount($invoice->get_initial_total(), 2); |
|
387 | + $recurring_amount = (float) wpinv_sanitize_amount($invoice->get_recurring_total(), 2); |
|
388 | + $subscription_item = $invoice->get_recurring(true); |
|
389 | 389 | |
390 | 390 | // Convert 365 days to 1 year. |
391 | - if ( 'D' == $period && 365 == $interval ) { |
|
391 | + if ('D' == $period && 365 == $interval) { |
|
392 | 392 | $period = 'Y'; |
393 | 393 | $interval = 1; |
394 | 394 | } |
395 | 395 | |
396 | - if ( $subscription_item->has_free_trial() ) { |
|
396 | + if ($subscription_item->has_free_trial()) { |
|
397 | 397 | |
398 | 398 | $paypal_args['a1'] = 0 == $initial_amount ? 0 : $initial_amount; |
399 | 399 | |
@@ -403,28 +403,28 @@ discard block |
||
403 | 403 | // Trial period. |
404 | 404 | $paypal_args['t1'] = $subscription_item->get_trial_period(); |
405 | 405 | |
406 | - } elseif ( $initial_amount != $recurring_amount ) { |
|
406 | + } elseif ($initial_amount != $recurring_amount) { |
|
407 | 407 | |
408 | 408 | // No trial period, but initial amount includes a sign-up fee and/or other items, so charge it as a separate period. |
409 | 409 | |
410 | - if ( 1 == $bill_times ) { |
|
410 | + if (1 == $bill_times) { |
|
411 | 411 | $param_number = 3; |
412 | 412 | } else { |
413 | 413 | $param_number = 1; |
414 | 414 | } |
415 | 415 | |
416 | - $paypal_args[ 'a' . $param_number ] = $initial_amount ? $initial_amount : 0; |
|
416 | + $paypal_args['a' . $param_number] = $initial_amount ? $initial_amount : 0; |
|
417 | 417 | |
418 | 418 | // Sign Up interval |
419 | - $paypal_args[ 'p' . $param_number ] = $interval; |
|
419 | + $paypal_args['p' . $param_number] = $interval; |
|
420 | 420 | |
421 | 421 | // Sign Up unit of duration |
422 | - $paypal_args[ 't' . $param_number ] = $period; |
|
422 | + $paypal_args['t' . $param_number] = $period; |
|
423 | 423 | |
424 | 424 | } |
425 | 425 | |
426 | 426 | // We have a recurring payment |
427 | - if ( ! isset( $param_number ) || 1 == $param_number ) { |
|
427 | + if (!isset($param_number) || 1 == $param_number) { |
|
428 | 428 | |
429 | 429 | // Subscription price |
430 | 430 | $paypal_args['a3'] = $recurring_amount; |
@@ -438,7 +438,7 @@ discard block |
||
438 | 438 | } |
439 | 439 | |
440 | 440 | // Recurring payments |
441 | - if ( 1 == $bill_times || ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() && 2 == $bill_times ) ) { |
|
441 | + if (1 == $bill_times || ($initial_amount != $recurring_amount && !$subscription_item->has_free_trial() && 2 == $bill_times)) { |
|
442 | 442 | |
443 | 443 | // Non-recurring payments |
444 | 444 | $paypal_args['src'] = 0; |
@@ -447,15 +447,15 @@ discard block |
||
447 | 447 | |
448 | 448 | $paypal_args['src'] = 1; |
449 | 449 | |
450 | - if ( $bill_times > 0 ) { |
|
450 | + if ($bill_times > 0) { |
|
451 | 451 | |
452 | 452 | // An initial period is being used to charge a sign-up fee |
453 | - if ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() ) { |
|
453 | + if ($initial_amount != $recurring_amount && !$subscription_item->has_free_trial()) { |
|
454 | 454 | $bill_times--; |
455 | 455 | } |
456 | 456 | |
457 | 457 | // Make sure it's not over the max of 52 |
458 | - $paypal_args['srt'] = ( $bill_times <= 52 ? absint( $bill_times ) : 52 ); |
|
458 | + $paypal_args['srt'] = ($bill_times <= 52 ? absint($bill_times) : 52); |
|
459 | 459 | |
460 | 460 | } |
461 | 461 | } |
@@ -464,10 +464,10 @@ discard block |
||
464 | 464 | $paypal_args['rm'] = 2; |
465 | 465 | |
466 | 466 | // Get rid of redudant items. |
467 | - foreach ( array( 'item_name_1', 'quantity_1', 'amount_1', 'item_number_1' ) as $arg ) { |
|
467 | + foreach (array('item_name_1', 'quantity_1', 'amount_1', 'item_number_1') as $arg) { |
|
468 | 468 | |
469 | - if ( isset( $paypal_args[ $arg ] ) ) { |
|
470 | - unset( $paypal_args[ $arg ] ); |
|
469 | + if (isset($paypal_args[$arg])) { |
|
470 | + unset($paypal_args[$arg]); |
|
471 | 471 | } |
472 | 472 | } |
473 | 473 | |
@@ -485,7 +485,7 @@ discard block |
||
485 | 485 | * @return void |
486 | 486 | */ |
487 | 487 | public function verify_ipn() { |
488 | - new GetPaid_Paypal_Gateway_IPN_Handler( $this ); |
|
488 | + new GetPaid_Paypal_Gateway_IPN_Handler($this); |
|
489 | 489 | } |
490 | 490 | |
491 | 491 | /** |
@@ -494,7 +494,7 @@ discard block |
||
494 | 494 | public function sandbox_notice() { |
495 | 495 | |
496 | 496 | return sprintf( |
497 | - __( 'SANDBOX ENABLED. You can use sandbox testing accounts only. See the %1$sPayPal Sandbox Testing Guide%2$s for more details.', 'invoicing' ), |
|
497 | + __('SANDBOX ENABLED. You can use sandbox testing accounts only. See the %1$sPayPal Sandbox Testing Guide%2$s for more details.', 'invoicing'), |
|
498 | 498 | '<a href="https://developer.paypal.com/docs/classic/lifecycle/ug_sandbox/">', |
499 | 499 | '</a>' |
500 | 500 | ); |
@@ -506,41 +506,41 @@ discard block |
||
506 | 506 | * |
507 | 507 | * @param array $admin_settings |
508 | 508 | */ |
509 | - public function admin_settings( $admin_settings ) { |
|
509 | + public function admin_settings($admin_settings) { |
|
510 | 510 | |
511 | 511 | $currencies = sprintf( |
512 | - __( 'Supported Currencies: %s', 'invoicing' ), |
|
513 | - implode( ', ', $this->currencies ) |
|
512 | + __('Supported Currencies: %s', 'invoicing'), |
|
513 | + implode(', ', $this->currencies) |
|
514 | 514 | ); |
515 | 515 | |
516 | 516 | $admin_settings['paypal_active']['desc'] .= " ($currencies)"; |
517 | - $admin_settings['paypal_desc']['std'] = __( 'Pay via PayPal: you can pay with your credit card if you don\'t have a PayPal account.', 'invoicing' ); |
|
517 | + $admin_settings['paypal_desc']['std'] = __('Pay via PayPal: you can pay with your credit card if you don\'t have a PayPal account.', 'invoicing'); |
|
518 | 518 | |
519 | 519 | // Access tokens. |
520 | - $live_email = wpinv_get_option( 'paypal_email' ); |
|
521 | - $sandbox_email = wpinv_get_option( 'paypal_sandbox_email' ); |
|
520 | + $live_email = wpinv_get_option('paypal_email'); |
|
521 | + $sandbox_email = wpinv_get_option('paypal_sandbox_email'); |
|
522 | 522 | |
523 | 523 | $admin_settings['paypal_connect'] = array( |
524 | 524 | 'type' => 'hook', |
525 | 525 | 'id' => 'paypal_connect', |
526 | - 'name' => __( 'Connect to PayPal', 'invoicing' ), |
|
526 | + 'name' => __('Connect to PayPal', 'invoicing'), |
|
527 | 527 | ); |
528 | 528 | |
529 | 529 | $admin_settings['paypal_email'] = array( |
530 | 530 | 'type' => 'text', |
531 | 531 | 'class' => 'live-auth-data', |
532 | 532 | 'id' => 'paypal_email', |
533 | - 'name' => __( 'Live Email Address', 'invoicing' ), |
|
534 | - 'desc' => __( 'The email address of your PayPal account.', 'invoicing' ), |
|
533 | + 'name' => __('Live Email Address', 'invoicing'), |
|
534 | + 'desc' => __('The email address of your PayPal account.', 'invoicing'), |
|
535 | 535 | ); |
536 | 536 | |
537 | 537 | $admin_settings['paypal_sandbox_email'] = array( |
538 | 538 | 'type' => 'text', |
539 | 539 | 'class' => 'sandbox-auth-data', |
540 | 540 | 'id' => 'paypal_sandbox_email', |
541 | - 'name' => __( 'Sandbox Email Address', 'invoicing' ), |
|
542 | - 'desc' => __( 'The email address of your sandbox PayPal account.', 'invoicing' ), |
|
543 | - 'std' => wpinv_get_option( 'paypal_email', '' ), |
|
541 | + 'name' => __('Sandbox Email Address', 'invoicing'), |
|
542 | + 'desc' => __('The email address of your sandbox PayPal account.', 'invoicing'), |
|
543 | + 'std' => wpinv_get_option('paypal_email', ''), |
|
544 | 544 | ); |
545 | 545 | |
546 | 546 | // Client ID and secret. |
@@ -548,41 +548,41 @@ discard block |
||
548 | 548 | 'type' => 'text', |
549 | 549 | 'class' => 'live-auth-data', |
550 | 550 | 'id' => 'paypal_client_id', |
551 | - 'name' => __( 'Live Client ID', 'invoicing' ), |
|
552 | - 'desc' => __( 'The client ID of your PayPal account. You can retrieve this from your PayPal developer account.', 'invoicing' ), |
|
551 | + 'name' => __('Live Client ID', 'invoicing'), |
|
552 | + 'desc' => __('The client ID of your PayPal account. You can retrieve this from your PayPal developer account.', 'invoicing'), |
|
553 | 553 | ); |
554 | 554 | |
555 | 555 | $admin_settings['paypal_sandbox_client_id'] = array( |
556 | 556 | 'type' => 'text', |
557 | 557 | 'class' => 'sandbox-auth-data', |
558 | 558 | 'id' => 'paypal_sandbox_client_id', |
559 | - 'name' => __( 'Sandbox Client ID', 'invoicing' ), |
|
560 | - 'desc' => __( 'The client ID of your sandbox PayPal account. You can retrieve this from your PayPal developer account.', 'invoicing' ), |
|
561 | - 'std' => wpinv_get_option( 'paypal_client_id', '' ), |
|
559 | + 'name' => __('Sandbox Client ID', 'invoicing'), |
|
560 | + 'desc' => __('The client ID of your sandbox PayPal account. You can retrieve this from your PayPal developer account.', 'invoicing'), |
|
561 | + 'std' => wpinv_get_option('paypal_client_id', ''), |
|
562 | 562 | ); |
563 | 563 | |
564 | 564 | $admin_settings['paypal_secret'] = array( |
565 | 565 | 'type' => 'text', |
566 | 566 | 'class' => 'live-auth-data', |
567 | 567 | 'id' => 'paypal_secret', |
568 | - 'name' => __( 'Live Secret', 'invoicing' ), |
|
569 | - 'desc' => __( 'The secret of your PayPal account. You can retrieve this from your PayPal developer account.', 'invoicing' ), |
|
568 | + 'name' => __('Live Secret', 'invoicing'), |
|
569 | + 'desc' => __('The secret of your PayPal account. You can retrieve this from your PayPal developer account.', 'invoicing'), |
|
570 | 570 | ); |
571 | 571 | |
572 | 572 | $admin_settings['paypal_sandbox_secret'] = array( |
573 | 573 | 'type' => 'text', |
574 | 574 | 'class' => 'sandbox-auth-data', |
575 | 575 | 'id' => 'paypal_sandbox_secret', |
576 | - 'name' => __( 'Sandbox Secret', 'invoicing' ), |
|
577 | - 'desc' => __( 'The secret of your sandbox PayPal account. You can retrieve this from your PayPal developer account.', 'invoicing' ), |
|
576 | + 'name' => __('Sandbox Secret', 'invoicing'), |
|
577 | + 'desc' => __('The secret of your sandbox PayPal account. You can retrieve this from your PayPal developer account.', 'invoicing'), |
|
578 | 578 | ); |
579 | 579 | |
580 | 580 | $admin_settings['paypal_ipn_url'] = array( |
581 | 581 | 'type' => 'ipn_url', |
582 | 582 | 'id' => 'paypal_ipn_url', |
583 | - 'name' => __( 'IPN Url', 'invoicing' ), |
|
583 | + 'name' => __('IPN Url', 'invoicing'), |
|
584 | 584 | 'std' => $this->notify_url, |
585 | - 'desc' => __( "If you've not enabled IPNs in your paypal account, use the above URL to enable them.", 'invoicing' ) . ' <a href="https://developer.paypal.com/docs/api-basics/notifications/ipn/"><em>' . __( 'Learn more.', 'invoicing' ) . '</em></a>', |
|
585 | + 'desc' => __("If you've not enabled IPNs in your paypal account, use the above URL to enable them.", 'invoicing') . ' <a href="https://developer.paypal.com/docs/api-basics/notifications/ipn/"><em>' . __('Learn more.', 'invoicing') . '</em></a>', |
|
586 | 586 | 'readonly' => true, |
587 | 587 | ); |
588 | 588 | |
@@ -595,9 +595,9 @@ discard block |
||
595 | 595 | * @param string $url |
596 | 596 | * @param WPInv_Subscription $subscription |
597 | 597 | */ |
598 | - public function filter_cancel_subscription_url( $url, $subscription ) { |
|
598 | + public function filter_cancel_subscription_url($url, $subscription) { |
|
599 | 599 | |
600 | - if ( $this->id !== $subscription->get_gateway() ) { |
|
600 | + if ($this->id !== $subscription->get_gateway()) { |
|
601 | 601 | return $url; |
602 | 602 | } |
603 | 603 | |
@@ -605,16 +605,16 @@ discard block |
||
605 | 605 | $profile_id = $subscription->get_profile_id(); |
606 | 606 | |
607 | 607 | // Bail if no profile ID. |
608 | - if ( empty( $profile_id ) ) { |
|
608 | + if (empty($profile_id)) { |
|
609 | 609 | return $url; |
610 | 610 | } |
611 | 611 | |
612 | 612 | $cancel_url = 'https://www.paypal.com/myaccount/autopay/connect/%s/cancel'; |
613 | - if ( $this->is_sandbox( $subscription->get_parent_payment() ) ) { |
|
613 | + if ($this->is_sandbox($subscription->get_parent_payment())) { |
|
614 | 614 | $cancel_url = 'https://www.sandbox.paypal.com/myaccount/autopay/connect/%s/cancel'; |
615 | 615 | } |
616 | 616 | |
617 | - return sprintf( $cancel_url, $profile_id ); |
|
617 | + return sprintf($cancel_url, $profile_id); |
|
618 | 618 | } |
619 | 619 | |
620 | 620 | /** |
@@ -624,8 +624,8 @@ discard block |
||
624 | 624 | * @param array $data |
625 | 625 | * @return string |
626 | 626 | */ |
627 | - public static function maybe_get_connect_url( $url = '', $data = array() ) { |
|
628 | - return self::get_connect_url( false, urldecode( $data['redirect'] ) ); |
|
627 | + public static function maybe_get_connect_url($url = '', $data = array()) { |
|
628 | + return self::get_connect_url(false, urldecode($data['redirect'])); |
|
629 | 629 | } |
630 | 630 | |
631 | 631 | /** |
@@ -636,25 +636,25 @@ discard block |
||
636 | 636 | * @param string $redirect |
637 | 637 | * @return string |
638 | 638 | */ |
639 | - public static function get_connect_url( $is_sandbox, $redirect = '' ) { |
|
639 | + public static function get_connect_url($is_sandbox, $redirect = '') { |
|
640 | 640 | |
641 | 641 | $redirect_url = add_query_arg( |
642 | 642 | array( |
643 | 643 | 'getpaid-admin-action' => 'connect_paypal', |
644 | 644 | 'page' => 'wpinv-settings', |
645 | - 'live_mode' => (int) empty( $is_sandbox ), |
|
645 | + 'live_mode' => (int) empty($is_sandbox), |
|
646 | 646 | 'tab' => 'gateways', |
647 | 647 | 'section' => 'paypal', |
648 | - 'getpaid-nonce' => wp_create_nonce( 'getpaid-nonce' ), |
|
649 | - 'redirect' => urlencode( $redirect ), |
|
648 | + 'getpaid-nonce' => wp_create_nonce('getpaid-nonce'), |
|
649 | + 'redirect' => urlencode($redirect), |
|
650 | 650 | ), |
651 | - admin_url( 'admin.php' ) |
|
651 | + admin_url('admin.php') |
|
652 | 652 | ); |
653 | 653 | |
654 | 654 | return add_query_arg( |
655 | 655 | array( |
656 | - 'live_mode' => (int) empty( $is_sandbox ), |
|
657 | - 'redirect_url' => urlencode( str_replace( '&', '&', $redirect_url ) ), |
|
656 | + 'live_mode' => (int) empty($is_sandbox), |
|
657 | + 'redirect_url' => urlencode(str_replace('&', '&', $redirect_url)), |
|
658 | 658 | ), |
659 | 659 | 'https://ayecode.io/oauth/paypal' |
660 | 660 | ); |
@@ -670,10 +670,10 @@ discard block |
||
670 | 670 | |
671 | 671 | ?> |
672 | 672 | <div class="wpinv-paypal-connect-live"> |
673 | - <a class="button button-primary" href="<?php echo esc_url( self::get_connect_url( false ) ); ?>"><?php esc_html_e( 'Connect to PayPal', 'invoicing' ); ?></a> |
|
673 | + <a class="button button-primary" href="<?php echo esc_url(self::get_connect_url(false)); ?>"><?php esc_html_e('Connect to PayPal', 'invoicing'); ?></a> |
|
674 | 674 | </div> |
675 | 675 | <div class="wpinv-paypal-connect-sandbox"> |
676 | - <a class="button button-primary" href="<?php echo esc_url( self::get_connect_url( true ) ); ?>"><?php esc_html_e( 'Connect to PayPal Sandbox', 'invoicing' ); ?></a> |
|
676 | + <a class="button button-primary" href="<?php echo esc_url(self::get_connect_url(true)); ?>"><?php esc_html_e('Connect to PayPal Sandbox', 'invoicing'); ?></a> |
|
677 | 677 | </div> |
678 | 678 | |
679 | 679 | <script> |
@@ -714,26 +714,26 @@ discard block |
||
714 | 714 | * @param array $data Connection data. |
715 | 715 | * @return void |
716 | 716 | */ |
717 | - public function connect_paypal( $data ) { |
|
717 | + public function connect_paypal($data) { |
|
718 | 718 | |
719 | 719 | $sandbox = $this->is_sandbox(); |
720 | - $data = wp_unslash( $data ); |
|
721 | - $access_token = empty( $data['access_token'] ) ? '' : sanitize_text_field( $data['access_token'] ); |
|
720 | + $data = wp_unslash($data); |
|
721 | + $access_token = empty($data['access_token']) ? '' : sanitize_text_field($data['access_token']); |
|
722 | 722 | |
723 | - if ( isset( $data['live_mode'] ) ) { |
|
724 | - $sandbox = empty( $data['live_mode'] ); |
|
723 | + if (isset($data['live_mode'])) { |
|
724 | + $sandbox = empty($data['live_mode']); |
|
725 | 725 | } |
726 | 726 | |
727 | - wpinv_update_option( 'paypal_sandbox', (int) $sandbox ); |
|
728 | - wpinv_update_option( 'paypal_active', 1 ); |
|
727 | + wpinv_update_option('paypal_sandbox', (int) $sandbox); |
|
728 | + wpinv_update_option('paypal_active', 1); |
|
729 | 729 | |
730 | - if ( ! empty( $data['error_description'] ) ) { |
|
731 | - getpaid_admin()->show_error( wp_kses_post( urldecode( $data['error_description'] ) ) ); |
|
730 | + if (!empty($data['error_description'])) { |
|
731 | + getpaid_admin()->show_error(wp_kses_post(urldecode($data['error_description']))); |
|
732 | 732 | } else { |
733 | 733 | |
734 | 734 | // Retrieve the user info. |
735 | 735 | $user_info = wp_remote_get( |
736 | - ! $sandbox ? 'https://api-m.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1' : 'https://api-m.sandbox.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1', |
|
736 | + !$sandbox ? 'https://api-m.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1' : 'https://api-m.sandbox.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1', |
|
737 | 737 | array( |
738 | 738 | |
739 | 739 | 'headers' => array( |
@@ -744,33 +744,33 @@ discard block |
||
744 | 744 | ) |
745 | 745 | ); |
746 | 746 | |
747 | - if ( is_wp_error( $user_info ) ) { |
|
748 | - getpaid_admin()->show_error( wp_kses_post( $user_info->get_error_message() ) ); |
|
747 | + if (is_wp_error($user_info)) { |
|
748 | + getpaid_admin()->show_error(wp_kses_post($user_info->get_error_message())); |
|
749 | 749 | } else { |
750 | 750 | |
751 | 751 | // Create application. |
752 | - $user_info = json_decode( wp_remote_retrieve_body( $user_info ) ); |
|
752 | + $user_info = json_decode(wp_remote_retrieve_body($user_info)); |
|
753 | 753 | |
754 | - if ( $sandbox ) { |
|
755 | - wpinv_update_option( 'paypal_sandbox_email', sanitize_email( $user_info->emails[0]->value ) ); |
|
756 | - wpinv_update_option( 'paypal_sandbox_refresh_token', sanitize_text_field( urldecode( $data['refresh_token'] ) ) ); |
|
757 | - set_transient( 'getpaid_paypal_sandbox_access_token', sanitize_text_field( urldecode( $data['access_token'] ) ), (int) $data['expires_in'] ); |
|
758 | - getpaid_admin()->show_success( __( 'Successfully connected your PayPal sandbox account', 'invoicing' ) ); |
|
754 | + if ($sandbox) { |
|
755 | + wpinv_update_option('paypal_sandbox_email', sanitize_email($user_info->emails[0]->value)); |
|
756 | + wpinv_update_option('paypal_sandbox_refresh_token', sanitize_text_field(urldecode($data['refresh_token']))); |
|
757 | + set_transient('getpaid_paypal_sandbox_access_token', sanitize_text_field(urldecode($data['access_token'])), (int) $data['expires_in']); |
|
758 | + getpaid_admin()->show_success(__('Successfully connected your PayPal sandbox account', 'invoicing')); |
|
759 | 759 | } else { |
760 | - wpinv_update_option( 'paypal_email', sanitize_email( $user_info->emails[0]->value ) ); |
|
761 | - wpinv_update_option( 'paypal_refresh_token', sanitize_text_field( urldecode( $data['refresh_token'] ) ) ); |
|
762 | - set_transient( 'getpaid_paypal_access_token', sanitize_text_field( urldecode( $data['access_token'] ) ), (int) $data['expires_in'] ); |
|
763 | - getpaid_admin()->show_success( __( 'Successfully connected your PayPal account', 'invoicing' ) ); |
|
760 | + wpinv_update_option('paypal_email', sanitize_email($user_info->emails[0]->value)); |
|
761 | + wpinv_update_option('paypal_refresh_token', sanitize_text_field(urldecode($data['refresh_token']))); |
|
762 | + set_transient('getpaid_paypal_access_token', sanitize_text_field(urldecode($data['access_token'])), (int) $data['expires_in']); |
|
763 | + getpaid_admin()->show_success(__('Successfully connected your PayPal account', 'invoicing')); |
|
764 | 764 | } |
765 | 765 | } |
766 | 766 | } |
767 | 767 | |
768 | - $redirect = empty( $data['redirect'] ) ? admin_url( 'admin.php?page=wpinv-settings&tab=gateways§ion=paypal' ) : urldecode( $data['redirect'] ); |
|
768 | + $redirect = empty($data['redirect']) ? admin_url('admin.php?page=wpinv-settings&tab=gateways§ion=paypal') : urldecode($data['redirect']); |
|
769 | 769 | |
770 | - if ( isset( $data['step'] ) ) { |
|
771 | - $redirect = add_query_arg( 'step', $data['step'], $redirect ); |
|
770 | + if (isset($data['step'])) { |
|
771 | + $redirect = add_query_arg('step', $data['step'], $redirect); |
|
772 | 772 | } |
773 | - wp_redirect( $redirect ); |
|
773 | + wp_redirect($redirect); |
|
774 | 774 | exit; |
775 | 775 | } |
776 | 776 |