Skip to content

Instantly share code, notes, and snippets.

@keopx
Forked from juampynr/upgradepath.drush.inc
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keopx/6a676c2f5d5298ff3ed8 to your computer and use it in GitHub Desktop.
Save keopx/6a676c2f5d5298ff3ed8 to your computer and use it in GitHub Desktop.
<?php
/**
* @file
* Runs a set of steps to upgrade a database to be in line with code.
*/
/**
* Implements hook_drush_command().
*/
function upgradepath_drush_command() {
$items = array();
$items['upgradepath'] = array(
'description' => 'Runs the upgrade path in the bootstrapped site performing tasks such as database upgrades, reverting features, etc.',
'drush dependencies' => array('registry_rebuild', 'features'),
'examples' => array(
'drush upgradepath' => 'Runs the upgradepath in the current Drupal project.',
'drush @example.dev upgradepath' => 'Runs the upgradepath in the Drupal project referenced by @example.dev.',
),
);
return $items;
}
/**
* Implements drush_hook_pre_command().
*/
function drush_upgradepath_pre_upgradepath() {
drush_log('Enabling maintenance mode and killing active sessions.', 'status');
$return = drush_invoke_process('@self', 'variable-set', array('maintenance_mode', 1), array(
'yes' => TRUE,
'always-set' => TRUE,
));
if ($return['error_status']) {
return drush_set_error('UPGRADEPATH_PRE_MAINTENANCE', 'Could not enable maintenance mode.');
}
$return = drush_invoke_process('@self', 'sql-query', array('truncate table sessions'));
if ($return['error_status']) {
return drush_set_error('UPGRADEPATH_PRE_SESSIONS', 'Could not truncate user sessions.');
}
}
/**
* Implements drush_hook_command().
*/
function drush_upgradepath() {
// Registry rebuild.
$return = drush_invoke_process('@self', 'registry-rebuild');
if ($return['error_status']) {
return drush_set_error('UPGRADEPATH_RR', 'registry-rebuild failed.');
}
// Database updates.
drush_invoke_process('@self', 'updatedb', array(), array('yes' => true));
if ($return['error_status']) {
return drush_set_error('UPGRADEPATH_UPDB', 'updatedb failed.');
}
// Clear Drush cache (sometimes needed before reverting Features components).
drush_invoke_process('@self', 'cache-clear', array('type' => 'drush'));
if ($return['error_status']) {
return drush_set_error('UPGRADEPATH_CC_DRUSH', 'cache-clear failed.');
}
// Revert all Features components.
drush_invoke_process('@self', 'features-revert-all', array(), array(
'yes' => TRUE,
));
if ($return['error_status']) {
return drush_set_error('UPGRADEPATH_FRA', 'features-revert-all failed.');
}
// Clear all caches.
drush_invoke_process('@self', 'cache-clear', array('type' => 'all'));
if ($return['error_status']) {
return drush_set_error('UPGRADEPATH_CC_ALL', 'cache-clear failed.');
}
}
/**
* Implements drush_hook_post_command().
*/
function drush_upgradepath_post_upgradepath() {
drush_log('Disabling maintenance mode.', 'success');
$return = drush_invoke_process('@self', 'variable-delete', array('maintenance_mode'), array(
'yes' => TRUE,
'exact' => TRUE,
));
if ($return['error_status']) {
return drush_set_error('UPGRADEPATH_POST_MAINTENANCE', 'Could not disable maintenance mode.');
}
}
/**
* Implements drush_hook_command_rollback().
*/
function drush_upgradepath_rollback() {
drush_log('Oh no! Something went wrong. Review the above log and disable maintenance mode when done.', 'error');
drush_set_context('UPGRADEPATH_ROLLBACK', TRUE);
}
/**
* Implements drush_hook_pre_command_rollback().
*/
function drush_upgradepath_pre_upgradepath_rollback() {
if (!drush_get_context('UPGRADEPATH_ROLLBACK')) {
drush_log('Oh no! Something went wrong prior to start the upgrade path. Check the status of the maintenance mode and the sessions table.', 'error');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment