task.hosting.inc in Hosting 6.2
Same filename and directory in other branches
Drush include for the Hosting module's hosting task command.
File
task.hosting.incView source
<?php
/**
* @file
* Drush include for the Hosting module's hosting task command.
*/
/**
* Log a message to the current task's node if possible, the screen otherwise.
*/
function _hosting_task_log($entry) {
$task = drush_get_context('HOSTING_TASK');
if ($task->vid) {
hosting_task_log($task->vid, $entry['type'], $entry['message'], $entry['error'], $entry['timestamp']);
}
else {
return _drush_print_log($entry);
}
if (drush_get_option('debug', FALSE)) {
return _drush_print_log($entry);
}
}
/**
* Validate hook for the hosting-task Drush command.
*
* We do some magic in this command to allow the user to run either a specifc
* task by specifying a node id or chosen task type by specifying the type of
* task, e.g. 'verify' or 'migrate'.
*
* @see drush_hosting_task()
*/
function drush_hosting_task_validate($id, $type = null) {
drush_set_option('user', 1);
drush_bootstrap(DRUSH_BOOTSTRAP_DRUPAL_LOGIN);
if (is_numeric($id)) {
$task = node_load($id);
}
elseif (is_string($id) && isset($type)) {
$ref = hosting_context_load($id);
if ($ref->nid) {
if (!($task = hosting_get_most_recent_task($ref->nid, $type))) {
$task = hosting_add_task($ref->nid, $type);
}
}
}
if ($task->type == 'task') {
$task->ref = node_load($task->rid);
$task->options = array();
$task->context_options = array(
'context_type' => $task->ref->type,
'master_url' => url('', array(
'absolute' => TRUE,
)),
'root' => null,
'uri' => null,
);
$task->args = array();
$task->changed = time();
$task->executed = time();
/* if not already running, remove the task from the queue
* this is to avoid concurrent task runs */
if ($task->task_status == HOSTING_TASK_PROCESSING && !drush_get_option('force', false)) {
return drush_set_error('HOSTING_TASK_RUNNING', dt("This task is already running, use --force"));
}
if ($task->task_status != HOSTING_TASK_QUEUED && !drush_get_option('force', false)) {
return drush_set_error('HOSTING_TASK_NOT_QUEUED', dt("This task is not queued, use --force"));
}
$task->task_status = HOSTING_TASK_PROCESSING;
$task->revision = TRUE;
node_save($task);
drush_set_context('HOSTING_TASK', $task);
drush_set_context('DRUSH_LOG_CALLBACK', '_hosting_task_log');
drush_log(dt("Task starts processing"), 'queue');
// Load Task Info
$tasks_info = hosting_available_tasks($task->ref->type);
// Find task type and pass through if it needs provision_save
if (isset($tasks_info[$task->task_type])) {
$task->task_info = $tasks_info[$task->task_type];
}
}
else {
drush_set_error('HOSTING_INVALID_TASK', t("This task is not valid"));
}
}
/**
* Drush hosting task command.
*
* This is the main way that the frontend communicates with the backend. Tasks
* correspond to backend drush commands, and the results and log of the command
* are attached to the task for reference.
*
* @see drush_hosting_task_validate()
* @see hook_hosting_TASK_OBJECT_context_options()
*/
function drush_hosting_task() {
$task =& drush_get_context('HOSTING_TASK');
$output = array();
$mode = 'POST';
// Make sure argument order is correct
ksort($task->args);
// If this task type needs it, run provision-save to create the named context.
if (!empty($task->task_info['provision_save'])) {
// Invoke hook_hosting_TASK_OBJECT_context_options()
// We copy module_invoke_all() here because it doesn't pass by
// reference and it breaks under PHP 5.3
$hook = 'hosting_' . $task->ref->type . '_context_options';
foreach (module_implements($hook) as $module) {
$function = $module . '_' . $hook;
call_user_func($function, $task);
}
$output = drush_invoke_process('@none', 'provision-save', array(
'@' . $task->ref->hosting_name,
), $task->context_options, array(
'method' => $mode,
));
}
// Run the actual command. Adding alias here to work around Drush API.
$output = provision_backend_invoke($task->ref->hosting_name, 'provision-' . $task->task_type, $task->args, $task->options, $mode);
drush_set_context('HOSTING_DRUSH_OUTPUT', $output);
// On succesful delete, remove the named context.
if ($task->task_type === 'delete' && !drush_get_error()) {
$output = drush_invoke_process('@none', 'provision-save', array(
'@' . $task->ref->hosting_name,
), array(
'delete' => TRUE,
), array(
'method' => $mode,
));
}
// New revision is created at the beginning of function.
$task->revision = FALSE;
$task->delta = time() - $task->executed;
node_save($task);
}
/**
* Rollback hook for the hosting-task Drush command.
*
* @see hook_hosting_TASK_TYPE_task_rollback()
*/
function drush_hosting_task_rollback() {
$task =& drush_get_context('HOSTING_TASK');
module_invoke_all(sprintf("hosting_%s_task_rollback", str_replace('-', '_', $task->task_type)), $task, drush_get_context('HOSTING_DRUSH_OUTPUT'));
}
/**
* Post completion hook for the hosting-task Drush command.
*
* @see hook_post_hosting_TASK_TYPE_task()
*/
function drush_hosting_post_hosting_task($task) {
$task =& drush_get_context('HOSTING_TASK');
module_invoke_all(sprintf("post_hosting_%s_task", str_replace('-', '_', $task->task_type)), $task, drush_get_context('HOSTING_DRUSH_OUTPUT'));
}
Functions
Name | Description |
---|---|
drush_hosting_post_hosting_task | Post completion hook for the hosting-task Drush command. |
drush_hosting_task | Drush hosting task command. |
drush_hosting_task_rollback | Rollback hook for the hosting-task Drush command. |
drush_hosting_task_validate | Validate hook for the hosting-task Drush command. |
_hosting_task_log | Log a message to the current task's node if possible, the screen otherwise. |