t("Introduction"), 'heading' => t("Welcome to your new hosting system"), 'type' => MENU_DEFAULT_LOCAL_TASK); if ($user->uid == 1) { $steps['account'] = array('title' => t("User account"), 'heading' => t("Configure your user account"), 'message' => t('An administrator account has been registered for you. Please change your password to continue with the configuration process.')); } $steps['provision'] = array('title' => t("Provisioning"), 'heading' => t("Configure your provisioning framework"), 'message' => t('To be able to create sites using Hostmaster, we need some information about your server.'), ); $steps['provision/paths'] = array('title' => t("Paths"), 'heading' => t("Configure where to store provisioning data"), 'type' => MENU_DEFAULT_LOCAL_TASK, 'message' => t('To be able to create sites using Hostmaster, provisioning needs access to the file system.'), ); $steps['provision/web'] = array('title' => t("Web server"), 'heading' => t("Configure your web server"), 'message' => t("You will need somewhere to server your files from.")); $steps['provision/db'] = array('title' => t('Database server'), 'heading' => t('Configure your database server'), 'message' => t("You need to be able to create databases and database users.")); $steps['hosting'] = array( 'title' => t('Hosting'), 'heading' => t('Set up your hosting framework'), 'message' => t("Finalize your setup by ensuring communication between the front end and back end.")); $steps['hosting/init'] = array('title' => t('Initialize'), 'heading' => t('Initialize the hosting system'), 'type' => MENU_DEFAULT_LOCAL_TASK, 'message' => t("Finalize your setup by ensuring communication between the front end and back end.")); $steps['hosting/verify'] = array('title' => t('Verify platform'), 'heading' => t('Verify platform settings'), 'message' => t("Verify that the provisioning system is correctly set up, and new sites can be hosted on it.")); $steps['hosting/import'] = array('title' => t('Import sites'), 'heading' => t('Import your existing sites'), 'message' => t("Details of any existing sites found and imported into Hostmaster.")); $steps['complete'] = array('title' => t("Complete"), 'heading' => t('Complete your installation'), 'message' => t("Congratulations, you have finished installation of hostmaster. If you have any questions, go to groups.drupal.org/hm2.")); // @todo: figure out what would go on a features page. // $steps['features'] = array('title' => t("Features"), 'message' => t(".")); } if ($step && $steps[$step]) { return $steps[$step]; } return $steps; } /** * Wizard menu items. * * Branches off from hosting using the referenced &$items parameter. * I'm not entirely sure the wizard is big enough to need it's own * module yet. */ function hosting_wizard_menu($may_cache, &$items) { $items[] = array( 'path' => 'hosting/wizard', 'title' => t('Hosting wizard'), 'description' => t('Configuration wizard'), 'callback' => 'drupal_get_form', 'callback arguments' => array('hosting_wizard_intro'), 'type' => MENU_NORMAL_ITEM, 'access' => user_access('access hosting wizard'), ); if (!$may_cache && (sprintf("%s/%s", arg(0), arg(1)) == 'hosting/wizard')) { hosting_wizard_dummy_theme_block(); $steps = hosting_wizard_steps(); $x = 1; foreach ($steps as $key => $step) { $form_id = array('hosting_wizard_' . str_replace("/", "_", $key)); $wizard_items[$key] = array( 'path' => 'hosting/wizard/' . $key, 'title' => $step['title'], 'description' => $step['message'], 'callback' => 'drupal_get_form', 'callback arguments' => $form_id, 'type' => ($step['type']) ? $step['type'] : MENU_LOCAL_TASK, 'access' => user_access('access hosting wizard'), 'weight' => $x++ ); if ($step['type'] == MENU_DEFAULT_LOCAL_TASK) { $parts = explode("/", $key); if (sizeof($parts) >= 2) { $parent = array_shift($parts); $wizard_items[$parent]['callback arguments'] = $form_id; } } } $items = array_merge($items, $wizard_items); } } /** * Introduction form. * * @todo: add an option for minimal configuration, which just hits the required pages? */ function hosting_wizard_intro() { $form['introduction']['#value'] = t("
I am a configuration wizard designed to help you through configuring the Hostmaster provisioning system.
Once properly configured, this system will help you manage your Drupal sites. It will even be able to manage them across multiple versions of Drupal, and even across multiple servers.
Before we get started with the configuration, please make sure that you meet the following requirements.
"); $form['drupal'] = array('#type' => 'requirement_help', '#requirement' => 'basic_drupal'); $form['unix'] = array('#type' => 'requirement_help', '#requirement' => 'basic_unix'); $form['server'] = array('#type' => 'requirement_help', '#requirement' => 'basic_server'); return hosting_wizard_form('intro', $form); } /** * Account form. * * The fields were more easily copied from user_edit than trying to import it and get rid of the cruft */ function hosting_wizard_account() { global $user; $form = array(); $form['introduction']['#value'] = t("As part of the installation, we have already created an administrator account on this system for you. One of hostmaster's project goals is to configure itself to the best of it's abilities, so that you don't have to. Unfortunately there will be some information that we can't guess.
So to ensure that you are actually able to log back in and use the system, we would appreciate it if you could please change your password to something we didn't generate randomly.
"); $form['account']['name'] = array('#type' => 'textfield', '#title' => t('Username'), '#default_value' => $user->name, '#maxlength' => USERNAME_MAX_LENGTH, '#size' => 30, '#description' => t('Your preferred username; punctuation is not allowed except for periods, hyphens, and underscores.'), '#required' => TRUE, ); $form['account']['#prefix'] = "This information will also be used by Hostmaster to create the primary client.
The Provisioning framework provides the back end of the system. It does all the nitty gritty server level things, so that you don't have to.
Provision is very careful about security, and as such has been designed to run under the absolute minimum permissions it needs to accomplish it's job. For the security of your data, Hostmaster will not run unless it is running in this optimally secure configuration.
Because of these stringently enforced security requirements, it takes a bit longer to set up than would be ideal, however we feel it is a fair tradeoff.
"); t("We have tried to collect as much data about our current environment as we can, and provide these as defaults for server configuration. For a lot of cases this works adequately, however we will perform checks on every item, to ensure that it is in working order.
In some cases, such as file permissions, we are incapable of testing items until the hosting front end has been succesfully configured. If we do find a problem, you will be directed back to this section to modify your configuration.
"); return hosting_wizard_form('provision', $form); } /** * Configures web_server_node_form paths. * * @todo pull changes in the form upstream */ function hosting_wizard_provision_paths() { $form = drupal_retrieve_form('web_server_node_form', node_load(HOSTING_OWN_WEB_SERVER)); _hosting_wizard_cleanse_node_form($form); $own_link = _hosting_node_link(HOSTING_OWN_WEB_SERVER); $form['script_user']['#type'] = 'value'; $form['web_group']['#type'] = 'value'; /* $form['introduction']['#weight'] = -45; $form['introduction']['#value'] = t('This form is actually the !edit_page for the !own_server web server node, which has been heavily annotated and a number of fields removed for simplicity.
It is recommended to use the !own_server page to manage this information in the future.
', array('!own_server' => $own_link, '!edit_page' => l(t("edit page"), 'node/' . HOSTING_OWN_WEB_SERVER . '/edit' )));*/ $form['title']['#type'] = 'value'; $form['ip_address']['#type'] = 'value'; $form['restart_cmd']['#type'] = 'value'; $form['config_path_help'] = array('#type' => 'requirement_help', '#requirement' => 'config_path', '#weight' => 9, '#summary' => PROVISION_HELP_ENABLED, '#configuration' => PROVISION_HELP_COLLAPSED); $form['config_path']['#weight'] = 10; $form['backup_path_help'] = array('#type' => 'requirement_help', '#requirement' => 'backup_path', '#weight' => 14, '#summary' => PROVISION_HELP_ENABLED, '#configuration' => PROVISION_HELP_COLLAPSED); $form['backup_path']['#weight'] = 15; // remove all the things i don't want from the node form. return hosting_wizard_form('provision/paths', $form); } /** * Save the changes to the default web server node */ function hosting_wizard_provision_paths_submit($form_id, $values) { $node = node_load(HOSTING_OWN_WEB_SERVER); $node->config_path = $values['config_path']; $node->restart_cmd = $values['restart_cmd']; $node->backup_path = $values['backup_path']; node_save($node); } /** * Configures web_server_node_form minus almost all the forms. * * @todo pull changes in the form upstream */ function hosting_wizard_provision_web() { $form = drupal_retrieve_form('web_server_node_form', node_load(HOSTING_OWN_WEB_SERVER)); _hosting_wizard_cleanse_node_form($form); $own_link = _hosting_node_link(HOSTING_OWN_WEB_SERVER); /* $form['introduction']['#weight'] = -45; $form['introduction']['#value'] = t('You need to have one fully working web server configured to be able to create sites. The web server can run into problems with file permissions quite easily, and these are unfortunately undetectable to us until the hosting back end is configured.
Like the database configuration, this form is actually the !edit_page for the !own_server database server node, which has been heavily annotated and a number of fields removed for simplicity.
It is recommended to use the !own_server page to manage this server during daily use.
', array('!own_server' => $own_link, '!edit_page' => l(t("edit page"), 'node/' . HOSTING_OWN_WEB_SERVER . '/edit' ))); */ $form['httpd_conf'] = array( '#type' => 'requirement_help', '#requirement' => 'httpd_conf', '#summary' => PROVISION_HELP_ENABLED, '#configuration' => PROVISION_HELP_ENABLED, /* '#status' => PROVISION_STATUS_WARNING, '#message' => t('This needs to be configured for Apache to pick up new sites. We can not confirm that this is working correctly yet, so if your sites are installed but do not work from a web browser, please confirm that you have completed this step'),*/ '#weight' => -1,); $form['title']['#type'] = 'value'; $form['ip_address']['#type'] = 'value'; $form['backup_path']['#type'] = 'value'; $form['config_path']['#type'] = 'value'; $form['acc_details'] = array( '#type' => 'fieldset', '#collapsed' => false, '#title' => t('System account details'), '#weight' => 0 ); $form['acc_details']['acc_help'] = array('#type' => 'requirement_help', '#requirement' => 'group', '#weight' => -20, '#summary' => PROVISION_HELP_ENABLED, '#configuration' => PROVISION_HELP_COLLAPSED); $form['acc_details']['script_user'] = $form['script_user']; unset($form['script_user']); $form['acc_details']['web_group'] = $form['web_group']; unset($form['web_group']); $form['restart_cmd_help'] = array('#type' => 'requirement_help', '#requirement' => 'visudo', '#weight' => 19, '#summary' => PROVISION_HELP_ENABLED, '#configuration' => PROVISION_HELP_COLLAPSED); $form['restart_cmd']['#weight'] = 20; // remove all the things i don't want from the node form. return hosting_wizard_form('provision/web', $form); } /** * Save the changes to the default web server node */ function hosting_wizard_provision_web_submit($form_id, $values) { $node = node_load(HOSTING_OWN_WEB_SERVER); $node->title = $values['title']; $node->ip_address = $values['ip_address']; $node->script_user = $values['script_user']; $node->web_group = $values['web_group']; $node->restart_cmd = $values['restart_cmd']; node_save($node); } /** * Database configuration form * * Inherits the db_server_node_form, and shifts some things around. * Perhaps those changes need to go in upstream? */ function hosting_wizard_provision_db() { $form = drupal_retrieve_form('db_server_node_form', node_load(HOSTING_OWN_DB_SERVER)); _hosting_wizard_cleanse_node_form($form); $own_link = _hosting_node_link(HOSTING_OWN_DB_SERVER); $form['introduction']['#weight'] = -9; $form['introduction']['#value'] = t('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. If the user you specified when first configuring the Drupal can create databases, you probably do not need to change anything here.
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.
', array('!own_server' => $own_link, '!edit_page' => l(t("edit page"), 'node/' . HOSTING_OWN_DB_SERVER . '/edit' ))); # $form['host_help']['#weight'] = -8; /** * not going to use this field on this form, but i might need this help text another time $form['title']['#description'] = t('A database server to connect toYou will need the hostname or ip address of the database server you are connecting to. Unless you are using an external database server, or managing multiple database servers, this will just be "localhost". This information is very reliably retrieved from the configuration of the main hosting site. So you should only need to modify this in special cases
'); */ $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' => PROVISION_HELP_COLLAPSED, '#summary' => PROVISION_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 hosting_wizard_form('provision/db', $form); } /** * Save the modified db_server */ function hosting_wizard_provision_db_submit($form_id, $values) { $node = node_load(HOSTING_OWN_DB_SERVER); $node->title = $values['title']; $node->db_user = $values['db_user']; if ($values['db_passwd']) { $node->db_passwd = $values['db_passwd']; } node_save($node); } /** * Form that confirms that cron is running, and that the platform has been successfuly verified * * This page is essentially one huge page of contextual help, to ensure that everything is up and running. */ function hosting_wizard_hosting_init() { // @ TODO: make this coherent, and add error reporting about what went wrong, and how it needs to be fixed. $form = array(); $form['intro']['#value'] = t('The hosting framework provides the user interface used to administrate 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.
'); $form['cron'] = array('#type' => 'requirement_help', '#requirement' => 'hosting_setup', '#configuration' => PROVISION_HELP_COLLAPSIBLE); if (!variable_get('hosting_dispatch_enabled', FALSE)) { $form['cron']['#status'] = PROVISION_STATUS_WARNING; $form['cron']['#message'] = t('Please follow the configuration help below to initialize the system.'); } elseif (!variable_get('hosting_dispatch_last_run', false)) { $form['cron']['#status'] = PROVISION_STATUS_ERROR; $form['cron']['#message'] = t('The dispatch process has not been run. Please follow the instructions below.'); } else { $form['cron']['#status'] = PROVISION_STATUS_SUCCESS; $form['cron']['#message'] = t('The dispatch process has been succesfully executed'); } return hosting_wizard_form('hosting', $form); } function hosting_wizard_hosting_init_validate() { if (!variable_get('hosting_dispatch_last_run', false)) { drupal_goto('hosting/wizard/hosting'); # form_set_error('cron', t("The hosting setup command has not been run yet")); } } function hosting_wizard_hosting_verify() { $form = array(); $node = hosting_get_most_recent_task(HOSTING_OWN_PLATFORM, 'verify'); $form['provision'] = array('#type' => 'requirement_help', '#requirement' => 'platform'); if ($node->task_status & PROVISION_SUCCESS) { $form['provision']['#status'] = PROVISION_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'] = PROVISION_STATUS_ERROR; $form['provision']['#message'] = t('One of more errors has occurred during platform verification.'); $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. Dispatch will continue attempting to run the verification task until it succeeds, so clicking on the Check again button or just reloading the page will update the information below'); $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 hosting_wizard_form('hosting/verify', $form, $next); } function hosting_wizard_hosting_verify_validate() { $node = hosting_get_most_recent_task(HOSTING_OWN_PLATFORM, 'verify'); if (!($node->task_status & PROVISION_SUCCESS)) { drupal_goto('/hosting/wizard/hosting/verify'); } } function hosting_wizard_hosting_import() { $form = array(); $task = hosting_get_most_recent_task(HOSTING_OWN_PLATFORM, 'import'); $sites = hosting_get_sites_by_status(HOSTING_OWN_PLATFORM, HOSTING_SITE_IMPORTED); if ($task->task_status & PROVISION_SUCCESS) { $form['intro']['#value'] = t('Below is a list of sites which were imported into the Hosting framework. Each of these pre-existing sites is now being managed by Hosting, and has the same capabilities of sites that were created using the framework.
'); $rows = array(); foreach ($sites as $site) { $own = ''; if (($site->title == PROVISION_DOMAIN) && ($site->platform == HOSTING_OWN_PLATFORM)) { $own = '*'; } $rows[] = array( _hosting_node_link($site->nid) . $own, _hosting_node_link($site->platform), hosting_format_interval($site->created)); } $form['sites'] = array('#type' => 'item', '#title' => t('Imported sites'), '#value' => theme('table', array(t('Site'), t('Platform'), t('Imported')), $rows)); $form['own']['#value'] = t('* This is the site node for the Hosting site. This is the site that manages all the other sites, and should be regularly backed up.'); } else { $form['no_sites']['#value'] = t('Provision has not imported any sites yet. You may wait a few moments and reload this page, or click on the button to complete your installation.
'); } return hosting_wizard_form('hosting/import', $form); } /** * The last page. * * Essentially gives a very small summary, and links you to a few interesting things * to do next (configure your site, add your first site etc) * * When clicking on the button you will be forwarded to your site. */ function hosting_wizard_complete() { $form['configure']['#value'] .= t('Configure your website Once logged in, visit the administration section, where you can customize and configure all aspects of your website.
', array('@admin' => url('admin'), '@config' => url('admin/settings'))) ; $form['create_site']['#value'] = t('Create your first hosted site. This system uses special site posts to store information about your sites, so you can simply create a site post to get your first hosted site running.
', array('@create_site' => url('node/add/site'))); return hosting_wizard_form('complete', $form, t('Go to your site')); } /** * Helper functions for wizarding */ /** * Take a node form and get rid of all the crud that we don't * need on a wizard form, in a non destructive manner. */ function _hosting_wizard_cleanse_node_form(&$form) { $form['log']['#type'] = 'value'; $form['author']['name']['#type'] = 'value'; $form['author']['date']['#type'] = 'value'; $form['options']['status']['#type'] = 'value'; $form['options']['promote']['#type'] = 'value'; $form['options']['sticky']['#type'] = 'value'; $form['options']['revision']['#type'] = 'value'; $form['options']['#type'] = 'markup'; $form['author']['#type'] = 'markup'; // get rid of buttons (we replace submit anyway) unset($form['submit']); unset($form['preview']); unset($form['delete']); } /** * Form modifier similar to confirm_form * * Handles some bookkeeping like adding the js and css, * embedded the right classes, and most importantly : adding the wizard_form_submit * to the #submit element. Without this, you would never be forwarded to the next * page. */ function hosting_wizard_form($step, $form, $next = null) { drupal_add_css(drupal_get_path("module", "hosting") . '/hosting.wizard.css'); drupal_add_css(drupal_get_path("module", "hosting") . '/hosting.wizard.js'); // @todo: add a message to exit the wizard. hosting_wizard_set_title($step); $form['#submit']['hosting_wizard_' . str_replace('/', '_', $step) . '_submit'] = array(); $form['#submit']['hosting_wizard_form_submit'] = array(); $form['#prefix'] = '