hosting_server.drush.inc in Hosting 6.2
File
server/hosting_server.drush.inc
View source
<?php
function hosting_hosting_server_context_options(&$task) {
$task->context_options['remote_host'] = $task->ref->title;
$ip_list = $task->ref->ip_addresses;
$task->context_options['ip_addresses'] = sizeof($ip_list) ? implode(',', $ip_list) : 'null';
foreach (hosting_server_services() as $type => $info) {
if (isset($task->ref->services[$type])) {
$service = $task->ref->services[$type];
if ($service->available) {
$service
->context_options($task->task_type, $task->ref->type, $task);
}
}
else {
$task->context_options["{$type}_service_type"] = '0';
}
}
}
function hosting_server_drush_context_import($context, &$node) {
if ($context->type == 'server') {
$node->title = strtolower($context->remote_host);
$node->new_ip_addresses = implode("\n", $context->ip_addresses);
foreach (hosting_server_services() as $type => $info) {
if (isset($context->{$type . '_service_type'})) {
$service_type = $context->{$type . '_service_type'};
if (isset($node->services[$type])) {
if ($node->services[$type]->type != $service_type) {
unset($node->services[$type]);
}
}
if (!isset($node->services[$type])) {
hosting_services_add($node, $type, $service_type, $values);
}
$node->services[$type]
->context_import($context);
}
}
}
}
function hosting_server_post_hosting_verify_task($task, $data) {
$task->ref->no_verify = TRUE;
node_save($task->ref);
$query = db_query("SELECT nid FROM {hosting_platform} WHERE status <> %d AND web_server = %d", HOSTING_PLATFORM_DELETED, $task->ref->nid);
while ($nid = db_fetch_object($query)) {
hosting_add_task($nid->nid, 'verify');
}
}