View source
<?php
function hostmaster_task_intro($current) {
drupal_set_title(t("Welcome to the Aegir hosting system."));
$form['introduction']['#value'] = t("<p>I am a configuration wizard designed to help you through configuring the Aegir provisioning system.</p>\n <p>Once properly configured, this system will help you manage your Drupal sites. \n It will even be able to manage them across multiple versions of Drupal and across multiple servers.</p>\n <p>Before we get started with the configuration, please make sure that your system meets the following requirements:</p>");
$form['drupal'] = hostmaster_requirement_help('basic_drupal');
$form['unix'] = hostmaster_requirement_help('basic_unix');
$form['server'] = hostmaster_requirement_help('basic_server');
return hostmaster_form($form, $current);
}
function hostmaster_task_webserver() {
drupal_set_title(st("Configure your web server"));
$form = node_form($form_state, node_load(HOSTING_OWN_WEB_SERVER));
_hostmaster_clean_node_form($form);
$own_link = _hosting_node_link(HOSTING_OWN_WEB_SERVER);
$form['title']['#type'] = 'value';
$form['ip_address']['#type'] = 'value';
$form['backup_path']['#type'] = 'value';
$form['config_path']['#type'] = 'value';
$form['drush_path']['#type'] = 'value';
$form['drush_path']['#required'] = FALSE;
$form['user_help'] = hostmaster_requirement_help('user', array(
'#weight' => 0,
'#summary' => HOSTING_HELP_ENABLED,
'#configuration' => HOSTING_HELP_COLLAPSED,
));
$form['script_user']['#weight'] = 1;
$form['group_help'] = hostmaster_requirement_help('group', array(
'#weight' => 10,
'#summary' => HOSTING_HELP_ENABLED,
'#configuration' => HOSTING_HELP_COLLAPSED,
));
$form['web_group']['#weight'] = 11;
$form['restart_cmd_help'] = hostmaster_requirement_help('visudo', array(
'#weight' => 19,
'#summary' => HOSTING_HELP_ENABLED,
'#configuration' => HOSTING_HELP_COLLAPSED,
));
$form['restart_cmd']['#weight'] = 20;
return hostmaster_form($form);
}
function hostmaster_task_filesystem() {
drupal_set_title(st("Configure where to store your data"));
$form = node_form($form_state, node_load(HOSTING_OWN_WEB_SERVER));
_hostmaster_clean_node_form($form);
$own_link = _hosting_node_link(HOSTING_OWN_WEB_SERVER);
$form['script_user']['#type'] = 'value';
$form['web_group']['#type'] = 'value';
$form['title']['#type'] = 'value';
$form['ip_address']['#type'] = 'value';
$form['restart_cmd']['#type'] = 'value';
$form['drush_path_help'] = hostmaster_requirement_help('drush_path', array(
'#weight' => 4,
'#summary' => HOSTING_HELP_ENABLED,
'#configuration' => HOSTING_HELP_DISABLED,
));
$form['drush_path']['#weight'] = 5;
$form['config_path_help'] = hostmaster_requirement_help('config_path', array(
'#weight' => 9,
'#summary' => HOSTING_HELP_ENABLED,
'#configuration' => HOSTING_HELP_COLLAPSED,
));
$form['config_path']['#weight'] = 10;
$form['backup_path_help'] = hostmaster_requirement_help('backup_path', array(
'#weight' => 14,
'#summary' => HOSTING_HELP_ENABLED,
'#configuration' => HOSTING_HELP_COLLAPSED,
));
$form['backup_path']['#weight'] = 15;
$form['httpd_conf'] = hostmaster_requirement_help('httpd_conf', array(
'#weight' => 20,
'#summary' => HOSTING_HELP_ENABLED,
'#configuration' => HOSTING_HELP_ENABLED,
));
return hostmaster_form($form);
}
function hostmaster_task_dbserver() {
drupal_set_title(st('Configure your database server'));
$form = node_form($form_state, node_load(HOSTING_OWN_DB_SERVER));
_hostmaster_clean_node_form($form);
$own_link = _hosting_node_link(HOSTING_OWN_DB_SERVER);
$form['introduction']['#weight'] = -9;
$form['introduction']['#value'] = t('<p>You need at least one fully functional database server to be able to manage sites.
Luckily, if you can read this, you are already most of the way there. <strong>If the user you specified when first configuring the Drupal can create databases, you probably do not need to change anything here.</strong></p>
<p>This configuration form is actually the !edit_page for the !own_server database server node.
It has however been heavily annotated and slightly simplified for this installation wizard. And while
the wizard can be run multiple times, it won\'t be able to edit any database servers other than the database
this site is running on.</p>', array(
'!own_server' => $own_link,
'!edit_page' => l(t("edit page"), 'node/' . HOSTING_OWN_DB_SERVER . '/edit'),
));
$form['title']['#type'] = 'value';
$form['db_details'] = array(
'#type' => 'fieldset',
'#collapsed' => false,
'#title' => t('Database account details'),
);
$form['db_details']['help'] = array(
'#type' => 'requirement_help',
'#requirement' => 'mysql_user',
'#configuration' => HOSTING_HELP_COLLAPSED,
'#summary' => HOSTING_HELP_COLLAPSED,
);
$form['db_details']['db_user'] = $form['db_user'];
unset($form['db_user']);
$form['db_details']['db_passwd'] = $form['db_passwd'];
unset($form['db_passwd']);
return hostmaster_form($form);
}
function hostmaster_task_features() {
drupal_set_title(st('Enable hosting features'));
$form = drupal_retrieve_form('hosting_features_form', $form_state);
unset($form['buttons']);
return hostmaster_form($form);
}
function hostmaster_task_features_submit($form, &$form_state) {
hosting_features_form_submit($form_state['values']['form_id'], $values);
}
function hostmaster_task_init() {
drupal_set_title(st('Initialize the hosting system'));
$form = array();
$form['intro']['#value'] = t('<p>The hosting framework provides the user interface used to administer your sites.
All components of the managed sites from the database and web servers, to the packages installed
on them, to the sites themselves are represented by the hosting framework as nodes.
This step is going to ensure that it is correctly initialized.</p>');
$options = array(
'#configuration' => HOSTING_HELP_COLLAPSIBLE,
);
if (!variable_get('hosting_dispatch_enabled', FALSE)) {
$options['#status'] = HOSTING_STATUS_WARNING;
$options['#message'] = t('Please follow the configuration help below to initialize the system.');
}
elseif (!variable_get('hosting_dispatch_last_run', false)) {
$options['#status'] = HOSTING_STATUS_ERROR;
$options['#message'] = t('The dispatch process has not been run. Please follow the instructions below.');
}
else {
$options['#status'] = HOSTING_STATUS_SUCCESS;
$options['#message'] = t('The dispatch process has been succesfully executed');
}
$form['cron'] = hostmaster_requirement_help('hosting_setup', $options);
return hostmaster_form($form);
}
function hostmaster_task_init_validate($form, &$form_state) {
if (!variable_get('hosting_dispatch_last_run', false)) {
}
}
function hostmaster_task_verify() {
drupal_set_title(st('Verify your configuration'));
$form = array();
$node = hosting_get_most_recent_task(HOSTING_OWN_PLATFORM, 'verify');
$form['provision'] = array(
'#type' => 'requirement_help',
'#requirement' => 'platform',
);
if ($node->task_status == HOSTING_TASK_SUCCESS) {
$form['provision']['#status'] = HOSTING_STATUS_SUCCESS;
$form['provision']['#message'] = t('Your platform has been succesfully configured. You can now create sites.');
$form['import']['#value'] = t('On the next page we will import any existing sites on this platform.');
}
else {
$form['provision']['#status'] = HOSTING_STATUS_ERROR;
$form['provision']['#message'] = t('One of more errors has occurred during platform verification.');
$form['retry_id'] = array(
'#type' => 'hidden',
'#value' => $node->nid,
);
$form['log_tip']['#value'] = t('Underneath is the log output and status of your verification task.
Check your settings on the previous pages of the wizard, and follow the applicable examples from the configuration
tips.');
$view = hosting_task_view($node);
$form['task_status'] = $view->content['status'];
$form['task_status']['#title'] = t('Errors');
$form['last_attempt'] = array(
'#type' => 'item',
'#title' => t('Last attempt'),
'#value' => hosting_format_interval($node->changed),
);
$form['log'] = $view->content['hosting_log'];
$next = t('Check again');
}
return hostmaster_form($form, $next);
}
function hostmaster_task_verify_validate($form, &$form_state) {
$node = hosting_get_most_recent_task(HOSTING_OWN_PLATFORM, 'verify');
if (!($node->task_status == HOSTING_TASK_SUCCESS)) {
}
}
function hostmaster_task_import() {
drupal_set_title(st('Import your existing sites'));
$form = array();
$sites = hosting_get_sites_by_status(HOSTING_OWN_PLATFORM, HOSTING_SITE_IMPORTED);
if ($list = hosting_site_list('platform', HOSTING_OWN_PLATFORM)) {
$form['intro']['#value'] = t('<p>Below is a list of sites which were imported into the Hosting framework. Each of these pre-existing sites have had an import task created for them, and will be imported by the task queue.</p>');
$form['list']['#value'] = $list;
}
else {
$form['intro']['#value'] = t('<p>Hosting has not found any sites to import.</p>') . t('<p>In the future, any additional platforms you create will also automatically have existing sites imported, and at any time you can request an verify task on any existing platform to find and import any sites that may have been added manually.</p>');
}
return hostmaster_form($form);
}