2009-07-29 05:59:59 +00:00
< ? php
/**
* @ file
* Drupal database update API .
*
* This file contains functions to perform database updates for a Drupal
* installation . It is included and used extensively by update . php .
*/
2012-04-09 18:02:59 +00:00
use Drupal\Component\Graph\Graph ;
2013-10-07 05:34:09 +00:00
use Drupal\Component\Utility\String ;
2012-06-02 19:45:56 +00:00
use Drupal\Core\Config\FileStorage ;
2012-06-29 17:35:06 +00:00
use Drupal\Core\Config\ConfigException ;
2013-01-21 19:21:34 +00:00
use Drupal\Core\DrupalKernel ;
2014-04-17 20:12:22 +00:00
use Drupal\Core\Page\DefaultHtmlPageRenderer ;
2014-01-09 11:50:54 +00:00
use Drupal\Core\Utility\Error ;
2012-10-08 16:39:59 +00:00
use Drupal\Component\Uuid\Uuid ;
2012-11-14 10:15:58 +00:00
use Drupal\Component\Utility\NestedArray ;
2013-06-06 08:08:39 +00:00
use Symfony\Component\HttpFoundation\Request ;
2012-04-09 18:02:59 +00:00
2009-07-29 05:59:59 +00:00
/**
2012-10-09 20:32:40 +00:00
* Disables any extensions that are incompatible with the current core version .
2009-07-29 05:59:59 +00:00
*/
function update_fix_compatibility () {
2014-04-02 07:05:28 +00:00
$extension_config = \Drupal :: config ( 'core.extension' );
$save = FALSE ;
2012-10-09 20:32:40 +00:00
foreach ( array ( 'module' , 'theme' ) as $type ) {
2014-04-02 07:05:28 +00:00
foreach ( $extension_config -> get ( $type ) as $name => $weight ) {
2012-10-09 20:32:40 +00:00
if ( update_check_incompatibility ( $name , $type )) {
2014-04-02 07:05:28 +00:00
$extension_config -> clear ( " $type . $name " );
if ( $type === 'theme' ) {
$extension_config -> set ( " disabled.theme. $name " , 0 );
}
2012-10-09 20:32:40 +00:00
$save = TRUE ;
}
}
2014-04-02 07:05:28 +00:00
}
if ( $save ) {
$extension_config -> set ( 'module' , module_config_sort ( $extension_config -> get ( 'module' )));
$extension_config -> save ();
2009-07-29 05:59:59 +00:00
}
}
/**
2013-01-10 23:50:55 +00:00
* Tests the compatibility of a module or theme .
2009-07-29 05:59:59 +00:00
*/
function update_check_incompatibility ( $name , $type = 'module' ) {
static $themes , $modules ;
// Store values of expensive functions for future use.
if ( empty ( $themes ) || empty ( $modules )) {
2010-03-31 19:10:39 +00:00
// We need to do a full rebuild here to make sure the database reflects any
// code changes that were made in the filesystem before the update script
// was initiated.
$themes = system_rebuild_theme_data ();
2009-10-13 05:26:57 +00:00
$modules = system_rebuild_module_data ();
2009-07-29 05:59:59 +00:00
}
if ( $type == 'module' && isset ( $modules [ $name ])) {
$file = $modules [ $name ];
}
elseif ( $type == 'theme' && isset ( $themes [ $name ])) {
$file = $themes [ $name ];
}
if ( ! isset ( $file )
|| ! isset ( $file -> info [ 'core' ])
2013-09-16 03:58:06 +00:00
|| $file -> info [ 'core' ] != \Drupal :: CORE_COMPATIBILITY
2010-10-27 19:31:53 +00:00
|| version_compare ( phpversion (), $file -> info [ 'php' ]) < 0 ) {
2009-07-29 05:59:59 +00:00
return TRUE ;
}
return FALSE ;
}
/**
2014-01-31 17:26:04 +00:00
* Returns whether the settings file requirement has been satisfied .
2009-07-29 05:59:59 +00:00
*
2014-01-31 17:26:04 +00:00
* @ return array
* A requirements info array .
2009-07-29 05:59:59 +00:00
*/
2014-01-31 17:26:04 +00:00
function update_settings_file_requirements () {
$requirements = array ();
2013-01-21 19:21:34 +00:00
2013-03-20 18:35:27 +00:00
// Check whether settings.php needs to be rewritten.
2014-01-31 17:26:04 +00:00
$settings_file = conf_path () . '/settings.php' ;
$writable = drupal_verify_install_file ( $settings_file , FILE_EXIST | FILE_READABLE | FILE_WRITABLE );
$requirements [ 'settings file' ][ 'title' ] = 'Settings file' ;
if ( $writable ) {
$requirements [ 'settings file' ] += array (
'value' => 'settings.php is writable.' ,
2010-10-02 02:56:19 +00:00
);
2011-12-22 11:26:12 +00:00
}
2014-01-31 17:26:04 +00:00
else {
$requirements [ 'settings file' ] += array (
'value' => 'settings.php is not writable.' ,
'severity' => REQUIREMENT_ERROR ,
'description' => 'Drupal requires write permissions to <em>' . $settings_file . '</em> during the update process. If you are unsure how to grant file permissions, consult the <a href="http://drupal.org/server-permissions">online handbook</a>.' ,
2013-09-06 17:52:42 +00:00
);
2012-02-03 13:52:24 +00:00
}
2014-01-31 17:26:04 +00:00
return $requirements ;
2012-02-03 13:52:24 +00:00
}
2011-12-22 11:26:12 +00:00
/**
2014-01-31 17:26:04 +00:00
* Returns whether the minimum schema requirement has been satisfied .
*
* @ return array
* A requirements info array .
2011-12-22 11:26:12 +00:00
*/
2014-01-31 17:26:04 +00:00
function update_system_schema_requirements () {
$requirements = array ();
2012-10-11 21:49:49 +00:00
2014-01-31 17:26:04 +00:00
$system_schema = drupal_get_installed_schema_version ( 'system' );
2012-10-23 10:25:45 +00:00
2014-01-31 17:26:04 +00:00
$requirements [ 'minimum schema' ][ 'title' ] = 'Minimum schema version' ;
if ( $system_schema >= \Drupal :: CORE_MINIMUM_SCHEMA_VERSION ) {
$requirements [ 'minimum schema' ] += array (
'value' => 'The installed schema version meets the minimum.' ,
'description' => 'Schema version: ' . $system_schema ,
);
}
else {
$requirements [ 'minimum schema' ] += array (
'value' => 'The installed schema version does not meet the minimum.' ,
'severity' => REQUIREMENT_ERROR ,
'description' => 'Your system schema version is ' . $system_schema . '. Updating directly from a schema version prior to 8000 is not supported. You must <a href="https://drupal.org/node/2179269">migrate your site to Drupal 8</a> first.' ,
);
2011-12-22 11:26:12 +00:00
}
2014-01-31 17:26:04 +00:00
return $requirements ;
2011-12-22 11:26:12 +00:00
}
2009-07-29 05:59:59 +00:00
/**
2014-01-31 17:26:04 +00:00
* Checks update requirements and reports errors and ( optionally ) warnings .
2009-07-29 05:59:59 +00:00
*
2014-01-31 17:26:04 +00:00
* @ param $skip_warnings
* ( optional ) If set to TRUE , requirement warnings will be ignored , and a
* report will only be issued if there are requirement errors . Defaults to
* FALSE .
2009-07-29 05:59:59 +00:00
*/
2014-01-31 17:26:04 +00:00
function update_check_requirements ( $skip_warnings = FALSE ) {
// Check requirements of all loaded modules.
$requirements = \Drupal :: moduleHandler () -> invokeAll ( 'requirements' , array ( 'update' ));
$requirements += update_system_schema_requirements ();
$requirements += update_settings_file_requirements ();
$severity = drupal_requirements_severity ( $requirements );
// If there are errors, always display them. If there are only warnings, skip
// them if the caller has indicated they should be skipped.
if ( $severity == REQUIREMENT_ERROR || ( $severity == REQUIREMENT_WARNING && ! $skip_warnings )) {
2014-04-17 20:12:22 +00:00
$regions [ 'sidebar_first' ] = update_task_list ( 'requirements' );
$status_report = array (
2014-01-31 17:26:04 +00:00
'#theme' => 'status_report' ,
'#requirements' => $requirements ,
2013-03-20 11:51:03 +00:00
);
2014-04-17 20:12:22 +00:00
$status_report [ '#suffix' ] = 'Check the messages and <a href="' . check_url ( drupal_requirements_url ( $severity )) . '">try again</a>.' ;
2014-01-31 17:26:04 +00:00
drupal_add_http_header ( 'Content-Type' , 'text/html; charset=utf-8' );
2014-04-17 20:12:22 +00:00
print DefaultHtmlPageRenderer :: renderPage ( $status_report , 'Requirements problem' , 'maintenance' , $regions );
2014-01-31 17:26:04 +00:00
exit ();
2009-07-29 05:59:59 +00:00
}
2010-12-18 06:36:00 +00:00
}
2011-09-21 10:09:49 +00:00
/**
2013-06-06 08:08:39 +00:00
* Forces a module to a given schema version .
2013-02-09 00:14:58 +00:00
*
2013-06-06 08:08:39 +00:00
* This function is rarely necessary .
2013-02-09 00:14:58 +00:00
*
2013-06-06 08:08:39 +00:00
* @ param string $module
* Name of the module .
* @ param string $schema_version
* The schema version the module should be set to .
2011-09-21 10:09:49 +00:00
*/
2013-06-06 08:08:39 +00:00
function update_set_schema ( $module , $schema_version ) {
2013-09-16 03:58:06 +00:00
\Drupal :: keyValue ( 'system.schema' ) -> set ( $module , $schema_version );
2013-06-06 08:08:39 +00:00
// system_list_reset() is in module.inc but that would only be available
// once the variable bootstrap is done.
require_once __DIR__ . '/module.inc' ;
system_list_reset ();
2011-09-21 10:09:49 +00:00
}
2010-12-18 06:36:00 +00:00
2009-07-29 05:59:59 +00:00
/**
2013-01-10 23:50:55 +00:00
* Performs one update and stores the results for display on the results page .
2009-07-29 05:59:59 +00:00
*
2009-09-07 15:43:55 +00:00
* If an update function completes successfully , it should return a message
* as a string indicating success , for example :
* @ code
* return t ( 'New index added successfully.' );
* @ endcode
*
* Alternatively , it may return nothing . In that case , no message
* will be displayed at all .
*
* If it fails for whatever reason , it should throw an instance of
2012-05-12 03:10:23 +00:00
* Drupal\Core\Utility\UpdateException with an appropriate error message , for
* example :
2009-09-07 15:43:55 +00:00
* @ code
2012-05-12 03:10:23 +00:00
* use Drupal\Core\Utility\UpdateException ;
* throw new UpdateException ( t ( 'Description of what went wrong' ));
2009-09-07 15:43:55 +00:00
* @ endcode
*
2010-02-03 18:16:23 +00:00
* If an exception is thrown , the current update and all updates that depend on
* it will be aborted . The schema version will not be updated in this case , and
* all the aborted updates will continue to appear on update . php as updates
* that have not yet been run .
2009-07-29 05:59:59 +00:00
*
2009-09-07 15:43:55 +00:00
* If an update function needs to be re - run as part of a batch process , it
* should accept the $sandbox array by reference as its first parameter
* and set the #finished property to the percentage completed that it is, as a
* fraction of 1.
*
2009-07-29 05:59:59 +00:00
* @ param $module
* The module whose update will be run .
* @ param $number
* The update number to run .
2010-02-03 18:16:23 +00:00
* @ param $dependency_map
* An array whose keys are the names of all update functions that will be
* performed during this batch process , and whose values are arrays of other
* update functions that each one depends on .
2009-07-29 05:59:59 +00:00
* @ param $context
2010-02-03 18:16:23 +00:00
* The batch context array .
*
* @ see update_resolve_dependencies ()
2009-07-29 05:59:59 +00:00
*/
2010-02-03 18:16:23 +00:00
function update_do_one ( $module , $number , $dependency_map , & $context ) {
$function = $module . '_update_' . $number ;
// If this update was aborted in a previous step, or has a dependency that
// was aborted in a previous step, go no further.
2010-02-17 20:45:36 +00:00
if ( ! empty ( $context [ 'results' ][ '#abort' ]) && array_intersect ( $context [ 'results' ][ '#abort' ], array_merge ( $dependency_map , array ( $function )))) {
2009-07-29 05:59:59 +00:00
return ;
}
2009-09-07 15:43:55 +00:00
$ret = array ();
2009-07-29 05:59:59 +00:00
if ( function_exists ( $function )) {
2009-09-07 15:43:55 +00:00
try {
$ret [ 'results' ][ 'query' ] = $function ( $context [ 'sandbox' ]);
$ret [ 'results' ][ 'success' ] = TRUE ;
}
2010-06-08 05:29:05 +00:00
// @TODO We may want to do different error handling for different
// exception types, but for now we'll just log the exception and
// return the message for printing.
2009-09-07 15:43:55 +00:00
catch ( Exception $e ) {
2010-06-08 05:29:05 +00:00
watchdog_exception ( 'update' , $e );
2014-01-09 11:50:54 +00:00
$variables = Error :: decodeException ( $e );
2012-12-29 08:58:04 +00:00
unset ( $variables [ 'backtrace' ]);
2013-10-07 05:34:09 +00:00
// The exception message is run through
// \Drupal\Component\Utility\String::checkPlain() by
2014-01-09 11:50:54 +00:00
// \Drupal\Core\Utility\Error::decodeException().
2010-10-25 00:06:19 +00:00
$ret [ '#abort' ] = array ( 'success' => FALSE , 'query' => t ( '%type: !message in %function (line %line of %file).' , $variables ));
2009-09-07 15:43:55 +00:00
}
2009-07-29 05:59:59 +00:00
}
2009-09-07 15:43:55 +00:00
if ( isset ( $context [ 'sandbox' ][ '#finished' ])) {
$context [ 'finished' ] = $context [ 'sandbox' ][ '#finished' ];
unset ( $context [ 'sandbox' ][ '#finished' ]);
}
2009-07-29 05:59:59 +00:00
if ( ! isset ( $context [ 'results' ][ $module ])) {
$context [ 'results' ][ $module ] = array ();
}
if ( ! isset ( $context [ 'results' ][ $module ][ $number ])) {
$context [ 'results' ][ $module ][ $number ] = array ();
}
$context [ 'results' ][ $module ][ $number ] = array_merge ( $context [ 'results' ][ $module ][ $number ], $ret );
if ( ! empty ( $ret [ '#abort' ])) {
2010-02-03 18:16:23 +00:00
// Record this function in the list of updates that were aborted.
$context [ 'results' ][ '#abort' ][] = $function ;
2009-07-29 05:59:59 +00:00
}
2009-09-07 15:43:55 +00:00
2009-07-29 05:59:59 +00:00
// Record the schema update if it was completed successfully.
2010-02-03 18:16:23 +00:00
if ( $context [ 'finished' ] == 1 && empty ( $ret [ '#abort' ])) {
2009-07-29 05:59:59 +00:00
drupal_set_installed_schema_version ( $module , $number );
}
2013-10-07 05:34:09 +00:00
$context [ 'message' ] = 'Updating ' . String :: checkPlain ( $module ) . ' module' ;
2009-07-29 05:59:59 +00:00
}
2009-08-03 19:37:38 +00:00
/**
2013-01-10 23:50:55 +00:00
* Starts the database update batch process .
2009-08-03 19:37:38 +00:00
*
* @ param $start
2010-02-03 18:16:23 +00:00
* An array whose keys contain the names of modules to be updated during the
* current batch process , and whose values contain the number of the first
* requested update for that module . The actual updates that are run ( and the
* order they are run in ) will depend on the results of passing this data
* through the update dependency system .
2009-08-03 19:37:38 +00:00
* @ param $redirect
* Path to redirect to when the batch has finished processing .
* @ param $url
* URL of the batch processing page ( should only be used for separate
* scripts like update . php ) .
* @ param $batch
* Optional parameters to pass into the batch API .
2009-10-03 20:17:46 +00:00
* @ param $redirect_callback
* ( optional ) Specify a function to be called to redirect to the progressive
* processing page .
2010-02-03 18:16:23 +00:00
*
* @ see update_resolve_dependencies ()
2009-08-03 19:37:38 +00:00
*/
Issue #1668866 by ParisLiakos, aspilicious, tim.plunkett, pdrake, g.oechsler, dawehner, Berdir, corvus_ch, damiankloip, disasm, marcingy, neclimdul: Replace drupal_goto() with RedirectResponse.
2013-06-19 16:07:30 +00:00
function update_batch ( $start , $redirect = NULL , $url = NULL , $batch = array (), $redirect_callback = NULL ) {
2009-08-03 19:37:38 +00:00
// During the update, bring the site offline so that schema changes do not
// affect visiting users.
2013-09-16 03:58:06 +00:00
$maintenance_mode = \Drupal :: config ( 'system.maintenance' ) -> get ( 'enabled' );
2012-07-28 13:39:43 +00:00
if ( isset ( $maintenance_mode )) {
$_SESSION [ 'maintenance_mode' ] = $maintenance_mode ;
}
if ( empty ( $_SESSION [ 'maintenance_mode' ])) {
2013-09-14 07:08:33 +00:00
if ( db_table_exists ( 'state' )) {
2013-09-16 03:58:06 +00:00
\Drupal :: state () -> set ( 'system.maintenance_mode' , TRUE );
2012-07-28 13:39:43 +00:00
}
2009-08-03 19:37:38 +00:00
}
2010-02-03 18:16:23 +00:00
// Resolve any update dependencies to determine the actual updates that will
// be run and the order they will be run in.
$updates = update_resolve_dependencies ( $start );
// Store the dependencies for each update function in an array which the
// batch API can pass in to the batch operation each time it is called. (We
// do not store the entire update dependency array here because it is
// potentially very large.)
$dependency_map = array ();
foreach ( $updates as $function => $update ) {
$dependency_map [ $function ] = ! empty ( $update [ 'reverse_paths' ]) ? array_keys ( $update [ 'reverse_paths' ]) : array ();
}
2009-08-03 19:37:38 +00:00
$operations = array ();
2010-02-03 18:16:23 +00:00
foreach ( $updates as $update ) {
if ( $update [ 'allowed' ]) {
// Set the installed version of each module so updates will start at the
// correct place. (The updates are already sorted, so we can simply base
// this on the first one we come across in the above foreach loop.)
if ( isset ( $start [ $update [ 'module' ]])) {
drupal_set_installed_schema_version ( $update [ 'module' ], $update [ 'number' ] - 1 );
unset ( $start [ $update [ 'module' ]]);
2009-08-03 19:37:38 +00:00
}
2010-02-03 18:16:23 +00:00
// Add this update function to the batch.
2010-02-17 20:45:36 +00:00
$function = $update [ 'module' ] . '_update_' . $update [ 'number' ];
$operations [] = array ( 'update_do_one' , array ( $update [ 'module' ], $update [ 'number' ], $dependency_map [ $function ]));
2009-08-03 19:37:38 +00:00
}
}
$batch [ 'operations' ] = $operations ;
$batch += array (
'title' => 'Updating' ,
'init_message' => 'Starting updates' ,
'error_message' => 'An unrecoverable error has occurred. You can find the error message below. It is advised to copy it to the clipboard for reference.' ,
'finished' => 'update_finished' ,
2011-10-31 04:05:57 +00:00
'file' => 'core/includes/update.inc' ,
2009-08-03 19:37:38 +00:00
);
batch_set ( $batch );
Issue #1668866 by ParisLiakos, aspilicious, tim.plunkett, pdrake, g.oechsler, dawehner, Berdir, corvus_ch, damiankloip, disasm, marcingy, neclimdul: Replace drupal_goto() with RedirectResponse.
2013-06-19 16:07:30 +00:00
return batch_process ( $redirect , $url , $redirect_callback );
2009-08-03 19:37:38 +00:00
}
/**
2013-01-10 23:50:55 +00:00
* Finishes the update process and stores the results for eventual display .
2009-08-03 19:37:38 +00:00
*
* After the updates run , all caches are flushed . The update results are
* stored into the session ( for example , to be displayed on the update results
* page in update . php ) . Additionally , if the site was off - line , now that the
* update process is completed , the site is set back online .
*
* @ param $success
* Indicate that the batch API tasks were all completed successfully .
* @ param $results
* An array of all the results that were updated in update_do_one () .
* @ param $operations
* A list of all the operations that had not been completed by the batch API .
*
* @ see update_batch ()
*/
function update_finished ( $success , $results , $operations ) {
// Clear the caches in case the data has been updated.
2013-06-06 08:08:39 +00:00
update_flush_all_caches ();
2009-08-03 19:37:38 +00:00
$_SESSION [ 'update_results' ] = $results ;
$_SESSION [ 'update_success' ] = $success ;
$_SESSION [ 'updates_remaining' ] = $operations ;
// Now that the update is done, we can put the site back online if it was
2009-08-22 18:24:14 +00:00
// previously in maintenance mode.
2012-07-28 13:39:43 +00:00
if ( isset ( $_SESSION [ 'maintenance_mode' ])) {
2013-09-16 03:58:06 +00:00
\Drupal :: state () -> set ( 'system.maintenance_mode' , FALSE );
2009-08-22 18:24:14 +00:00
unset ( $_SESSION [ 'maintenance_mode' ]);
2009-08-03 19:37:38 +00:00
}
}
2009-08-21 06:40:05 +00:00
/**
2013-01-10 23:50:55 +00:00
* Returns a list of all the pending database updates .
2009-08-21 06:40:05 +00:00
*
* @ return
* An associative array keyed by module name which contains all information
* about database updates that need to be run , and any updates that are not
* going to proceed due to missing requirements . The system module will
* always be listed first .
*
* The subarray for each module can contain the following keys :
* - start : The starting update that is to be processed . If this does not
* exist then do not process any updates for this module as there are
* other requirements that need to be resolved .
* - warning : Any warnings about why this module can not be updated .
* - pending : An array of all the pending updates for the module including
* the update number and the description from source code comment for
* each update function . This array is keyed by the update number .
*/
function update_get_update_list () {
// Make sure that the system module is first in the list of updates.
$ret = array ( 'system' => array ());
2009-09-07 15:43:55 +00:00
2009-08-21 06:40:05 +00:00
$modules = drupal_get_installed_schema_version ( NULL , FALSE , TRUE );
foreach ( $modules as $module => $schema_version ) {
2010-09-02 21:07:44 +00:00
// Skip uninstalled and incompatible modules.
if ( $schema_version == SCHEMA_UNINSTALLED || update_check_incompatibility ( $module )) {
continue ;
}
2014-01-31 17:26:04 +00:00
// Display a requirements error if the user somehow has a schema version
// from the previous Drupal major version.
if ( $schema_version < \Drupal :: CORE_MINIMUM_SCHEMA_VERSION ) {
$ret [ $module ][ 'warning' ] = '<em>' . $module . '</em> module cannot be updated. Its schema version is ' . $schema_version . ', which is from an earlier major release of Drupal. You will need to <a href="https://drupal.org/node/2127611">migrate the data for this module</a> instead.' ;
continue ;
}
2010-09-02 21:07:44 +00:00
// Otherwise, get the list of updates defined by this module.
2009-08-21 06:40:05 +00:00
$updates = drupal_get_schema_versions ( $module );
2010-09-02 21:07:44 +00:00
if ( $updates !== FALSE ) {
2014-02-15 10:06:58 +00:00
// \Drupal::moduleHandler()->invoke() returns NULL for nonexisting hooks,
// so if no updates are removed, it will == 0.
$last_removed = \Drupal :: moduleHandler () -> invoke ( $module , 'update_last_removed' );
2009-08-21 06:40:05 +00:00
if ( $schema_version < $last_removed ) {
2014-01-31 17:26:04 +00:00
$ret [ $module ][ 'warning' ] = '<em>' . $module . '</em> module cannot be updated. Its schema version is ' . $schema_version . '. Updates up to and including ' . $last_removed . ' have been removed in this release. In order to update <em>' . $module . '</em> module, you will first <a href="http://drupal.org/upgrade">need to upgrade</a> to the last version in which these updates were available.' ;
2009-08-21 06:40:05 +00:00
continue ;
}
2009-09-07 15:43:55 +00:00
2014-02-28 10:43:51 +00:00
$updates = array_combine ( $updates , $updates );
2009-08-21 06:40:05 +00:00
foreach ( array_keys ( $updates ) as $update ) {
2014-01-31 17:26:04 +00:00
if ( $update == \Drupal :: CORE_MINIMUM_SCHEMA_VERSION ) {
$ret [ $module ][ 'warning' ] = '<em>' . $module . '</em> module cannot be updated. It contains an update numbered as ' . \Drupal :: CORE_MINIMUM_SCHEMA_VERSION . ' which is reserved for the earliest installation of a module in Drupal ' . \Drupal :: CORE_COMPATIBILITY . ', before any updates. In order to update <em>' . $module . '</em> module, you will need to install a version of the module with valid updates.' ;
continue 2 ;
}
2009-08-21 06:40:05 +00:00
if ( $update > $schema_version ) {
2010-09-25 18:10:53 +00:00
// The description for an update comes from its Doxygen.
2009-08-21 06:40:05 +00:00
$func = new ReflectionFunction ( $module . '_update_' . $update );
2010-09-25 18:10:53 +00:00
$description = str_replace ( array ( " \n " , '*' , '/' ), '' , $func -> getDocComment ());
$ret [ $module ][ 'pending' ][ $update ] = " $update - $description " ;
if ( ! isset ( $ret [ $module ][ 'start' ])) {
$ret [ $module ][ 'start' ] = $update ;
2009-08-21 06:40:05 +00:00
}
}
}
if ( ! isset ( $ret [ $module ][ 'start' ]) && isset ( $ret [ $module ][ 'pending' ])) {
$ret [ $module ][ 'start' ] = $schema_version ;
}
}
}
2009-09-07 15:43:55 +00:00
2009-08-21 06:40:05 +00:00
if ( empty ( $ret [ 'system' ])) {
unset ( $ret [ 'system' ]);
}
return $ret ;
}
2010-02-03 18:16:23 +00:00
/**
* Resolves dependencies in a set of module updates , and orders them correctly .
*
* This function receives a list of requested module updates and determines an
* appropriate order to run them in such that all update dependencies are met .
* Any updates whose dependencies cannot be met are included in the returned
* array but have the key 'allowed' set to FALSE ; the calling function should
* take responsibility for ensuring that these updates are ultimately not
* performed .
*
* In addition , the returned array also includes detailed information about the
* dependency chain for each update , as provided by the depth - first search
2012-04-09 18:02:59 +00:00
* algorithm in Drupal\Component\Graph\Graph :: searchAndSort () .
2010-02-03 18:16:23 +00:00
*
* @ param $starting_updates
* An array whose keys contain the names of modules with updates to be run
* and whose values contain the number of the first requested update for that
* module .
*
* @ return
* An array whose keys are the names of all update functions within the
* provided modules that would need to be run in order to fulfill the
* request , arranged in the order in which the update functions should be
* run . ( This includes the provided starting update for each module and all
* subsequent updates that are available . ) The values are themselves arrays
2012-04-09 18:02:59 +00:00
* containing all the keys provided by the
* Drupal\Component\Graph\Graph :: searchAndSort () algorithm , which encode
* detailed information about the dependency chain for this update function
2013-01-10 23:50:55 +00:00
* ( for example : 'paths' , 'reverse_paths' , 'weight' , and 'component' ), as
* well as the following additional keys :
2010-02-03 18:16:23 +00:00
* - 'allowed' : A boolean which is TRUE when the update function ' s
* dependencies are met , and FALSE otherwise . Calling functions should
* inspect this value before running the update .
* - 'missing_dependencies' : An array containing the names of any other
* update functions that are required by this one but that are unavailable
* to be run . This array will be empty when 'allowed' is TRUE .
* - 'module' : The name of the module that this update function belongs to .
* - 'number' : The number of this update function within that module .
*
2013-10-03 11:26:25 +00:00
* @ see \Drupal\Component\Graph\Graph :: searchAndSort ()
2010-02-03 18:16:23 +00:00
*/
function update_resolve_dependencies ( $starting_updates ) {
// Obtain a dependency graph for the requested update functions.
$update_functions = update_get_update_function_list ( $starting_updates );
$graph = update_build_dependency_graph ( $update_functions );
2012-04-09 18:02:59 +00:00
// Perform the depth-first search and sort on the results.
$graph_object = new Graph ( $graph );
$graph = $graph_object -> searchAndSort ();
2014-01-25 01:58:19 +00:00
uasort ( $graph , array ( 'Drupal\Component\Utility\SortArray' , 'sortByWeightElement' ));
2010-02-03 18:16:23 +00:00
foreach ( $graph as $function => & $data ) {
$module = $data [ 'module' ];
$number = $data [ 'number' ];
// If the update function is missing and has not yet been performed, mark
// it and everything that ultimately depends on it as disallowed.
if ( update_is_missing ( $module , $number , $update_functions ) && ! update_already_performed ( $module , $number )) {
$data [ 'allowed' ] = FALSE ;
foreach ( array_keys ( $data [ 'paths' ]) as $dependent ) {
$graph [ $dependent ][ 'allowed' ] = FALSE ;
$graph [ $dependent ][ 'missing_dependencies' ][] = $function ;
}
}
elseif ( ! isset ( $data [ 'allowed' ])) {
$data [ 'allowed' ] = TRUE ;
$data [ 'missing_dependencies' ] = array ();
}
// Now that we have finished processing this function, remove it from the
// graph if it was not part of the original list. This ensures that we
// never try to run any updates that were not specifically requested.
if ( ! isset ( $update_functions [ $module ][ $number ])) {
unset ( $graph [ $function ]);
}
}
return $graph ;
}
/**
* Returns an organized list of update functions for a set of modules .
*
* @ param $starting_updates
* An array whose keys contain the names of modules and whose values contain
* the number of the first requested update for that module .
*
* @ return
* An array containing all the update functions that should be run for each
* module , including the provided starting update and all subsequent updates
* that are available . The keys of the array contain the module names , and
* each value is an ordered array of update functions , keyed by the update
* number .
*
* @ see update_resolve_dependencies ()
*/
function update_get_update_function_list ( $starting_updates ) {
// Go through each module and find all updates that we need (including the
// first update that was requested and any updates that run after it).
$update_functions = array ();
foreach ( $starting_updates as $module => $version ) {
$update_functions [ $module ] = array ();
$updates = drupal_get_schema_versions ( $module );
2010-03-07 06:53:26 +00:00
if ( $updates !== FALSE ) {
$max_version = max ( $updates );
if ( $version <= $max_version ) {
foreach ( $updates as $update ) {
if ( $update >= $version ) {
$update_functions [ $module ][ $update ] = $module . '_update_' . $update ;
}
2010-02-03 18:16:23 +00:00
}
}
}
}
return $update_functions ;
}
/**
* Constructs a graph which encodes the dependencies between module updates .
*
* This function returns an associative array which contains a " directed graph "
* representation of the dependencies between a provided list of update
* functions , as well as any outside update functions that they directly depend
* on but that were not in the provided list . The vertices of the graph
* represent the update functions themselves , and each edge represents a
* requirement that the first update function needs to run before the second .
* For example , consider this graph :
*
2014-01-31 17:26:04 +00:00
* system_update_8001 ---> system_update_8002 ---> system_update_8003
2010-02-03 18:16:23 +00:00
*
2014-01-31 17:26:04 +00:00
* Visually , this indicates that system_update_8001 () must run before
* system_update_8002 (), which in turn must run before system_update_8003 () .
2010-02-03 18:16:23 +00:00
*
* The function takes into account standard dependencies within each module , as
* shown above ( i . e . , the fact that each module ' s updates must run in numerical
* order ), but also finds any cross - module dependencies that are defined by
* modules which implement hook_update_dependencies (), and builds them into the
* graph as well .
*
* @ param $update_functions
* An organized array of update functions , in the format returned by
* update_get_update_function_list () .
*
* @ return
* A multidimensional array representing the dependency graph , suitable for
2012-04-09 18:02:59 +00:00
* passing in to Drupal\Component\Graph\Graph :: searchAndSort (), but with extra
* information about each update function also included . Each array key
* contains the name of an update function , including all update functions
* from the provided list as well as any outside update functions which they
* directly depend on . Each value is an associative array containing the
* following keys :
2010-02-03 18:16:23 +00:00
* - 'edges' : A representation of any other update functions that immediately
2012-04-09 18:02:59 +00:00
* depend on this one . See Drupal\Component\Graph\Graph :: searchAndSort () for
* more details on the format .
2010-02-03 18:16:23 +00:00
* - 'module' : The name of the module that this update function belongs to .
* - 'number' : The number of this update function within that module .
*
2013-10-03 11:26:25 +00:00
* @ see \Drupal\Component\Graph\Graph :: searchAndSort ()
2010-02-03 18:16:23 +00:00
* @ see update_resolve_dependencies ()
*/
function update_build_dependency_graph ( $update_functions ) {
// Initialize an array that will define a directed graph representing the
// dependencies between update functions.
$graph = array ();
// Go through each update function and build an initial list of dependencies.
foreach ( $update_functions as $module => $functions ) {
$previous_function = NULL ;
foreach ( $functions as $number => $function ) {
// Add an edge to the directed graph representing the fact that each
// update function in a given module must run after the update that
// numerically precedes it.
if ( $previous_function ) {
$graph [ $previous_function ][ 'edges' ][ $function ] = TRUE ;
}
$previous_function = $function ;
// Define the module and update number associated with this function.
$graph [ $function ][ 'module' ] = $module ;
$graph [ $function ][ 'number' ] = $number ;
}
}
// Now add any explicit update dependencies declared by modules.
2010-04-28 05:28:22 +00:00
$update_dependencies = update_retrieve_dependencies ();
2010-02-03 18:16:23 +00:00
foreach ( $graph as $function => $data ) {
if ( ! empty ( $update_dependencies [ $data [ 'module' ]][ $data [ 'number' ]])) {
foreach ( $update_dependencies [ $data [ 'module' ]][ $data [ 'number' ]] as $module => $number ) {
$dependency = $module . '_update_' . $number ;
$graph [ $dependency ][ 'edges' ][ $function ] = TRUE ;
$graph [ $dependency ][ 'module' ] = $module ;
$graph [ $dependency ][ 'number' ] = $number ;
}
}
}
return $graph ;
}
/**
* Determines if a module update is missing or unavailable .
*
* @ param $module
* The name of the module .
* @ param $number
* The number of the update within that module .
* @ param $update_functions
* An organized array of update functions , in the format returned by
* update_get_update_function_list () . This should represent all module
* updates that are requested to run at the time this function is called .
*
* @ return
* TRUE if the provided module update is not installed or is not in the
* provided list of updates to run ; FALSE otherwise .
*/
function update_is_missing ( $module , $number , $update_functions ) {
return ! isset ( $update_functions [ $module ][ $number ]) || ! function_exists ( $update_functions [ $module ][ $number ]);
}
/**
* Determines if a module update has already been performed .
*
* @ param $module
* The name of the module .
* @ param $number
* The number of the update within that module .
*
* @ return
* TRUE if the database schema indicates that the update has already been
* performed ; FALSE otherwise .
*/
function update_already_performed ( $module , $number ) {
return $number <= drupal_get_installed_schema_version ( $module );
}
/**
2013-01-10 23:50:55 +00:00
* Invokes hook_update_dependencies () in all installed modules .
2010-02-03 18:16:23 +00:00
*
2013-08-01 08:10:33 +00:00
* This function is similar to \Drupal :: moduleHandler () -> invokeAll (), with the
* main difference that it does not require that a module be enabled to invoke
* its hook , only that it be installed . This allows the update system to
* properly perform updates even on modules that are currently disabled .
2010-02-03 18:16:23 +00:00
*
* @ return
2010-04-28 05:28:22 +00:00
* An array of return values obtained by merging the results of the
* hook_update_dependencies () implementations in all installed modules .
2010-02-03 18:16:23 +00:00
*
2013-08-01 08:10:33 +00:00
* @ see \Drupal :: moduleHandler () -> invokeAll ()
2010-04-28 05:28:22 +00:00
* @ see hook_update_dependencies ()
2010-02-03 18:16:23 +00:00
*/
2010-04-28 05:28:22 +00:00
function update_retrieve_dependencies () {
2010-02-03 18:16:23 +00:00
$return = array ();
2010-04-28 05:28:22 +00:00
// Get a list of installed modules, arranged so that we invoke their hooks in
2013-08-01 08:10:33 +00:00
// the same order that \Drupal::moduleHandler()->invokeAll() does.
2013-09-16 03:58:06 +00:00
foreach ( \Drupal :: keyValue ( 'system.schema' ) -> getAll () as $module => $schema ) {
2013-01-15 22:07:29 +00:00
if ( $schema == SCHEMA_UNINSTALLED ) {
// Nothing to upgrade.
continue ;
}
2013-06-06 08:08:39 +00:00
$function = $module . '_update_dependencies' ;
2013-01-15 22:07:29 +00:00
// Ensure install file is loaded.
module_load_install ( $module );
2010-02-03 18:16:23 +00:00
if ( function_exists ( $function )) {
2010-04-28 05:28:22 +00:00
$result = $function ();
// Each implementation of hook_update_dependencies() returns a
// multidimensional, associative array containing some keys that
// represent module names (which are strings) and other keys that
// represent update function numbers (which are integers). We cannot use
// array_merge_recursive() to properly merge these results, since it
// treats strings and integers differently. Therefore, we have to
// explicitly loop through the expected array structure here and perform
// the merge manually.
2010-02-03 18:16:23 +00:00
if ( isset ( $result ) && is_array ( $result )) {
2010-04-28 05:28:22 +00:00
foreach ( $result as $module => $module_data ) {
foreach ( $module_data as $update => $update_data ) {
foreach ( $update_data as $module_dependency => $update_dependency ) {
// If there are redundant dependencies declared for the same
// update function (so that it is declared to depend on more than
// one update from a particular module), record the dependency on
// the highest numbered update here, since that automatically
// implies the previous ones. For example, if one module's
// implementation of hook_update_dependencies() required this
// ordering:
//
2014-01-31 17:26:04 +00:00
// system_update_8002 ---> user_update_8001
2010-04-28 05:28:22 +00:00
//
// but another module's implementation of the hook required this
// one:
//
2014-01-31 17:26:04 +00:00
// system_update_8003 ---> user_update_8001
2010-04-28 05:28:22 +00:00
//
2014-01-31 17:26:04 +00:00
// we record the second one, since system_update_8002() is always
// guaranteed to run before system_update_8003() anyway (within
2010-04-28 05:28:22 +00:00
// an individual module, updates are always run in numerical
// order).
if ( ! isset ( $return [ $module ][ $update ][ $module_dependency ]) || $update_dependency > $return [ $module ][ $update ][ $module_dependency ]) {
$return [ $module ][ $update ][ $module_dependency ] = $update_dependency ;
}
}
}
}
2010-02-03 18:16:23 +00:00
}
}
}
return $return ;
}
2013-06-24 16:38:32 +00:00
/**
* Replace permissions during update .
*
* This function can replace one permission to several or even delete an old
* one .
*
* @ param array $replace
* An associative array . The keys are the old permissions the values are lists
* of new permissions . If the list is an empty array , the old permission is
* removed .
*/
function update_replace_permissions ( $replace ) {
$prefix = 'user.role.' ;
$cut = strlen ( $prefix );
2013-09-16 03:58:06 +00:00
$role_names = \Drupal :: service ( 'config.storage' ) -> listAll ( $prefix );
2013-06-24 16:38:32 +00:00
foreach ( $role_names as $role_name ) {
$rid = substr ( $role_name , $cut );
2013-09-16 03:58:06 +00:00
$config = \Drupal :: config ( " user.role. $rid " );
2013-06-24 16:38:32 +00:00
$permissions = $config -> get ( 'permissions' ) ? : array ();
foreach ( $replace as $old_permission => $new_permissions ) {
if (( $index = array_search ( $old_permission , $permissions )) !== FALSE ) {
unset ( $permissions [ $index ]);
$permissions = array_unique ( array_merge ( $permissions , $new_permissions ));
}
}
$config
-> set ( 'permissions' , $permissions )
-> save ();
}
}
2013-06-29 10:56:53 +00:00
/**
* Returns a list of languages set up on the site during upgrades .
*
* @ param $flags
* ( optional ) Specifies the state of the languages that have to be returned .
* It can be : Language :: STATE_CONFIGURABLE , Language :: STATE_LOCKED ,
* Language :: STATE_ALL .
*
* @ return array
* An associative array of languages , keyed by the language code , ordered by
* weight ascending and name ascending .
*/
function update_language_list ( $flags = Language :: STATE_CONFIGURABLE ) {
$languages = & drupal_static ( __FUNCTION__ );
// Initialize master language list.
if ( ! isset ( $languages )) {
// Initialize local language list cache.
$languages = array ();
// Fill in master language list based on current configuration.
2014-03-31 17:29:01 +00:00
$default = \Drupal :: languageManager () -> getDefaultLanguage ();
Issue #1862202 by plach, Berdir, katbailey, ParisLiakos, alexpott, chx, sun, larowlan, Gábor Hojtsy, cosmicdreams, vijaycs85, YesCT, penyaskito, andypost, Albert Volkman, joelpitett: Objectify the language system.
2014-01-15 16:27:37 +00:00
if ( \Drupal :: languageManager () -> isMultilingual () || \Drupal :: moduleHandler () -> moduleExists ( 'language' )) {
2013-06-29 10:56:53 +00:00
// Use language module configuration if available. We can not use
// entity_load_multiple() because this breaks during updates.
2014-03-01 19:02:16 +00:00
$language_entities = \Drupal :: configFactory () -> listAll ( 'language.entity.' );
2013-06-29 10:56:53 +00:00
// Initialize default property so callers have an easy reference and can
// save the same object without data loss.
foreach ( $language_entities as $langcode_config_name ) {
$langcode = substr ( $langcode_config_name , strlen ( 'language.entity.' ));
2013-09-16 03:58:06 +00:00
$info = \Drupal :: config ( $langcode_config_name ) -> get ();
2013-06-29 10:56:53 +00:00
$languages [ $langcode ] = new Language ( array (
'default' => ( $info [ 'id' ] == $default -> id ),
'name' => $info [ 'label' ],
'id' => $info [ 'id' ],
'direction' => $info [ 'direction' ],
'locked' => $info [ 'locked' ],
'weight' => $info [ 'weight' ],
));
}
Language :: sort ( $languages );
}
else {
// No language module, so use the default language only.
$languages = array ( $default -> id => $default );
// Add the special languages, they will be filtered later if needed.
Issue #1862202 by plach, Berdir, katbailey, ParisLiakos, alexpott, chx, sun, larowlan, Gábor Hojtsy, cosmicdreams, vijaycs85, YesCT, penyaskito, andypost, Albert Volkman, joelpitett: Objectify the language system.
2014-01-15 16:27:37 +00:00
$languages += \Drupal :: languageManager () -> getDefaultLockedLanguages ( $default -> weight );
2013-06-29 10:56:53 +00:00
}
}
// Filter the full list of languages based on the value of the $all flag. By
// default we remove the locked languages, but the caller may request for
// those languages to be added as well.
$filtered_languages = array ();
// Add the site's default language if flagged as allowed value.
if ( $flags & Language :: STATE_SITE_DEFAULT ) {
2014-03-31 17:29:01 +00:00
$default = isset ( $default ) ? $default : \Drupal :: languageManager () -> getDefaultLanguage ();
2013-06-29 10:56:53 +00:00
// Rename the default language.
$default -> name = t ( " Site's default language (@lang_name) " , array ( '@lang_name' => $default -> name ));
$filtered_languages [ 'site_default' ] = $default ;
}
foreach ( $languages as $langcode => $language ) {
if (( $language -> locked && ! ( $flags & Language :: STATE_LOCKED )) || ( ! $language -> locked && ! ( $flags & Language :: STATE_CONFIGURABLE ))) {
continue ;
}
$filtered_languages [ $langcode ] = $language ;
}
return $filtered_languages ;
}