t('Backup and Migrate makes the task of backing up your Drupal database and migrating data from one Drupal install to another easier. It provides a function to backup the entire database to file or download, and to restore from a previous backup. You can also schedule the backup operation. Compression of backup files is also supported. The database backup files created with this module can be imported into this or any other Drupal installation with the !restorelink, or you can use a database tool such as phpMyAdmin or the mysql command line command.', array( '!restorelink' => user_access('restore from backup') ? l(t('restore feature'), BACKUP_MIGRATE_MENU_PATH . '/restore') : t('restore feature'), '!phpmyadminurl' => 'http://www.phpmyadmin.net' ) ) ), BACKUP_MIGRATE_MENU_PATH => array( 'title' => t('Quick Backup Tab'), 'body' => t('Use this form to run simple manual backups of your database. Visit the !helppage for more help using this module', array('!helppage' => l(t('help page'), 'admin/help/backup_migrate'))), ), BACKUP_MIGRATE_MENU_PATH . '/export/advanced' => array( 'title' => t('Advanced Backup Tab'), 'body' => t('Use this form to run manual backups of your database with more advanced options. If you have any !profilelink saved you can load those settings. You can save any of the changes you make to these settings as a new settings profile.', array("!profilelink" => user_access('administer backup and migrate') ? l(t('settings profiles'), BACKUP_MIGRATE_MENU_PATH . '/profile') : t('settings profiles'), '!restorelink' => user_access('restore from backup') ? l(t('restore feature'), BACKUP_MIGRATE_MENU_PATH . '/restore') : t('restore feature'), '!phpmyadminurl' => 'http://www.phpmyadmin.net')), ), BACKUP_MIGRATE_MENU_PATH . '/restore' => array( 'title' => t('Restore Tab'), 'body' => t('Upload a backup and migrate backup file. The restore function will not work with database dumps from other sources such as phpMyAdmin.'), ), BACKUP_MIGRATE_MENU_PATH . '/destination' => array( 'title' => t('Destinations'), 'body' => t('Destinations are the places you can save your backup files to or them load from.'), 'more' => t('Files can be saved to a directory on your web server, downloaded to your desktop or emailed to a specified email account. From the Destinations tab you can create, delete and edit destinations or list the files which have already been backed up to the available destinations.'), ), BACKUP_MIGRATE_MENU_PATH . '/profile' => array( 'title' => t('Profiles'), 'body' => t('Profiles are saved backup settings. Profiles store your table exclusion settings as well as your backup file name, compression and timestamp settings. You can use profiles in !schedulelink and for !manuallink.', array('!schedulelink' => user_access('administer backup and migrate') ? l(t('schedules'), BACKUP_MIGRATE_MENU_PATH . '/schedule') : t('settings profiles'), '!manuallink' => user_access('perform backups') ? l(t('manual backups'), BACKUP_MIGRATE_MENU_PATH) : t('manual backups'))), 'more' => t('You can create new profiles using the add profiles tab or by checking the "Save these settings" button on the advanced backup page.'), ), BACKUP_MIGRATE_MENU_PATH . '/schedule' => array( 'title' => t('Scheduling'), 'body' => t('Automatically backup up your database on a regular schedule using cron.', array('!cronurl' => 'http://drupal.org/cron')), 'more' => t('Each schedule will run a maximum of once per cron run, so they will not run more frequently than your cron is configured to run. If you specify a number of backups to keep for a schedule, old backups will be deleted as new ones created. If specifiy a number of files to keep other backup files in that schedule\'s destination will get deleted.'), ), ); if (isset($help[$section])) { return $help[$section]['body']; } if ($section == 'admin/help#backup_migrate') { $out = ""; foreach ($help as $key => $section) { if (@$section['title']) { if (!is_numeric($key)) { $section['title'] = l($section['title'], $key); } $out .= "
". $section['body'] ."
"; if (!empty($section['more'])) { $out .= "". $section['more'] ."
"; } } return $out; } } /** * Implementation of hook_menu(). */ function backup_migrate_menu() { $items = array(); $items[BACKUP_MIGRATE_MENU_PATH] = array( 'title' => 'Backup and Migrate', 'description' => 'Backup/restore your database or migrate data to or from another Drupal site.', 'page callback' => 'backup_migrate_menu_callback', 'page arguments' => array('', 'backup_migrate_ui_manual_backup_quick', TRUE), 'access arguments' => array('access backup and migrate'), 'type' => MENU_NORMAL_ITEM, ); $items[BACKUP_MIGRATE_MENU_PATH . '/export'] = array( 'title' => 'Backup', 'description' => 'Backup the database.', 'page callback' => 'backup_migrate_menu_callback', 'page arguments' => array('', 'backup_migrate_ui_manual_backup_quick', TRUE), 'access arguments' => array('access backup and migrate'), 'weight' => 0, 'type' => MENU_DEFAULT_LOCAL_TASK, ); $items[BACKUP_MIGRATE_MENU_PATH . '/export/quick'] = array( 'title' => 'Quick Backup', 'description' => 'Backup the database.', 'page callback' => 'backup_migrate_menu_callback', 'page arguments' => array('', 'backup_migrate_ui_manual_backup_quick', TRUE), 'access arguments' => array('access backup and migrate'), 'weight' => 0, 'type' => MENU_DEFAULT_LOCAL_TASK, ); $items[BACKUP_MIGRATE_MENU_PATH . '/export/advanced'] = array( 'title' => 'Advanced Backup', 'description' => 'Backup the database.', 'page callback' => 'backup_migrate_menu_callback', 'page arguments' => array('', 'backup_migrate_ui_manual_backup_advanced', TRUE), 'access arguments' => array('perform backup'), 'weight' => 1, 'type' => MENU_LOCAL_TASK, ); $items[BACKUP_MIGRATE_MENU_PATH . '/restore'] = array( 'title' => 'Restore', 'description' => 'Restore the database from a previous backup', 'page callback' => 'backup_migrate_menu_callback', 'page arguments' => array('', 'backup_migrate_ui_manual_restore', TRUE), 'access arguments' => array('restore from backup'), 'weight' => 1, 'type' => MENU_LOCAL_TASK, ); backup_migrate_include('crud'); $items += backup_migrate_crud_menu(); return $items; } /** * Implementation of hook_cron(). * * Takes care of scheduled backups and deletes abandoned temp files. */ function backup_migrate_cron() { // Backing up requires a full bootstrap as it uses the file functionality in // files.inc. Running poormanscron with caching on can cause cron to run without // a full bootstrap so we manually finish bootstrapping here. require_once './includes/common.inc'; _drupal_bootstrap_full(); // Set the message mode to logging. _backup_migrate_message_callback('_backup_migrate_message_log'); backup_migrate_include('schedules'); backup_migrate_schedules_run(); backup_migrate_include('files'); _backup_migrate_temp_files_delete(); } /** * Implementation of hook_perm(). */ function backup_migrate_perm() { return array('access backup and migrate', 'perform backup', 'access backup files', 'delete backup files', 'restore from backup', 'administer backup and migrate'); } /** * Implementation of hook_simpletest(). */ function backup_migrate_simpletest() { $dir = drupal_get_path('module', 'backup_migrate') .'/tests'; $tests = file_scan_directory($dir, '\.test$'); return array_keys($tests); } /** * Implementation of hook_theme(). */ function backup_migrate_theme() { $themes = array( 'backup_migrate_ui_manual_quick_backup_form' => array( 'arguments' => array('form'), ), ); return $themes; } /* Menu Callbacks */ /** * A menu callback helper. Handles file includes and interactivity setting. */ function backup_migrate_menu_callback($include, $function, $interactive = TRUE) { if ($include) { backup_migrate_include($include); } // Set the message handler based on interactivity setting. _backup_migrate_message_callback($interactive ? '_backup_migrate_message_browser' : '_backup_migrate_message_log'); // Get the arguments with the first 3 removed. $args = array_slice(func_get_args(), 3); return call_user_func_array($function, $args); } /** * Include views .inc files as necessary. */ function backup_migrate_include() { static $used = array(); foreach (func_get_args() as $file) { if (!isset($used[$file])) { require_once './' . drupal_get_path('module', 'backup_migrate') . "/includes/$file.inc"; } $used[$file] = TRUE; } } /** * The menu callback for easy manual backups. */ function backup_migrate_ui_manual_backup_quick() { $out = ""; if (user_access('perform backup')) { $out .= drupal_get_form('backup_migrate_ui_manual_quick_backup_form'); } else { $out .= t('You do not have permission to back up this site.'); } return $out; } /** * The menu callback for advanced manual backups. */ function backup_migrate_ui_manual_backup_advanced() { backup_migrate_include('profiles'); $out = ''; $profile_id = arg(BACKUP_MIGRATE_MENU_DEPTH + 2); $profile = _backup_migrate_profile_saved_default_profile($profile_id); $out .= drupal_get_form('backup_migrate_ui_manual_backup_load_profile_form', $profile); $out .= drupal_get_form('backup_migrate_ui_manual_backup_form', $profile); return $out; } /** * The backup/export load profile form. */ function backup_migrate_ui_manual_backup_load_profile_form(&$form_state, $profile = NULL) { $form = array(); $profile_options = _backup_migrate_get_profile_form_item_options(); if (count($profile_options) > 0) { $profile_options = array(0 => t('-- Select a Settings Profile --')) + $profile_options; $form['profile'] = array( "#title" => t("Settings Profile"), "#collapsible" => TRUE, "#collapsed" => FALSE, "#prefix" => 'Or you can restore one of the files in your saved backup destinations.
', array("!url" => url("admin/content/backup_migrate/destination"))), ); } $form['#attributes'] = array('enctype' => 'multipart/form-data'); return $form; } /** * The restore submit. Do the restore. */ function backup_migrate_ui_manual_restore_form_submit($form, &$form_state) { if ($file = file_save_upload('backup_migrate_restore_upload')) { backup_migrate_include('destinations'); backup_migrate_perform_restore('upload', $file->filepath, $form_state['values']); } $form_state['redirect'] = BACKUP_MIGRATE_MENU_PATH . '/restore'; } /** * Convert an item to an 'exportable'. */ function backup_migrate_ui_export_form(&$form_state, $item) { if ($item && function_exists('ctools_var_export')) { $code = ctools_var_export($item); $form = ctools_export_form($form_state, $code); return $form; } return array(); } /** * Perform a backup with the given settings. */ function backup_migrate_perform_backup(&$settings) { backup_migrate_include('destinations', 'files', 'filters'); timer_start('backup_migrate_backup'); // If not in 'safe mode', increase the maximum execution time: if (!ini_get('safe_mode') && ini_get('max_execution_time') < 1200) { set_time_limit(variable_get('backup_migrate_backup_max_time', 1200)); } if ($settings->append_timestamp && $settings->timestamp_format) { $settings->filename .= "-". date($settings->timestamp_format); } $settings->filename = _backup_migrate_clean_filename($settings->filename); $file = new backup_file(array('filename' => $settings->filename)); if (!$file) { backup_migrate_backup_fail("Could not run backup because a temporary file could not be created.", array(), $settings); return FALSE; } // Register shutdown callback to deal with timeouts. register_shutdown_function('backup_migrate_shutdown', $settings); $file = backup_migrate_filters_backup($file, $settings); if (!$file) { if (_backup_migrate_check_timeout()) { backup_migrate_backup_fail('Could not complete the backup because the script timed out. Try increasing your PHP max_execution_time setting.', array('!url' => 'http://www.php.net/manual/en/info.configuration.php#ini.max-execution-time'), $settings); } else { backup_migrate_backup_fail("Could not complete the backup.", array(), $settings); } return FALSE; } $file = backup_migrate_destination_save_file($file, $settings); if (!$file) { backup_migrate_backup_fail("Could not run backup because the file could not be saved to the destination.", array(), $settings); return FALSE; } // Backup succeeded, $time = timer_stop('backup_migrate_backup'); $message = '%source backed up successfully to %file in destination %dest in !time ms. !action'; $params = array( '%file' => $settings->filename, '%dest' => $settings->get_destination_name(), '%source' => $settings->get_source_name(), '!time' => $time['time'], '!action' => !empty($settings->performed_action) ? $settings->performed_action : '', ); if (($destination = $settings->get_destination()) && ($links = $destination->get_file_links($file->file_id()))) { $params['!links'] = implode(", ", $links); } backup_migrate_backup_succeed($message, $params, $settings); return $file; } /** * Restore from a file in the given destination. */ function backup_migrate_perform_restore($destination_id, $file, $settings = array()) { backup_migrate_include('files', 'filters'); timer_start('backup_migrate_restore'); // If not in 'safe mode', increase the maximum execution time: if (!ini_get('safe_mode') && ini_get('max_execution_time') < variable_get('backup_migrate_backup_max_time', 1200)) { set_time_limit(variable_get('backup_migrate_restore_max_time', 1200)); } // Make the settings into a default profile. if (!is_object($settings)) { $settings = backup_migrate_crud_create_item('profile', $settings); $settings->source_id = empty($settings->source_id) ? 'db' : $settings->source_id; } // Register shutdown callback. register_shutdown_function('backup_migrate_shutdown', $settings); if (!is_object($file)) { // Load the file from the destination. $file = backup_migrate_destination_get_file($destination_id, $file); if (!$file) { _backup_migrate_message("Could not restore because the file could not be loaded from the destination.", array(), 'error'); backup_migrate_cleanup(); return FALSE; } } // Filter the file and perform the restore. $file = backup_migrate_filters_restore($file, $settings); if (!$file) { if (_backup_migrate_check_timeout()) { backup_migrate_restore_fail('Could not perform the restore because the script timed out. Try increasing your PHP max_execution_time setting.', array('!url' => 'http://www.php.net/manual/en/info.configuration.php#ini.max-execution-time'), 'error'); } else { backup_migrate_restore_fail("Could not perform the restore.", array(), 'error'); } backup_migrate_cleanup(); return FALSE; } $time = timer_stop('backup_migrate_restore'); if ($file) { $destination = backup_migrate_get_destination($destination_id); $message = '%source restored from %dest file %file in !time ms. !action'; $params = array( '%file' => $file->filename(), '%source' => $settings->get_source_name(), '%dest' => $destination->get_name(), '!time' => $time['time'], '!action' => !empty($settings->performed_action) ? $settings->performed_action : '', ); if ($destination && $destination->op('list files')) { $params['!links'] = t('Restore again', array('!restoreurl' => url(BACKUP_MIGRATE_MENU_PATH . '/destination/list/restorefile/'. $destination_id ."/". $file->filename()))); } backup_migrate_restore_succeed($message, $params, $settings); } // Delete any temp files we've created. backup_migrate_cleanup(); // No errors. Return the file. return $file; } /** * Clean up when a backup operation fails. */ function backup_migrate_backup_fail($message, $params, $settings) { backup_migrate_include('files', 'filters'); _backup_migrate_message($message, $params, 'error'); backup_migrate_cleanup(); backup_migrate_filters_invoke_all('backup_fail', $settings, $message, $params); return FALSE; } /** * Clean up when a backup operation suceeds. */ function backup_migrate_backup_succeed($message, $params, $settings) { backup_migrate_include('filters', 'files'); _backup_migrate_message($message, $params, 'success'); backup_migrate_cleanup(); backup_migrate_filters_invoke_all('backup_succeed', $settings, $message, $params); return FALSE; } /** * Clean up when a restore operation fails. */ function backup_migrate_restore_fail($message, $params, $settings) { backup_migrate_include('files', 'filters'); _backup_migrate_message($message, $params, 'error'); backup_migrate_cleanup(); backup_migrate_filters_invoke_all('restore_fail', $settings, $message, $params); return FALSE; } /** * Clean up when a restore operation suceeds. */ function backup_migrate_restore_succeed($message, $params, $settings) { backup_migrate_include('filters', 'files'); _backup_migrate_message($message, $params, 'success'); backup_migrate_cleanup(); backup_migrate_filters_invoke_all('restore_succeed', $settings, $message, $params); return FALSE; } /** * Cleanup after a success or failure. */ function backup_migrate_cleanup() { // Check that the cleanup function exists. If it doesn't then we probably didn't create any files to be cleaned up. if (function_exists('_backup_migrate_temp_files_delete')) { _backup_migrate_temp_files_delete(); } } /** * Shutdown callback. Called when the script terminates even if the script timed out. */ function backup_migrate_shutdown($settings) { // If we ran out of time, set an error so the user knows what happened if (_backup_migrate_check_timeout()) { backup_migrate_cleanup(); backup_migrate_backup_fail('The operation timed out. Try increasing your PHP max_execution_time setting.', array('!url' => 'http://www.php.net/manual/en/info.configuration.php#ini.max-execution-time'), $settings); // The session will have already been written and closed, so we need to write any changes directly. sess_write(session_id(), session_encode()); // Add a redirect or we'll just get whitescreened. drupal_goto(BACKUP_MIGRATE_MENU_PATH); } } /* Actions/Workflow integration */ /** * Action to backup the drupal site. Requires actions.module. function action_backup_migrate_backup($op, $edit = array()) { switch ($op) { case 'do': _backup_migrate_backup_with_defaults(); watchdog('action', 'Backed up database'); break; case 'metadata': return array( 'description' => t('Backup the database with the default settings'), 'type' => t('Backup and Migrate'), 'batchable' => TRUE, 'configurable' => FALSE, ); // Return an HTML config form for the action. case 'form': return ''; // Validate the HTML form. case 'validate': return TRUE; // Process the HTML form to store configuration. case 'submit': return ''; } } */ /* * Implementation of hook_action_info(). function backup_migrate_action_info() { return array( 'backup_migrate_action_backup' => array( '#label' => t('Backup the database'), '#module' => t('Backup and Migrate'), '#description' => t('Backup the database with the default settings.'), ), ); } */ /* * Action callback. */ function backup_migrate_action_backup() { _backup_migrate_backup_with_defaults(); } /* Utilities */ /** * Backup the database with the default settings. */ function _backup_migrate_backup_with_defaults($destination_id = "manual") { backup_migrate_include('files', 'profiles'); $settings = _backup_migrate_profile_saved_default_profile(); $settings->destination_id = $destination_id; $settings->source_id = 'db'; backup_migrate_perform_backup($settings); } /** * Helper function to set a drupal message and watchdog message depending on whether the module is being run interactively. */ function _backup_migrate_message($message, $replace = array(), $type = 'status') { // Only set a message if there is a callback handler to handle the message. if (($callback = _backup_migrate_message_callback()) && function_exists($callback)) { $callback($message, $replace, $type); } // Store the message in case it's needed (for the status notification filter for example). _backup_migrate_messages($message, $replace, $type); } /** * Helper function to set a drupal message and watchdog message depending on whether the module is being run interactively. */ function _backup_migrate_messages($message = NULL, $replace = array(), $type = 'status') { static $messages = array(); if ($message) { $messages[] = array('message' => $message, 'replace' => $replace, 'type' => $type); } return $messages; } /** * Send a message to the browser. The normal type of message handling for interactive use. */ function _backup_migrate_message_browser($message, $replace, $type) { // Log the message as well for admins. _backup_migrate_message_log($message, $replace, $type); // If there are links, we can display them in the browser. if (!empty($replace['!links'])) { $message .= " (!links)"; } // Use drupal_set_message to display to the user. drupal_set_message(t($message, $replace), str_replace('success', 'status', $type), FALSE); } /** * Log message if we are in a non-interactive mode such as a cron run. */ function _backup_migrate_message_log($message, $replace, $type) { // We only want to log the errors or successful completions. if (in_array($type, array('error', 'success'))) { watchdog('backup_migrate', $message, $replace, $type == 'error' ? WATCHDOG_ERROR : WATCHDOG_NOTICE); } } /** * Set or retrieve a message handler. */ function _backup_migrate_message_callback($callback = NULL) { static $current_callback = '_backup_migrate_message_log'; if ($callback !== NULL) { $current_callback = $callback; } return $current_callback; } function _backup_migrate_check_timeout() { static $timeout; // Max execution of 0 means unlimited. if (ini_get('max_execution_time') == 0) { return false; } // Figure out when we should stop execution. if (!$timeout) { $timeout = (!empty($_SERVER['REQUEST_TIME']) ? $_SERVER['REQUEST_TIME'] : time()) + ini_get('max_execution_time') - variable_get('backup_migrate_timeout_buffer', 5); } return (time() > $timeout); }