168 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			168 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			PHP
		
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * @file
 | 
						|
 * Administrative script for running authorized file operations.
 | 
						|
 *
 | 
						|
 * Using this script, the site owner (the user actually owning the files on the
 | 
						|
 * webserver) can authorize certain file-related operations to proceed with
 | 
						|
 * elevated privileges, for example to deploy and upgrade modules or themes.
 | 
						|
 * Users should not visit this page directly, but instead use an administrative
 | 
						|
 * user interface which knows how to redirect the user to this script as part of
 | 
						|
 * a multistep process. This script actually performs the selected operations
 | 
						|
 * without loading all of Drupal, to be able to more gracefully recover from
 | 
						|
 * errors. Access to the script is controlled by a global killswitch in
 | 
						|
 * settings.php ('allow_authorize_operations') and via the 'administer software
 | 
						|
 * updates' permission.
 | 
						|
 *
 | 
						|
 * There are helper functions for setting up an operation to run via this
 | 
						|
 * system in modules/system/system.module. For more information, see:
 | 
						|
 * @link authorize Authorized operation helper functions @endlink
 | 
						|
 */
 | 
						|
 | 
						|
use Drupal\Component\Utility\Settings;
 | 
						|
 | 
						|
// Change the directory to the Drupal root.
 | 
						|
chdir('..');
 | 
						|
 | 
						|
require_once __DIR__ . '/vendor/autoload.php';
 | 
						|
 | 
						|
/**
 | 
						|
 * Global flag to identify update.php and authorize.php runs.
 | 
						|
 *
 | 
						|
 * Identifies update.php and authorize.php runs, avoiding unwanted operations
 | 
						|
 * such as css/js preprocessing and translation, and solves some theming issues.
 | 
						|
 * The flag is checked in other places in Drupal code (not just authorize.php).
 | 
						|
 */
 | 
						|
const MAINTENANCE_MODE = 'update';
 | 
						|
 | 
						|
/**
 | 
						|
 * Determines if the current user is allowed to run authorize.php.
 | 
						|
 *
 | 
						|
 * The killswitch in settings.php overrides all else, otherwise, the user must
 | 
						|
 * have access to the 'administer software updates' permission.
 | 
						|
 *
 | 
						|
 * @return bool
 | 
						|
 *   TRUE if the current user can run authorize.php, and FALSE if not.
 | 
						|
 */
 | 
						|
function authorize_access_allowed() {
 | 
						|
  require_once DRUPAL_ROOT . '/' . Settings::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';
 | 
						|
 | 
						|
// Prepare a minimal bootstrap.
 | 
						|
drupal_bootstrap(DRUPAL_BOOTSTRAP_PAGE_CACHE);
 | 
						|
$request = \Drupal::request();
 | 
						|
 | 
						|
// 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();
 | 
						|
 | 
						|
$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_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']);
 | 
						|
    }
 | 
						|
 | 
						|
    $authorize_report = array(
 | 
						|
      '#theme' => 'authorize_report',
 | 
						|
      '#messages' => $results['messages'],
 | 
						|
    );
 | 
						|
    $output = drupal_render($authorize_report);
 | 
						|
 | 
						|
    $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'), '<front>'),
 | 
						|
      ));
 | 
						|
    }
 | 
						|
 | 
						|
    $item_list = array(
 | 
						|
      '#theme' => 'item_list',
 | 
						|
      '#items' => $links,
 | 
						|
      '#title' => t('Next steps'),
 | 
						|
    );
 | 
						|
    $output .= drupal_render($item_list);
 | 
						|
  }
 | 
						|
  // 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 {
 | 
						|
  drupal_add_http_header('Status', '403 Forbidden');
 | 
						|
  watchdog('access denied', 'authorize.php', NULL, WATCHDOG_WARNING);
 | 
						|
  $page_title = t('Access denied');
 | 
						|
  $output = t('You are not allowed to access this page.');
 | 
						|
}
 | 
						|
 | 
						|
if (!empty($output)) {
 | 
						|
  drupal_add_http_header('Content-Type', 'text/html; charset=utf-8');
 | 
						|
  $maintenance_page = array(
 | 
						|
    '#page' => array(
 | 
						|
      '#title' => $page_title,
 | 
						|
    ),
 | 
						|
    '#theme' => 'maintenance_page',
 | 
						|
    '#content' => $output,
 | 
						|
    '#show_messages' => $show_messages,
 | 
						|
  );
 | 
						|
  print drupal_render($maintenance_page);
 | 
						|
}
 |