class-admin.php
1 year ago
class-columns.php
1 year ago
class-counter.php
1 year ago
class-crawler-detect.php
1 year ago
class-cron.php
1 year ago
class-dashboard.php
1 year ago
class-frontend.php
1 year ago
class-functions.php
1 year ago
class-query.php
1 year ago
class-settings-api.php
1 year ago
class-settings.php
1 year ago
class-update.php
1 year ago
class-widgets.php
1 year ago
functions.php
1 year ago
class-update.php
205 lines
| 1 | <?php |
| 2 | // exit if accessed directly |
| 3 | if ( ! defined( 'ABSPATH' ) ) |
| 4 | exit; |
| 5 | |
| 6 | /** |
| 7 | * Post_Views_Counter_Update class. |
| 8 | * |
| 9 | * @class Post_Views_Counter_Update |
| 10 | */ |
| 11 | class Post_Views_Counter_Update { |
| 12 | |
| 13 | /** |
| 14 | * Class constructor. |
| 15 | * |
| 16 | * @return void |
| 17 | */ |
| 18 | public function __construct() { |
| 19 | // actions |
| 20 | add_action( 'admin_init', [ $this, 'check_update' ] ); |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Check whether update is required. |
| 25 | * |
| 26 | * @return void |
| 27 | */ |
| 28 | public function check_update() { |
| 29 | if ( ! current_user_can( 'manage_options' ) ) |
| 30 | return; |
| 31 | |
| 32 | // get main instance |
| 33 | $pvc = Post_Views_Counter(); |
| 34 | |
| 35 | // get current database version |
| 36 | $current_db_version = get_option( 'post_views_counter_version', '1.0.0' ); |
| 37 | |
| 38 | // update 1.2.4+ |
| 39 | if ( version_compare( $current_db_version, '1.2.4', '<=' ) ) { |
| 40 | // get general options |
| 41 | $general = $pvc->options['general']; |
| 42 | |
| 43 | if ( $general['reset_counts']['number'] > 0 ) { |
| 44 | // unsupported data reset in minutes/hours |
| 45 | if ( in_array( $general['reset_counts']['type'], [ 'minutes', 'hours' ], true ) ) { |
| 46 | // set type to date |
| 47 | $general['reset_counts']['type'] = 'days'; |
| 48 | |
| 49 | // new number of days |
| 50 | if ( $general['reset_counts']['type'] === 'minutes' ) |
| 51 | $general['reset_counts']['number'] = $general['reset_counts']['number'] * MINUTE_IN_SECONDS; |
| 52 | else |
| 53 | $general['reset_counts']['number'] = $general['reset_counts']['number'] * HOUR_IN_SECONDS; |
| 54 | |
| 55 | // how many days? |
| 56 | $general['reset_counts']['number'] = (int) round( ceil( $general['reset_counts']['number'] / DAY_IN_SECONDS ) ); |
| 57 | |
| 58 | // force cron to update |
| 59 | $general['cron_run'] = true; |
| 60 | $general['cron_update'] = true; |
| 61 | |
| 62 | // update settings |
| 63 | update_option( 'post_views_counter_settings_general', $general ); |
| 64 | |
| 65 | // update general options |
| 66 | $pvc->options['general'] = $general; |
| 67 | } |
| 68 | |
| 69 | // update cron job for all users |
| 70 | $pvc->cron->check_cron(); |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | // update 1.3.13+ |
| 75 | if ( version_compare( $current_db_version, '1.3.13', '<=' ) ) { |
| 76 | // get general options |
| 77 | $general = $pvc->options['general']; |
| 78 | |
| 79 | // disable strict counts |
| 80 | $general['strict_counts'] = false; |
| 81 | |
| 82 | // get default other options |
| 83 | $other_options = $pvc->defaults['other']; |
| 84 | |
| 85 | // set current options |
| 86 | $other_options['deactivation_delete'] = isset( $general['deactivation_delete'] ) ? (bool) $general['deactivation_delete'] : false; |
| 87 | |
| 88 | // add other options |
| 89 | add_option( 'post_views_counter_settings_other', $other_options, null, false ); |
| 90 | |
| 91 | // update other options |
| 92 | $pvc->options['other'] = $other_options; |
| 93 | |
| 94 | // remove old setting |
| 95 | unset( $general['deactivation_delete'] ); |
| 96 | |
| 97 | // flush cache enabled? |
| 98 | if ( $general['flush_interval']['number'] > 0 ) { |
| 99 | if ( $pvc->counter->using_object_cache( true ) ) { |
| 100 | // flush data from cache |
| 101 | $pvc->counter->flush_cache_to_db(); |
| 102 | } |
| 103 | |
| 104 | // unschedule cron event |
| 105 | wp_clear_scheduled_hook( 'pvc_flush_cached_counts' ); |
| 106 | |
| 107 | // disable cache |
| 108 | $general['flush_interval'] = [ |
| 109 | 'number' => 0, |
| 110 | 'type' => 'minutes' |
| 111 | ]; |
| 112 | } |
| 113 | |
| 114 | // update general options |
| 115 | $pvc->options['general'] = $general; |
| 116 | |
| 117 | // update general options |
| 118 | update_option( 'post_views_counter_settings_general', $general ); |
| 119 | } |
| 120 | |
| 121 | // update 1.5.2+ |
| 122 | if ( version_compare( $current_db_version, '1.5.2', '<=' ) ) { |
| 123 | // get options |
| 124 | $general = $pvc->options['general']; |
| 125 | $display = $pvc->options['display']; |
| 126 | |
| 127 | // copy values |
| 128 | $display['post_views_column'] = $general['post_views_column']; |
| 129 | $display['restrict_edit_views'] = $general['restrict_edit_views']; |
| 130 | |
| 131 | // remove old values |
| 132 | unset( $general['post_views_column'] ); |
| 133 | unset( $general['restrict_edit_views'] ); |
| 134 | |
| 135 | // update settings |
| 136 | update_option( 'post_views_counter_settings_general', $general ); |
| 137 | update_option( 'post_views_counter_settings_display', $display ); |
| 138 | |
| 139 | // update options |
| 140 | $pvc->options['general'] = $general; |
| 141 | $pvc->options['display'] = $display; |
| 142 | } |
| 143 | |
| 144 | if ( isset( $_POST['post_view_counter_update'], $_POST['post_view_counter_number'] ) ) { |
| 145 | if ( $_POST['post_view_counter_number'] === 'update_1' ) { |
| 146 | $this->update_1(); |
| 147 | |
| 148 | // update plugin version |
| 149 | update_option( 'post_views_counter_version', $pvc->defaults['version'], false ); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | // get current database version |
| 154 | $current_db_version = get_option( 'post_views_counter_version', '1.0.0' ); |
| 155 | |
| 156 | // new version? |
| 157 | if ( version_compare( $current_db_version, $pvc->defaults['version'], '<' ) ) { |
| 158 | // is update 1 required? |
| 159 | if ( version_compare( $current_db_version, '1.2.4', '<=' ) ) { |
| 160 | $update_1_html = ' |
| 161 | <form action="" method="post"> |
| 162 | <input type="hidden" name="post_view_counter_number" value="update_1"/> |
| 163 | <p>' . __( '<strong>Post Views Counter</strong> - this version requires a database update. Make sure to back up your database first.', 'post-views-counter' ) . '</p> |
| 164 | <p><input type="submit" class="button button-primary" name="post_view_counter_update" value="' . __( 'Run the Update', 'post-views-counter' ) . '"/></p> |
| 165 | </form>'; |
| 166 | |
| 167 | $pvc->add_notice( $update_1_html, 'notice notice-info', false ); |
| 168 | } else |
| 169 | // update plugin version |
| 170 | update_option( 'post_views_counter_version', $pvc->defaults['version'], false ); |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * Database update for 1.2.4 and below. |
| 176 | * |
| 177 | * @global object $wpdb |
| 178 | * |
| 179 | * @return void |
| 180 | */ |
| 181 | public function update_1() { |
| 182 | global $wpdb; |
| 183 | |
| 184 | // get index |
| 185 | $old_index = $wpdb->query( "SHOW INDEX FROM `" . $wpdb->prefix . "post_views` WHERE Key_name = 'id_period'" ); |
| 186 | |
| 187 | // check whether index already exists |
| 188 | if ( $old_index > 0 ) { |
| 189 | // drop unwanted index which prevented saving views with identical weeks and months |
| 190 | $wpdb->query( "ALTER TABLE `" . $wpdb->prefix . "post_views` DROP INDEX id_period" ); |
| 191 | } |
| 192 | |
| 193 | // get index |
| 194 | $new_index = $wpdb->query( "SHOW INDEX FROM `" . $wpdb->prefix . "post_views` WHERE Key_name = 'id_type_period_count'" ); |
| 195 | |
| 196 | // check whether index already exists |
| 197 | if ( $new_index === 0 ) { |
| 198 | // create new index for better performance of sql queries |
| 199 | $wpdb->query( 'ALTER TABLE `' . $wpdb->prefix . 'post_views` ADD UNIQUE INDEX `id_type_period_count` (`id`, `type`, `period`, `count`) USING BTREE' ); |
| 200 | } |
| 201 | |
| 202 | Post_Views_Counter()->add_notice( __( 'Thank you! Datebase was successfully updated.', 'post-views-counter' ), 'updated', true ); |
| 203 | } |
| 204 | } |
| 205 |