Passed
Push — master ( 793157...3faf4a )
by Brian
05:26
created

GetPaid_Admin::admin_recalculate_discounts()   A

Complexity

Conditions 5
Paths 5

Size

Total Lines 36
Code Lines 17

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 5
eloc 17
nc 5
nop 0
dl 0
loc 36
rs 9.3888
c 0
b 0
f 0
1
<?php
2
/**
3
 * Contains the admin class.
4
 *
5
 */
6
7
defined( 'ABSPATH' ) || exit;
8
9
/**
10
 * The main admin class.
11
 *
12
 * @since       1.0.19
13
 */
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(){
41
42
        $this->admin_path  = plugin_dir_path( __FILE__ );
43
		$this->admin_url   = plugins_url( '/', __FILE__ );
44
		$this->reports     = new GetPaid_Reports();
45
46
        if ( is_admin() ) {
47
			$this->init_admin_hooks();
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' ) );
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_send_invoice', array( $this, 'send_customer_invoice' ) );
65
		add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) );
66
        add_action( 'getpaid_authenticated_admin_action_reset_tax_rates', array( $this, 'admin_reset_tax_rates' ) );
67
		add_action( 'getpaid_authenticated_admin_action_create_missing_pages', array( $this, 'admin_create_missing_pages' ) );
68
		add_action( 'getpaid_authenticated_admin_action_create_missing_tables', array( $this, 'admin_create_missing_tables' ) );
69
		add_action( 'getpaid_authenticated_admin_action_migrate_old_invoices', array( $this, 'admin_migrate_old_invoices' ) );
70
		add_action( 'getpaid_authenticated_admin_action_download_customers', array( $this, 'admin_download_customers' ) );
71
		add_action( 'getpaid_authenticated_admin_action_recalculate_discounts', array( $this, 'admin_recalculate_discounts' ) );
72
		add_action( 'getpaid_authenticated_admin_action_install_plugin', array( $this, 'admin_install_plugin' ) );
73
		add_action( 'getpaid_authenticated_admin_action_connect_gateway', array( $this, 'admin_connect_gateway' ) );
74
		add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) );
75
		do_action( 'getpaid_init_admin_hooks', $this );
76
77
		// Setup/welcome
78
		if ( ! empty( $_GET['page'] ) ) {
79
			switch ( $_GET['page'] ) {
80
				case 'gp-setup' :
81
					include_once( dirname( __FILE__ ) . '/class-getpaid-admin-setup-wizard.php' );
82
					break;
83
			}
84
		}
85
86
    }
87
88
    /**
89
	 * Register admin scripts
90
	 *
91
	 */
92
	public function enqeue_scripts() {
93
        global $current_screen, $pagenow;
94
95
		$page    = isset( $_GET['page'] ) ? $_GET['page'] : '';
96
		$editing = $pagenow == 'post.php' || $pagenow == 'post-new.php';
97
98
        if ( ! empty( $current_screen->post_type ) ) {
99
			$page = $current_screen->post_type;
100
        }
101
102
        // General styles.
103
        if ( false !== stripos( $page, 'wpi' ) || 'gp-setup' == $page ) {
104
105
            // Styles.
106
            $version = filemtime( WPINV_PLUGIN_DIR . 'assets/css/admin.css' );
107
            wp_enqueue_style( 'wpinv_admin_style', WPINV_PLUGIN_URL . 'assets/css/admin.css', array( 'wp-color-picker' ), $version );
108
            wp_enqueue_style( 'select2', WPINV_PLUGIN_URL . 'assets/css/select2/select2.min.css', array(), '4.0.13', 'all' );
109
110
            // Scripts.
111
            wp_enqueue_script('select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full.min.js', array( 'jquery' ), WPINV_VERSION );
112
113
            $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin.js' );
114
            wp_enqueue_script( 'wpinv-admin-script', WPINV_PLUGIN_URL . 'assets/js/admin.js', array( 'jquery', 'wp-color-picker', 'jquery-ui-tooltip' ),  $version );
115
            wp_localize_script( 'wpinv-admin-script', 'WPInv_Admin', apply_filters( 'wpinv_admin_js_localize', $this->get_admin_i18() ) );
116
117
        }
118
119
        // Payment form scripts.
120
		if ( 'wpi_payment_form' == $page && $editing ) {
121
            $this->load_payment_form_scripts();
122
        }
123
124
		if ( $page == 'wpinv-subscriptions' ) {
125
			wp_enqueue_script( 'postbox' );
126
		}
127
128
    }
129
130
    /**
131
	 * Returns admin js translations.
132
	 *
133
	 */
134
	protected function get_admin_i18() {
135
        global $post;
136
137
		$date_range = array(
138
			'period' => isset( $_GET['date_range'] ) ? sanitize_text_field( $_GET['date_range'] ) : '7_days'
139
		);
140
141
		if ( $date_range['period'] == 'custom' ) {
142
			
143
			if ( isset( $_GET['from'] ) ) {
144
				$date_range[ 'after' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['from'] ), current_time( 'timestamp' ) ) - DAY_IN_SECONDS );
145
			}
146
147
			if ( isset( $_GET['to'] ) ) {
148
				$date_range[ 'before' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['to'] ), current_time( 'timestamp' ) ) + DAY_IN_SECONDS );
149
			}
150
151
		}
152
153
        $i18n = array(
154
            'ajax_url'                  => admin_url( 'admin-ajax.php' ),
155
            'post_ID'                   => isset( $post->ID ) ? $post->ID : '',
156
			'wpinv_nonce'               => wp_create_nonce( 'wpinv-nonce' ),
157
			'rest_nonce'                => wp_create_nonce( 'wp_rest' ),
158
			'rest_root'                 => esc_url_raw( rest_url() ),
159
			'date_range'                => $date_range,
160
            'add_invoice_note_nonce'    => wp_create_nonce( 'add-invoice-note' ),
161
            'delete_invoice_note_nonce' => wp_create_nonce( 'delete-invoice-note' ),
162
            'invoice_item_nonce'        => wp_create_nonce( 'invoice-item' ),
163
            'billing_details_nonce'     => wp_create_nonce( 'get-billing-details' ),
164
            'tax'                       => wpinv_tax_amount(),
165
            'discount'                  => 0,
166
			'currency_symbol'           => wpinv_currency_symbol(),
167
			'currency'                  => wpinv_get_currency(),
168
            'currency_pos'              => wpinv_currency_position(),
169
            'thousand_sep'              => wpinv_thousands_separator(),
170
            'decimal_sep'               => wpinv_decimal_separator(),
171
            'decimals'                  => wpinv_decimals(),
172
            'save_invoice'              => __( 'Save Invoice', 'invoicing' ),
173
            'status_publish'            => wpinv_status_nicename( 'publish' ),
174
            'status_pending'            => wpinv_status_nicename( 'wpi-pending' ),
175
            'delete_tax_rate'           => __( 'Are you sure you wish to delete this tax rate?', 'invoicing' ),
176
            'status_pending'            => wpinv_status_nicename( 'wpi-pending' ),
177
            'FillBillingDetails'        => __( 'Fill the user\'s billing information? This will remove any currently entered billing information', 'invoicing' ),
178
            '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' ),
179
            'AreYouSure'                => __( 'Are you sure?', 'invoicing' ),
180
            'errDeleteItem'             => __( 'This item is in use! Before delete this item, you need to delete all the invoice(s) using this item.', 'invoicing' ),
181
            'delete_subscription'       => __( 'Are you sure you want to delete this subscription?', 'invoicing' ),
182
            'action_edit'               => __( 'Edit', 'invoicing' ),
183
            'action_cancel'             => __( 'Cancel', 'invoicing' ),
184
            'item_description'          => __( 'Item Description', 'invoicing' ),
185
            'invoice_description'       => __( 'Invoice Description', 'invoicing' ),
186
            'discount_description'      => __( 'Discount Description', 'invoicing' ),
187
			'searching'                 => __( 'Searching', 'invoicing' ),
188
			'loading'                   => __( 'Loading...', 'invoicing' ),
189
			'search_customers'          => __( 'Enter customer name or email', 'invoicing' ),
190
			'search_items'              => __( 'Enter item name', 'invoicing' ),
191
        );
192
193
		if ( ! empty( $post ) && getpaid_is_invoice_post_type( $post->post_type ) ) {
194
195
			$invoice              = new WPInv_Invoice( $post );
196
			$i18n['save_invoice'] = sprintf(
197
				__( 'Save %s', 'invoicing' ),
198
				ucfirst( $invoice->get_invoice_quote_type() )
199
			);
200
201
			$i18n['invoice_description'] = sprintf(
202
				__( '%s Description', 'invoicing' ),
203
				ucfirst( $invoice->get_invoice_quote_type() )
204
			);
205
206
		}
207
		return $i18n;
208
	}
209
210
	/**
211
	 * Change the admin footer text on GetPaid admin pages.
212
	 *
213
	 * @since  2.0.0
214
	 * @param  string $footer_text
215
	 * @return string
216
	 */
217
	public function admin_footer_text( $footer_text ) {
218
		global $current_screen;
219
220
		$page    = isset( $_GET['page'] ) ? $_GET['page'] : '';
221
222
        if ( ! empty( $current_screen->post_type ) ) {
223
			$page = $current_screen->post_type;
224
        }
225
226
        // General styles.
227
        if ( apply_filters( 'getpaid_display_admin_footer_text', wpinv_current_user_can_manage_invoicing() ) && false !== stripos( $page, 'wpi' ) ) {
228
229
			// Change the footer text
230
			if ( ! get_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', true ) ) {
231
232
				$rating_url  = esc_url(
233
					wp_nonce_url(
234
						admin_url( 'admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin' ),
235
						'getpaid-nonce',
236
						'getpaid-nonce'
237
						)
238
				);
239
240
				$footer_text = sprintf(
241
					/* translators: %s: five stars */
242
					__( 'If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing' ),
243
					"<a href='$rating_url'>&#9733;&#9733;&#9733;&#9733;&#9733;</a>"
244
				);
245
246
			} else {
247
248
				$footer_text = sprintf(
249
					/* translators: %s: GetPaid */
250
					__( 'Thank you for using %s!', 'invoicing' ),
251
					"<a href='https://wpgetpaid.com/' target='_blank'><strong>GetPaid</strong></a>"
252
				);
253
254
			}
255
256
		}
257
258
		return $footer_text;
259
	}
260
261
	/**
262
	 * Redirects to wp.org to rate the plugin.
263
	 *
264
	 * @since  2.0.0
265
	 */
266
	public function redirect_to_wordpress_rating_page() {
267
		update_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', 1 );
268
		wp_redirect( 'https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post' );
269
		exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
270
	}
271
272
    /**
273
	 * Loads payment form js.
274
	 *
275
	 */
276
	protected function load_payment_form_scripts() {
277
        global $post;
278
279
        wp_enqueue_script( 'vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.js', array(), WPINV_VERSION );
280
		wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION );
281
		wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION );
282
283
		$version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' );
284
		wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable' ),  $version );
285
286
		wp_localize_script(
287
            'wpinv-admin-payment-form-script',
288
            'wpinvPaymentFormAdmin',
289
            array(
290
				'elements'      => wpinv_get_data( 'payment-form-elements' ),
291
				'form_elements' => getpaid_get_payment_form_elements( $post->ID ),
292
				'currency'      => wpinv_currency_symbol(),
293
				'position'      => wpinv_currency_position(),
294
				'decimals'      => (int) wpinv_decimals(),
295
				'thousands_sep' => wpinv_thousands_separator(),
296
				'decimals_sep'  => wpinv_decimal_separator(),
297
				'form_items'    => gepaid_get_form_items( $post->ID ),
298
				'is_default'    => $post->ID == wpinv_get_default_payment_form(),
299
            )
300
        );
301
302
        wp_enqueue_script( 'wpinv-admin-payment-form-script' );
303
304
    }
305
306
    /**
307
	 * Add our classes to admin pages.
308
     *
309
     * @param string $classes
310
     * @return string
311
	 *
312
	 */
313
    public function admin_body_class( $classes ) {
314
		global $pagenow, $post, $current_screen;
315
316
317
        $page = isset( $_GET['page'] ) ? $_GET['page'] : '';
318
319
        if ( ! empty( $current_screen->post_type ) ) {
320
			$page = $current_screen->post_type;
321
        }
322
323
        if ( false !== stripos( $page, 'wpi' ) ) {
324
            $classes .= ' wpi-' . sanitize_key( $page );
325
        }
326
327
        if ( in_array( $page, wpinv_parse_list( 'wpi_invoice wpi_payment_form wpi_quote' ) ) ) {
328
            $classes .= ' wpinv-cpt wpinv';
329
		}
330
		
331
		if ( getpaid_is_invoice_post_type( $page ) ) {
332
            $classes .= ' getpaid-is-invoice-cpt';
333
        }
334
335
		return $classes;
336
    }
337
338
    /**
339
	 * Maybe show the AyeCode Connect Notice.
340
	 */
341
	public function init_ayecode_connect_helper(){
342
343
        new AyeCode_Connect_Helper(
344
            array(
345
				'connect_title' => __("WP Invoicing - an AyeCode product!","invoicing"),
346
				'connect_external'  => __( "Please confirm you wish to connect your site?","invoicing" ),
347
				'connect'           => sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s","invoicing" ),"<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>","</a>" ),
348
				'connect_button'    => __("Connect Site","invoicing"),
349
				'connecting_button'    => __("Connecting...","invoicing"),
350
				'error_localhost'   => __( "This service will only work with a live domain, not a localhost.","invoicing" ),
351
				'error'             => __( "Something went wrong, please refresh and try again.","invoicing" ),
352
            ),
353
            array( 'wpi-addons' )
354
        );
355
356
    }
357
358
	/**
359
	 * Redirect users to settings on activation.
360
	 *
361
	 * @return void
362
	 */
363
	public function activation_redirect() {
364
365
		$redirected = get_option( 'wpinv_redirected_to_settings' );
366
367
		if ( ! empty( $redirected ) || wp_doing_ajax() || ! current_user_can( 'manage_options' ) ) {
368
			return;
369
		}
370
371
		// Bail if activating from network, or bulk
372
		if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) {
373
			return;
374
		}
375
376
	    update_option( 'wpinv_redirected_to_settings', 1 );
377
378
        wp_safe_redirect( admin_url( 'admin.php?page=wpinv-settings&tab=general' ) );
379
        exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
380
381
	}
382
383
    /**
384
     * Fires an admin action after verifying that a user can fire them.
385
     */
386
    public function maybe_do_admin_action() {
387
388
        if ( wpinv_current_user_can_manage_invoicing() && isset( $_REQUEST['getpaid-admin-action'] ) && isset( $_REQUEST['getpaid-nonce'] ) && wp_verify_nonce( $_REQUEST['getpaid-nonce'], 'getpaid-nonce' ) ) {
389
            $key = sanitize_key( $_REQUEST['getpaid-admin-action'] );
390
            do_action( "getpaid_authenticated_admin_action_$key", $_REQUEST );
391
        }
392
393
    }
394
395
	/**
396
     * Sends a payment reminder to a customer.
397
	 * 
398
	 * @param array $args
399
     */
400
    public function send_customer_invoice( $args ) {
401
		$sent = getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ), true );
402
403
		if ( $sent ) {
404
			$this->show_success( __( 'Invoice was successfully sent to the customer', 'invoicing' ) );
405
		} else {
406
			$this->show_error( __( 'Could not send the invoice to the customer', 'invoicing' ) );
407
		}
408
409
		wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) );
410
		exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
411
	}
412
413
	/**
414
     * Sends a payment reminder to a customer.
415
	 * 
416
	 * @param array $args
417
     */
418
    public function send_customer_payment_reminder( $args ) {
419
		$sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) );
420
421
		if ( $sent ) {
422
			$this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) );
423
		} else {
424
			$this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) );
425
		}
426
427
		wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) );
428
		exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
429
	}
430
431
	/**
432
     * Resets tax rates.
433
	 * 
434
     */
435
    public function admin_reset_tax_rates() {
436
437
		update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) );
438
		wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) );
439
		exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
440
441
	}
442
443
	/**
444
     * Resets admin pages.
445
	 * 
446
     */
447
    public function admin_create_missing_pages() {
448
		$installer = new GetPaid_Installer();
449
		$installer->create_pages();
450
		$this->show_success( __( 'GetPaid pages updated.', 'invoicing' ) );
451
		wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) );
452
		exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
453
	}
454
455
	/**
456
     * Creates an missing admin tables.
457
	 * 
458
     */
459
    public function admin_create_missing_tables() {
460
		global $wpdb;
461
		$installer = new GetPaid_Installer();
462
463
		if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}wpinv_subscriptions'" ) != $wpdb->prefix . 'wpinv_subscriptions' ) {
464
			$installer->create_subscriptions_table();
465
466
			if ( $wpdb->last_error !== '' ) {
467
				$this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error );
468
			}
469
		}
470
471
		if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoices'" ) != $wpdb->prefix . 'getpaid_invoices' ) {
472
			$installer->create_invoices_table();
473
474
			if ( $wpdb->last_error !== '' ) {
475
				$this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error );
476
			}
477
		}
478
479
		if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoice_items'" ) != $wpdb->prefix . 'getpaid_invoice_items' ) {
480
			$installer->create_invoice_items_table();
481
482
			if ( $wpdb->last_error !== '' ) {
483
				$this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error );
484
			}
485
		}
486
487
		if ( ! $this->has_notices() ) {
488
			$this->show_success( __( 'Your GetPaid tables have been updated.', 'invoicing' ) );
489
		}
490
491
		wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) );
492
		exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
493
	}
494
495
	/**
496
     * Migrates old invoices to the new database tables.
497
	 * 
498
     */
499
    public function admin_migrate_old_invoices() {
500
501
		// Migrate the invoices.
502
		$installer = new GetPaid_Installer();
503
		$installer->migrate_old_invoices();
504
505
		// Show an admin message.
506
		$this->show_success( __( 'Your invoices have been migrated.', 'invoicing' ) );
507
508
		// Redirect the admin.
509
		wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) );
510
		exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
511
512
	}
513
514
	/**
515
     * Download customers.
516
	 * 
517
     */
518
    public function admin_download_customers() {
519
		global $wpdb;
520
521
		$output = fopen( 'php://output', 'w' ) or die( __( 'Unsupported server', 'invoicing' ) );
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
522
523
		header( "Content-Type:text/csv" );
524
		header( "Content-Disposition:attachment;filename=customers.csv" );
525
526
		$post_types = '';
527
528
		foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) {
529
			$post_types .= $wpdb->prepare( "post_type=%s OR ", $post_type );
530
		}
531
532
		$post_types = rtrim( $post_types, ' OR' );
533
534
		$customers = $wpdb->get_col(
535
			$wpdb->prepare(
536
				"SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types"
537
			)
538
		);
539
540
		$columns = array(
541
			'name'     => __( 'Name', 'invoicing' ),
542
			'email'    => __( 'Email', 'invoicing' ),
543
			'country'  => __( 'Country', 'invoicing' ),
544
			'state'    => __( 'State', 'invoicing' ),
545
			'city'     => __( 'City', 'invoicing' ),
546
			'zip'      => __( 'ZIP', 'invoicing' ),
547
			'address'  => __( 'Address', 'invoicing' ),
548
			'phone'    => __( 'Phone', 'invoicing' ),
549
			'company'  => __( 'Company', 'invoicing' ),
550
			'invoices' => __( 'Invoices', 'invoicing' ),
551
			'total'    => __( 'Total Spend', 'invoicing' ),
552
			'signup'   => __( 'Date created', 'invoicing' ),
553
		);
554
555
		// Output the csv column headers.
556
		fputcsv( $output, array_values( $columns ) );
557
558
		// Loop through
559
		$table = new WPInv_Customers_Table();
560
		foreach ( $customers as $customer_id ) {
561
562
			$user = get_user_by( 'id', $customer_id );
563
			$row  = array();
564
			if ( empty( $user ) ) {
565
				continue;
566
			}
567
568
			foreach ( array_keys( $columns ) as $column ) {
569
570
				$method = 'column_' . $column;
571
572
				if ( 'name' == $column ) {
573
					$value = sanitize_text_field( $user->display_name );
574
				} else if( 'email' == $column ) {
575
					$value = sanitize_email( $user->user_email );
576
				} else if ( is_callable( array( $table, $method ) ) ) {
577
					$value = strip_tags( $table->$method( $user ) );
578
				}
579
580
				if ( empty( $value ) ) {
581
					$value = sanitize_text_field( get_user_meta( $user->ID, '_wpinv_' . $column, true ) );
0 ignored issues
show
Bug introduced by
It seems like get_user_meta($user->ID,...pinv_' . $column, true) can also be of type false; however, parameter $str of sanitize_text_field() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

581
					$value = sanitize_text_field( /** @scrutinizer ignore-type */ get_user_meta( $user->ID, '_wpinv_' . $column, true ) );
Loading history...
582
				}
583
584
				$row[] = $value;
585
586
			}
587
588
			fputcsv( $output, $row );
589
		}
590
591
		fclose( $output );
592
		exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
593
594
	}
595
596
	/**
597
     * Installs a plugin.
598
	 *
599
	 * @param array $data
600
     */
601
    public function admin_install_plugin( $data ) {
602
603
		if ( ! empty( $data['plugins'] ) ) {
604
			include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
605
			wp_cache_flush();
606
607
			foreach ( $data['plugins'] as $slug => $file ) {
608
				$plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/' . $slug . '.latest-stable.zip' );
609
				$upgrader   = new Plugin_Upgrader( new Automatic_Upgrader_Skin() );
610
				$installed  = $upgrader->install( $plugin_zip );
611
612
				if ( ! is_wp_error( $installed ) && $installed ) {
613
					activate_plugin( $file, '', false, true );
614
				} else {
615
					wpinv_error_log( $upgrader->skin->get_upgrade_messages(), false );
0 ignored issues
show
Bug introduced by
$upgrader->skin->get_upgrade_messages() of type array is incompatible with the type string expected by parameter $log of wpinv_error_log(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

615
					wpinv_error_log( /** @scrutinizer ignore-type */ $upgrader->skin->get_upgrade_messages(), false );
Loading history...
Bug introduced by
The method get_upgrade_messages() does not exist on WP_Upgrader_Skin. It seems like you code against a sub-type of WP_Upgrader_Skin such as Automatic_Upgrader_Skin. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

615
					wpinv_error_log( $upgrader->skin->/** @scrutinizer ignore-call */ get_upgrade_messages(), false );
Loading history...
616
				}
617
618
			}
619
620
		}
621
622
		$redirect = isset( $data['redirect'] ) ? esc_url_raw( $data['redirect'] ) : admin_url( 'plugins.php' );
623
		wp_safe_redirect( $redirect );
624
		exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
625
626
	}
627
628
	/**
629
     * Connects a gateway.
630
	 *
631
	 * @param array $data
632
     */
633
    public function admin_connect_gateway( $data ) {
634
635
		if ( ! empty( $data['plugin'] ) ) {
636
637
			$gateway     = sanitize_key( $data['plugin'] );
638
			$connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data );
639
640
			if ( ! empty( $connect_url ) ) {
641
				wp_redirect( $connect_url );
642
				exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
643
			}
644
645
			if ( 'stripe' == $data['plugin'] ) {
646
				require_once ABSPATH . 'wp-admin/includes/plugin.php';
647
648
				if ( ! array_key_exists( 'getpaid-stripe-payments/getpaid-stripe-payments.php', get_plugins() ) ) {
649
					$plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/getpaid-stripe-payments.latest-stable.zip' );
650
					$upgrader   = new Plugin_Upgrader( new Automatic_Upgrader_Skin() );
651
					$upgrader->install( $plugin_zip );
652
				}
653
654
				activate_plugin( 'getpaid-stripe-payments/getpaid-stripe-payments.php', '', false, true );
655
			}
656
657
			if ( ! empty( $connect_url ) ) {
658
				wp_redirect( $connect_url );
659
				exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
660
			}
661
662
		}
663
664
		$redirect = isset( $data['redirect'] ) ? esc_url_raw( urldecode( $data['redirect'] ) ) : admin_url( 'admin.php?page=wpinv-settings&tab=gateways' );
665
		wp_safe_redirect( $redirect );
666
		exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
667
668
	}
669
670
	/**
671
     * Recalculates discounts.
672
	 * 
673
     */
674
    public function admin_recalculate_discounts() {
675
		global $wpdb;
676
677
		// Fetch all invoices that have discount codes.
678
		$table    = $wpdb->prefix . 'getpaid_invoices';
679
		$invoices = $wpdb->get_col( "SELECT `post_id` FROM `$table` WHERE `discount` = 0 && `discount_code` <> ''" );
680
681
		foreach ( $invoices as $invoice ) {
682
683
			$invoice = new WPInv_Invoice( $invoice );
684
685
			if ( ! $invoice->exists() ) {
686
				continue;
687
			}
688
689
			// Abort if the discount does not exist or does not apply here.
690
			$discount = new WPInv_Discount( $invoice->get_discount_code() );
691
			if ( ! $discount->exists() ) {
692
				continue;
693
			}
694
695
			$invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) );
696
			$invoice->recalculate_total();
697
698
			if ( $invoice->get_total_discount() > 0 ) {
699
				$invoice->save();
700
			}
701
702
		}
703
704
		// Show an admin message.
705
		$this->show_success( __( 'Discounts have been recalculated.', 'invoicing' ) );
706
707
		// Redirect the admin.
708
		wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) );
709
		exit;
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
710
711
	}
712
713
    /**
714
	 * Returns an array of admin notices.
715
	 *
716
	 * @since       1.0.19
717
     * @return array
718
	 */
719
	public function get_notices() {
720
		$notices = get_option( 'wpinv_admin_notices' );
721
        return is_array( $notices ) ? $notices : array();
722
	}
723
724
	/**
725
	 * Checks if we have any admin notices.
726
	 *
727
	 * @since       2.0.4
728
     * @return array
729
	 */
730
	public function has_notices() {
731
		return count( $this->get_notices() ) > 0;
0 ignored issues
show
Bug Best Practice introduced by
The expression return count($this->get_notices()) > 0 returns the type boolean which is incompatible with the documented return type array.
Loading history...
732
	}
733
734
	/**
735
	 * Clears all admin notices
736
	 *
737
	 * @access      public
738
	 * @since       1.0.19
739
	 */
740
	public function clear_notices() {
741
		delete_option( 'wpinv_admin_notices' );
742
	}
743
744
	/**
745
	 * Saves a new admin notice
746
	 *
747
	 * @access      public
748
	 * @since       1.0.19
749
	 */
750
	public function save_notice( $type, $message ) {
751
		$notices = $this->get_notices();
752
753
		if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ]) ) {
754
			$notices[ $type ] = array();
755
		}
756
757
		$notices[ $type ][] = $message;
758
759
		update_option( 'wpinv_admin_notices', $notices );
760
	}
761
762
	/**
763
	 * Displays a success notice
764
	 *
765
	 * @param       string $msg The message to qeue.
766
	 * @access      public
767
	 * @since       1.0.19
768
	 */
769
	public function show_success( $msg ) {
770
		$this->save_notice( 'success', $msg );
771
	}
772
773
	/**
774
	 * Displays a error notice
775
	 *
776
	 * @access      public
777
	 * @param       string $msg The message to qeue.
778
	 * @since       1.0.19
779
	 */
780
	public function show_error( $msg ) {
781
		$this->save_notice( 'error', $msg );
782
	}
783
784
	/**
785
	 * Displays a warning notice
786
	 *
787
	 * @access      public
788
	 * @param       string $msg The message to qeue.
789
	 * @since       1.0.19
790
	 */
791
	public function show_warning( $msg ) {
792
		$this->save_notice( 'warning', $msg );
793
	}
794
795
	/**
796
	 * Displays a info notice
797
	 *
798
	 * @access      public
799
	 * @param       string $msg The message to qeue.
800
	 * @since       1.0.19
801
	 */
802
	public function show_info( $msg ) {
803
		$this->save_notice( 'info', $msg );
804
	}
805
806
	/**
807
	 * Show notices
808
	 *
809
	 * @access      public
810
	 * @since       1.0.19
811
	 */
812
	public function show_notices() {
813
814
        $notices = $this->get_notices();
815
        $this->clear_notices();
816
817
		foreach ( $notices as $type => $messages ) {
818
819
			if ( ! is_array( $messages ) ) {
820
				continue;
821
			}
822
823
            $type  = sanitize_key( $type );
824
			foreach ( $messages as $message ) {
825
                $message = wp_kses_post( $message );
826
				echo "<div class='notice notice-$type is-dismissible'><p>$message</p></div>";
827
            }
828
829
        }
830
831
		foreach ( array( 'checkout_page', 'invoice_history_page', 'success_page', 'failure_page', 'invoice_subscription_page' ) as $page ) {
832
833
			if ( ! is_numeric( wpinv_get_option( $page, false ) ) ) {
834
				$url     = wp_nonce_url(
835
					add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ),
836
					'getpaid-nonce',
837
					'getpaid-nonce'
838
				);
839
				$message  = __( 'Some GetPaid pages are missing. To use GetPaid without any issues, click the button below to generate the missing pages.', 'invoicing' );
840
				$message2 = __( 'Generate Pages', 'invoicing' );
841
				echo "<div class='notice notice-warning is-dismissible'><p>$message<br><br><a href='$url' class='button button-primary'>$message2</a></p></div>";
842
				break;
843
			}
844
845
		}
846
847
	}
848
849
}
850