123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511 |
- <?php
- define('DRUPAL_ROOT', getcwd());
- define('MAINTENANCE_MODE', 'update');
- function update_selection_page() {
- drupal_set_title('Drupal database update');
- $elements = drupal_get_form('update_script_selection_form');
- $output = drupal_render($elements);
- update_task_list('select');
- return $output;
- }
- function update_script_selection_form($form, &$form_state) {
- $count = 0;
- $incompatible_count = 0;
- $form['start'] = array(
- '#tree' => TRUE,
- '#type' => 'fieldset',
- '#collapsed' => TRUE,
- '#collapsible' => TRUE,
- );
-
- $form['start']['system'] = array();
- $updates = update_get_update_list();
- $starting_updates = array();
- $incompatible_updates_exist = FALSE;
- foreach ($updates as $module => $update) {
- if (!isset($update['start'])) {
- $form['start'][$module] = array(
- '#type' => 'item',
- '#title' => $module . ' module',
- '#markup' => $update['warning'],
- '#prefix' => '<div class="messages warning">',
- '#suffix' => '</div>',
- );
- $incompatible_updates_exist = TRUE;
- continue;
- }
- if (!empty($update['pending'])) {
- $starting_updates[$module] = $update['start'];
- $form['start'][$module] = array(
- '#type' => 'hidden',
- '#value' => $update['start'],
- );
- $form['start'][$module . '_updates'] = array(
- '#theme' => 'item_list',
- '#items' => $update['pending'],
- '#title' => $module . ' module',
- );
- }
- if (isset($update['pending'])) {
- $count = $count + count($update['pending']);
- }
- }
-
- foreach (update_resolve_dependencies($starting_updates) as $function => $data) {
- if (!$data['allowed']) {
- $incompatible_updates_exist = TRUE;
- $incompatible_count++;
- $module_update_key = $data['module'] . '_updates';
- if (isset($form['start'][$module_update_key]['#items'][$data['number']])) {
- $text = $data['missing_dependencies'] ? 'This update will been skipped due to the following missing dependencies: <em>' . implode(', ', $data['missing_dependencies']) . '</em>' : "This update will be skipped due to an error in the module's code.";
- $form['start'][$module_update_key]['#items'][$data['number']] .= '<div class="warning">' . $text . '</div>';
- }
-
- $form['start'] = array($module_update_key => $form['start'][$module_update_key]) + $form['start'];
- }
- }
-
- if ($incompatible_updates_exist) {
- drupal_set_message('Some of the pending updates cannot be applied because their dependencies were not met.', 'warning');
- }
- if (empty($count)) {
- drupal_set_message(t('No pending updates.'));
- unset($form);
- $form['links'] = array(
- '#markup' => theme('item_list', array('items' => update_helpful_links())),
- );
-
- drupal_flush_all_caches();
- }
- else {
- $form['help'] = array(
- '#markup' => '<p>The version of Drupal you are updating from has been automatically detected.</p>',
- '#weight' => -5,
- );
- if ($incompatible_count) {
- $form['start']['#title'] = format_plural(
- $count,
- '1 pending update (@number_applied to be applied, @number_incompatible skipped)',
- '@count pending updates (@number_applied to be applied, @number_incompatible skipped)',
- array('@number_applied' => $count - $incompatible_count, '@number_incompatible' => $incompatible_count)
- );
- }
- else {
- $form['start']['#title'] = format_plural($count, '1 pending update', '@count pending updates');
- }
- $form['has_js'] = array(
- '#type' => 'hidden',
- '#default_value' => FALSE,
- );
- $form['actions'] = array('#type' => 'actions');
- $form['actions']['submit'] = array(
- '#type' => 'submit',
- '#value' => 'Apply pending updates',
- );
- }
- return $form;
- }
- function update_helpful_links() {
- $links[] = '<a href="' . base_path() . '">Front page</a>';
- if (user_access('access administration pages')) {
- $links[] = '<a href="' . base_path() . '?q=admin">Administration pages</a>';
- }
- return $links;
- }
- function update_results_page() {
- drupal_set_title('Drupal database update');
- $links = update_helpful_links();
- update_task_list();
-
- if (module_exists('dblog') && user_access('access site reports')) {
- $log_message = ' All errors have been <a href="' . base_path() . '?q=admin/reports/dblog">logged</a>.';
- }
- else {
- $log_message = ' All errors have been logged.';
- }
- if ($_SESSION['update_success']) {
- $output = '<p>Updates were attempted. If you see no failures below, you may proceed happily back to your <a href="' . base_path() . '">site</a>. Otherwise, you may need to update your database manually.' . $log_message . '</p>';
- }
- else {
- $updates_remaining = reset($_SESSION['updates_remaining']);
- list($module, $version) = array_pop($updates_remaining);
- $output = '<p class="error">The update process was aborted prematurely while running <strong>update #' . $version . ' in ' . $module . '.module</strong>.' . $log_message;
- if (module_exists('dblog')) {
- $output .= ' You may need to check the <code>watchdog</code> database table manually.';
- }
- $output .= '</p>';
- }
- if (!empty($GLOBALS['update_free_access'])) {
- $output .= "<p><strong>Reminder: don't forget to set the <code>\$update_free_access</code> value in your <code>settings.php</code> file back to <code>FALSE</code>.</strong></p>";
- }
- $output .= theme('item_list', array('items' => $links));
-
- if (!empty($_SESSION['update_results'])) {
- $all_messages = '';
- foreach ($_SESSION['update_results'] as $module => $updates) {
- if ($module != '#abort') {
- $module_has_message = FALSE;
- $query_messages = '';
- foreach ($updates as $number => $queries) {
- $messages = array();
- foreach ($queries as $query) {
-
- if (empty($query['query'])) {
- continue;
- }
- if ($query['success']) {
- $messages[] = '<li class="success">' . $query['query'] . '</li>';
- }
- else {
- $messages[] = '<li class="failure"><strong>Failed:</strong> ' . $query['query'] . '</li>';
- }
- }
- if ($messages) {
- $module_has_message = TRUE;
- $query_messages .= '<h4>Update #' . $number . "</h4>\n";
- $query_messages .= '<ul>' . implode("\n", $messages) . "</ul>\n";
- }
- }
-
-
- if ($module_has_message) {
- $all_messages .= '<h3>' . $module . " module</h3>\n" . $query_messages;
- }
- }
- }
- if ($all_messages) {
- $output .= '<div id="update-results"><h2>The following updates returned messages</h2>';
- $output .= $all_messages;
- $output .= '</div>';
- }
- }
- unset($_SESSION['update_results']);
- unset($_SESSION['update_success']);
- return $output;
- }
- function update_info_page() {
-
- _drupal_flush_css_js();
-
- if (db_table_exists('cache_update')) {
- cache_clear_all('*', 'cache_update', TRUE);
- }
- update_task_list('info');
- drupal_set_title('Drupal database update');
- $token = drupal_get_token('update');
- $output = '<p>Use this utility to update your database whenever a new release of Drupal or a module is installed.</p><p>For more detailed information, see the <a href="http://drupal.org/upgrade">upgrading handbook</a>. If you are unsure what these terms mean you should probably contact your hosting provider.</p>';
- $output .= "<ol>\n";
- $output .= "<li><strong>Back up your database</strong>. This process will change your database values and in case of emergency you may need to revert to a backup.</li>\n";
- $output .= "<li><strong>Back up your code</strong>. Hint: when backing up module code, do not leave that backup in the 'modules' or 'sites/*/modules' directories as this may confuse Drupal's auto-discovery mechanism.</li>\n";
- $output .= '<li>Put your site into <a href="' . base_path() . '?q=admin/config/development/maintenance">maintenance mode</a>.</li>' . "\n";
- $output .= "<li>Install your new files in the appropriate location, as described in the handbook.</li>\n";
- $output .= "</ol>\n";
- $output .= "<p>When you have performed the steps above, you may proceed.</p>\n";
- $form_action = check_url(drupal_current_script_url(array('op' => 'selection', 'token' => $token)));
- $output .= '<form method="post" action="' . $form_action . '"><p><input type="submit" value="Continue" class="form-submit" /></p></form>';
- $output .= "\n";
- return $output;
- }
- function update_access_denied_page() {
- drupal_add_http_header('Status', '403 Forbidden');
- watchdog('access denied', 'update.php', NULL, WATCHDOG_WARNING);
- drupal_set_title('Access denied');
- return '<p>Access denied. You are not authorized to access this page. Log in using either an account with the <em>administer software updates</em> permission or the site maintenance account (the account you created during installation). If you cannot log in, you will have to edit <code>settings.php</code> to bypass this access check. To do this:</p>
- <ol>
- <li>With a text editor find the settings.php file on your system. From the main Drupal directory that you installed all the files into, go to <code>sites/your_site_name</code> if such directory exists, or else to <code>sites/default</code> which applies otherwise.</li>
- <li>There is a line inside your settings.php file that says <code>$update_free_access = FALSE;</code>. Change it to <code>$update_free_access = TRUE;</code>.</li>
- <li>As soon as the update.php script is done, you must change the settings.php file back to its original form with <code>$update_free_access = FALSE;</code>.</li>
- <li>To avoid having this problem in the future, remember to log in to your website using either an account with the <em>administer software updates</em> permission or the site maintenance account (the account you created during installation) before you backup your database at the beginning of the update process.</li>
- </ol>';
- }
- function update_access_allowed() {
- global $update_free_access, $user;
-
- if (!empty($update_free_access)) {
- return TRUE;
- }
-
-
- try {
- require_once DRUPAL_ROOT . '/' . drupal_get_path('module', 'user') . '/user.module';
- return user_access('administer software updates');
- }
- catch (Exception $e) {
- return ($user->uid == 1);
- }
- }
- function update_task_list($active = NULL) {
-
- $tasks = array(
- 'requirements' => 'Verify requirements',
- 'info' => 'Overview',
- 'select' => 'Review updates',
- 'run' => 'Run updates',
- 'finished' => 'Review log',
- );
- drupal_add_region_content('sidebar_first', theme('task_list', array('items' => $tasks, 'active' => $active)));
- }
- function update_extra_requirements($requirements = NULL) {
- static $extra_requirements = array();
- if (isset($requirements)) {
- $extra_requirements += $requirements;
- }
- return $extra_requirements;
- }
- function update_check_requirements($skip_warnings = FALSE) {
-
- $requirements = module_invoke_all('requirements', 'update');
- $requirements += update_extra_requirements();
- $severity = drupal_requirements_severity($requirements);
-
-
- if ($severity == REQUIREMENT_ERROR || ($severity == REQUIREMENT_WARNING && !$skip_warnings)) {
- update_task_list('requirements');
- drupal_set_title('Requirements problem');
- $status_report = theme('status_report', array('requirements' => $requirements));
- $status_report .= 'Check the error messages and <a href="' . check_url(drupal_requirements_url($severity)) . '">try again</a>.';
- print theme('update_page', array('content' => $status_report));
- exit();
- }
- }
- ini_set('display_errors', FALSE);
- require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
- require_once DRUPAL_ROOT . '/includes/update.inc';
- require_once DRUPAL_ROOT . '/includes/common.inc';
- require_once DRUPAL_ROOT . '/includes/file.inc';
- require_once DRUPAL_ROOT . '/includes/entity.inc';
- require_once DRUPAL_ROOT . '/includes/unicode.inc';
- update_prepare_d7_bootstrap();
- $configurable_timezones = variable_get('configurable_timezones', 1);
- $conf['configurable_timezones'] = 0;
- drupal_bootstrap(DRUPAL_BOOTSTRAP_SESSION);
- $conf['configurable_timezones'] = $configurable_timezones;
- $op = isset($_REQUEST['op']) ? $_REQUEST['op'] : '';
- if (empty($op) && update_access_allowed()) {
- require_once DRUPAL_ROOT . '/includes/install.inc';
- require_once DRUPAL_ROOT . '/modules/system/system.install';
-
- include_once DRUPAL_ROOT . '/includes/module.inc';
- $module_list['system']['filename'] = 'modules/system/system.module';
- module_list(TRUE, FALSE, FALSE, $module_list);
- drupal_load('module', 'system');
-
-
- module_implements('', FALSE, TRUE);
-
- drupal_language_initialize();
-
- drupal_maintenance_theme();
-
-
- update_check_requirements(TRUE);
-
- install_goto('update.php?op=info');
- }
- drupal_bootstrap(DRUPAL_BOOTSTRAP_LANGUAGE);
- include_once DRUPAL_ROOT . '/includes/unicode.inc';
- update_fix_d7_requirements();
- drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
- drupal_maintenance_theme();
- ini_set('display_errors', TRUE);
- if (update_access_allowed()) {
- include_once DRUPAL_ROOT . '/includes/install.inc';
- include_once DRUPAL_ROOT . '/includes/batch.inc';
- drupal_load_updates();
- update_fix_compatibility();
-
-
-
-
- $skip_warnings = !empty($_GET['continue']);
- update_check_requirements($skip_warnings);
- $op = isset($_REQUEST['op']) ? $_REQUEST['op'] : '';
- switch ($op) {
-
- case 'selection':
- if (isset($_GET['token']) && drupal_valid_token($_GET['token'], 'update')) {
- $output = update_selection_page();
- break;
- }
- case 'Apply pending updates':
- if (isset($_GET['token']) && drupal_valid_token($_GET['token'], 'update')) {
-
-
-
- $batch_url = $base_root . drupal_current_script_url();
- $redirect_url = $base_root . drupal_current_script_url(array('op' => 'results'));
- update_batch($_POST['start'], $redirect_url, $batch_url);
- break;
- }
- case 'info':
- $output = update_info_page();
- break;
- case 'results':
- $output = update_results_page();
- break;
-
- default:
- update_task_list('run');
- $output = _batch_page();
- break;
- }
- }
- else {
- $output = update_access_denied_page();
- }
- if (isset($output) && $output) {
-
- drupal_session_start();
-
- $progress_page = ($batch = batch_get()) && isset($batch['running']);
- print theme('update_page', array('content' => $output, 'show_messages' => !$progress_page));
- }
|