switched = switch_to_blog($blog_id); } } /** * Function that gets called after every action * * @param string $command a string that corresponds to UDC command to call a certain method for this class. * @param array $data an array of data post or get fields * @param array $extra_info extrainfo use in the udrpc_action, e.g. user_id * * link to udrpc_action main function in class UpdraftCentral_Listener */ public function _post_action($command, $data, $extra_info) {// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable -- Unused parameter is present because the caller from UpdraftCentral_Listener class uses 3 arguments. // Here, we're restoring to the current (default) blog before we switched if ($this->switched) restore_current_blog(); } /** * Retrieves the UpdraftPlus plugin status, UpdraftVault storage usage status, Next backup * schedule, etc. Used primarily by UpdraftCentral background process. * * @return array */ public function get_status() { if (!current_user_can('manage_options')) { $response = array( 'status' => 'error', 'error_code' => 'insufficient_permission', ); } else { if (!function_exists('get_mu_plugins')) include_once(ABSPATH.'wp-admin/includes/plugin.php'); $mu_plugins = get_mu_plugins(); $is_premium = false; if (defined('UPDRAFTPLUS_DIR') && file_exists(UPDRAFTPLUS_DIR.'/udaddons')) $is_premium = true; // Set default response $response = array( 'updraftplus_version' => '', 'is_premium' => $is_premium, 'installed' => false, 'active' => false, 'backup_count' => 0, 'has_mu_plugins' => !empty($mu_plugins) ? true : false, 'last_backup' => array( 'backup_nonce' => '', 'has_errors' => false, 'has_warnings' => false, 'has_succeeded' => false, ), 'updraftvault' => array( 'site_connected' => false, 'storage' => array('quota_used' => '0 MB', 'quota' => '0 MB', 'percentage_usage' => '0.0%'), ), 'meta' => array(), ); if (class_exists('UpdraftPlus')) { global $updraftplus; $response['updraftplus_version'] = $updraftplus->version; $response['updraftvault'] = $this->get_updraftvault_status(); $response['installed'] = true; $response['active'] = true; $response['meta'] = $this->get_filesystem_credentials_info(); $schedule = $this->get_next_backup_schedule(); if ($schedule) { $response['next_backup_schedule'] = $schedule; } $backup_history = UpdraftPlus_Backup_History::add_jobdata(UpdraftPlus_Backup_History::get_history()); $response['backup_count'] = count($backup_history); $updraft_last_backup = UpdraftPlus_Options::get_updraft_option('updraft_last_backup'); if ($updraft_last_backup) { $response['last_backup']['backup_nonce'] = $updraft_last_backup['backup_nonce']; if (isset($updraft_last_backup['backup_time'])) { $response['last_backup']['backup_date'] = gmdate('n/j/Y', $updraft_last_backup['backup_time']); } $errors = 0; $warnings = 0; if (is_array($updraft_last_backup['errors'])) { foreach ($updraft_last_backup['errors'] as $err) { $level = (is_array($err)) ? $err['level'] : 'error'; if ('warning' == $level) { $warnings++; } elseif ('error' == $level) { $errors++; } } } if ($errors > 0) $response['last_backup']['has_errors'] = true; if ($warnings > 0) $response['last_backup']['has_warnings'] = true; if (isset($updraft_last_backup['success']) && $updraft_last_backup['success']) $response['last_backup']['has_succeeded'] = true; } } else { if (!function_exists('get_plugins')) require_once(ABSPATH.'wp-admin/includes/plugin.php'); $plugins = get_plugins(); $key = 'updraftplus/updraftplus.php'; if (array_key_exists($key, $plugins)) { $response['installed'] = true; if (is_plugin_active($key)) $response['active'] = true; } } } return $this->_response($response); } /** * Retrieves the next backup schedule for Files and Database backups * * @return string */ private function get_next_backup_schedule() { // Get the next (nearest) scheduled backups $files = wp_next_scheduled('updraft_backup'); $db = wp_next_scheduled('updraft_backup_database'); if ($files && $db) { $timestamp = min($files, $db); // Get the nearest schedule among the two schedules } elseif ($files && !$db) { $timestamp = $files; } elseif (!$files && $db) { $timestamp = $db; } else { $timestamp = null; } if (!empty($timestamp)) { return gmdate('g:i A - D', $timestamp); } return false; } /** * Retrieves the UpdrafVault storage usage status * * @return array */ private function get_updraftvault_status() { if (!class_exists('UpdraftCentral_UpdraftVault_Commands')) { include_once(UPDRAFTPLUS_DIR.'/includes/updraftvault.php'); } $updraftvault = new UpdraftCentral_UpdraftVault_Commands($this->rc); $creds = $updraftvault->get_credentials(); $site_connected = false; $storage = array('quota_used' => '0 MB', 'quota' => '0 MB', 'percentage_usage' => '0.0%'); $remote_service = false; if (isset($creds['data'])) { if (!isset($creds['data']['error']) && isset($creds['data']['accesskey'])) { $site_connected = true; $storage_objects_and_ids = UpdraftPlus_Storage_Methods_Interface::get_storage_objects_and_ids(array('updraftvault')); if (isset($storage_objects_and_ids['updraftvault']['instance_settings'])) { $instance_settings = $storage_objects_and_ids['updraftvault']['instance_settings']; $instance_id = key($instance_settings); $opts = $instance_settings[$instance_id]; if (!class_exists('UpdraftPlus_BackupModule_updraftvault')) { include_once(UPDRAFTPLUS_DIR.'/methods/updraftvault.php'); } $vault = new UpdraftPlus_BackupModule_updraftvault(); $vault->set_options($opts, false, $instance_id); $quota_root = $opts['quota_root']; $quota = $opts['quota']; if (empty($quota_root)) { // This next line is wrong: it lists the files *in this site's sub-folder*, rather than the whole Vault $current_files = $vault->listfiles(''); } else { $current_files = $vault->listfiles_with_path($quota_root, '', true); } if (!is_wp_error($current_files) && is_array($current_files)) { $quota_used = 0; foreach ($current_files as $file) { $quota_used += $file['size']; } $storage = array( 'quota_used' => round($quota_used / 1048576, 1).' MB', 'quota' => round($quota / 1048576, 1).' MB', 'percentage_usage' => sprintf('%.1f', 100*$quota_used / $quota).'%', ); $remote_service = array( 'name' => 'updraft_include_remote_service_updraftvault', 'value' => $instance_id, ); } } } } return array( 'site_connected' => $site_connected, 'storage' => $storage, 'remote_service' => $remote_service, ); } /** * Retrieves information whether filesystem credentials (e.g. FTP/SSH) are required * when updating plugins * * @return array */ private function get_filesystem_credentials_info() { if (!function_exists('get_filesystem_method')) { include_once(ABSPATH.'/wp-admin/includes/file.php'); } $filesystem_method = get_filesystem_method(array(), WP_PLUGIN_DIR); ob_start(); $filesystem_credentials_are_stored = request_filesystem_credentials(site_url()); $filesystem_form = strip_tags(ob_get_contents(), '