- <?php
- * @file
- * API functions for installing modules and themes.
- */
-
- * Indicates that a module has not been installed yet.
- */
- define('SCHEMA_UNINSTALLED', -1);
-
- * Indicates that a module has been installed.
- */
- define('SCHEMA_INSTALLED', 0);
-
- * Requirement severity -- Informational message only.
- */
- define('REQUIREMENT_INFO', -1);
-
- * Requirement severity -- Requirement successfully met.
- */
- define('REQUIREMENT_OK', 0);
-
- * Requirement severity -- Warning condition; proceed but flag warning.
- */
- define('REQUIREMENT_WARNING', 1);
-
- * Requirement severity -- Error condition; abort installation.
- */
- define('REQUIREMENT_ERROR', 2);
-
- * File permission check -- File exists.
- */
- define('FILE_EXIST', 1);
-
- * File permission check -- File is readable.
- */
- define('FILE_READABLE', 2);
-
- * File permission check -- File is writable.
- */
- define('FILE_WRITABLE', 4);
-
- * File permission check -- File is executable.
- */
- define('FILE_EXECUTABLE', 8);
-
- * File permission check -- File does not exist.
- */
- define('FILE_NOT_EXIST', 16);
-
- * File permission check -- File is not readable.
- */
- define('FILE_NOT_READABLE', 32);
-
- * File permission check -- File is not writable.
- */
- define('FILE_NOT_WRITABLE', 64);
-
- * File permission check -- File is not executable.
- */
- define('FILE_NOT_EXECUTABLE', 128);
-
- * Loads .install files for installed modules to initialize the update system.
- */
- function backdrop_load_updates() {
- foreach (backdrop_get_installed_schema_version(NULL, FALSE, TRUE) as $module => $schema_version) {
- if ($schema_version > -1 && !in_array($module, backdrop_merged_modules())) {
- module_load_install($module);
- }
- }
- }
-
- * Returns an array of available schema versions for a module.
- *
- * This function contains backwards-compatibility code to order schema versions
- * such that updates between 7000 and 8999 (inclusive) run before all other
- * updates. This is to allow users to upgrade from Drupal 7, where the last
- * installed schema will likely be in the 7xxx range.
- *
- * @param $module
- * A module name.
- * @return array|FALSE
- * If the module has updates, an unindexed array of available updates sorted
- * by the order they should be executed. Otherwise, FALSE.
- */
- function backdrop_get_schema_versions($module) {
- $updates = &backdrop_static(__FUNCTION__, NULL);
- if (!isset($updates[$module])) {
- $updates = array();
-
- foreach (module_list() as $loaded_module) {
- $updates[$loaded_module] = array();
- }
-
-
- $regexp = '/^(?P<module>.+)_update_(?P<version>\d+)$/';
- $functions = get_defined_functions();
-
-
-
-
-
-
-
- foreach (preg_grep('/_\d+$/', $functions['user']) as $function) {
-
-
- if (preg_match($regexp, $function, $matches)) {
- $updates[$matches['module']][] = $matches['version'];
- }
- }
-
-
-
- foreach ($updates as &$module_updates) {
- usort($module_updates, function($a, $b) {
- if ($a >= 7000 && $a < 9000) {
- $a -= 9000;
- }
- if ($b >= 7000 && $b < 9000) {
- $b -= 9000;
- }
- return ($a == $b) ? 0 : ($a > $b ? 1 : -1);
- });
- }
- }
- return empty($updates[$module]) ? FALSE : $updates[$module];
- }
-
- * Returns the currently installed schema version for a module.
- *
- * @param $module
- * A module name.
- * @param $reset
- * Set to TRUE after modifying the system table.
- * @param $array
- * Set to TRUE if you want to get information about all modules in the
- * system.
- * @return
- * The currently installed schema version, or SCHEMA_UNINSTALLED if the
- * module is not installed.
- */
- function backdrop_get_installed_schema_version($module, $reset = FALSE, $array = FALSE) {
- static $versions = array();
-
- if ($reset) {
- $versions = array();
- }
-
- if (!$versions) {
- $versions = array();
- $result = db_query("SELECT name, schema_version FROM {system} WHERE type = :type", array(':type' => 'module'));
- foreach ($result as $row) {
- $versions[$row->name] = $row->schema_version;
- }
- }
-
- if ($array) {
- return $versions;
- }
- else {
- return isset($versions[$module]) ? $versions[$module] : SCHEMA_UNINSTALLED;
- }
- }
-
- * Update the installed version information for a module.
- *
- * @param $module
- * A module name.
- * @param $version
- * The new schema version.
- */
- function backdrop_set_installed_schema_version($module, $version) {
- db_update('system')
- ->fields(array('schema_version' => $version))
- ->condition('name', $module)
- ->execute();
-
-
- backdrop_get_installed_schema_version(NULL, TRUE);
- }
-
- * Loads the installation profile, extracting its defined distribution name.
- *
- * @return
- * The distribution name defined in the profile's .info file. Defaults to
- * "Backdrop CMS" if none is explicitly provided by the installation profile.
- *
- * @see install_profile_info()
- */
- function backdrop_install_profile_distribution_name() {
-
-
- if (backdrop_installation_attempted()) {
- global $install_state;
- return $install_state['profile_info']['distribution_name'];
- }
-
- else {
- $profile = backdrop_get_profile();
- $info = system_get_info('module', $profile);
- return $info['distribution_name'];
- }
- }
-
- * Detects the base URL using the PHP $_SERVER variables.
- *
- * @param $file
- * The name of the file calling this function so we can strip it out of
- * the URI when generating the base_url.
- *
- * @return
- * The auto-detected $base_url that should be configured in settings.php
- */
- function backdrop_detect_baseurl($file = 'core/install.php') {
- $proto = $_SERVER['HTTPS'] ? 'https://' : 'http://';
- $host = $_SERVER['SERVER_NAME'];
- $port = ($_SERVER['SERVER_PORT'] == 80 ? '' : ':' . $_SERVER['SERVER_PORT']);
- $uri = preg_replace("/\?.*/", '', $_SERVER['REQUEST_URI']);
- $dir = str_replace("/$file", '', $uri);
-
- return "$proto$host$port$dir";
- }
-
- * Returns all supported database installer objects that are compiled into PHP.
- *
- * @return
- * An array of database installer objects compiled into PHP.
- */
- function backdrop_load_database_driver() {
-
-
- require_once BACKDROP_ROOT . '/core/includes/database/database.inc';
-
- $installer = db_installer_object('mysql');
- if ($installer->installable()) {
- return $installer;
- }
-
- return FALSE;
- }
-
- * Database installer structure.
- *
- * Defines basic Backdrop requirements for databases.
- */
- abstract class DatabaseTasks {
-
- * The PDO driver name for MySQL and equivalent databases.
- *
- * @var string
- */
- protected $pdoDriver;
-
-
- * Error code for "Unknown database" error.
- *
- * @var int
- */
- protected $databaseNotFoundErrorCode;
-
-
- * Error code when the connection is refused.
- *
- * This may happen whether port number is incorrect or socket file is missing.
- *
- * @var int
- */
- protected $connectionRefusedErrorCode;
-
-
- * Structure that describes each task to run.
- *
- * @var array
- *
- * Each value of the tasks array is an associative array defining the function
- * to call (optional) and any arguments to be passed to the function.
- */
- protected $tasks = array(
- array(
- 'function' => 'checkEngineVersion',
- 'arguments' => array(),
- ),
- array(
- 'function' => 'checkUtf8mb4',
- 'arguments' => array(),
- ),
- array(
- 'arguments' => array(
- 'CREATE TABLE {backdrop_install_test} (id int NULL)',
- 'Backdrop can use CREATE TABLE database commands.',
- 'Failed to <strong>CREATE</strong> a test table on your database server with the command %query. The server reports the following message: %error.<p>Are you sure the configured username has the necessary permissions to create tables in the database?</p>',
- TRUE,
- ),
- ),
- array(
- 'arguments' => array(
- 'INSERT INTO {backdrop_install_test} (id) VALUES (1)',
- 'Backdrop can use INSERT database commands.',
- 'Failed to <strong>INSERT</strong> a value into a test table on your database server. We tried inserting a value with the command %query and the server reported the following error: %error.',
- ),
- ),
- array(
- 'arguments' => array(
- 'UPDATE {backdrop_install_test} SET id = 2',
- 'Backdrop can use UPDATE database commands.',
- 'Failed to <strong>UPDATE</strong> a value in a test table on your database server. We tried updating a value with the command %query and the server reported the following error: %error.',
- ),
- ),
- array(
- 'arguments' => array(
- 'DELETE FROM {backdrop_install_test}',
- 'Backdrop can use DELETE database commands.',
- 'Failed to <strong>DELETE</strong> a value from a test table on your database server. We tried deleting a value with the command %query and the server reported the following error: %error.',
- ),
- ),
- array(
- 'arguments' => array(
- 'DROP TABLE {backdrop_install_test}',
- 'Backdrop can use DROP TABLE database commands.',
- 'Failed to <strong>DROP</strong> a test table from your database server. We tried dropping a table with the command %query and the server reported the following error %error.',
- ),
- ),
- );
-
-
- * Results from tasks.
- *
- * @var array
- */
- protected $results = array();
-
-
- * Ensure the PDO driver is supported by the version of PHP in use.
- */
- protected function hasPdoDriver() {
- return in_array($this->pdoDriver, PDO::getAvailableDrivers());
- }
-
-
- * Assert test as failed.
- */
- protected function fail($message) {
- $this->results[$message] = FALSE;
- }
-
-
- * Assert test as a pass.
- */
- protected function pass($message) {
- $this->results[$message] = TRUE;
- }
-
-
- * Check whether Backdrop is installable on the database.
- */
- public function installable() {
- return $this->hasPdoDriver() && empty($this->error);
- }
-
-
- * Return the human-readable name of the driver.
- */
- abstract public function name();
-
-
- * Return the minimum required version of the engine.
- *
- * @return
- * A version string. If not NULL, it will be checked against the version
- * reported by the Database engine using version_compare().
- */
- public function minimumVersion() {
- return NULL;
- }
-
-
- * Run database tasks and tests to see if Backdrop can run on the database.
- */
- public function runTasks() {
-
- if ($this->connect()) {
- foreach ($this->tasks as $task) {
- if (!isset($task['function'])) {
- $task['function'] = 'runTestQuery';
- }
- if (method_exists($this, $task['function'])) {
-
- if (FALSE === call_user_func_array(array($this, $task['function']), $task['arguments'])) {
- break;
- }
- }
- else {
- throw new DatabaseTaskException(st("Failed to run all tasks against the database server. The task %task wasn't found.", array('%task' => $task['function'])));
- }
- }
- }
-
- $message = '';
- foreach ($this->results as $result => $success) {
- if (!$success) {
- $message .= '<p>' . $result . '</p>';
- }
- }
- if (!empty($message)) {
- $message .= '<p>For more help with configuring your database server, see the <a href="https://backdropcms.org/installation">Installation Instructions</a> page.</p>';
- throw new DatabaseTaskException($message);
- }
- }
-
-
- * Check if we can connect to the database.
- */
- protected function connect() {
- $original_connection_info = $modified_connection_info = Database::getConnectionInfo();
- $last_exception = FALSE;
- try {
-
- db_set_active();
-
- Database::getConnection();
- }
- catch (PDOException $e) {
- $original_failed_exception = $last_exception = $e;
- }
-
-
-
-
-
-
-
-
- if ($last_exception && ($last_exception->getCode() === $this->connectionRefusedErrorCode)) {
- if ($original_connection_info['default']['host'] === 'localhost') {
- $modified_connection_info['default']['host'] = '127.0.0.1';
- $modified_connection_info['default']['port'] = '3306';
- }
- elseif ($original_connection_info['default']['host'] === '127.0.0.1') {
- $modified_connection_info['default']['host'] = 'localhost';
- $modified_connection_info['default']['port'] = '';
- }
- if ($original_connection_info != $modified_connection_info) {
- Database::removeConnection('default');
- Database::addConnectionInfo('default', 'default', $modified_connection_info['default']);
- try {
- Database::getConnection();
- $last_exception = FALSE;
-
-
- $db_settings = $modified_connection_info['default'];
- $settings['database'] = array(
- 'value' => $db_settings['driver'] . '://' . rawurlencode($db_settings['username']) . ':' . rawurlencode($db_settings['password']) . '@' . $db_settings['host'] . ($db_settings['port'] ? (':' . $db_settings['port']) : '') . '/' . rawurlencode($db_settings['database']),
- 'required' => TRUE,
- );
- $settings['database_prefix'] = array(
- 'value' => $db_settings['prefix']['default'],
- );
- backdrop_rewrite_settings($settings);
- }
- catch (Exception $e) {
- $last_exception = $e;
- }
- }
- }
-
-
- if ($last_exception && ($last_exception->getCode() === $this->databaseNotFoundErrorCode)) {
- $database = $modified_connection_info['default']['database'];
- unset($modified_connection_info['default']['database']);
-
-
- if (preg_match('/[^A-Za-z0-9_.]+/', $database)) {
- $this->fail(st('Database %database is not valid. Only use alphanumeric characters and underscores in the database name.', array('%database' => $database)));
- return FALSE;
- }
-
-
- Database::removeConnection('default');
- Database::addConnectionInfo('default', 'default', $modified_connection_info['default']);
- try {
- Database::getConnection()->createDatabase($database);
-
-
- Database::removeConnection('default');
- return $this->connect();
- }
- catch (PDOException $e) {
- $last_exception = $e;
- }
- }
-
-
-
- if ($last_exception) {
- $host = $original_connection_info['default']['host'];
- if ($original_connection_info['default']['port']) {
- $host .= ':' . $original_connection_info['default']['port'];
- }
- $exception_message = preg_replace('/SQLSTATE\[.*\]/', '', $original_failed_exception->getMessage());
- $error = st('Failed to connect to your database server. The server reports the following message: %error.', array('%error' => $exception_message));
- $error .= '<div class="item-list"><ul><li>';
- $error .= st('Is the database server running on %host?', array('%host' => $host));
- $error .= '</li><li>';
- $error .= st('Is %database the correct database name?', array('%database' => $original_connection_info['default']['database']));
- $error .= '</li><li>';
- $error .= st('Are the username and password correct?');
- $error .= '</li></ul></div>';
- $this->fail($error);
- return FALSE;
- }
-
- $this->pass('Backdrop can CONNECT to the database ok.');
- return TRUE;
- }
-
-
- * Run SQL tests to ensure the database can execute commands with the current user.
- */
- protected function runTestQuery($query, $pass, $fail, $fatal = FALSE) {
- try {
- db_query($query);
- $this->pass(st($pass));
- return NULL;
- }
- catch (Exception $e) {
- $this->fail(st($fail, array('%query' => $query, '%error' => $e->getMessage(), '%name' => $this->name())));
- return !$fatal;
- }
- }
-
-
- * Check the engine version.
- */
- protected function checkEngineVersion() {
- if ($this->minimumVersion() && version_compare(Database::getConnection()->version(), $this->minimumVersion(), '<')) {
- $this->fail(st("The database version %version is less than the minimum required version %minimum_version.", array('%version' => Database::getConnection()->version(), '%minimum_version' => $this->minimumVersion())));
- }
- }
-
-
- * Check the engine version.
- */
- protected function checkUtf8mb4() {
- $connection = Database::getConnection();
- $connection_info = Database::getConnectionInfo();
- if (!$connection->utf8mb4IsActive()) {
- if ($connection->utf8mb4IsSupported()) {
- $connection_info['default']['charset'] = 'utf8mb4';
- Database::removeConnection('default');
- Database::addConnectionInfo('default', 'default', $connection_info['default']);
- Database::getConnection();
- }
- }
- }
-
-
- * Return driver specific configuration options.
- *
- * @param $database
- * An array of driver specific configuration options.
- *
- * @return
- * The options form array.
- */
- public function getFormOptions($database) {
- $form['database'] = array(
- '#type' => 'textfield',
- '#title' => st('MySQL Database name'),
- '#default_value' => empty($database['database']) ? '' : $database['database'],
- '#size' => 45,
- '#required' => TRUE,
- );
-
- $form['username'] = array(
- '#type' => 'textfield',
- '#title' => st('Database username'),
- '#default_value' => empty($database['username']) ? '' : $database['username'],
- '#required' => TRUE,
- '#size' => 45,
- );
-
- $form['password'] = array(
- '#type' => 'password',
- '#title' => st('Database password'),
- '#default_value' => empty($database['password']) ? '' : $database['password'],
- '#required' => FALSE,
- '#size' => 45,
- '#password_toggle' => TRUE,
- );
-
- $form['advanced_options'] = array(
- '#type' => 'fieldset',
- '#title' => st('Advanced options'),
- '#collapsible' => TRUE,
- '#collapsed' => TRUE,
- '#description' => st("These options are only necessary for some sites. If you're not sure what you should enter here, leave the default settings or check with your hosting provider."),
- '#weight' => 10,
- );
-
- $profile = backdrop_get_profile();
- $prefix = ($profile == 'standard') ? 'backdrop_' : $profile . '_';
- $form['advanced_options']['prefix'] = array(
- '#type' => 'textfield',
- '#title' => st('Table prefix'),
- '#default_value' => '',
- '#size' => 45,
- '#description' => st('If more than one application will be sharing this database, enter a table prefix such as %prefix for your @profile site here.', array(
- '@profile' => backdrop_install_profile_distribution_name(),
- '%prefix' => $prefix,
- )),
- '#weight' => 10,
- );
-
- $form['advanced_options']['host'] = array(
- '#type' => 'textfield',
- '#title' => st('Database host'),
- '#default_value' => empty($database['host']) ? '127.0.0.1' : $database['host'],
- '#size' => 45,
-
- '#maxlength' => 255,
- '#required' => TRUE,
- '#description' => st('If your database is located on a different server, change this.'),
- );
-
- $form['advanced_options']['port'] = array(
- '#type' => 'number',
- '#title' => st('Database port'),
- '#default_value' => empty($database['port']) ? '' : $database['port'],
- '#min' => 1,
- '#max' => 65535,
- '#description' => st('If your database server is listening to a non-standard port, enter its number.'),
- );
-
- return $form;
- }
-
-
- * Validates driver specific configuration settings.
- *
- * Checks to ensure correct basic database settings and that a proper
- * connection to the database can be established.
- *
- * @param $database
- * An array of driver specific configuration options.
- *
- * @return
- * An array of driver configuration errors, keyed by form element name.
- */
- public function validateDatabaseSettings($database) {
- $errors = array();
-
-
- if (!empty($database['prefix']) && is_string($database['prefix']) && !preg_match('/^[A-Za-z0-9_.]+$/', $database['prefix'])) {
- $errors[$database['driver'] . '][advanced_options][prefix'] = st('The database table prefix you have entered, %prefix, is invalid. The table prefix can only contain alphanumeric characters, periods, or underscores.', array('%prefix' => $database['prefix']));
- }
-
-
- if (!empty($database['port']) && !is_numeric($database['port'])) {
- $errors[$database['driver'] . '][advanced_options][port'] = st('Database port must be a number.');
- }
-
- return $errors;
- }
-
- }
-
- * Exception thrown if the database installer fails.
- */
- class DatabaseTaskException extends Exception {
- }
-
- * Replaces values in settings.php with values in the submitted array.
- *
- * @param $settings
- * An array of settings that need to be updated.
- *
- * @return bool
- * TRUE if the settings file was rewritten successfully. FALSE otherwise.
- *
- * @throws Exception
- */
- function backdrop_rewrite_settings($settings = array()) {
- backdrop_static_reset('conf_path');
- $settings_file = conf_path(FALSE) . '/settings.php';
- $additional_settings = $settings;
- $additions = '';
-
- $buffer = NULL;
- $first = TRUE;
- if ($fp = fopen($settings_file, 'r')) {
-
- while (!feof($fp)) {
- $line = fgets($fp);
- if ($first && substr($line, 0, 5) != '<?php') {
- $buffer = "<?php\n\n";
- }
- $first = FALSE;
-
- if (substr($line, 0, 1) == '$') {
- preg_match('/\$([^ =]*) /', $line, $variable);
- $variable_name = $variable[1];
- if (array_key_exists($variable_name, $settings)) {
-
-
- $setting = $settings[$variable_name];
- $new_line = '$' . $variable_name . " = " . var_export($setting['value'], TRUE) . ";" . (!empty($setting['comment']) ? ' // ' . $setting['comment'] . "\n" : "\n");
- $buffer .= $new_line;
- $additions .= $new_line;
-
- unset($additional_settings[$variable_name]);
- }
- else {
- $buffer .= $line;
- }
- }
- else {
- $buffer .= $line;
- }
- }
- fclose($fp);
-
-
- foreach ($additional_settings as $setting => $data) {
- if (!empty($data['required'])) {
- $new_line = "\$$setting = " . var_export($data['value'], TRUE) . ";\n";
- $buffer .= $new_line;
- $additions .= $new_line;
- }
- }
-
- $fp = @fopen(BACKDROP_ROOT . '/' . $settings_file, 'w');
-
- if (!$fp || fwrite($fp, $buffer) === FALSE) {
- throw new Exception(st('Failed to open %settings. Check that this file exists and is writable by the web server then load this page again.', array('%settings' => $settings_file)));
- }
- else {
-
-
-
-
- backdrop_clear_opcode_cache(BACKDROP_ROOT . '/' . $settings_file);
- }
- }
- else {
- throw new Exception(st('Failed to open %settings. Check that this file exists and is writable by the web server then load this page again.', array('%settings' => $settings_file)));
- }
-
-
- foreach ($settings as $setting => $data) {
- $matches = array();
- preg_match('!^([^\[]+)(\[\'(.*)\'\]+)?$!', $setting, $matches);
- $variable = $matches[1];
- $nesting = isset($matches[3]) ? explode('\'][\'', $matches[3]) : array();
-
- $global_array = &$GLOBALS[$variable];
- foreach ($nesting as $nested_key) {
- $global_array = &$global_array[$nested_key];
- }
- $global_array = $data['value'];
- }
- }
-
- * Creates the config directory (for config in file storage) and ensures the
- * config storage location is operational.
- *
- * @see install_config_location()
- * @see update_prepare_bootstrap()
- */
- function backdrop_install_config_location() {
-
- $database = NULL;
- $config_directories = array();
- $settings = array(
- 'config_active_class' => 'ConfigFileStorage',
- );
- $t = get_t();
-
-
- $conf_path = conf_path(FALSE);
- $settings_file = $conf_path . '/settings.php';
- include $settings_file;
-
- if ($settings['config_active_class'] === 'ConfigFileStorage') {
- $is_empty = empty($config_directories['active']);
- $is_default_file_storage = $config_directories['active'] === 'files/config_' . md5($database) . '/active';
-
-
-
- if ($is_empty || $is_default_file_storage) {
- $config_directories_hash = md5(backdrop_random_bytes(55));
- $update_settings["config_directories['active']"] = array(
- 'value' => $conf_path . '/files/config_' . $config_directories_hash . '/active',
- 'required' => TRUE,
- );
- $update_settings["config_directories['staging']"] = array(
- 'value' => $conf_path . '/files/config_' . $config_directories_hash . '/staging',
- 'required' => TRUE,
- );
-
-
- try {
- backdrop_rewrite_settings($update_settings);
- }
- catch (Exception $e) {
-
-
-
- if ($is_empty) {
- throw $e;
- }
- }
- }
- }
-
-
-
-
-
-
-
-
- $config_storage_active = config_get_config_storage('active');
- try {
- $config_storage_active->initializeStorage();
- }
- catch (\ConfigStorageException $e) {
- throw new Exception($e->getMessage() . ' ' . $t('To proceed with the installation, either create the directory and modify its permissions to make it writable, or adjust the permissions on the parent directory to allow the installer to create it automatically. For more information, see the <a href="@handbook_url">Installation Instructions</a> page.', array(
- '@handbook_url' => 'https://backdropcms.org/installation',
- )), 0, $e);
- }
-
-
-
- if (count($config_storage_active->listAll()) > 0) {
- if (is_a($config_storage_active, 'ConfigFileStorage')) {
- $exception_message = $t('The %directory directory must be completely empty to proceed with installation. Empty this directory or specify a different directory in settings.php.', array('%directory' => config_get_config_directory('active')));
- }
- else {
- $exception_message = 'The active configuration location must be completely empty to proceed with installation. Empty the configuration or specify a different location in settings.php.';
- }
- throw new Exception($exception_message);
- }
- if (is_a($config_storage_active, 'ConfigFileStorage')) {
-
-
-
-
-
- $text = ltrim('
- This directory contains the active configuration for your Backdrop site. To move
- this configuration between environments, contents from this directory should be
- placed in the staging directory on the target server. To make this configuration
- active, see admin/config/development/configuration/sync on the target server.
- ');
- file_put_contents(config_get_config_directory('active') . '/README.md', $text);
- }
-
-
-
-
- $config_storage_staging = config_get_config_storage('staging');
- try {
- $config_storage_staging->initializeStorage();
- }
- catch (\ConfigStorageException $e) {
- backdrop_set_message($t('Unable to initialize the staging configuration directory %directory.',
- array('%directory' => config_get_config_directory('staging'))), 'warning', FALSE);
- }
-
-
- $text = ltrim('
- This directory contains configuration to be imported into your Backdrop site. To
- make this configuration active, see admin/config/development/configuration/sync.
- ');
- if (is_a($config_storage_staging, 'ConfigFileStorage')) {
- file_put_contents(config_get_config_directory('staging') . '/README.md', $text);
- }
-
- if (count($config_storage_staging->listAll()) > 0) {
- if (is_a($config_storage_staging, 'ConfigFileStorage')) {
- $warning_message = $t('The staging directory %directory is not empty. If this is not intentional, empty the staging directory before using your site.', array('%directory' => config_get_config_directory('staging')));
- }
- else {
- $warning_message = $t('The staging configuration location is not empty. If this is not intentional, empty the staging location before using your site.');
- }
- backdrop_set_message($warning_message, 'warning', FALSE);
- }
- }
-
- * Verifies an installation profile for installation.
- *
- * @param $install_state
- * An array of information about the current installation state.
- *
- * @return
- * The list of modules to install.
- *
- * @throws Exception
- */
- function backdrop_verify_profile($install_state) {
- include_once BACKDROP_ROOT . '/core/includes/file.inc';
- include_once BACKDROP_ROOT . '/core/includes/common.inc';
-
- $profile = $install_state['parameters']['profile'];
- $profile_file = _install_find_profile_file($profile);
-
- if (!isset($profile) || !$profile_file) {
- throw new Exception(install_no_profile_error());
- }
- $info = $install_state['profile_info'];
-
-
- $present_modules = array();
- foreach (backdrop_system_listing('/^' . BACKDROP_PHP_FUNCTION_PATTERN . '\.module$/', 'modules', 'name', 0) as $present_module) {
- $present_modules[] = $present_module->name;
- }
-
-
-
- $present_modules[] = $profile;
-
-
- $missing_modules = array_diff($info['dependencies'], $present_modules);
-
- $requirements = array();
-
- if (count($missing_modules)) {
- $modules = array();
- foreach ($missing_modules as $module) {
- $modules[] = '<span class="admin-missing">' . backdrop_ucfirst($module) . '</span>';
- }
- $requirements['required_modules'] = array(
- 'title' => st('Required modules'),
- 'value' => st('Required modules not found.'),
- 'severity' => REQUIREMENT_ERROR,
- 'description' => st('The following modules are required but were not found. Move them into the appropriate modules subdirectory, such as <em>/modules</em>. Missing modules: !modules', array('!modules' => implode(', ', $modules))), );
- }
- return $requirements;
- }
-
- * Installs the system module.
- *
- * Separated from the installation of other modules so core system
- * functions can be made available while other modules are installed.
- */
- function backdrop_install_system() {
- config_install_default_config('system');
-
- $system_path = backdrop_get_path('module', 'system');
- require_once BACKDROP_ROOT . '/' . $system_path . '/system.install';
- module_invoke('system', 'install');
-
- $system_versions = backdrop_get_schema_versions('system');
- $system_version = $system_versions ? end($system_versions) : SCHEMA_INSTALLED;
- db_insert('system')
- ->fields(array('filename', 'name', 'type', 'owner', 'status', 'schema_version', 'bootstrap'))
- ->values(array(
- 'filename' => $system_path . '/system.module',
- 'name' => 'system',
- 'type' => 'module',
- 'owner' => '',
- 'status' => 1,
- 'schema_version' => $system_version,
- 'bootstrap' => 0,
- ))
- ->execute();
- system_rebuild_module_data();
- }
-
- * Uninstalls a given list of disabled modules.
- *
- * @param array $module_list
- * The modules to uninstall. It is the caller's responsibility to ensure that
- * all modules in this list have already been disabled before this function
- * is called.
- * @param bool $uninstall_dependents
- * (optional)
- * - If TRUE, dependency-checking is enabled. This means that any modules
- * dependent on the passed-in module(s) are checked to see if they're
- * already uninstalled, or if they're included in $module_list. If all
- * dependents are in $module_list, they will all be uninstalled in the
- * correct order. If, however, dependent modules are still installed and not
- * included in $module_list, the passed-in module(s) will not be
- * uninstalled. Note that dependency-checking incurs a significant
- * performance cost.
- * - If FALSE, dependency-checking is bypassed. Dependent modules not included
- * in $module_list will not be uninstalled, and modules in the list may not
- * be uninstalled in the correct order. This could lead to problems, and so
- * should only be used if you know $module_list is already complete and in
- * the correct order.
- *
- * @return bool
- * Returns FALSE if $uninstall_dependents is TRUE, and one or more dependent
- * modules are still installed but not included in $module_list. Otherwise
- * returns TRUE.
- *
- * @see module_disable()
- * @see module_enable()
- */
- function backdrop_uninstall_modules($module_list = array(), $uninstall_dependents = TRUE) {
- if ($uninstall_dependents) {
-
- $module_data = system_rebuild_module_data();
-
- $module_list = array_flip(array_values($module_list));
-
- $profile = backdrop_get_profile();
- foreach (array_keys($module_list) as $module) {
- if (!isset($module_data[$module]) || backdrop_get_installed_schema_version($module) == SCHEMA_UNINSTALLED) {
-
- unset($module_list[$module]);
- continue;
- }
- $module_list[$module] = $module_data[$module]->sort;
-
-
-
-
-
- foreach (array_keys($module_data[$module]->required_by) as $dependent) {
- if (!isset($module_list[$dependent]) && backdrop_get_installed_schema_version($dependent) != SCHEMA_UNINSTALLED && $dependent != $profile) {
- return FALSE;
- }
- }
- }
-
-
- asort($module_list);
- $module_list = array_keys($module_list);
- }
-
- foreach ($module_list as $module) {
-
- module_load_install($module);
- module_invoke($module, 'uninstall');
- config_uninstall_config($module);
- backdrop_uninstall_schema($module);
-
- watchdog('system', '%module module uninstalled.', array('%module' => $module), WATCHDOG_INFO);
- backdrop_set_installed_schema_version($module, SCHEMA_UNINSTALLED);
- }
-
- if (!empty($module_list)) {
-
- module_invoke_all('modules_uninstalled', $module_list);
- }
-
- return TRUE;
- }
-
- * Verifies the state of the specified file.
- *
- * @param $file
- * The file to check for.
- * @param $mask
- * An optional bitmask created from various FILE_* constants.
- * @param $type
- * The type of file. Can be file (default), dir, or link.
- *
- * @return
- * TRUE on success or FALSE on failure. A message is set for the latter.
- */
- function backdrop_verify_install_file($file, $mask = NULL, $type = 'file') {
- $return = TRUE;
-
- if (isset($mask) && ($mask & FILE_NOT_EXIST) && file_exists($file)) {
- return FALSE;
- }
-
- if (isset($type) && file_exists($file)) {
- $check = 'is_' . $type;
- if (!function_exists($check) || !$check($file)) {
- $return = FALSE;
- }
- }
-
-
- if (isset($mask)) {
- $masks = array(FILE_EXIST, FILE_READABLE, FILE_WRITABLE, FILE_EXECUTABLE, FILE_NOT_READABLE, FILE_NOT_WRITABLE, FILE_NOT_EXECUTABLE);
- foreach ($masks as $current_mask) {
- if ($mask & $current_mask) {
- switch ($current_mask) {
- case FILE_EXIST:
- if (!file_exists($file)) {
- if ($type == 'dir') {
- backdrop_install_mkdir($file, $mask);
- }
- if (!file_exists($file)) {
- $return = FALSE;
- }
- }
- break;
- case FILE_READABLE:
- if (!is_readable($file)) {
- $return = FALSE;
- }
- break;
- case FILE_WRITABLE:
- if (!is_writable($file)) {
- $return = FALSE;
- }
- break;
- case FILE_EXECUTABLE:
- if (!is_executable($file)) {
- $return = FALSE;
- }
- break;
- case FILE_NOT_READABLE:
- if (is_readable($file)) {
- $return = FALSE;
- }
- break;
- case FILE_NOT_WRITABLE:
- if (is_writable($file)) {
- $return = FALSE;
- }
- break;
- case FILE_NOT_EXECUTABLE:
- if (is_executable($file)) {
- $return = FALSE;
- }
- break;
- }
- }
- }
- }
- return $return;
- }
-
- * Creates a directory with the specified permissions.
- *
- * @param $file
- * The name of the directory to create;
- * @param $mask
- * The permissions of the directory to create.
- * @param $message
- * (optional) Whether to output messages. Defaults to TRUE.
- *
- * @return bool
- * TRUE/FALSE whether or not the directory was successfully created.
- */
- function backdrop_install_mkdir($file, $mask, $message = TRUE) {
- $mod = 0;
- $masks = array(FILE_READABLE, FILE_WRITABLE, FILE_EXECUTABLE, FILE_NOT_READABLE, FILE_NOT_WRITABLE, FILE_NOT_EXECUTABLE);
- foreach ($masks as $m) {
- if ($mask & $m) {
- switch ($m) {
- case FILE_READABLE:
- $mod |= 0444;
- break;
- case FILE_WRITABLE:
- $mod |= 0222;
- break;
- case FILE_EXECUTABLE:
- $mod |= 0111;
- break;
- }
- }
- }
-
- if (@backdrop_mkdir($file, $mod)) {
- return TRUE;
- }
- else {
- return FALSE;
- }
- }
-
- * Sends the user to a different installer page.
- *
- * This issues an on-site HTTP redirect. Messages (and errors) are erased.
- *
- * @param $path
- * An installer path.
- */
- function install_goto($path) {
- global $base_url;
- include_once BACKDROP_ROOT . '/core/includes/common.inc';
- header('Location: ' . $base_url . '/' . $path);
- header('Cache-Control: no-cache');
- backdrop_exit();
- }
-
- * Returns the URL of the current script, with modified query parameters.
- *
- * This function can be called by low-level scripts (such as install.php and
- * update.php) and returns the URL of the current script. Existing query
- * parameters are preserved by default, but new ones can optionally be merged
- * in.
- *
- * This function is used when the script must maintain certain query parameters
- * over multiple page requests in order to work correctly. In such cases (for
- * example, update.php, which requires the 'continue=1' parameter to remain in
- * the URL throughout the update process if there are any requirement warnings
- * that need to be bypassed), using this function to generate the URL for links
- * to the next steps of the script ensures that the links will work correctly.
- *
- * @param $query
- * (optional) An array of query parameters to merge in to the existing ones.
- *
- * @return
- * The URL of the current script, with query parameters modified by the
- * passed-in $query. The URL is not sanitized, so it still needs to be run
- * through check_url() if it will be used as an HTML attribute value.
- *
- * @see backdrop_requirements_url()
- */
- function backdrop_current_script_url($query = array()) {
- $uri = $_SERVER['SCRIPT_NAME'];
- $query = array_merge(backdrop_get_query_parameters(), $query);
- if (!empty($query)) {
- $uri .= '?' . backdrop_http_build_query($query);
- }
- return $uri;
- }
-
- * Returns a URL for proceeding to the next page after a requirements problem.
- *
- * This function can be called by low-level scripts (such as install.php and
- * update.php) and returns a URL that can be used to attempt to proceed to the
- * next step of the script.
- *
- * @param $severity
- * The severity of the requirements problem, as returned by
- * backdrop_requirements_severity().
- *
- * @return
- * A URL for attempting to proceed to the next step of the script. The URL is
- * not sanitized, so it still needs to be run through check_url() if it will
- * be used as an HTML attribute value.
- *
- * @see backdrop_current_script_url()
- */
- function backdrop_requirements_url($severity) {
- $query = array();
-
-
- if ($severity == REQUIREMENT_WARNING) {
- $query['continue'] = 1;
- }
- return backdrop_current_script_url($query);
- }
-
- * Translates a string when some systems are not available.
- *
- * Used during the install process, when database, theme, and localization
- * system is possibly not yet available.
- *
- * Use t() if your code will never run during the Backdrop installation phase.
- * Use st() if your code will only run during installation and never any other
- * time. Use get_t() if your code could run in either circumstance.
- *
- * @see t()
- * @see get_t()
- * @ingroup sanitization
- */
- function st($string, array $args = array(), array $options = array()) {
- static $strings = NULL;
- global $install_state;
-
- if (empty($options['context'])) {
- $options['context'] = '';
- }
-
- if (!isset($strings)) {
- $strings = array();
- if (isset($install_state['parameters']['langcode'])) {
-
-
-
-
- $files = install_find_translation_files($install_state['parameters']['langcode']);
- if (!empty($files)) {
- require_once BACKDROP_ROOT . '/core/includes/gettext.inc';
- foreach ($files as $file) {
- _locale_import_read_po('mem-store', $file);
- }
- $strings = _locale_import_one_string('mem-report');
- }
- }
- }
-
-
- foreach ($args as $key => $value) {
- switch (substr($key, 0, 1)) {
-
- case '@':
- $args[$key] = check_plain($value);
- break;
-
- case '%':
- default:
- $args[$key] = '<em>' . check_plain($value) . '</em>';
- break;
-
- case '!':
- }
- }
- return strtr((!empty($strings[$options['context']][$string]) ? $strings[$options['context']][$string] : $string), $args);
- }
-
- * Checks an installation profile's requirements.
- *
- * @param $profile
- * Name of installation profile to check.
- *
- * @return
- * Array of the installation profile's requirements.
- *
- * @throws Exception
- */
- function backdrop_check_profile($profile) {
- include_once BACKDROP_ROOT . '/core/includes/file.inc';
-
- $profile_file = _install_find_profile_file($profile);
-
- if (!isset($profile) || !$profile_file) {
- throw new Exception(install_no_profile_error());
- }
-
- $info = install_profile_info($profile);
-
-
- $requirements = array();
- foreach ($info['dependencies'] as $module) {
- module_load_install($module);
- $function = $module . '_requirements';
- if (function_exists($function)) {
- $requirements = array_merge($requirements, $function('install'));
- }
- }
- return $requirements;
- }
-
- * Extracts the highest severity from the requirements array.
- *
- * @param $requirements
- * An array of requirements as returned by system_get_requirements().
- *
- * @return
- * The highest severity in the array.
- *
- * @see system_get_requirements()
- */
- function backdrop_requirements_severity(&$requirements) {
- $severity = REQUIREMENT_OK;
- foreach ($requirements as $requirement) {
- if (isset($requirement['severity'])) {
- $severity = max($severity, $requirement['severity']);
- }
- }
- return $severity;
- }
-
- * Get run-time requirements and status information.
- *
- * @return
- * An array of requirements in the same format as is returned by
- * hook_requirements().
- */
- function system_get_requirements() {
- backdrop_load_updates();
-
-
- $requirements = module_invoke_all('requirements', 'runtime');
- usort($requirements, '_system_sort_requirements');
-
- return $requirements;
- }
-
- * Checks a module's requirements.
- *
- * @param $module
- * Machine name of module to check.
- *
- * @return
- * TRUE or FALSE, depending on whether the requirements are met.
- */
- function backdrop_check_module($module) {
- module_load_install($module);
- if (module_hook($module, 'requirements')) {
-
- $requirements = module_invoke($module, 'requirements', 'install');
- if (is_array($requirements) && backdrop_requirements_severity($requirements) == REQUIREMENT_ERROR) {
-
- foreach ($requirements as $requirement) {
- if (isset($requirement['severity']) && $requirement['severity'] == REQUIREMENT_ERROR) {
- $message = $requirement['description'];
- if (isset($requirement['value']) && $requirement['value']) {
- $message .= ' (' . t('Currently using !item !version', array('!item' => $requirement['title'], '!version' => $requirement['value'])) . ')';
- }
- backdrop_set_message($message, 'error');
- }
- }
- return FALSE;
- }
- }
- return TRUE;
- }
-
- * Retrieves information about an installation profile from its .info file.
- *
- * The information stored in a profile .info file is similar to that stored in
- * a normal Backdrop module .info file. For example:
- * - name: The real name of the installation profile for display purposes.
- * - description: A brief description of the profile.
- * - dependencies: An array of machine names of other modules that this install
- * profile requires.
- *
- * Additional, less commonly-used information that can appear in a profile.info
- * file but not in a normal Backdrop module .info file includes:
- * - distribution_name: The name of the Backdrop distribution that is being
- * installed, to be shown throughout the installation process. Defaults to
- * 'Backdrop CMS'.
- * - exclusive: If the install profile is intended to be the only eligible
- * choice in a distribution, setting exclusive = TRUE will auto-select it
- * during installation, and the install profile selection screen will be
- * skipped. If more than one profile is found where exclusive = TRUE then
- * this property will have no effect and the profile selection screen will
- * be shown as normal with all available profiles shown.
- *
- * Note that this function does an expensive file system scan to get info file
- * information for dependencies. If you only need information from the info
- * file itself, use system_get_info().
- *
- * Example of .info file:
- * @code
- * name = Minimal
- * description = Start fresh, with only a few modules enabled.
- * dependencies[] = block
- * dependencies[] = dblog
- * @endcode
- *
- * @param $profile
- * Name of profile.
- * @param $langcode
- * Language code (if any).
- *
- * @return
- * The info array.
- */
- function install_profile_info($profile, $langcode = 'en') {
- $cache = &backdrop_static(__FUNCTION__, array());
-
- if (!isset($cache[$profile])) {
-
- $defaults = array(
- 'dependencies' => array(),
- 'description' => '',
- 'distribution_name' => 'Backdrop CMS',
- 'version' => NULL,
- 'hidden' => FALSE,
- 'php' => BACKDROP_MINIMUM_PHP,
- );
- $info_file = _install_find_profile_file($profile, 'info');
- $info = backdrop_parse_info_file($info_file) + $defaults;
- $info['dependencies'] = array_unique(array_merge(
- backdrop_required_modules(),
- $info['dependencies'],
- ($langcode != 'en' && !empty($langcode) ? array('locale') : array()))
- );
-
-
-
- array_shift($info['dependencies']);
-
- $cache[$profile] = $info;
- }
- return $cache[$profile];
- }
-
- * Searches for a profile directory and returns the profile path location.
- *
- * This searches in both the root directory and underneath the core directory.
- * The root directory takes precedence in the event a profile exists there.
- * Site-specific directories are not searched (e.g. sites/my_site_name/profiles)
- *
- * @param string $profile_name
- * The profile name to be found.
- * @param bool $file_extension
- * The file type to find based on extension. May be one of the following:
- * - profile
- * - install
- * - info
- *
- * @return bool|string
- * The full path to the profile .install file.
- */
- function _install_find_profile_file($profile_name, $file_extension = 'profile') {
- $profile_files = array(
- BACKDROP_ROOT . '/profiles/' . $profile_name . '/' . $profile_name . '.profile',
- BACKDROP_ROOT . '/core/profiles/' . $profile_name . '/' . $profile_name . '.profile',
- );
- foreach ($profile_files as $profile_file) {
- if (file_exists($profile_file)) {
- if ($file_extension === 'profile') {
- return $profile_file;
- }
- else {
- $profile_other_file = str_replace('.profile', '.' . $file_extension, $profile_file);
- return file_exists($profile_other_file) ? $profile_other_file : FALSE;
- }
- }
- }
- return FALSE;
- }
-
- * Ensures the environment for a Backdrop database on a predefined connection.
- *
- * This will run tasks that check that Backdrop can perform all of the functions
- * on a database, that Backdrop needs. Tasks include simple checks like CREATE
- * TABLE to database specific functions like stored procedures and client
- * encoding.
- */
- function db_run_tasks($driver) {
- db_installer_object($driver)->runTasks();
- return TRUE;
- }
-
- * Returns a database installer object.
- *
- * @param string $driver
- * The name of the driver.
- *
- * @return DatabaseTasks
- * The database tasks object for the given driver.
- */
- function db_installer_object($driver) {
- Database::loadDriverFile($driver, array('install.inc'));
- $task_class = 'DatabaseTasks_' . $driver;
- return new $task_class();
- }