authenticate($request); if ($account) { \Drupal::currentUser()->setAccount($account); } return Settings::get('allow_authorize_operations', TRUE) && \Drupal::currentUser()->hasPermission('administer software updates'); } try { $request = Request::createFromGlobals(); $kernel = DrupalKernel::createFromRequest($request, $autoloader, 'prod'); $kernel->prepareLegacyRequest($request); } catch (HttpExceptionInterface $e) { $response = new Response('', $e->getStatusCode()); $response->prepare($request)->send(); exit; } // We have to enable the user and system modules, even to check access and // display errors via the maintenance theme. \Drupal::moduleHandler()->addModule('system', 'core/modules/system'); \Drupal::moduleHandler()->addModule('user', 'core/modules/user'); \Drupal::moduleHandler()->load('system'); \Drupal::moduleHandler()->load('user'); // Initialize the maintenance theme for this administrative script. drupal_maintenance_theme(); $content = []; $show_messages = TRUE; $response = new Response(); if (authorize_access_allowed($request)) { // Load both the Form API and Batch API. require_once __DIR__ . '/includes/form.inc'; require_once __DIR__ . '/includes/batch.inc'; if (isset($_SESSION['authorize_page_title'])) { $page_title = $_SESSION['authorize_page_title']; } else { $page_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'])) { $page_title = $results['page_title']; } if (!empty($results['page_message'])) { drupal_set_message($results['page_message']['message'], $results['page_message']['type']); } $content['authorize_report'] = array( '#theme' => 'authorize_report', '#messages' => $results['messages'], ); $links = array(); if (is_array($results['tasks'])) { $links += $results['tasks']; } else { $links = array_merge($links, array( \Drupal::l(t('Administration pages'), new Url('system.admin')), \Drupal::l(t('Front page'), new Url('')), )); } $content['next_steps'] = array( '#theme' => 'item_list', '#items' => $links, '#title' => t('Next steps'), ); } // If a batch is running, let it run. elseif ($request->query->has('batch')) { $content = ['#markup' => _batch_page($request)]; } else { if (empty($_SESSION['authorize_operation']) || empty($_SESSION['authorize_filetransfer_info'])) { $content = ['#markup' => t('It appears you have reached this page in error.')]; } elseif (!$batch = batch_get()) { // We have a batch to process, show the filetransfer form. $content = \Drupal::formBuilder()->getForm('Drupal\Core\FileTransfer\Form\FileTransferAuthorizeForm'); } } // We defer the display of messages until all operations are done. $show_messages = !(($batch = batch_get()) && isset($batch['running'])); } else { $response->setStatusCode(403); \Drupal::logger('access denied')->warning('authorize.php'); $page_title = t('Access denied'); $content = ['#markup' => t('You are not allowed to access this page.')]; } if (!empty($content)) { $response->headers->set('Content-Type', 'text/html; charset=utf-8'); $response->setContent(\Drupal::service('bare_html_page_renderer')->renderBarePage($content, $page_title, 'maintenance_page', array( '#show_messages' => $show_messages, ))); $response->send(); }