Total Complexity | 115 |
Total Lines | 927 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like GetPaid_Admin 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.
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 GetPaid_Admin, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
14 | class GetPaid_Admin { |
||
15 | |||
16 | /** |
||
17 | * Local path to this plugins admin directory |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | public $admin_path; |
||
22 | |||
23 | /** |
||
24 | * Web path to this plugins admin directory |
||
25 | * |
||
26 | * @var string |
||
27 | */ |
||
28 | public $admin_url; |
||
29 | |||
30 | /** |
||
31 | * Reports components. |
||
32 | * |
||
33 | * @var GetPaid_Reports |
||
34 | */ |
||
35 | public $reports; |
||
36 | |||
37 | /** |
||
38 | * Class constructor. |
||
39 | */ |
||
40 | public function __construct() { |
||
48 | } |
||
49 | |||
50 | } |
||
51 | |||
52 | /** |
||
53 | * Init action and filter hooks |
||
54 | * |
||
55 | */ |
||
56 | private function init_admin_hooks() { |
||
57 | add_action( 'admin_enqueue_scripts', array( $this, 'enqeue_scripts' ), 9 ); |
||
58 | add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); |
||
59 | add_action( 'admin_init', array( $this, 'init_ayecode_connect_helper' ) ); |
||
60 | add_action( 'admin_init', array( $this, 'activation_redirect' ) ); |
||
61 | add_action( 'admin_init', array( $this, 'maybe_do_admin_action' ) ); |
||
62 | add_action( 'admin_notices', array( $this, 'show_notices' ) ); |
||
63 | add_action( 'getpaid_authenticated_admin_action_rate_plugin', array( $this, 'redirect_to_wordpress_rating_page' ) ); |
||
64 | add_action( 'getpaid_authenticated_admin_action_duplicate_form', array( $this, 'duplicate_payment_form' ) ); |
||
65 | add_action( 'getpaid_authenticated_admin_action_reset_form_stats', array( $this, 'reset_form_stats' ) ); |
||
66 | add_action( 'getpaid_authenticated_admin_action_duplicate_invoice', array( $this, 'duplicate_invoice' ) ); |
||
67 | add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) ); |
||
68 | add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) ); |
||
69 | add_action( 'getpaid_authenticated_admin_action_reset_tax_rates', array( $this, 'admin_reset_tax_rates' ) ); |
||
70 | add_action( 'getpaid_authenticated_admin_action_create_missing_pages', array( $this, 'admin_create_missing_pages' ) ); |
||
71 | add_action( 'getpaid_authenticated_admin_action_refresh_permalinks', array( $this, 'admin_refresh_permalinks' ) ); |
||
72 | add_action( 'getpaid_authenticated_admin_action_create_missing_tables', array( $this, 'admin_create_missing_tables' ) ); |
||
73 | add_action( 'getpaid_authenticated_admin_action_migrate_old_invoices', array( $this, 'admin_migrate_old_invoices' ) ); |
||
74 | add_action( 'getpaid_authenticated_admin_action_download_customers', array( $this, 'admin_download_customers' ) ); |
||
75 | add_action( 'getpaid_authenticated_admin_action_recalculate_discounts', array( $this, 'admin_recalculate_discounts' ) ); |
||
76 | add_action( 'getpaid_authenticated_admin_action_install_plugin', array( $this, 'admin_install_plugin' ) ); |
||
77 | add_action( 'getpaid_authenticated_admin_action_connect_gateway', array( $this, 'admin_connect_gateway' ) ); |
||
78 | add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) ); |
||
79 | do_action( 'getpaid_init_admin_hooks', $this ); |
||
80 | |||
81 | // Setup/welcome |
||
82 | if ( ! empty( $_GET['page'] ) ) { |
||
83 | switch ( sanitize_text_field( $_GET['page'] ) ) { |
||
84 | case 'gp-setup': |
||
85 | include_once dirname( __FILE__ ) . '/class-getpaid-admin-setup-wizard.php'; |
||
86 | break; |
||
87 | } |
||
88 | } |
||
89 | |||
90 | } |
||
91 | |||
92 | /** |
||
93 | * Register admin scripts |
||
94 | * |
||
95 | */ |
||
96 | public function enqeue_scripts() { |
||
97 | global $current_screen, $pagenow; |
||
98 | |||
99 | $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
||
100 | $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php'; |
||
101 | |||
102 | if ( ! empty( $current_screen->post_type ) ) { |
||
103 | $page = $current_screen->post_type; |
||
104 | } |
||
105 | |||
106 | // General styles. |
||
107 | if ( false !== stripos( $page, 'wpi' ) || false !== stripos( $page, 'getpaid' ) || 'gp-setup' == $page || false !== stripos( $page, 'geodir-tickets' ) ) { |
||
108 | |||
109 | // Styles. |
||
110 | $version = filemtime( WPINV_PLUGIN_DIR . 'assets/css/admin.css' ); |
||
111 | wp_enqueue_style( 'wpinv_admin_style', WPINV_PLUGIN_URL . 'assets/css/admin.css', array( 'wp-color-picker' ), $version ); |
||
112 | wp_enqueue_style( 'select2', WPINV_PLUGIN_URL . 'assets/css/select2/select2.min.css', array(), '4.0.13', 'all' ); |
||
113 | |||
114 | // Scripts. |
||
115 | wp_enqueue_script( 'select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full.min.js', array( 'jquery' ), WPINV_VERSION ); |
||
116 | |||
117 | $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin.js' ); |
||
118 | wp_enqueue_script( 'wpinv-admin-script', WPINV_PLUGIN_URL . 'assets/js/admin.js', array( 'jquery', 'wp-color-picker', 'jquery-ui-tooltip' ), $version ); |
||
119 | wp_localize_script( 'wpinv-admin-script', 'WPInv_Admin', apply_filters( 'wpinv_admin_js_localize', $this->get_admin_i18() ) ); |
||
120 | |||
121 | } |
||
122 | |||
123 | // Payment form scripts. |
||
124 | if ( 'wpi_payment_form' == $page && $editing ) { |
||
125 | $this->load_payment_form_scripts(); |
||
126 | } |
||
127 | |||
128 | if ( $page == 'wpinv-subscriptions' ) { |
||
129 | wp_enqueue_script( 'postbox' ); |
||
130 | } |
||
131 | |||
132 | } |
||
133 | |||
134 | /** |
||
135 | * Returns admin js translations. |
||
136 | * |
||
137 | */ |
||
138 | protected function get_admin_i18() { |
||
139 | global $post; |
||
140 | |||
141 | $date_range = array( |
||
142 | 'period' => isset( $_GET['date_range'] ) ? sanitize_text_field( $_GET['date_range'] ) : '7_days', |
||
143 | ); |
||
144 | |||
145 | if ( $date_range['period'] == 'custom' ) { |
||
146 | |||
147 | if ( isset( $_GET['from'] ) ) { |
||
148 | $date_range['after'] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['from'] ), current_time( 'timestamp' ) ) - DAY_IN_SECONDS ); |
||
149 | } |
||
150 | |||
151 | if ( isset( $_GET['to'] ) ) { |
||
152 | $date_range['before'] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['to'] ), current_time( 'timestamp' ) ) + DAY_IN_SECONDS ); |
||
153 | } |
||
154 | } |
||
155 | |||
156 | $i18n = array( |
||
157 | 'ajax_url' => admin_url( 'admin-ajax.php' ), |
||
158 | 'post_ID' => isset( $post->ID ) ? $post->ID : '', |
||
159 | 'wpinv_nonce' => wp_create_nonce( 'wpinv-nonce' ), |
||
160 | 'rest_nonce' => wp_create_nonce( 'wp_rest' ), |
||
161 | 'rest_root' => esc_url_raw( rest_url() ), |
||
162 | 'date_range' => $date_range, |
||
163 | 'add_invoice_note_nonce' => wp_create_nonce( 'add-invoice-note' ), |
||
164 | 'delete_invoice_note_nonce' => wp_create_nonce( 'delete-invoice-note' ), |
||
165 | 'invoice_item_nonce' => wp_create_nonce( 'invoice-item' ), |
||
166 | 'billing_details_nonce' => wp_create_nonce( 'get-billing-details' ), |
||
167 | 'tax' => wpinv_tax_amount(), |
||
168 | 'discount' => 0, |
||
169 | 'currency_symbol' => wpinv_currency_symbol(), |
||
170 | 'currency' => wpinv_get_currency(), |
||
171 | 'currency_pos' => wpinv_currency_position(), |
||
172 | 'thousand_sep' => wpinv_thousands_separator(), |
||
173 | 'decimal_sep' => wpinv_decimal_separator(), |
||
174 | 'decimals' => wpinv_decimals(), |
||
175 | 'save_invoice' => __( 'Save Invoice', 'invoicing' ), |
||
176 | 'status_publish' => wpinv_status_nicename( 'publish' ), |
||
177 | 'status_pending' => wpinv_status_nicename( 'wpi-pending' ), |
||
178 | 'delete_tax_rate' => __( 'Are you sure you wish to delete this tax rate?', 'invoicing' ), |
||
179 | 'status_pending' => wpinv_status_nicename( 'wpi-pending' ), |
||
180 | 'FillBillingDetails' => __( 'Fill the user\'s billing information? This will remove any currently entered billing information', 'invoicing' ), |
||
181 | 'confirmCalcTotals' => __( 'Recalculate totals? This will recalculate totals based on the user billing country. If no billing country is set it will use the base country.', 'invoicing' ), |
||
182 | 'AreYouSure' => __( 'Are you sure?', 'invoicing' ), |
||
183 | 'errDeleteItem' => __( 'This item is in use! Before delete this item, you need to delete all the invoice(s) using this item.', 'invoicing' ), |
||
184 | 'delete_subscription' => __( 'Are you sure you want to delete this subscription?', 'invoicing' ), |
||
185 | 'action_edit' => __( 'Edit', 'invoicing' ), |
||
186 | 'action_cancel' => __( 'Cancel', 'invoicing' ), |
||
187 | 'item_description' => __( 'Item Description', 'invoicing' ), |
||
188 | 'invoice_description' => __( 'Invoice Description', 'invoicing' ), |
||
189 | 'discount_description' => __( 'Discount Description', 'invoicing' ), |
||
190 | 'searching' => __( 'Searching', 'invoicing' ), |
||
191 | 'loading' => __( 'Loading...', 'invoicing' ), |
||
192 | 'search_customers' => __( 'Enter customer name or email', 'invoicing' ), |
||
193 | 'search_items' => __( 'Enter item name', 'invoicing' ), |
||
194 | 'graphs' => array_merge( array( 'refunded_fees', 'refunded_items', 'refunded_subtotal', 'refunded_tax' ), array_keys( wpinv_get_report_graphs() ) ), |
||
195 | ); |
||
196 | |||
197 | if ( ! empty( $post ) && getpaid_is_invoice_post_type( $post->post_type ) ) { |
||
198 | |||
199 | $invoice = new WPInv_Invoice( $post ); |
||
200 | $i18n['save_invoice'] = sprintf( |
||
201 | __( 'Save %s', 'invoicing' ), |
||
202 | ucfirst( $invoice->get_invoice_quote_type() ) |
||
203 | ); |
||
204 | |||
205 | $i18n['invoice_description'] = sprintf( |
||
206 | __( '%s Description', 'invoicing' ), |
||
207 | ucfirst( $invoice->get_invoice_quote_type() ) |
||
208 | ); |
||
209 | |||
210 | } |
||
211 | return $i18n; |
||
212 | } |
||
213 | |||
214 | /** |
||
215 | * Change the admin footer text on GetPaid admin pages. |
||
216 | * |
||
217 | * @since 2.0.0 |
||
218 | * @param string $footer_text |
||
219 | * @return string |
||
220 | */ |
||
221 | public function admin_footer_text( $footer_text ) { |
||
222 | global $current_screen; |
||
223 | |||
224 | $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
||
225 | |||
226 | if ( ! empty( $current_screen->post_type ) ) { |
||
227 | $page = $current_screen->post_type; |
||
228 | } |
||
229 | |||
230 | // General styles. |
||
231 | if ( apply_filters( 'getpaid_display_admin_footer_text', wpinv_current_user_can_manage_invoicing() ) && false !== stripos( $page, 'wpi' ) ) { |
||
232 | |||
233 | // Change the footer text |
||
234 | if ( ! get_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', true ) ) { |
||
235 | |||
236 | $rating_url = esc_url( |
||
237 | wp_nonce_url( |
||
238 | admin_url( 'admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin' ), |
||
239 | 'getpaid-nonce', |
||
240 | 'getpaid-nonce' |
||
241 | ) |
||
242 | ); |
||
243 | |||
244 | $footer_text = sprintf( |
||
245 | /* translators: %s: five stars */ |
||
246 | __( 'If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing' ), |
||
247 | "<a href='$rating_url'>★★★★★</a>" |
||
248 | ); |
||
249 | |||
250 | } else { |
||
251 | |||
252 | $footer_text = sprintf( |
||
253 | /* translators: %s: GetPaid */ |
||
254 | __( 'Thank you for using %s!', 'invoicing' ), |
||
255 | "<a href='https://wpgetpaid.com/' target='_blank'><strong>GetPaid</strong></a>" |
||
256 | ); |
||
257 | |||
258 | } |
||
259 | } |
||
260 | |||
261 | return $footer_text; |
||
262 | } |
||
263 | |||
264 | /** |
||
265 | * Redirects to wp.org to rate the plugin. |
||
266 | * |
||
267 | * @since 2.0.0 |
||
268 | */ |
||
269 | public function redirect_to_wordpress_rating_page() { |
||
270 | update_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', 1 ); |
||
271 | wp_redirect( 'https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post' ); |
||
272 | exit; |
||
|
|||
273 | } |
||
274 | |||
275 | /** |
||
276 | * Loads payment form js. |
||
277 | * |
||
278 | */ |
||
279 | protected function load_payment_form_scripts() { |
||
280 | global $post; |
||
281 | |||
282 | wp_enqueue_script( 'vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.min.js', array(), WPINV_VERSION ); |
||
283 | wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION ); |
||
284 | wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION ); |
||
285 | |||
286 | $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' ); |
||
287 | wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable', 'wp-hooks' ), $version ); |
||
288 | |||
289 | wp_localize_script( |
||
290 | 'wpinv-admin-payment-form-script', |
||
291 | 'wpinvPaymentFormAdmin', |
||
292 | array( |
||
293 | 'elements' => wpinv_get_data( 'payment-form-elements' ), |
||
294 | 'form_elements' => getpaid_get_payment_form_elements( $post->ID ), |
||
295 | 'currency' => wpinv_currency_symbol(), |
||
296 | 'position' => wpinv_currency_position(), |
||
297 | 'decimals' => (int) wpinv_decimals(), |
||
298 | 'thousands_sep' => wpinv_thousands_separator(), |
||
299 | 'decimals_sep' => wpinv_decimal_separator(), |
||
300 | 'form_items' => gepaid_get_form_items( $post->ID ), |
||
301 | 'is_default' => $post->ID == wpinv_get_default_payment_form(), |
||
302 | ) |
||
303 | ); |
||
304 | |||
305 | wp_enqueue_script( 'wpinv-admin-payment-form-script' ); |
||
306 | |||
307 | } |
||
308 | |||
309 | /** |
||
310 | * Add our classes to admin pages. |
||
311 | * |
||
312 | * @param string $classes |
||
313 | * @return string |
||
314 | * |
||
315 | */ |
||
316 | public function admin_body_class( $classes ) { |
||
317 | global $pagenow, $post, $current_screen; |
||
318 | |||
319 | $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
||
320 | |||
321 | if ( ! empty( $current_screen->post_type ) ) { |
||
322 | $page = $current_screen->post_type; |
||
323 | } |
||
324 | |||
325 | if ( false !== stripos( $page, 'wpi' ) ) { |
||
326 | $classes .= ' wpi-' . sanitize_key( $page ); |
||
327 | } |
||
328 | |||
329 | if ( in_array( $page, wpinv_parse_list( 'wpi_invoice wpi_payment_form wpi_quote' ) ) ) { |
||
330 | $classes .= ' wpinv-cpt wpinv'; |
||
331 | } |
||
332 | |||
333 | if ( getpaid_is_invoice_post_type( $page ) ) { |
||
334 | $classes .= ' getpaid-is-invoice-cpt'; |
||
335 | } |
||
336 | |||
337 | return $classes; |
||
338 | } |
||
339 | |||
340 | /** |
||
341 | * Maybe show the AyeCode Connect Notice. |
||
342 | */ |
||
343 | public function init_ayecode_connect_helper() { |
||
344 | |||
345 | // Register with the deactivation survey class. |
||
346 | AyeCode_Deactivation_Survey::instance( |
||
347 | array( |
||
348 | 'slug' => 'invoicing', |
||
349 | 'version' => WPINV_VERSION, |
||
350 | 'support_url' => 'https://wpgetpaid.com/support/', |
||
351 | 'documentation_url' => 'https://docs.wpgetpaid.com/', |
||
352 | 'activated' => (int) get_option( 'gepaid_installed_on' ), |
||
353 | ) |
||
354 | ); |
||
355 | |||
356 | new AyeCode_Connect_Helper( |
||
357 | array( |
||
358 | 'connect_title' => __( 'WP Invoicing - an AyeCode product!', 'invoicing' ), |
||
359 | 'connect_external' => __( 'Please confirm you wish to connect your site?', 'invoicing' ), |
||
360 | 'connect' => sprintf( __( '<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %1$slearn more%2$s', 'invoicing' ), "<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>", '</a>' ), |
||
361 | 'connect_button' => __( 'Connect Site', 'invoicing' ), |
||
362 | 'connecting_button' => __( 'Connecting...', 'invoicing' ), |
||
363 | 'error_localhost' => __( 'This service will only work with a live domain, not a localhost.', 'invoicing' ), |
||
364 | 'error' => __( 'Something went wrong, please refresh and try again.', 'invoicing' ), |
||
365 | ), |
||
366 | array( 'wpi-addons' ) |
||
367 | ); |
||
368 | |||
369 | } |
||
370 | |||
371 | /** |
||
372 | * Redirect users to settings on activation. |
||
373 | * |
||
374 | * @return void |
||
375 | */ |
||
376 | public function activation_redirect() { |
||
377 | |||
378 | $redirected = get_option( 'wpinv_redirected_to_settings' ); |
||
379 | |||
380 | if ( ! empty( $redirected ) || wp_doing_ajax() || ! current_user_can( 'manage_options' ) ) { |
||
381 | return; |
||
382 | } |
||
383 | |||
384 | // Bail if activating from network, or bulk |
||
385 | if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
||
386 | return; |
||
387 | } |
||
388 | |||
389 | update_option( 'wpinv_redirected_to_settings', 1 ); |
||
390 | |||
391 | wp_safe_redirect( admin_url( 'index.php?page=gp-setup' ) ); |
||
392 | exit; |
||
393 | |||
394 | } |
||
395 | |||
396 | /** |
||
397 | * Fires an admin action after verifying that a user can fire them. |
||
398 | */ |
||
399 | public function maybe_do_admin_action() { |
||
400 | if ( isset( $_REQUEST['getpaid-admin-action'] ) && isset( $_REQUEST['getpaid-nonce'] ) && wp_verify_nonce( $_REQUEST['getpaid-nonce'], 'getpaid-nonce' ) && wpinv_current_user_can( sanitize_text_field( $_REQUEST['getpaid-admin-action'] ), $_REQUEST ) ) { |
||
401 | $key = sanitize_key( $_REQUEST['getpaid-admin-action'] ); |
||
402 | |||
403 | do_action( "getpaid_authenticated_admin_action_$key", $_REQUEST ); |
||
404 | } |
||
405 | } |
||
406 | |||
407 | /** |
||
408 | * Duplicate invoice. |
||
409 | * |
||
410 | * @param array $args |
||
411 | */ |
||
412 | public function duplicate_invoice( $args ) { |
||
445 | |||
446 | } |
||
447 | |||
448 | /** |
||
449 | * Sends a payment reminder to a customer. |
||
450 | * |
||
451 | * @param array $args |
||
452 | */ |
||
453 | public function duplicate_payment_form( $args ) { |
||
482 | } |
||
483 | |||
484 | /** |
||
485 | * Resets form stats. |
||
486 | * |
||
487 | * @param array $args |
||
488 | */ |
||
489 | public function reset_form_stats( $args ) { |
||
490 | |||
491 | if ( empty( $args['form_id'] ) ) { |
||
492 | return; |
||
493 | } |
||
494 | |||
495 | $form = new GetPaid_Payment_Form( (int) $args['form_id'] ); |
||
496 | |||
497 | if ( ! $form->exists() ) { |
||
498 | return; |
||
499 | } |
||
500 | |||
501 | $form->set_earned( 0 ); |
||
502 | $form->set_refunded( 0 ); |
||
503 | $form->set_cancelled( 0 ); |
||
504 | $form->set_failed( 0 ); |
||
505 | $form->save(); |
||
506 | |||
507 | $this->show_success( __( 'Form stats reset successfully', 'invoicing' ) ); |
||
508 | |||
509 | wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'form_id', 'getpaid-nonce' ) ) ); |
||
510 | exit; |
||
511 | } |
||
512 | |||
513 | /** |
||
514 | * Sends a payment reminder to a customer. |
||
515 | * |
||
516 | * @param array $args |
||
517 | */ |
||
518 | public function send_customer_invoice( $args ) { |
||
519 | getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ), true ); |
||
520 | wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
||
521 | exit; |
||
522 | } |
||
523 | |||
524 | /** |
||
525 | * Sends a payment reminder to a customer. |
||
526 | * |
||
527 | * @param array $args |
||
528 | */ |
||
529 | public function send_customer_payment_reminder( $args ) { |
||
530 | $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) ); |
||
531 | |||
532 | if ( $sent ) { |
||
533 | $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) ); |
||
534 | } else { |
||
535 | $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) ); |
||
536 | } |
||
537 | |||
538 | wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
||
539 | exit; |
||
540 | } |
||
541 | |||
542 | /** |
||
543 | * Resets tax rates. |
||
544 | * |
||
545 | */ |
||
546 | public function admin_reset_tax_rates() { |
||
547 | |||
548 | update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) ); |
||
549 | wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
||
550 | exit; |
||
551 | |||
552 | } |
||
553 | |||
554 | /** |
||
555 | * Resets admin pages. |
||
556 | * |
||
557 | */ |
||
558 | public function admin_create_missing_pages() { |
||
564 | } |
||
565 | |||
566 | /** |
||
567 | * Refreshes the permalinks. |
||
568 | */ |
||
569 | public function admin_refresh_permalinks() { |
||
574 | } |
||
575 | |||
576 | /** |
||
577 | * Creates missing admin tables. |
||
578 | * |
||
579 | */ |
||
580 | public function admin_create_missing_tables() { |
||
581 | global $wpdb; |
||
582 | |||
583 | GetPaid_Installer::create_db_tables(); |
||
584 | |||
585 | if ( '' !== $wpdb->last_error ) { |
||
586 | $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
||
587 | } else { |
||
588 | $this->show_success( __( 'Your GetPaid tables have been updated.', 'invoicing' ) ); |
||
589 | } |
||
590 | |||
591 | wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
||
592 | exit; |
||
593 | } |
||
594 | |||
595 | /** |
||
596 | * Migrates old invoices to the new database tables. |
||
597 | * |
||
598 | */ |
||
599 | public function admin_migrate_old_invoices() { |
||
600 | |||
601 | // Migrate the invoices. |
||
602 | $installer = new GetPaid_Installer(); |
||
603 | $installer->migrate_old_invoices(); |
||
604 | |||
605 | // Show an admin message. |
||
606 | $this->show_success( __( 'Your invoices have been migrated.', 'invoicing' ) ); |
||
607 | |||
608 | // Redirect the admin. |
||
609 | wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
||
610 | exit; |
||
611 | |||
612 | } |
||
613 | |||
614 | /** |
||
615 | * Download customers. |
||
616 | * |
||
617 | */ |
||
618 | public function admin_download_customers() { |
||
619 | global $wpdb; |
||
620 | |||
621 | $output = fopen( 'php://output', 'w' ); |
||
622 | |||
623 | if ( false === $output ) { |
||
624 | wp_die( esc_html__( 'Unsupported server', 'invoicing' ), 500 ); |
||
625 | } |
||
626 | |||
627 | header( 'Content-Type:text/csv' ); |
||
628 | header( 'Content-Disposition:attachment;filename=customers.csv' ); |
||
629 | |||
630 | $post_types = ''; |
||
631 | |||
632 | foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
||
633 | $post_types .= $wpdb->prepare( 'post_type=%s OR ', $post_type ); |
||
634 | } |
||
635 | |||
636 | $post_types = rtrim( $post_types, ' OR' ); |
||
637 | |||
638 | $customers = $wpdb->get_col( "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types" ); |
||
639 | |||
640 | $columns = array( |
||
641 | 'name' => __( 'Name', 'invoicing' ), |
||
642 | 'email' => __( 'Email', 'invoicing' ), |
||
643 | 'country' => __( 'Country', 'invoicing' ), |
||
644 | 'state' => __( 'State', 'invoicing' ), |
||
645 | 'city' => __( 'City', 'invoicing' ), |
||
646 | 'zip' => __( 'ZIP', 'invoicing' ), |
||
647 | 'address' => __( 'Address', 'invoicing' ), |
||
648 | 'phone' => __( 'Phone', 'invoicing' ), |
||
649 | 'company' => __( 'Company', 'invoicing' ), |
||
650 | 'company_id' => __( 'Company ID', 'invoicing' ), |
||
651 | 'invoices' => __( 'Invoices', 'invoicing' ), |
||
652 | 'total_raw' => __( 'Total Spend', 'invoicing' ), |
||
653 | 'signup' => __( 'Date created', 'invoicing' ), |
||
654 | ); |
||
655 | |||
656 | // Output the csv column headers. |
||
657 | fputcsv( $output, array_values( $columns ) ); |
||
658 | |||
659 | // Loop through |
||
660 | $table = new WPInv_Customers_Table(); |
||
661 | foreach ( $customers as $customer_id ) { |
||
662 | |||
663 | $user = get_user_by( 'id', $customer_id ); |
||
664 | $row = array(); |
||
665 | if ( empty( $user ) ) { |
||
666 | continue; |
||
667 | } |
||
668 | |||
669 | foreach ( array_keys( $columns ) as $column ) { |
||
670 | |||
671 | $method = 'column_' . $column; |
||
672 | |||
673 | if ( 'name' == $column ) { |
||
674 | $value = esc_html( $user->display_name ); |
||
675 | } elseif ( 'email' == $column ) { |
||
676 | $value = sanitize_email( $user->user_email ); |
||
677 | } elseif ( is_callable( array( $table, $method ) ) ) { |
||
678 | $value = wp_strip_all_tags( $table->$method( $user ) ); |
||
679 | } |
||
680 | |||
681 | if ( empty( $value ) ) { |
||
682 | $value = esc_html( get_user_meta( $user->ID, '_wpinv_' . $column, true ) ); |
||
683 | } |
||
684 | |||
685 | $row[] = $value; |
||
686 | |||
687 | } |
||
688 | |||
689 | fputcsv( $output, $row ); |
||
690 | } |
||
691 | |||
692 | fclose( $output ); |
||
693 | exit; |
||
694 | |||
695 | } |
||
696 | |||
697 | /** |
||
698 | * Installs a plugin. |
||
699 | * |
||
700 | * @param array $data |
||
701 | */ |
||
702 | public function admin_install_plugin( $data ) { |
||
703 | |||
704 | if ( ! empty( $data['plugins'] ) ) { |
||
705 | include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
||
706 | wp_cache_flush(); |
||
707 | |||
708 | foreach ( $data['plugins'] as $slug => $file ) { |
||
709 | $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/' . $slug . '.latest-stable.zip' ); |
||
710 | $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
||
711 | $installed = $upgrader->install( $plugin_zip ); |
||
712 | |||
713 | if ( ! is_wp_error( $installed ) && $installed ) { |
||
714 | activate_plugin( $file, '', false, true ); |
||
715 | } else { |
||
716 | wpinv_error_log( $upgrader->skin->get_upgrade_messages(), false ); |
||
717 | } |
||
718 | } |
||
719 | } |
||
720 | |||
721 | $redirect = isset( $data['redirect'] ) ? esc_url_raw( $data['redirect'] ) : admin_url( 'plugins.php' ); |
||
722 | wp_safe_redirect( $redirect ); |
||
723 | exit; |
||
724 | |||
725 | } |
||
726 | |||
727 | /** |
||
728 | * Connects a gateway. |
||
729 | * |
||
730 | * @param array $data |
||
731 | */ |
||
732 | public function admin_connect_gateway( $data ) { |
||
733 | |||
734 | if ( ! empty( $data['plugin'] ) ) { |
||
735 | |||
736 | $gateway = sanitize_key( $data['plugin'] ); |
||
737 | $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
||
738 | |||
739 | if ( ! empty( $connect_url ) ) { |
||
740 | wp_redirect( $connect_url ); |
||
741 | exit; |
||
742 | } |
||
743 | |||
744 | if ( 'stripe' == $data['plugin'] ) { |
||
745 | require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
||
746 | include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
||
747 | wp_cache_flush(); |
||
748 | |||
749 | if ( ! array_key_exists( 'getpaid-stripe-payments/getpaid-stripe-payments.php', get_plugins() ) ) { |
||
750 | $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/getpaid-stripe-payments.latest-stable.zip' ); |
||
751 | $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
||
752 | $upgrader->install( $plugin_zip ); |
||
753 | } |
||
754 | |||
755 | activate_plugin( 'getpaid-stripe-payments/getpaid-stripe-payments.php', '', false, true ); |
||
756 | } |
||
757 | |||
758 | $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
||
759 | if ( ! empty( $connect_url ) ) { |
||
760 | wp_redirect( $connect_url ); |
||
761 | exit; |
||
762 | } |
||
763 | } |
||
764 | |||
765 | $redirect = isset( $data['redirect'] ) ? esc_url_raw( urldecode( $data['redirect'] ) ) : admin_url( 'admin.php?page=wpinv-settings&tab=gateways' ); |
||
766 | wp_safe_redirect( $redirect ); |
||
767 | exit; |
||
768 | |||
769 | } |
||
770 | |||
771 | /** |
||
772 | * Recalculates discounts. |
||
773 | * |
||
774 | */ |
||
775 | public function admin_recalculate_discounts() { |
||
776 | global $wpdb; |
||
777 | |||
778 | // Fetch all invoices that have discount codes. |
||
779 | $table = $wpdb->prefix . 'getpaid_invoices'; |
||
780 | $invoices = $wpdb->get_col( "SELECT `post_id` FROM `$table` WHERE `discount` = 0 && `discount_code` <> ''" ); |
||
781 | |||
782 | foreach ( $invoices as $invoice ) { |
||
783 | |||
784 | $invoice = new WPInv_Invoice( $invoice ); |
||
785 | |||
786 | if ( ! $invoice->exists() ) { |
||
787 | continue; |
||
788 | } |
||
789 | |||
790 | // Abort if the discount does not exist or does not apply here. |
||
791 | $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
||
792 | if ( ! $discount->exists() ) { |
||
793 | continue; |
||
794 | } |
||
795 | |||
796 | $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
||
797 | $invoice->recalculate_total(); |
||
798 | |||
799 | if ( $invoice->get_total_discount() > 0 ) { |
||
800 | $invoice->save(); |
||
801 | } |
||
802 | } |
||
803 | |||
804 | // Show an admin message. |
||
805 | $this->show_success( __( 'Discounts have been recalculated.', 'invoicing' ) ); |
||
806 | |||
807 | // Redirect the admin. |
||
808 | wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
||
809 | exit; |
||
810 | |||
811 | } |
||
812 | |||
813 | /** |
||
814 | * Returns an array of admin notices. |
||
815 | * |
||
816 | * @since 1.0.19 |
||
817 | * @return array |
||
818 | */ |
||
819 | public function get_notices() { |
||
820 | $notices = get_option( 'wpinv_admin_notices' ); |
||
821 | return is_array( $notices ) ? $notices : array(); |
||
822 | } |
||
823 | |||
824 | /** |
||
825 | * Checks if we have any admin notices. |
||
826 | * |
||
827 | * @since 2.0.4 |
||
828 | * @return array |
||
829 | */ |
||
830 | public function has_notices() { |
||
831 | return count( $this->get_notices() ) > 0; |
||
832 | } |
||
833 | |||
834 | /** |
||
835 | * Clears all admin notices |
||
836 | * |
||
837 | * @access public |
||
838 | * @since 1.0.19 |
||
839 | */ |
||
840 | public function clear_notices() { |
||
841 | delete_option( 'wpinv_admin_notices' ); |
||
842 | } |
||
843 | |||
844 | /** |
||
845 | * Saves a new admin notice |
||
846 | * |
||
847 | * @access public |
||
848 | * @since 1.0.19 |
||
849 | */ |
||
850 | public function save_notice( $type, $message ) { |
||
851 | $notices = $this->get_notices(); |
||
852 | |||
853 | if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ] ) ) { |
||
854 | $notices[ $type ] = array(); |
||
855 | } |
||
856 | |||
857 | $notices[ $type ][] = $message; |
||
858 | |||
859 | update_option( 'wpinv_admin_notices', $notices ); |
||
860 | } |
||
861 | |||
862 | /** |
||
863 | * Displays a success notice |
||
864 | * |
||
865 | * @param string $msg The message to qeue. |
||
866 | * @access public |
||
867 | * @since 1.0.19 |
||
868 | */ |
||
869 | public function show_success( $msg ) { |
||
870 | $this->save_notice( 'success', $msg ); |
||
871 | } |
||
872 | |||
873 | /** |
||
874 | * Displays a error notice |
||
875 | * |
||
876 | * @access public |
||
877 | * @param string $msg The message to qeue. |
||
878 | * @since 1.0.19 |
||
879 | */ |
||
880 | public function show_error( $msg ) { |
||
882 | } |
||
883 | |||
884 | /** |
||
885 | * Displays a warning notice |
||
886 | * |
||
887 | * @access public |
||
888 | * @param string $msg The message to qeue. |
||
889 | * @since 1.0.19 |
||
890 | */ |
||
891 | public function show_warning( $msg ) { |
||
893 | } |
||
894 | |||
895 | /** |
||
896 | * Displays a info notice |
||
897 | * |
||
898 | * @access public |
||
899 | * @param string $msg The message to qeue. |
||
900 | * @since 1.0.19 |
||
901 | */ |
||
902 | public function show_info( $msg ) { |
||
904 | } |
||
905 | |||
906 | /** |
||
907 | * Show notices |
||
908 | * |
||
909 | * @access public |
||
910 | * @since 1.0.19 |
||
911 | */ |
||
912 | public function show_notices() { |
||
941 | } |
||
942 | } |
||
943 | |||
947 |
In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.