get('session_inc', 'core/includes/session.inc'); drupal_session_initialize(); return settings()->get('allow_authorize_operations', TRUE) && user_access('administer software updates'); } // *** Real work of the script begins here. *** require_once __DIR__ . '/includes/bootstrap.inc'; require_once __DIR__ . '/includes/common.inc'; require_once __DIR__ . '/includes/file.inc'; require_once __DIR__ . '/includes/module.inc'; require_once __DIR__ . '/includes/ajax.inc'; // We prepare only a minimal bootstrap. This includes the database and // variables, however, so we have access to the class autoloader. drupal_bootstrap(DRUPAL_BOOTSTRAP_VARIABLES); $request = Request::createFromGlobals(); \Drupal::getContainer()->set('request', $request); // This must go after drupal_bootstrap(), which unsets globals! global $conf; // We have to enable the user and system modules, even to check access and // display errors via the maintenance theme. $module_list['system'] = 'core/modules/system/system.module'; $module_list['user'] = 'core/modules/user/user.module'; \Drupal::moduleHandler()->setModuleList($module_list); \Drupal::moduleHandler()->load('system'); \Drupal::moduleHandler()->load('user'); // Initialize the language system. drupal_language_initialize(); // Initialize the maintenance theme for this administrative script. drupal_maintenance_theme(); $output = ''; $show_messages = TRUE; if (authorize_access_allowed()) { // Load both the Form API and Batch API. require_once __DIR__ . '/includes/form.inc'; require_once __DIR__ . '/includes/batch.inc'; // Load the code that drives the authorize process. require_once __DIR__ . '/includes/authorize.inc'; if (isset($_SESSION['authorize_operation']['page_title'])) { drupal_set_title($_SESSION['authorize_operation']['page_title']); } else { drupal_set_title(t('Authorize file system changes')); } // See if we've run the operation and need to display a report. if (isset($_SESSION['authorize_results']) && $results = $_SESSION['authorize_results']) { // Clear the session out. unset($_SESSION['authorize_results']); unset($_SESSION['authorize_operation']); unset($_SESSION['authorize_filetransfer_info']); if (!empty($results['page_title'])) { drupal_set_title($results['page_title']); } if (!empty($results['page_message'])) { drupal_set_message($results['page_message']['message'], $results['page_message']['type']); } $output = theme('authorize_report', array('messages' => $results['messages'])); $links = array(); if (is_array($results['tasks'])) { $links += $results['tasks']; } else { $links = array_merge($links, array( l(t('Administration pages'), 'admin'), l(t('Front page'), ''), )); } $output .= theme('item_list', array('items' => $links, 'title' => t('Next steps'))); } // If a batch is running, let it run. elseif ($request->query->has('batch')) { $output = _batch_page($request); } else { if (empty($_SESSION['authorize_operation']) || empty($_SESSION['authorize_filetransfer_info'])) { $output = t('It appears you have reached this page in error.'); } elseif (!$batch = batch_get()) { // We have a batch to process, show the filetransfer form. $elements = drupal_get_form('authorize_filetransfer_form'); $output = drupal_render($elements); } } // We defer the display of messages until all operations are done. $show_messages = !(($batch = batch_get()) && isset($batch['running'])); } else { $output = authorize_access_denied_page(); } if (!empty($output)) { drupal_add_http_header('Content-Type', 'text/html; charset=utf-8'); print theme('maintenance_page', array('content' => $output, 'show_messages' => $show_messages)); }