Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like WPInv_Ajax often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use WPInv_Ajax, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
14 | class WPInv_Ajax { |
||
15 | public static function init() { |
||
16 | add_action( 'init', array( __CLASS__, 'define_ajax' ), 0 ); |
||
17 | add_action( 'template_redirect', array( __CLASS__, 'do_wpinv_ajax' ), 0 ); |
||
18 | self::add_ajax_events(); |
||
19 | } |
||
20 | |||
21 | public static function define_ajax() { |
||
22 | if ( !empty( $_GET['wpinv-ajax'] ) ) { |
||
23 | if ( ! defined( 'DOING_AJAX' ) ) { |
||
24 | define( 'DOING_AJAX', true ); |
||
25 | } |
||
26 | if ( ! defined( 'WC_DOING_AJAX' ) ) { |
||
27 | define( 'WC_DOING_AJAX', true ); |
||
28 | } |
||
29 | // Turn off display_errors during AJAX events to prevent malformed JSON |
||
30 | if ( ! WP_DEBUG || ( WP_DEBUG && ! WP_DEBUG_DISPLAY ) ) { |
||
31 | @ini_set( 'display_errors', 0 ); |
||
|
|||
32 | } |
||
33 | $GLOBALS['wpdb']->hide_errors(); |
||
34 | } |
||
35 | } |
||
36 | |||
37 | public static function do_wpinv_ajax() { |
||
38 | global $wp_query; |
||
39 | |||
40 | if ( !empty( $_GET['wpinv-ajax'] ) ) { |
||
41 | $wp_query->set( 'wpinv-ajax', sanitize_text_field( $_GET['wpinv-ajax'] ) ); |
||
42 | } |
||
43 | |||
44 | if ( $action = $wp_query->get( 'wpinv-ajax' ) ) { |
||
45 | self::wpinv_ajax_headers(); |
||
46 | do_action( 'wpinv_ajax_' . sanitize_text_field( $action ) ); |
||
47 | die(); |
||
48 | } |
||
49 | } |
||
50 | |||
51 | private static function wpinv_ajax_headers() { |
||
52 | send_origin_headers(); |
||
53 | @header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) ); |
||
54 | @header( 'X-Robots-Tag: noindex' ); |
||
55 | send_nosniff_header(); |
||
56 | nocache_headers(); |
||
57 | status_header( 200 ); |
||
58 | } |
||
59 | |||
60 | public static function add_ajax_events() { |
||
61 | $ajax_events = array( |
||
62 | 'add_note' => false, |
||
63 | 'delete_note' => false, |
||
64 | 'get_states_field' => true, |
||
65 | 'checkout' => false, |
||
66 | 'add_invoice_item' => false, |
||
67 | 'remove_invoice_item' => false, |
||
68 | 'create_invoice_item' => false, |
||
69 | 'get_billing_details' => false, |
||
70 | 'admin_recalculate_totals' => false, |
||
71 | 'admin_apply_discount' => false, |
||
72 | 'admin_remove_discount' => false, |
||
73 | 'check_email' => false, |
||
74 | 'run_tool' => false, |
||
75 | 'apply_discount' => true, |
||
76 | 'remove_discount' => true, |
||
77 | 'buy_items' => true, |
||
78 | ); |
||
79 | |||
80 | foreach ( $ajax_events as $ajax_event => $nopriv ) { |
||
81 | add_action( 'wp_ajax_wpinv_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
||
82 | |||
83 | if ( !defined( 'WPI_AJAX_' . strtoupper( $nopriv ) ) ) { |
||
84 | define( 'WPI_AJAX_' . strtoupper( $nopriv ), 1 ); |
||
85 | } |
||
86 | |||
87 | if ( $nopriv ) { |
||
88 | add_action( 'wp_ajax_nopriv_wpinv_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
||
89 | |||
90 | add_action( 'wpinv_ajax_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
||
91 | } |
||
92 | } |
||
93 | } |
||
94 | |||
95 | public static function add_note() { |
||
96 | check_ajax_referer( 'add-invoice-note', '_nonce' ); |
||
97 | |||
98 | if ( ! wpinv_current_user_can_manage_invoicing() ) { |
||
99 | die(-1); |
||
100 | } |
||
101 | |||
102 | $post_id = absint( $_POST['post_id'] ); |
||
103 | $note = wp_kses_post( trim( stripslashes( $_POST['note'] ) ) ); |
||
104 | $note_type = sanitize_text_field( $_POST['note_type'] ); |
||
105 | |||
106 | $is_customer_note = $note_type == 'customer' ? 1 : 0; |
||
107 | |||
108 | if ( $post_id > 0 ) { |
||
109 | $note_id = wpinv_insert_payment_note( $post_id, $note, $is_customer_note ); |
||
110 | |||
111 | if ( $note_id > 0 && !is_wp_error( $note_id ) ) { |
||
112 | wpinv_get_invoice_note_line_item( $note_id ); |
||
113 | } |
||
114 | } |
||
115 | |||
116 | die(); |
||
117 | } |
||
118 | |||
119 | public static function delete_note() { |
||
120 | check_ajax_referer( 'delete-invoice-note', '_nonce' ); |
||
121 | |||
122 | if ( !wpinv_current_user_can_manage_invoicing() ) { |
||
123 | die(-1); |
||
124 | } |
||
125 | |||
126 | $note_id = (int)$_POST['note_id']; |
||
127 | |||
128 | if ( $note_id > 0 ) { |
||
129 | wp_delete_comment( $note_id, true ); |
||
130 | } |
||
131 | |||
132 | die(); |
||
133 | } |
||
134 | |||
135 | public static function get_states_field() { |
||
136 | echo wpinv_get_states_field(); |
||
137 | |||
138 | die(); |
||
139 | } |
||
140 | |||
141 | public static function checkout() { |
||
142 | if ( ! defined( 'WPINV_CHECKOUT' ) ) { |
||
143 | define( 'WPINV_CHECKOUT', true ); |
||
144 | } |
||
145 | |||
146 | wpinv_process_checkout(); |
||
147 | die(0); |
||
148 | } |
||
149 | |||
150 | public static function add_invoice_item() { |
||
151 | global $wpi_userID, $wpinv_ip_address_country; |
||
152 | check_ajax_referer( 'invoice-item', '_nonce' ); |
||
153 | if ( !wpinv_current_user_can_manage_invoicing() ) { |
||
154 | die(-1); |
||
155 | } |
||
156 | |||
157 | $item_id = sanitize_text_field( $_POST['item_id'] ); |
||
158 | $invoice_id = absint( $_POST['invoice_id'] ); |
||
159 | |||
160 | if ( !is_numeric( $invoice_id ) || !is_numeric( $item_id ) ) { |
||
161 | die(); |
||
162 | } |
||
163 | |||
164 | $invoice = wpinv_get_invoice( $invoice_id ); |
||
165 | if ( empty( $invoice ) ) { |
||
166 | die(); |
||
167 | } |
||
168 | |||
169 | if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
||
170 | die(); // Don't allow modify items for paid invoice. |
||
171 | } |
||
172 | |||
173 | if ( !empty( $_POST['user_id'] ) ) { |
||
174 | $wpi_userID = absint( $_POST['user_id'] ); |
||
175 | } |
||
176 | |||
177 | $item = new WPInv_Item( $item_id ); |
||
178 | if ( !( !empty( $item ) && $item->post_type == 'wpi_item' ) ) { |
||
179 | die(); |
||
180 | } |
||
181 | |||
182 | // Validate item before adding to invoice because recurring item must be paid individually. |
||
183 | if ( !empty( $invoice->cart_details ) ) { |
||
184 | $valid = true; |
||
185 | |||
186 | if ( $recurring_item = $invoice->get_recurring() ) { |
||
187 | if ( $recurring_item != $item_id ) { |
||
188 | $valid = false; |
||
189 | } |
||
190 | } else if ( wpinv_is_recurring_item( $item_id ) ) { |
||
191 | $valid = false; |
||
192 | } |
||
193 | |||
194 | if ( !$valid ) { |
||
195 | $response = array(); |
||
196 | $response['success'] = false; |
||
197 | $response['msg'] = __( 'You can not add item because recurring item must be paid individually!', 'invoicing' ); |
||
198 | wp_send_json( $response ); |
||
199 | } |
||
200 | } |
||
201 | |||
202 | $checkout_session = wpinv_get_checkout_session(); |
||
203 | |||
204 | $data = array(); |
||
205 | $data['invoice_id'] = $invoice_id; |
||
206 | $data['cart_discounts'] = $invoice->get_discounts( true ); |
||
207 | |||
208 | wpinv_set_checkout_session( $data ); |
||
209 | |||
210 | $quantity = wpinv_item_quantities_enabled() && !empty($_POST['qty']) && (int)$_POST['qty'] > 0 ? (int)$_POST['qty'] : 1; |
||
211 | |||
212 | $args = array( |
||
213 | 'id' => $item_id, |
||
214 | 'quantity' => $quantity, |
||
215 | 'item_price' => $item->get_price(), |
||
216 | 'custom_price' => '', |
||
217 | 'tax' => 0.00, |
||
218 | 'discount' => 0, |
||
219 | 'meta' => array(), |
||
220 | 'fees' => array() |
||
221 | ); |
||
222 | |||
223 | $invoice->add_item( $item_id, $args ); |
||
224 | $invoice->save(); |
||
225 | |||
226 | if ( empty( $_POST['country'] ) ) { |
||
227 | $_POST['country'] = !empty($invoice->country) ? $invoice->country : wpinv_get_default_country(); |
||
228 | } |
||
229 | if ( empty( $_POST['state'] ) ) { |
||
230 | $_POST['state'] = $invoice->state; |
||
231 | } |
||
232 | |||
233 | $invoice->country = sanitize_text_field( $_POST['country'] ); |
||
234 | $invoice->state = sanitize_text_field( $_POST['state'] ); |
||
235 | |||
236 | $invoice->set( 'country', sanitize_text_field( $_POST['country'] ) ); |
||
237 | $invoice->set( 'state', sanitize_text_field( $_POST['state'] ) ); |
||
238 | |||
239 | $wpinv_ip_address_country = $invoice->country; |
||
240 | |||
241 | $invoice->recalculate_totals(true); |
||
242 | |||
243 | $response = array(); |
||
244 | $response['success'] = true; |
||
245 | $response['data']['items'] = wpinv_admin_get_line_items( $invoice ); |
||
246 | $response['data']['subtotal'] = $invoice->get_subtotal(); |
||
247 | $response['data']['subtotalf'] = $invoice->get_subtotal(true); |
||
248 | $response['data']['tax'] = $invoice->get_tax(); |
||
249 | $response['data']['taxf'] = $invoice->get_tax(true); |
||
250 | $response['data']['discount'] = $invoice->get_discount(); |
||
251 | $response['data']['discountf'] = $invoice->get_discount(true); |
||
252 | $response['data']['total'] = $invoice->get_total(); |
||
253 | $response['data']['totalf'] = $invoice->get_total(true); |
||
254 | |||
255 | wpinv_set_checkout_session($checkout_session); |
||
256 | |||
257 | wp_send_json( $response ); |
||
258 | } |
||
259 | |||
260 | public static function remove_invoice_item() { |
||
261 | global $wpi_userID, $wpinv_ip_address_country; |
||
262 | |||
263 | check_ajax_referer( 'invoice-item', '_nonce' ); |
||
264 | if ( !wpinv_current_user_can_manage_invoicing() ) { |
||
265 | die(-1); |
||
266 | } |
||
267 | |||
268 | $item_id = sanitize_text_field( $_POST['item_id'] ); |
||
269 | $invoice_id = absint( $_POST['invoice_id'] ); |
||
270 | $cart_index = isset( $_POST['index'] ) && $_POST['index'] >= 0 ? $_POST['index'] : false; |
||
271 | |||
272 | if ( !is_numeric( $invoice_id ) || !is_numeric( $item_id ) ) { |
||
273 | die(); |
||
274 | } |
||
275 | |||
276 | $invoice = wpinv_get_invoice( $invoice_id ); |
||
277 | if ( empty( $invoice ) ) { |
||
278 | die(); |
||
279 | } |
||
280 | |||
281 | if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
||
282 | die(); // Don't allow modify items for paid invoice. |
||
283 | } |
||
284 | |||
285 | if ( !empty( $_POST['user_id'] ) ) { |
||
286 | $wpi_userID = absint( $_POST['user_id'] ); |
||
287 | } |
||
288 | |||
289 | $item = new WPInv_Item( $item_id ); |
||
290 | if ( !( !empty( $item ) && $item->post_type == 'wpi_item' ) ) { |
||
291 | die(); |
||
292 | } |
||
293 | |||
294 | $checkout_session = wpinv_get_checkout_session(); |
||
295 | |||
296 | $data = array(); |
||
297 | $data['invoice_id'] = $invoice_id; |
||
298 | $data['cart_discounts'] = $invoice->get_discounts( true ); |
||
299 | |||
300 | wpinv_set_checkout_session( $data ); |
||
301 | |||
302 | $args = array( |
||
303 | 'id' => $item_id, |
||
304 | 'quantity' => 1, |
||
305 | 'cart_index' => $cart_index |
||
306 | ); |
||
307 | |||
308 | $invoice->remove_item( $item_id, $args ); |
||
309 | $invoice->save(); |
||
310 | |||
311 | if ( empty( $_POST['country'] ) ) { |
||
312 | $_POST['country'] = !empty($invoice->country) ? $invoice->country : wpinv_get_default_country(); |
||
313 | } |
||
314 | if ( empty( $_POST['state'] ) ) { |
||
315 | $_POST['state'] = $invoice->state; |
||
316 | } |
||
317 | |||
318 | $invoice->country = sanitize_text_field( $_POST['country'] ); |
||
319 | $invoice->state = sanitize_text_field( $_POST['state'] ); |
||
320 | |||
321 | $invoice->set( 'country', sanitize_text_field( $_POST['country'] ) ); |
||
322 | $invoice->set( 'state', sanitize_text_field( $_POST['state'] ) ); |
||
323 | |||
324 | $wpinv_ip_address_country = $invoice->country; |
||
325 | |||
326 | $invoice->recalculate_totals(true); |
||
327 | |||
328 | $response = array(); |
||
329 | $response['success'] = true; |
||
330 | $response['data']['items'] = wpinv_admin_get_line_items( $invoice ); |
||
331 | $response['data']['subtotal'] = $invoice->get_subtotal(); |
||
332 | $response['data']['subtotalf'] = $invoice->get_subtotal(true); |
||
333 | $response['data']['tax'] = $invoice->get_tax(); |
||
334 | $response['data']['taxf'] = $invoice->get_tax(true); |
||
335 | $response['data']['discount'] = $invoice->get_discount(); |
||
336 | $response['data']['discountf'] = $invoice->get_discount(true); |
||
337 | $response['data']['total'] = $invoice->get_total(); |
||
338 | $response['data']['totalf'] = $invoice->get_total(true); |
||
339 | |||
340 | wpinv_set_checkout_session($checkout_session); |
||
341 | |||
342 | wp_send_json( $response ); |
||
343 | } |
||
344 | |||
345 | public static function create_invoice_item() { |
||
346 | check_ajax_referer( 'invoice-item', '_nonce' ); |
||
347 | if ( !wpinv_current_user_can_manage_invoicing() ) { |
||
348 | die(-1); |
||
349 | } |
||
350 | |||
351 | $invoice_id = absint( $_POST['invoice_id'] ); |
||
352 | |||
353 | // Find the item |
||
354 | if ( !is_numeric( $invoice_id ) ) { |
||
355 | die(); |
||
356 | } |
||
357 | |||
358 | $invoice = wpinv_get_invoice( $invoice_id ); |
||
359 | if ( empty( $invoice ) ) { |
||
360 | die(); |
||
361 | } |
||
362 | |||
363 | // Validate item before adding to invoice because recurring item must be paid individually. |
||
364 | if ( !empty( $invoice->cart_details ) && $invoice->get_recurring() ) { |
||
365 | $response = array(); |
||
366 | $response['success'] = false; |
||
367 | $response['msg'] = __( 'You can not add item because recurring item must be paid individually!', 'invoicing' ); |
||
368 | wp_send_json( $response ); |
||
369 | } |
||
370 | |||
371 | $save_item = $_POST['_wpinv_quick']; |
||
372 | |||
373 | $meta = array(); |
||
374 | $meta['type'] = !empty($save_item['type']) ? sanitize_text_field($save_item['type']) : 'custom'; |
||
375 | $meta['price'] = !empty($save_item['price']) ? wpinv_sanitize_amount( $save_item['price'] ) : 0; |
||
376 | $meta['vat_rule'] = !empty($save_item['vat_rule']) ? sanitize_text_field($save_item['vat_rule']) : 'digital'; |
||
377 | $meta['vat_class'] = !empty($save_item['vat_class']) ? sanitize_text_field($save_item['vat_class']) : '_standard'; |
||
378 | |||
379 | $data = array(); |
||
380 | $data['post_title'] = sanitize_text_field($save_item['name']); |
||
381 | $data['post_status'] = 'publish'; |
||
382 | $data['meta'] = $meta; |
||
383 | |||
384 | $item = new WPInv_Item(); |
||
385 | $item->create( $data ); |
||
386 | |||
387 | if ( !empty( $item ) ) { |
||
388 | $_POST['item_id'] = $item->ID; |
||
389 | $_POST['qty'] = !empty($save_item['qty']) && $save_item['qty'] > 0 ? (int)$save_item['qty'] : 1; |
||
390 | |||
391 | self::add_invoice_item(); |
||
392 | } |
||
393 | die(); |
||
394 | } |
||
395 | |||
396 | public static function get_billing_details() { |
||
397 | check_ajax_referer( 'get-billing-details', '_nonce' ); |
||
398 | |||
399 | if ( !wpinv_current_user_can_manage_invoicing() ) { |
||
400 | die(-1); |
||
401 | } |
||
402 | |||
403 | $user_id = (int)$_POST['user_id']; |
||
404 | $billing_details = wpinv_get_user_address($user_id); |
||
405 | $billing_details = apply_filters( 'wpinv_fill_billing_details', $billing_details, $user_id ); |
||
406 | |||
407 | if (isset($billing_details['user_id'])) { |
||
408 | unset($billing_details['user_id']); |
||
409 | } |
||
410 | |||
411 | if (isset($billing_details['email'])) { |
||
412 | unset($billing_details['email']); |
||
413 | } |
||
414 | |||
415 | $response = array(); |
||
416 | $response['success'] = true; |
||
417 | $response['data']['billing_details'] = $billing_details; |
||
418 | |||
419 | wp_send_json( $response ); |
||
420 | } |
||
421 | |||
422 | public static function admin_recalculate_totals() { |
||
423 | global $wpi_userID, $wpinv_ip_address_country; |
||
424 | |||
425 | check_ajax_referer( 'wpinv-nonce', '_nonce' ); |
||
426 | if ( !wpinv_current_user_can_manage_invoicing() ) { |
||
427 | die(-1); |
||
428 | } |
||
429 | |||
430 | $invoice_id = absint( $_POST['invoice_id'] ); |
||
431 | $invoice = wpinv_get_invoice( $invoice_id ); |
||
432 | if ( empty( $invoice ) ) { |
||
433 | die(); |
||
434 | } |
||
435 | |||
436 | $checkout_session = wpinv_get_checkout_session(); |
||
437 | |||
438 | $data = array(); |
||
439 | $data['invoice_id'] = $invoice_id; |
||
440 | $data['cart_discounts'] = $invoice->get_discounts( true ); |
||
441 | |||
442 | wpinv_set_checkout_session( $data ); |
||
443 | |||
444 | if ( !empty( $_POST['user_id'] ) ) { |
||
445 | $wpi_userID = absint( $_POST['user_id'] ); |
||
446 | } |
||
447 | |||
448 | if ( empty( $_POST['country'] ) ) { |
||
449 | $_POST['country'] = !empty($invoice->country) ? $invoice->country : wpinv_get_default_country(); |
||
450 | } |
||
451 | |||
452 | $invoice->country = sanitize_text_field( $_POST['country'] ); |
||
453 | $invoice->set( 'country', sanitize_text_field( $_POST['country'] ) ); |
||
454 | if ( isset( $_POST['state'] ) ) { |
||
455 | $invoice->state = sanitize_text_field( $_POST['state'] ); |
||
456 | $invoice->set( 'state', sanitize_text_field( $_POST['state'] ) ); |
||
457 | } |
||
458 | |||
459 | $wpinv_ip_address_country = $invoice->country; |
||
460 | |||
461 | $invoice = $invoice->recalculate_totals(true); |
||
462 | |||
463 | $response = array(); |
||
464 | $response['success'] = true; |
||
465 | $response['data']['items'] = wpinv_admin_get_line_items( $invoice ); |
||
466 | $response['data']['subtotal'] = $invoice->get_subtotal(); |
||
467 | $response['data']['subtotalf'] = $invoice->get_subtotal(true); |
||
468 | $response['data']['tax'] = $invoice->get_tax(); |
||
469 | $response['data']['taxf'] = $invoice->get_tax(true); |
||
470 | $response['data']['discount'] = $invoice->get_discount(); |
||
471 | $response['data']['discountf'] = $invoice->get_discount(true); |
||
472 | $response['data']['total'] = $invoice->get_total(); |
||
473 | $response['data']['totalf'] = $invoice->get_total(true); |
||
474 | |||
475 | wpinv_set_checkout_session($checkout_session); |
||
476 | |||
477 | wp_send_json( $response ); |
||
478 | } |
||
479 | |||
480 | public static function admin_apply_discount() { |
||
481 | global $wpi_userID; |
||
482 | |||
483 | check_ajax_referer( 'wpinv-nonce', '_nonce' ); |
||
484 | if ( !wpinv_current_user_can_manage_invoicing() ) { |
||
485 | die(-1); |
||
486 | } |
||
487 | |||
488 | $invoice_id = absint( $_POST['invoice_id'] ); |
||
489 | $discount_code = sanitize_text_field( $_POST['code'] ); |
||
490 | if ( empty( $invoice_id ) || empty( $discount_code ) ) { |
||
491 | die(); |
||
492 | } |
||
493 | |||
494 | $invoice = wpinv_get_invoice( $invoice_id ); |
||
495 | if ( empty( $invoice ) || ( !empty( $invoice ) && ( $invoice->is_paid() || $invoice->is_refunded() ) ) ) { |
||
496 | die(); |
||
497 | } |
||
498 | |||
499 | $checkout_session = wpinv_get_checkout_session(); |
||
500 | |||
501 | $data = array(); |
||
502 | $data['invoice_id'] = $invoice_id; |
||
503 | $data['cart_discounts'] = $invoice->get_discounts( true ); |
||
504 | |||
505 | wpinv_set_checkout_session( $data ); |
||
506 | |||
507 | $response = array(); |
||
508 | $response['success'] = false; |
||
509 | $response['msg'] = __( 'This discount is invalid.', 'invoicing' ); |
||
510 | $response['data']['code'] = $discount_code; |
||
511 | |||
512 | if ( wpinv_is_discount_valid( $discount_code, $invoice->get_user_id() ) ) { |
||
513 | $discounts = wpinv_set_cart_discount( $discount_code ); |
||
514 | |||
515 | $response['success'] = true; |
||
516 | $response['msg'] = __( 'Discount has been applied successfully.', 'invoicing' ); |
||
517 | } else { |
||
518 | $errors = wpinv_get_errors(); |
||
519 | if ( !empty( $errors['wpinv-discount-error'] ) ) { |
||
520 | $response['msg'] = $errors['wpinv-discount-error']; |
||
521 | } |
||
522 | wpinv_unset_error( 'wpinv-discount-error' ); |
||
523 | } |
||
524 | |||
525 | wpinv_set_checkout_session($checkout_session); |
||
526 | |||
527 | wp_send_json( $response ); |
||
528 | } |
||
529 | |||
530 | public static function admin_remove_discount() { |
||
531 | global $wpi_userID; |
||
532 | |||
533 | check_ajax_referer( 'wpinv-nonce', '_nonce' ); |
||
534 | if ( !wpinv_current_user_can_manage_invoicing() ) { |
||
535 | die(-1); |
||
536 | } |
||
537 | |||
538 | $invoice_id = absint( $_POST['invoice_id'] ); |
||
539 | $discount_code = sanitize_text_field( $_POST['code'] ); |
||
540 | if ( empty( $invoice_id ) || empty( $discount_code ) ) { |
||
541 | die(); |
||
542 | } |
||
543 | |||
544 | $invoice = wpinv_get_invoice( $invoice_id ); |
||
545 | if ( empty( $invoice ) || ( !empty( $invoice ) && ( $invoice->is_paid() || $invoice->is_refunded() ) ) ) { |
||
546 | die(); |
||
547 | } |
||
548 | |||
549 | $checkout_session = wpinv_get_checkout_session(); |
||
550 | |||
551 | $data = array(); |
||
552 | $data['invoice_id'] = $invoice_id; |
||
553 | $data['cart_discounts'] = $invoice->get_discounts( true ); |
||
554 | |||
555 | wpinv_set_checkout_session( $data ); |
||
556 | |||
557 | $response = array(); |
||
558 | $response['success'] = false; |
||
559 | $response['msg'] = NULL; |
||
560 | |||
561 | $discounts = wpinv_unset_cart_discount( $discount_code ); |
||
562 | $response['success'] = true; |
||
563 | $response['msg'] = __( 'Discount has been removed successfully.', 'invoicing' ); |
||
564 | |||
565 | wpinv_set_checkout_session($checkout_session); |
||
566 | |||
567 | wp_send_json( $response ); |
||
568 | } |
||
569 | |||
570 | public static function check_email() { |
||
571 | check_ajax_referer( 'wpinv-nonce', '_nonce' ); |
||
572 | if ( !wpinv_current_user_can_manage_invoicing() ) { |
||
573 | die(-1); |
||
574 | } |
||
575 | |||
576 | $email = sanitize_text_field( $_POST['email'] ); |
||
577 | |||
578 | $response = array(); |
||
579 | if ( is_email( $email ) && email_exists( $email ) && $user_data = get_user_by( 'email', $email ) ) { |
||
580 | $user_id = $user_data->ID; |
||
581 | $user_login = $user_data->user_login; |
||
582 | $display_name = $user_data->display_name ? $user_data->display_name : $user_login; |
||
583 | $billing_details = wpinv_get_user_address($user_id); |
||
584 | $billing_details = apply_filters( 'wpinv_fill_billing_details', $billing_details, $user_id ); |
||
585 | |||
586 | if (isset($billing_details['user_id'])) { |
||
587 | unset($billing_details['user_id']); |
||
588 | } |
||
589 | |||
590 | if (isset($billing_details['email'])) { |
||
591 | unset($billing_details['email']); |
||
592 | } |
||
593 | |||
594 | $response['success'] = true; |
||
595 | $response['data']['id'] = $user_data->ID; |
||
596 | $response['data']['name'] = $user_data->user_email; |
||
597 | $response['data']['billing_details'] = $billing_details; |
||
598 | } |
||
599 | |||
600 | wp_send_json( $response ); |
||
601 | } |
||
602 | |||
603 | public static function run_tool() { |
||
604 | check_ajax_referer( 'wpinv-nonce', '_nonce' ); |
||
605 | if ( !wpinv_current_user_can_manage_invoicing() ) { |
||
606 | die(-1); |
||
607 | } |
||
608 | |||
609 | $tool = sanitize_text_field( $_POST['tool'] ); |
||
610 | |||
611 | do_action( 'wpinv_run_tool' ); |
||
612 | |||
613 | if ( !empty( $tool ) ) { |
||
614 | do_action( 'wpinv_tool_' . $tool ); |
||
615 | } |
||
616 | } |
||
617 | |||
618 | public static function apply_discount() { |
||
665 | } |
||
666 | |||
667 | public static function remove_discount() { |
||
668 | check_ajax_referer( 'wpinv-nonce', '_nonce' ); |
||
669 | |||
670 | $response = array(); |
||
671 | |||
672 | if ( isset( $_POST['code'] ) ) { |
||
673 | $discount_code = sanitize_text_field( $_POST['code'] ); |
||
674 | $discounts = wpinv_unset_cart_discount( $discount_code ); |
||
675 | $total = wpinv_get_cart_total( null, $discounts ); |
||
676 | $cart_totals = wpinv_recalculate_tax( true ); |
||
677 | |||
678 | if ( !empty( $cart_totals ) ) { |
||
679 | $response['success'] = true; |
||
680 | $response['data'] = $cart_totals; |
||
681 | $response['data']['code'] = $discount_code; |
||
682 | } else { |
||
683 | $response['success'] = false; |
||
684 | } |
||
685 | |||
686 | // Allow for custom discount code handling |
||
687 | $response = apply_filters( 'wpinv_ajax_discount_response', $response ); |
||
688 | } |
||
689 | |||
690 | wp_send_json( $response ); |
||
691 | } |
||
692 | |||
693 | |||
694 | /** |
||
695 | * Lets users buy items via ajax. |
||
696 | * |
||
697 | * @since 1.0.0 |
||
698 | */ |
||
699 | public static function buy_items() { |
||
839 | } |
||
840 | } |
||
841 | |||
842 | WPInv_Ajax::init(); |
If you suppress an error, we recommend checking for the error condition explicitly: