PluginProbe ʕ •ᴥ•ʔ
GiveWP – Donation Plugin and Fundraising Platform / 2.1.4
GiveWP – Donation Plugin and Fundraising Platform v2.1.4
4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 2.31.0 2.31.1 2.32.0 2.33.0 2.33.1 2.33.2 2.33.3 2.33.4 2.33.5 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.4.7 2.5.0 2.5.1 2.5.10 2.5.11 2.5.12 2.5.13 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 2.5.7 2.5.8 2.5.9 2.6.0 2.6.1 2.6.2 2.6.3 2.7.0 2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.8.0 2.8.1 2.9.0 2.9.1 2.9.2 2.9.3 2.9.4 2.9.5 2.9.6 2.9.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.1.0 3.1.1 3.1.2 3.10.0 3.11.0 3.12.0 3.12.1 3.12.2 3.12.3 3.13.0 3.14.0 3.14.1 3.14.2 3.15.0 3.15.1 3.16.0 3.16.1 3.16.2 3.16.3 3.16.4 3.16.5 3.17.0 3.17.1 3.17.2 3.18.0 3.19.0 3.19.1 3.19.2 3.19.3 3.19.4 3.2.0 3.2.1 3.2.2 3.20.0 3.21.0 3.21.1 3.22.0 3.22.1 3.22.2 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.5.0 3.5.1 3.6.0 3.6.1 3.6.2 3.7.0 3.8.0 3.9.0 4.0.0 4.1.0 4.1.1 4.10.0 4.10.1 4.11.0 4.12.0 4.13.0 4.13.1 4.13.2 4.14.0 4.14.1 4.14.2 4.14.3 4.14.4 4.14.5 4.14.6 4.2.0 4.2.1 4.3.0 4.3.1 4.3.2 4.4.0 4.5.0 4.6.1 4.7.0 4.7.1 4.8.0 4.8.1 4.9.0 trunk 1.9.0 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.10.0 2.10.1 2.10.2 2.10.3 2.10.4 2.11.0 2.11.1 2.11.2 2.11.3 2.12.0 2.12.1 2.12.2 2.12.3 2.13.0 2.13.1 2.13.2 2.13.3 2.13.4 2.14.0 2.15.0 2.16.0 2.16.1 2.17.0 2.17.1 2.17.3 2.18.0 2.18.1 2.19.1 2.19.2 2.19.3 2.19.4 2.19.5 2.19.6 2.19.7 2.19.8 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.20.0 2.20.1 2.20.2 2.21.0 2.21.1 2.21.2 2.21.3 2.21.4 2.22.0 2.22.1 2.22.2 2.22.3 2.23.0 2.23.1 2.23.2 2.24.0 2.24.1 2.24.2 2.25.0 2.25.1 2.25.2 2.25.3 2.26.0 2.27.0 2.27.1 2.27.2 2.27.3 2.28.0 2.29.0 2.29.1 2.29.2
give / includes / admin / upgrades / class-give-updates.php
give / includes / admin / upgrades Last commit date
views 8 years ago class-give-updates.php 8 years ago upgrade-functions.php 8 years ago
class-give-updates.php
1158 lines
1 <?php
2
3 /**
4 * Class Give_Updates
5 *
6 * @since 1.8.12
7 */
8 class Give_Updates {
9
10 /**
11 * Instance.
12 *
13 * @since
14 * @access static
15 * @var
16 */
17 static private $instance;
18
19 /**
20 * Instance.
21 *
22 * @since
23 * @access public
24 * @var Give_Background_Updater
25 */
26 static public $background_updater;
27
28 /**
29 * Updates
30 *
31 * @since 1.8.12
32 * @access private
33 * @var array
34 */
35 private $updates = array();
36
37 /**
38 * Current update percentage number
39 *
40 * @since 1.8.12
41 * @access private
42 * @var array
43 */
44 public $percentage = 0;
45
46 /**
47 * Current update step number
48 *
49 * @since 1.8.12
50 * @access private
51 * @var array
52 */
53 public $step = 1;
54
55 /**
56 * Current update number
57 *
58 * @since 1.8.12
59 * @access private
60 * @var array
61 */
62 public $update = 1;
63
64 /**
65 * Singleton pattern.
66 *
67 * @since 1.8.12
68 * @access private
69 *
70 * @param Give_Updates .
71 */
72 private function __construct() {
73 }
74
75 /**
76 * Register updates
77 *
78 * @since 1.8.12
79 * @access public
80 *
81 * @param array $args
82 */
83 public function register( $args ) {
84 $args_default = array(
85 'id' => '',
86 'version' => '',
87 'callback' => '',
88 );
89
90 $args = wp_parse_args( $args, $args_default );
91
92 // You can only register database upgrade.
93 $args['type'] = 'database';
94
95 // Bailout.
96 if (
97 empty( $args['id'] ) ||
98 empty( $args['version'] ) ||
99 empty( $args['callback'] ) ||
100 ! is_callable( $args['callback'] )
101 ) {
102 return;
103 }
104
105 // Change depend param to array.
106 if ( isset( $args['depend'] ) && is_string( $args['depend'] ) ) {
107 $args['depend'] = array( $args['depend'] );
108 }
109
110 $this->updates[ $args['type'] ][] = $args;
111 }
112
113 /**
114 * Get instance.
115 *
116 * @since
117 * @access static
118 * @return static
119 */
120 static function get_instance() {
121 if ( is_null( self::$instance ) ) {
122 self::$instance = new self();
123 }
124
125 return self::$instance;
126 }
127
128 /**
129 *
130 * Setup hook
131 *
132 * @since 1.8.12
133 * @access public
134 */
135 public function setup() {
136 /**
137 * Load file
138 */
139 require_once GIVE_PLUGIN_DIR . 'includes/class-give-background-updater.php';
140 require_once GIVE_PLUGIN_DIR . 'includes/admin/upgrades/upgrade-functions.php';
141
142 self::$background_updater = new Give_Background_Updater();
143
144 /**
145 * Setup hooks.
146 */
147 add_action( 'init', array( $this, '__register_upgrade' ), 9999 );
148 add_action( 'give_set_upgrade_completed', array( $this, '__flush_resume_updates' ), 9999 );
149 add_action( 'wp_ajax_give_db_updates_info', array( $this, '__give_db_updates_info' ) );
150 add_action( 'wp_ajax_give_run_db_updates', array( $this, '__give_start_updating' ) );
151 add_action( 'admin_init', array( $this, '__redirect_admin' ) );
152 add_action( 'admin_init', array( $this, '__pause_db_update' ), - 1 );
153 add_action( 'admin_init', array( $this, '__restart_db_update' ), - 1 );
154 add_action( 'admin_notices', array( $this, '__show_notice' ) );
155 add_action( 'give_restart_db_upgrade', array( $this, '__health_background_update' ) );
156
157 if ( is_admin() ) {
158 add_action( 'admin_init', array( $this, '__change_donations_label' ), 9999 );
159 add_action( 'admin_menu', array( $this, '__register_menu' ), 9999 );
160 }
161 }
162
163 /**
164 * Register plugin add-on updates.
165 *
166 * @since 1.8.12
167 * @access public
168 */
169 public function __register_plugin_addon_updates() {
170 $addons = give_get_plugins();
171 $plugin_updates = get_plugin_updates();
172
173 foreach ( $addons as $key => $info ) {
174 if ( 'active' != $info['Status'] || 'add-on' != $info['Type'] || empty( $plugin_updates[ $key ] ) ) {
175 continue;
176 }
177
178 $this->updates['plugin'][] = array_merge( $info, (array) $plugin_updates[ $key ] );
179 }
180 }
181
182
183 /**
184 * Fire custom action hook to register updates
185 *
186 * @since 1.8.12
187 * @access public
188 */
189 public function __register_upgrade() {
190 if ( ! is_admin() ) {
191 return;
192 }
193
194 /**
195 * Fire the hook
196 *
197 * @since 1.8.12
198 */
199 do_action( 'give_register_updates', $this );
200 }
201
202 /**
203 * Rename `Donations` menu title if updates exists
204 *
205 * @since 1.8.12
206 * @access public
207 */
208 function __change_donations_label() {
209 global $menu;
210
211 // Bailout.
212 if ( empty( $menu ) || ! $this->get_total_update_count() ) {
213 return;
214 }
215
216 $is_update = ( $this->is_doing_updates() && ! self::$background_updater->is_paused_process() );
217
218 foreach ( $menu as $index => $menu_item ) {
219 if ( 'edit.php?post_type=give_forms' !== $menu_item[2] ) {
220 continue;
221 }
222
223 $menu[ $index ][0] = sprintf(
224 '%1$s <span class="update-plugins"><span class="plugin-count give-update-progress-count">%2$s%3$s</span></span>',
225 __( 'Donations', 'give' ),
226 $is_update ?
227 $this->get_db_update_processing_percentage() :
228 $this->get_total_update_count(),
229 $is_update ? '%' : ''
230 );
231
232 break;
233 }
234 }
235
236 /**
237 * Register updates menu
238 *
239 * @since 1.8.12
240 * @access public
241 */
242 public function __register_menu() {
243 // Load plugin updates.
244 $this->__register_plugin_addon_updates();
245
246 // Bailout.
247 if ( ! $this->get_total_update_count() ) {
248 // Show complete update message if still on update setting page.
249 if ( isset( $_GET['page'] ) && 'give-updates' === $_GET['page'] ) {
250 // Upgrades
251 add_submenu_page(
252 'edit.php?post_type=give_forms',
253 esc_html__( 'Give Updates Complete', 'give' ),
254 __( 'Updates', 'give' ),
255 'manage_give_settings',
256 'give-updates',
257 array( $this, 'render_complete_page' )
258 );
259 }
260
261 return;
262 }
263
264 $is_update = ( $this->is_doing_updates() && ! self::$background_updater->is_paused_process() );
265
266 // Upgrades
267 add_submenu_page(
268 'edit.php?post_type=give_forms',
269 esc_html__( 'Give Updates', 'give' ),
270 sprintf(
271 '%1$s <span class="update-plugins"%2$s><span class="plugin-count give-update-progress-count">%3$s%4$s</span></span>',
272 __( 'Updates', 'give' ),
273 isset( $_GET['give-pause-db-upgrades'] ) ? ' style="display:none;"' : '',
274 $is_update ?
275 $this->get_db_update_processing_percentage() :
276 $this->get_total_update_count(),
277 $is_update ? '%' : ''
278 ),
279 'manage_give_settings',
280 'give-updates',
281 array( $this, 'render_page' )
282 );
283 }
284
285
286 /**
287 * Show update related notices
288 *
289 * @since 2.0
290 * @access public
291 */
292 public function __redirect_admin() {
293 // Show db upgrade completed notice.
294 if (
295 ! wp_doing_ajax() &&
296 current_user_can( 'manage_give_settings' ) &&
297 get_option( 'give_show_db_upgrade_complete_notice' ) &&
298 ! isset( $_GET['give-db-update-completed'] )
299 ) {
300 delete_option( 'give_show_db_upgrade_complete_notice' );
301
302 wp_redirect( admin_url( 'edit.php?post_type=give_forms&page=give-updates&give-db-update-completed=give_db_upgrade_completed' ) );
303 exit();
304 }
305 }
306
307
308 /**
309 * Pause db upgrade
310 *
311 * @since 2.0.1
312 * @access public
313 *
314 * @param bool $force
315 *
316 * @return bool
317 */
318 public function __pause_db_update( $force = false ) {
319 // Bailout.
320 if (
321 ! $force &&
322 (
323 wp_doing_ajax() ||
324 ! isset( $_GET['page'] ) ||
325 'give-updates' !== $_GET['page'] ||
326 ! isset( $_GET['give-pause-db-upgrades'] ) ||
327 self::$background_updater->is_paused_process()
328 )
329
330 ) {
331 return false;
332 }
333
334 delete_option( 'give_upgrade_error' );
335
336 $this->__health_background_update( $this );
337 $batch = self::$background_updater->get_all_batch();
338
339 // Bailout: if batch is empty
340 if ( empty( $batch->data ) ) {
341 return false;
342 }
343
344 // Remove cache.
345 Give_Background_Updater::flush_cache();
346
347 // Do not stop background process immediately if task running.
348 // @see Give_Background_Updater::lock_process
349 if ( ! $force && self::$background_updater->is_process_running() ) {
350 update_option( 'give_pause_upgrade', 1 );
351
352 return true;
353 }
354
355 update_option( 'give_paused_batches', $batch, 'no' );
356 delete_option( $batch->key );
357 delete_site_transient( self::$background_updater->get_identifier() . '_process_lock' );
358 wp_clear_scheduled_hook( self::$background_updater->get_cron_identifier() );
359
360 Give()->logs->add( 'Update Pause', print_r( $batch, true ), 0, 'update' );
361
362 /**
363 * Fire action when pause db updates
364 *
365 * @since 2.0.1
366 */
367 do_action( 'give_pause_db_upgrade', $this );
368
369 return true;
370 }
371
372 /**
373 * Restart db upgrade
374 *
375 * @since 2.0.1
376 * @access public
377 *
378 * @return bool
379 */
380 public function __restart_db_update() {
381 // Bailout.
382 if (
383 wp_doing_ajax() ||
384 ! isset( $_GET['page'] ) ||
385 'give-updates' !== $_GET['page'] ||
386 ! isset( $_GET['give-restart-db-upgrades'] ) ||
387 ! self::$background_updater->is_paused_process()
388 ) {
389 return false;
390 }
391
392 Give_Background_Updater::flush_cache();
393 $batch = get_option( 'give_paused_batches' );
394
395 if ( ! empty( $batch ) ) {
396 wp_cache_delete( $batch->key, 'options' );
397 update_option( $batch->key, $batch->data );
398
399 delete_option( 'give_paused_batches' );
400
401 Give()->logs->add( 'Update Restart', print_r( $batch, true ), 0, 'update' );
402
403
404 /** Fire action when restart db updates
405 *
406 * @since 2.0.1
407 */
408 do_action( 'give_restart_db_upgrade', $this );
409
410 self::$background_updater->dispatch();
411 }
412
413 return true;
414 }
415
416 /**
417 * Health check for updates.
418 *
419 * @since 2.0
420 * @access public
421 *
422 * @param Give_Updates $give_updates
423 */
424 public function __health_background_update( $give_updates ) {
425 if ( ! $this->is_doing_updates() ) {
426 return;
427 }
428
429 Give_Background_Updater::flush_cache();
430
431 $batch = Give_Updates::$background_updater->get_all_batch();
432 $batch_data_count = count( $batch->data );
433 $all_updates = $give_updates->get_updates( 'database', 'all' );
434 $all_update_ids = wp_list_pluck( $all_updates, 'id' );
435 $all_batch_update_ids = ! empty( $batch->data ) ? wp_list_pluck( $batch->data, 'id' ) : array();
436 $log_data = '';
437 $doing_upgrade_args = get_option( 'give_doing_upgrade' );
438
439 if ( ! empty( $doing_upgrade_args ) ) {
440 $log_data .= 'Doing update:' . "\n";
441 $log_data .= print_r( $doing_upgrade_args, true ) . "\n";
442 }
443
444 /**
445 * Add remove upgrade from batch
446 */
447 if ( ! empty( $batch->data ) ) {
448
449 foreach ( $batch->data as $index => $update ) {
450 $log_data = print_r( $update, true ) . "\n";
451
452 if ( ! is_callable( $update['callback'] ) ) {
453 $log_data .= 'Removing missing callback update: ' . "{$update['id']}\n";
454 unset( $batch->data[ $index ] );
455 } elseif ( give_has_upgrade_completed( $update['id'] ) ) {
456 $log_data .= 'Removing already completed update: ' . "{$update['id']}\n";
457 unset( $batch->data[ $index ] );
458 }
459
460 if ( ! empty( $update['depend'] ) ) {
461
462 foreach ( $update['depend'] as $depend ) {
463 if ( give_has_upgrade_completed( $depend ) ) {
464 $log_data .= 'Completed update: ' . "{$depend}\n";
465 continue;
466 }
467
468 if ( in_array( $depend, $all_update_ids ) && ! in_array( $depend, $all_batch_update_ids ) ) {
469 $log_data .= 'Adding missing update: ' . "{$depend}\n";
470 array_unshift( $batch->data, $all_updates[ array_search( $depend, $all_update_ids ) ] );
471 }
472 }
473 }
474 }
475 }
476
477 /**
478 * Add new upgrade to batch
479 */
480 if ( $new_updates = $this->get_updates( 'database', 'new' ) ) {
481 $all_batch_update_ids = ! empty( $batch->data ) ? wp_list_pluck( $batch->data, 'id' ) : array();
482
483 foreach ( $new_updates as $index => $new_update ) {
484 if ( give_has_upgrade_completed( $new_update['id'] ) || in_array( $new_update['id'], $all_batch_update_ids ) ) {
485 unset( $new_updates[ $index ] );
486 }
487 }
488
489 if ( ! empty( $new_updates ) ) {
490 $log_data .= 'Adding new update: ' . "\n";
491 $log_data .= print_r( $new_updates, true ) . "\n";
492
493 $batch->data = array_merge( (array) $batch->data, $new_updates );
494 update_option( 'give_db_update_count', ( absint( get_option( 'give_db_update_count' ) ) + count( $new_updates ) ) );
495 }
496 }
497
498 /**
499 * Fix batch
500 */
501 if ( empty( $batch->data ) ) {
502 // Complete batch if do not have any data to process.
503 self::$background_updater->delete( $batch->key );
504
505 if ( self::$background_updater->has_queue() ) {
506 $this->__health_background_update( $this );
507 } else {
508 delete_site_transient( self::$background_updater->get_identifier() . '_process_lock' );
509 wp_clear_scheduled_hook( self::$background_updater->get_cron_identifier() );
510
511 self::$background_updater->complete();
512 }
513
514 } elseif ( $batch_data_count !== count( $batch->data ) ) {
515
516 $log_data .= 'Updating batch' . "\n";
517 $log_data .= print_r( $batch, true );
518
519 if ( ! empty( $batch->key ) ) {
520 wp_cache_delete( $batch->key, 'options' );
521 update_option( $batch->key, $batch->data );
522 } else {
523
524 foreach ( $batch->data as $data ) {
525 Give_Updates::$background_updater->push_to_queue( $data );
526 }
527
528 Give_Updates::$background_updater->save();
529 }
530 }
531
532
533 /**
534 * Fix give_doing_upgrade option
535 */
536 if( $fresh_new_db_count = $this->get_total_new_db_update_count( true ) ) {
537 update_option( 'give_db_update_count', $fresh_new_db_count );
538 }
539
540 $doing_upgrade_args['update'] = 1;
541 $doing_upgrade_args['heading'] = sprintf( 'Update %s of %s', 1, $fresh_new_db_count );
542 $doing_upgrade_args['total_percentage'] = $this->get_db_update_processing_percentage( true );
543
544 // Remove already completed update from info.
545 if (
546 empty( $doing_upgrade_args['update_info'] )
547 || give_has_upgrade_completed( $doing_upgrade_args['update_info']['id'] )
548 ) {
549 $doing_upgrade_args['update_info'] = current( array_values( $batch->data ) );
550 $doing_upgrade_args['step'] = 1;
551 }
552
553 // Check if dependency completed or not.
554 if ( isset( $doing_upgrade_args['update_info']['depend'] ) ) {
555 foreach ( $doing_upgrade_args['update_info']['depend'] as $depend ) {
556 if ( give_has_upgrade_completed( $depend ) ) {
557 continue;
558 }
559
560 $doing_upgrade_args['update_info'] = $all_updates[ array_search( $depend, $all_update_ids ) ];
561 $doing_upgrade_args['step'] = 1;
562 $doing_upgrade_args['percentage'] = 0;
563 $doing_upgrade_args['total_percentage'] = 0;
564
565 break;
566 }
567 }
568
569 if( ! empty( $doing_upgrade_args['update_info'] ) ) {
570 update_option( 'give_doing_upgrade', $doing_upgrade_args );
571
572 $log_data .= 'Updated doing update:' . "\n";
573 $log_data .= print_r( $doing_upgrade_args, true ) . "\n";
574 }
575
576 Give()->logs->add( 'Update Health Check', $log_data, 0, 'update' );
577 }
578
579
580 /**
581 * Show update related notices
582 *
583 * @since 2.0
584 * @access public
585 */
586 public function __show_notice() {
587 $current_screen = get_current_screen();
588
589 // Bailout.
590 if ( ! current_user_can( 'manage_give_settings' ) ) {
591 return;
592 }
593
594 // Run DB updates.
595 if ( ! empty( $_GET['give-run-db-update'] ) ) {
596 $this->run_db_update();
597 }
598
599
600 // Bailout.
601 if ( in_array( $current_screen->base, array( 'give_forms_page_give-updates', 'update-core' ) ) ) {
602 return;
603 }
604
605 // Show notice if upgrade paused.
606 if ( self::$background_updater->is_paused_process() ) {
607 ob_start();
608
609 $upgrade_error = get_option( 'give_upgrade_error' );
610 if ( ! $upgrade_error ) : ?>
611 <strong><?php _e( 'Database Update', 'give' ); ?></strong>
612 &nbsp;&#8211;&nbsp;<?php _e( 'GiveWP needs to update your database to the latest version. The following process will make updates to your site\'s database. Please create a backup before proceeding.', 'give' ); ?>
613 <br>
614 <br>
615 <a href="<?php echo esc_url( add_query_arg( array( 'give-restart-db-upgrades' => 1 ), admin_url( 'edit.php?post_type=give_forms&page=give-updates' ) ) ); ?>" class="button button-primary give-restart-updater-btn">
616 <?php _e( 'Restart the updater', 'give' ); ?>
617 </a>
618 <?php else: ?>
619 <strong><?php _e( 'Database Update', 'give' ); ?></strong>
620 &nbsp;&#8211;&nbsp;<?php _e( 'An unexpected issue occurred during the database update which caused it to stop automatically. Please contact support for assistance.', 'give' ); ?>
621 <?php
622 endif;
623 $desc_html = ob_get_clean();
624
625 Give()->notices->register_notice( array(
626 'id' => 'give_upgrade_db',
627 'type' => 'error',
628 'dismissible' => false,
629 'description' => $desc_html,
630 ) );
631 }
632
633 // Bailout if doing upgrades.
634 if ( $this->is_doing_updates() ) {
635 return;
636 }
637
638 // Show notice if ajax is not working.
639 if ( ! give_test_ajax_works() ) {
640 Give()->notices->register_notice(
641 array(
642 'id' => 'give_db_upgrade_ajax_inaccessible',
643 'type' => 'error',
644 'description' => sprintf( '%1$s <a href="%2$s" target="_blank">%3$s</a>', __( 'Give needs to upgrade the database but cannot because AJAX does not appear accessible. This could be because your website is password protected, in maintenance mode, or has a specific hosting configuration or plugin active that is preventing access.', 'give' ), 'http://docs.givewp.com/admin-ajax-error', __( 'Read More', 'give' ) . ' &raquo;' ),
645 'show' => true,
646 )
647 );
648
649 return;
650 }
651
652 // Show db upgrade completed notice.
653 if ( ! empty( $_GET['give-db-update-completed'] ) ) {
654 Give()->notices->register_notice( array(
655 'id' => 'give_db_upgrade_completed',
656 'type' => 'updated',
657 'description' => __( 'Give database updates completed successfully. Thank you for updating to the latest version!', 'give' ),
658 'show' => true,
659 ) );
660
661 // Start update.
662 } elseif ( ! empty( $_GET['give-run-db-update'] ) ) {
663 $this->run_db_update();
664
665 // Show run the update notice.
666 } elseif ( $this->get_total_new_db_update_count() ) {
667 ob_start();
668 ?>
669 <p>
670 <strong><?php _e( 'Database Update', 'give' ); ?></strong>
671 &nbsp;&#8211;&nbsp;<?php _e( 'GiveWP needs to update your database to the latest version. The following process will make updates to your site\'s database. Please create a complete backup before proceeding.', 'give' ); ?>
672 </p>
673 <p class="submit">
674 <a href="<?php echo esc_url( add_query_arg( array( 'give-run-db-update' => 1 ), admin_url( 'edit.php?post_type=give_forms&page=give-updates' ) ) ); ?>" class="button button-primary give-run-update-now">
675 <?php _e( 'Run the updater', 'give' ); ?>
676 </a>
677 </p>
678 <?php
679 $desc_html = ob_get_clean();
680
681 Give()->notices->register_notice( array(
682 'id' => 'give_upgrade_db',
683 'type' => 'updated',
684 'dismissible' => false,
685 'description' => $desc_html,
686 ) );
687 }
688 }
689
690 /**
691 * Render Give Updates Completed page
692 *
693 * @since 1.8.12
694 * @access public
695 */
696 public function render_complete_page() {
697 include_once GIVE_PLUGIN_DIR . 'includes/admin/upgrades/views/upgrades-complete.php';
698 }
699
700 /**
701 * Render Give Updates page
702 *
703 * @since 1.8.12
704 * @access public
705 */
706 public function render_page() {
707 include_once GIVE_PLUGIN_DIR . 'includes/admin/upgrades/views/upgrades.php';
708 }
709
710 /**
711 * Run database upgrades
712 *
713 * @since 2.0
714 * @access private
715 */
716 private function run_db_update() {
717 // Bailout.
718 if ( $this->is_doing_updates() || ! $this->get_total_new_db_update_count() ) {
719 return;
720 }
721
722 $updates = $this->get_updates( 'database', 'new' );
723
724 foreach ( $updates as $update ) {
725 self::$background_updater->push_to_queue( $update );
726 }
727
728 add_option( 'give_db_update_count', count( $updates ), '', 'no' );
729
730 add_option( 'give_doing_upgrade', array(
731 'update_info' => $updates[0],
732 'step' => 1,
733 'update' => 1,
734 'heading' => sprintf( 'Update %s of %s', 1, count( $updates ) ),
735 'percentage' => 0,
736 'total_percentage' => 0,
737 ), '', 'no' );
738
739 self::$background_updater->save()->dispatch();
740 }
741
742
743 /**
744 * Delete resume updates
745 *
746 * @since 1.8.12
747 * @access public
748 */
749 public function __flush_resume_updates() {
750 //delete_option( 'give_doing_upgrade' );
751 update_option( 'give_version', preg_replace( '/[^0-9.].*/', '', GIVE_VERSION ) );
752
753 // Reset counter.
754 $this->step = $this->percentage = 0;
755
756 $this->update = ( $this->get_total_db_update_count() > $this->update ) ?
757 ( $this->update + 1 ) :
758 $this->update;
759 }
760
761
762 /**
763 * Initialize updates
764 *
765 * @since 2.0
766 * @access public
767 *
768 * @return void
769 */
770 public function __give_start_updating() {
771 // Check permission.
772 if (
773 ! current_user_can( 'manage_give_settings' ) ||
774 $this->is_doing_updates()
775 ) {
776 wp_send_json_error();
777 }
778
779 // @todo: validate nonce
780 // @todo: set http method to post
781 if ( empty( $_POST['run_db_update'] ) ) {
782 wp_send_json_error();
783 }
784
785 $this->run_db_update();
786
787 wp_send_json_success();
788 }
789
790
791 /**
792 * This function handle ajax query for dn update status.
793 *
794 * @since 2.0
795 * @access public
796 *
797 * @return string
798 */
799 public function __give_db_updates_info() {
800 $update_info = get_option( 'give_doing_upgrade' );
801 $response_type = '';
802
803 if ( self::$background_updater->is_paused_process() ) {
804 $update_info = array(
805 'message' => __( 'The updates have been paused.', 'give' ),
806 'heading' => '',
807 'percentage' => 0,
808 );
809
810 if ( get_option( 'give_upgrade_error' ) ) {
811 $update_info['message'] = __( 'An unexpected issue occurred during the database update which caused it to stop automatically. Please contact support for assistance.', 'give' );
812 }
813
814 $response_type = 'error';
815
816 } elseif ( empty( $update_info ) || ! $this->get_total_new_db_update_count( true ) ) {
817 $update_info = array(
818 'message' => __( 'Give database updates completed successfully. Thank you for updating to the latest version!', 'give' ),
819 'heading' => __( 'Updates Completed.', 'give' ),
820 'percentage' => 0,
821 );
822 $response_type = 'success';
823
824 delete_option( 'give_show_db_upgrade_complete_notice' );
825 }
826
827 $this->send_ajax_response( $update_info, $response_type );
828 }
829
830 /**
831 * Send ajax response
832 *
833 * @since 1.8.12
834 * @access public
835 *
836 * @param $data
837 * @param string $type
838 */
839 public function send_ajax_response( $data, $type = '' ) {
840 $default = array(
841 'message' => '',
842 'heading' => '',
843 'percentage' => 0,
844 'step' => 0,
845 'update' => 0,
846 );
847
848 // Set data.
849 $data = wp_parse_args( $data, $default );
850
851 // Enable cache.
852 Give_Cache::enable();
853
854 switch ( $type ) {
855 case 'success':
856 wp_send_json_success( $data );
857 break;
858
859 case 'error':
860 wp_send_json_error( $data );
861 break;
862
863 default:
864 wp_send_json( array(
865 'data' => $data,
866 ) );
867 break;
868 }
869 }
870
871 /**
872 * Set current update percentage.
873 *
874 * @since 1.8.12
875 * @access public
876 *
877 * @param $total
878 * @param $current_total
879 */
880 public function set_percentage( $total, $current_total ) {
881 // Set percentage.
882 $this->percentage = $total ? ( ( $current_total ) / $total ) * 100 : 0;
883
884 // Verify percentage.
885 $this->percentage = ( 100 < $this->percentage ) ? 100 : $this->percentage;
886 }
887
888 /**
889 * Check if parent update completed or not.
890 *
891 * @since 2.0
892 * @access private
893 *
894 * @param array $update
895 *
896 * @return bool|null
897 */
898 public function is_parent_updates_completed( $update ) {
899 // Bailout.
900 if ( empty( $update['depend'] ) ) {
901 return true;
902 }
903
904 // Check if dependency is valid or not.
905 if ( ! $this->has_valid_dependency( $update ) ) {
906 return null;
907 }
908
909 $is_dependency_completed = true;
910
911 foreach ( $update['depend'] as $depend ) {
912
913 if ( ! give_has_upgrade_completed( $depend ) ) {
914 $is_dependency_completed = false;
915 break;
916 }
917 }
918
919 return $is_dependency_completed;
920 }
921
922 /**
923 * Flag to check if DB updates running or not.
924 *
925 * @since 2.0
926 * @access public
927 * @return bool
928 */
929 public function is_doing_updates() {
930 return (bool) get_option( 'give_doing_upgrade' );
931 }
932
933
934 /**
935 * Check if update has valid dependency or not.
936 *
937 * @since 2.0
938 * @access public
939 *
940 * @param $update
941 *
942 * @return bool
943 */
944 public function has_valid_dependency( $update ) {
945 $is_valid_dependency = true;
946 // $update_ids = wp_list_pluck( $this->get_updates( 'database', 'all' ), 'id' );
947 //
948 // foreach ( $update['depend'] as $depend ) {
949 // // Check if dependency is valid or not.
950 // if ( ! in_array( $depend, $update_ids ) ) {
951 // $is_valid_dependency = false;
952 // break;
953 // }
954 // }
955
956 return $is_valid_dependency;
957 }
958
959 /**
960 * Get updates.
961 *
962 * @since 1.8.12
963 * @access public
964 *
965 * @param string $update_type Tye of update.
966 * @param string $status Tye of update.
967 *
968 * @return array
969 */
970 public function get_updates( $update_type = '', $status = 'all' ) {
971 // return all updates.
972 if ( empty( $update_type ) ) {
973 return $this->updates;
974 }
975
976 // Get specific update.
977 $updates = ! empty( $this->updates[ $update_type ] ) ? $this->updates[ $update_type ] : array();
978
979 // Bailout.
980 if ( empty( $updates ) ) {
981 return $updates;
982 }
983
984 switch ( $status ) {
985 case 'new':
986 // Remove already completed updates.
987 wp_cache_delete( 'give_completed_upgrades', 'options' );
988 $completed_updates = give_get_completed_upgrades();
989
990 if ( ! empty( $completed_updates ) ) {
991 foreach ( $updates as $index => $update ) {
992 if ( in_array( $update['id'], $completed_updates ) ) {
993 unset( $updates[ $index ] );
994 }
995 }
996 $updates = array_values( $updates );
997 }
998
999 break;
1000 }
1001
1002 return $updates;
1003 }
1004
1005 /**
1006 * Get addon update count.
1007 *
1008 * @since 1.8.12
1009 * @access public
1010 * @return int
1011 */
1012 public function get_total_plugin_update_count() {
1013 return count( $this->get_updates( 'plugin' ) );
1014 }
1015
1016 /**
1017 * Get total update count
1018 *
1019 * @since 1.8.12
1020 * @access public
1021 *
1022 * @return int
1023 */
1024 public function get_total_update_count() {
1025 $db_update_count = $this->get_pending_db_update_count();
1026 $plugin_update_count = $this->get_total_plugin_update_count();
1027
1028 return ( $db_update_count + $plugin_update_count );
1029 }
1030
1031 /**
1032 * Get total pending updates count
1033 *
1034 * @since 1.8.12
1035 * @access public
1036 *
1037 * @return int
1038 */
1039 public function get_pending_db_update_count() {
1040 return count( $this->get_updates( 'database', 'new' ) );
1041 }
1042
1043 /**
1044 * Get total updates count
1045 *
1046 * @since 1.8.18
1047 * @access public
1048 *
1049 * @return int
1050 */
1051 public function get_total_db_update_count() {
1052 return count( $this->get_updates( 'database', 'all' ) );
1053 }
1054
1055 /**
1056 * Get total new updates count
1057 *
1058 * @since 2.0
1059 * @access public
1060 *
1061 * @param bool $refresh
1062 *
1063 * @return int
1064 */
1065 public function get_total_new_db_update_count( $refresh = false ) {
1066 $update_count = $this->is_doing_updates() && ! $refresh ?
1067 get_option( 'give_db_update_count' ) :
1068 $this->get_pending_db_update_count();
1069
1070 return $update_count;
1071 }
1072
1073 /**
1074 * Get total new updates count
1075 *
1076 * @since 2.0
1077 * @access public
1078 *
1079 * @param bool $refresh
1080 *
1081 * @return int
1082 */
1083 public function get_running_db_update( $refresh = false ) {
1084 $current_update = 1;
1085
1086 if ( $this->is_doing_updates() && ! $refresh ) {
1087 $current_update = get_option( 'give_doing_upgrade' );
1088 $current_update = $current_update['update'];
1089 }
1090
1091 return $current_update;
1092 }
1093
1094 /**
1095 * Get database update processing percentage.
1096 *
1097 * @since 2.0
1098 * @access public
1099 *
1100 * @param bool $refresh
1101 *
1102 * @return float|int
1103 */
1104 public function get_db_update_processing_percentage( $refresh = false ) {
1105 // Bailout.
1106 if ( ! $this->get_total_new_db_update_count( $refresh ) ) {
1107 return 0;
1108 }
1109
1110 $resume_update = get_option( 'give_doing_upgrade' );
1111 $update_count_percentages = ( ( $this->get_running_db_update( $refresh ) - 1 ) / $this->get_total_new_db_update_count( $refresh ) ) * 100;
1112 $update_percentage_share = ( 1 / $this->get_total_new_db_update_count() ) * 100;
1113 $upgrade_percentage = ( ( $resume_update['percentage'] * $update_percentage_share ) / 100 );
1114
1115 $final_percentage = $update_count_percentages + $upgrade_percentage;
1116
1117 return $this->is_doing_updates() ?
1118 ( absint( $final_percentage ) ?
1119 absint( $final_percentage ) :
1120 round( $final_percentage, 2 )
1121 ) :
1122 0;
1123 }
1124
1125
1126 /**
1127 * Get all update ids.
1128 *
1129 * @since 2.0.3
1130 *
1131 * @return array
1132 */
1133 public function get_update_ids() {
1134 $all_updates = $this->get_updates( 'database', 'all' );
1135 $all_update_ids = wp_list_pluck( $all_updates, 'id' );
1136
1137 return $all_update_ids;
1138 }
1139
1140 /**
1141 * Get offset count
1142 *
1143 * @since 2.0.5
1144 * @access public
1145 *
1146 * @param int $process_item_count
1147 *
1148 * @return float|int
1149 */
1150 public function get_offset( $process_item_count ) {
1151 return ( 1 === $this->step ) ?
1152 0 :
1153 ( $this->step - 1 ) * $process_item_count;
1154 }
1155 }
1156
1157 Give_Updates::get_instance()->setup();
1158