temporary-clone-auto-login.php
1 month ago
temporary-clone-dash-notice.php
7 months ago
temporary-clone-restore.php
3 weeks ago
temporary-clone-status.php
7 months ago
temporary-clone-user-notice.php
1 year ago
temporary-clone-dash-notice.php
181 lines
| 1 | <?php |
| 2 | |
| 3 | if (!defined('ABSPATH')) die('No direct access allowed'); |
| 4 | |
| 5 | class UpdraftPlus_Temporary_Clone_Dash_Notice { |
| 6 | |
| 7 | /** |
| 8 | * Constructor for the class. |
| 9 | */ |
| 10 | public function __construct() { |
| 11 | add_action('updraftplus_temporary_clone_refresh_connection', array($this, 'refresh_connection')); |
| 12 | add_action('wp_ajax_updraftplus_dash_notice_ajax', array($this, 'updraftplus_dash_notice_ajax')); |
| 13 | add_action('all_admin_notices', array($this, 'all_admin_notices_dashboard_notice')); |
| 14 | |
| 15 | if (!wp_next_scheduled('updraftplus_temporary_clone_refresh_connection')) { |
| 16 | wp_schedule_event(time(), 'twicedaily', 'updraftplus_temporary_clone_refresh_connection'); |
| 17 | } |
| 18 | |
| 19 | if ('' == get_site_option('updraftplus_clone_scheduled_removal', '') || 0 == get_site_option('updraftplus_clone_package_cost', 0)) { |
| 20 | $this->refresh_connection(); |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * This function will add a dashboard notice to every page, that shows the user when their clone will expire and directs them to UpdraftPlus.com to extend their clones life. |
| 26 | * |
| 27 | * @return void |
| 28 | */ |
| 29 | public function all_admin_notices_dashboard_notice() { |
| 30 | $date = strtotime(get_site_option('updraftplus_clone_scheduled_removal', '')); |
| 31 | if ('' == $date) { |
| 32 | $pretty_date = __('Unable to get renew date', 'updraftplus'); |
| 33 | $date_diff = ''; |
| 34 | } else { |
| 35 | $pretty_date = get_date_from_gmt(gmdate('Y-m-d H:i:s', (int) $date), 'M d, Y G:i'); |
| 36 | /* translators: %s: human-readable time difference */ |
| 37 | $date_diff = sprintf(__('%s from now', 'updraftplus'), human_time_diff($date)); |
| 38 | } |
| 39 | |
| 40 | $package_cost = get_site_option('updraftplus_clone_package_cost', 0); |
| 41 | $package_cost = empty($package_cost) ? 1 : $package_cost; |
| 42 | ?> |
| 43 | <div id="updraftplus_temporary_clone-dashnotice" class="updated"> |
| 44 | <div style="float:right;"><a href="#" onclick="jQuery.post('<?php echo esc_js(admin_url('admin-ajax.php')); ?>', {action: 'updraftplus_dash_notice_ajax', subaction: 'refresh_connection', nonce: '<?php echo esc_js(wp_create_nonce('updraftplus_refresh_connection'));?>' }, function() { location.reload(); });"><?php esc_html_e('Refresh connection', 'updraftplus'); ?></a></div> |
| 45 | <h1><?php esc_html_e('Welcome to your UpdraftClone (temporary clone)', 'updraftplus'); ?></h1> |
| 46 | <p> |
| 47 | <?php echo esc_html(__('Your clone will renew on:', 'updraftplus') . ' ' . $pretty_date . ' ' . get_option('timezone_string') . ' (' . $date_diff . ')'); ?>. |
| 48 | <?php |
| 49 | echo esc_html( |
| 50 | sprintf( |
| 51 | /* translators: %s: Token cost */ |
| 52 | __('Each time your clone renews (weekly) it costs %s.', 'updraftplus'), |
| 53 | /* translators: %d: Number of tokens */ |
| 54 | sprintf(_n('%d token', '%d tokens', $package_cost, 'updraftplus'), $package_cost) |
| 55 | ).' '.__('You can shut this clone down at the following link:', 'updraftplus') |
| 56 | ); |
| 57 | ?> <a target="_blank" href="https://teamupdraft.com/my-account/?utm_source=udp-plugin&utm_medium=referral&utm_campaign=paac&utm_content=manage-your-clones&utm_creative_format=notice"><?php esc_html_e('Manage your clones', 'updraftplus'); ?></a> |
| 58 | </p> |
| 59 | <?php |
| 60 | $show_removal_warning = get_site_option('updraftplus_clone_removal_warning', false); |
| 61 | |
| 62 | if ($show_removal_warning) echo '<p>'.esc_html__('Warning: You have no clone tokens remaining and either no subscriptions or no subscription that will renew before the clone expiry date.', 'updraftplus').'</p>' |
| 63 | ?> |
| 64 | </div> |
| 65 | <?php |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * This function will perform security checks before allowing the ajax calls for the UpdraftClone VPS mu-plugin be processed. |
| 70 | * |
| 71 | * @return void |
| 72 | */ |
| 73 | public function updraftplus_dash_notice_ajax() { |
| 74 | |
| 75 | if (is_user_logged_in() && current_user_can('manage_options')) { |
| 76 | $this->process_dash_notice_ajax(); |
| 77 | } else { |
| 78 | return; |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * This function will handle the ajax calls for the UpdraftClone notice mu-plugin. |
| 84 | * |
| 85 | * @return void |
| 86 | */ |
| 87 | public function process_dash_notice_ajax() { |
| 88 | $return = array('code' => 'fail', 'data' => ''); |
| 89 | |
| 90 | if (!isset($_POST['subaction'])) { |
| 91 | $return['code'] = 'error'; |
| 92 | $return['data'] = 'Missing subaction'; |
| 93 | echo json_encode($return); |
| 94 | die(); |
| 95 | } |
| 96 | |
| 97 | if ('refresh_connection' === $_POST['subaction']) { |
| 98 | check_ajax_referer('updraftplus_refresh_connection', 'nonce'); |
| 99 | |
| 100 | $result = $this->refresh_connection(); |
| 101 | |
| 102 | if ($result) { |
| 103 | $return['code'] = 'success'; |
| 104 | $return['data'] = $result; |
| 105 | } else { |
| 106 | $return['code'] = 'error'; |
| 107 | $return['data'] = $result; |
| 108 | } |
| 109 | |
| 110 | echo json_encode($return); |
| 111 | die(); |
| 112 | } else { |
| 113 | $return['code'] = 'error'; |
| 114 | $return['data'] = 'Unknown action'; |
| 115 | echo json_encode($return); |
| 116 | die(); |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * This function will refresh the stored clones expire date by calling UpdraftPlus.com and getting the latest value. |
| 122 | * Note this function needs three defines to work UPDRAFTPLUS_USER_ID and UPDRAFTPLUS_VPS_ID and UPDRAFTPLUS_UNIQUE_TOKEN. |
| 123 | * |
| 124 | * @return array - that contains the updated expire data or error information |
| 125 | */ |
| 126 | public function refresh_connection() { |
| 127 | global $updraftplus; |
| 128 | |
| 129 | if (!defined('UPDRAFTPLUS_USER_ID') || !is_numeric(UPDRAFTPLUS_USER_ID) || !defined('UPDRAFTPLUS_VPS_ID') || !is_numeric(UPDRAFTPLUS_VPS_ID)) { |
| 130 | return array('code' => 'error', 'data' => 'No user or VPS ID found'); |
| 131 | } |
| 132 | |
| 133 | if (!defined('UPDRAFTPLUS_UNIQUE_TOKEN')) return array('code' => 'error', 'data' => 'No unique token found'); |
| 134 | |
| 135 | $user_id = UPDRAFTPLUS_USER_ID; |
| 136 | $vps_id = UPDRAFTPLUS_VPS_ID; |
| 137 | $token = UPDRAFTPLUS_UNIQUE_TOKEN; |
| 138 | |
| 139 | $data = array('user_id' => $user_id, 'vps_id' => $vps_id, 'token' => $token); |
| 140 | $result = $updraftplus->get_updraftplus_clone()->clone_status($data); |
| 141 | |
| 142 | if (!isset($result['data'])) return array('code' => 'error', 'data' => 'No data returned from clone status call'); |
| 143 | |
| 144 | $vps_info = $result['data']; |
| 145 | |
| 146 | if (empty($vps_info['scheduled_removal'])) return array('code' => 'error', 'data' => 'No scheduled removal date found'); |
| 147 | if (empty($vps_info['package_cost'])) return array('code' => 'error', 'data' => 'Missing the expected clone package cost information'); |
| 148 | |
| 149 | update_site_option('updraftplus_clone_scheduled_removal', $vps_info['scheduled_removal']); |
| 150 | update_site_option('updraftplus_clone_package_cost', $vps_info['package_cost']); |
| 151 | |
| 152 | $clone_removal_warning = false; |
| 153 | |
| 154 | if (isset($vps_info['tokens']) && 0 == $vps_info['tokens']) { |
| 155 | if (empty($vps_info['subscription_renewals'])) { |
| 156 | $clone_removal_warning = true; |
| 157 | } else { |
| 158 | $subscription_before_expire = false; |
| 159 | foreach ($vps_info['subscription_renewals'] as $renewal) { |
| 160 | if ($renewal < $vps_info['scheduled_removal']) $subscription_before_expire = true; |
| 161 | } |
| 162 | |
| 163 | if (!$subscription_before_expire) $clone_removal_warning = true; |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | update_site_option('updraftplus_clone_removal_warning', $clone_removal_warning); |
| 168 | |
| 169 | $vps_data = array( |
| 170 | 'scheduled_removal' => $vps_info['scheduled_removal'], |
| 171 | 'package_cost' => $vps_info['package_cost'] |
| 172 | ); |
| 173 | |
| 174 | return array('code' => 'success', 'data' => $vps_data); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | if (defined('UPDRAFTPLUS_THIS_IS_CLONE')) { |
| 179 | new UpdraftPlus_Temporary_Clone_Dash_Notice(); |
| 180 | } |
| 181 |