123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- <?php
- use Drupal\Core\DrupalKernel;
- use Drupal\Core\Form\EnforcedResponseException;
- use Drupal\Core\Url;
- use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface;
- use Symfony\Component\HttpFoundation\Request;
- use Symfony\Component\HttpFoundation\Response;
- use Drupal\Core\Site\Settings;
- chdir('..');
- $autoloader = require_once 'autoload.php';
- const MAINTENANCE_MODE = 'update';
- function authorize_access_allowed(Request $request) {
- $account = \Drupal::service('authentication')->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;
- }
- \Drupal::moduleHandler()->addModule('system', 'core/modules/system');
- \Drupal::moduleHandler()->addModule('user', 'core/modules/user');
- \Drupal::moduleHandler()->load('system');
- \Drupal::moduleHandler()->load('user');
- drupal_maintenance_theme();
- $content = [];
- $show_messages = TRUE;
- $is_allowed = authorize_access_allowed($request);
- if ($is_allowed) {
-
- 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');
- }
-
- if (isset($_SESSION['authorize_results']) && $results = $_SESSION['authorize_results']) {
-
- 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'] = [
- '#theme' => 'authorize_report',
- '#messages' => $results['messages'],
- ];
- if (is_array($results['tasks'])) {
- $links = $results['tasks'];
- }
- else {
-
-
-
-
- $default_options = [
- '#type' => 'link',
- '#options' => [
- 'absolute' => TRUE,
- 'base_url' => $GLOBALS['base_url'],
- ],
- ];
- $links = [
- $default_options + [
- '#url' => Url::fromRoute('system.admin'),
- '#title' => t('Administration pages'),
- ],
- $default_options + [
- '#url' => Url::fromRoute('<front>'),
- '#title' => t('Front page'),
- ],
- ];
- }
- $content['next_steps'] = [
- '#theme' => 'item_list',
- '#items' => $links,
- '#title' => t('Next steps'),
- ];
- }
-
- elseif ($request->query->has('batch')) {
- $content = _batch_page($request);
-
-
- if ($content instanceof Response) {
- $content->send();
- exit;
- }
- }
- 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()) {
-
- try {
- $content = \Drupal::formBuilder()->getForm('Drupal\Core\FileTransfer\Form\FileTransferAuthorizeForm');
- }
- catch (EnforcedResponseException $e) {
- $e->getResponse()->send();
- exit;
- }
- }
- }
-
- $show_messages = !(($batch = batch_get()) && isset($batch['running']));
- }
- else {
- \Drupal::logger('access denied')->warning('authorize.php');
- $page_title = t('Access denied');
- $content = ['#markup' => t('You are not allowed to access this page.')];
- }
- $bare_html_page_renderer = \Drupal::service('bare_html_page_renderer');
- $response = $bare_html_page_renderer->renderBarePage($content, $page_title, 'maintenance_page', [
- '#show_messages' => $show_messages,
- ]);
- if (!$is_allowed) {
- $response->setStatusCode(403);
- }
- $response->send();
|