<?php /**************************************************************************\ * phpGroupWare * * http://www.phpgroupware.org * * -------------------------------------------- * * This program is free software; you can redistribute it and/or modify it * * under the terms of the GNU General Public License as published by the * * Free Software Foundation; either version 2 of the License, or (at your * * option) any later version. * \**************************************************************************/ /* $Id$ */ // Idea: This is so I don't forget. When they are preforming a new install, after config, // forward them right to index.php. Create a session for them and have a nice little intro // page explaining what to do from there (ie, create there own account) $DEBUG = False; $phpgw_info['flags'] = array( 'noheader' => True, 'nonavbar' => True, 'currentapp' => 'home', 'noapi' => True ); include('./inc/functions.inc.php'); $tpl_root = $phpgw_setup->setup_tpl_dir('setup'); $setup_tpl = CreateObject('phpgwapi.Template',$tpl_root); $setup_tpl->set_file(array( 'T_head' => 'head.tpl', 'T_footer' => 'footer.tpl', 'T_alert_msg' => 'msg_alert_msg.tpl', 'T_login_main' => 'login_main.tpl', 'T_login_stage_header' => 'login_stage_header.tpl', 'T_setup_main' => 'setup_main.tpl', 'T_setup_db_blocks' => 'setup_db_blocks.tpl' )); $setup_tpl->set_block('T_login_stage_header','B_multi_domain','V_multi_domain'); $setup_tpl->set_block('T_login_stage_header','B_single_domain','V_single_domain'); $setup_tpl->set_block('T_setup_db_blocks','B_db_stage_1','V_db_stage_1'); $setup_tpl->set_block('T_setup_db_blocks','B_db_stage_2','V_db_stage_2'); $setup_tpl->set_block('T_setup_db_blocks','B_db_stage_3','V_db_stage_3'); $setup_tpl->set_block('T_setup_db_blocks','B_db_stage_4','V_db_stage_4'); $setup_tpl->set_block('T_setup_db_blocks','B_db_stage_5_pre','V_db_stage_5_pre'); $setup_tpl->set_block('T_setup_db_blocks','B_db_stage_5_post','V_db_stage_5_post'); $setup_tpl->set_block('T_setup_db_blocks','B_db_stage_10','V_db_stage_10'); $setup_tpl->set_block('T_setup_db_blocks','B_db_stage_default','V_db_stage_default'); // Check header and authentication $phpgw_info['setup']['stage']['header'] = $phpgw_setup->check_header(); if ($phpgw_info['setup']['stage']['header'] != '10') { Header('Location: manageheader.php'); exit; } elseif (!$phpgw_setup->auth('Config')) { $phpgw_setup->show_header(lang('Please login'),True); $phpgw_setup->login_form(); $phpgw_setup->show_footer(); exit; } // Database actions $phpgw_setup->loaddb(); $setup_info = $phpgw_setup->get_versions(); $phpgw_info['setup']['stage']['db'] = $phpgw_setup->check_db(); if ($phpgw_info['setup']['stage']['db'] != 1) { $setup_info = $phpgw_setup->get_versions(); $setup_info = $phpgw_setup->get_db_versions($setup_info); $phpgw_info['setup']['stage']['db'] = $phpgw_setup->check_db(); } if ($DEBUG) { echo 'Stage: ' . $phpgw_info['setup']['stage']['db']; } // begin DEBUG code //$phpgw_info['setup']['stage']['db'] = 0; //$action = 'Upgrade'; // end DEBUG code switch($action) { case 'Create Database': $subtitle = lang('Create Database'); $submsg = lang('At your request, this script is going to attempt to create the database and assign the db user rights to it'); $subaction = 'created'; $phpgw_info['setup']['currentver']['phpgwapi'] = 'dbcreate'; $phpgw_info['setup']['stage']['db'] = 5; break; case 'Uninstall all applications': $subtitle = lang('Deleting Tables'); $submsg = lang('At your request, this script is going to take the evil action of uninstalling all your apps, which delete your existing tables and data') . '.'; $subaction = 'uninstalled'; $phpgw_info['setup']['currentver']['phpgwapi'] = 'drop'; $phpgw_info['setup']['stage']['db'] = 5; break; case 'Upgrade': $subtitle = lang('Upgrading Tables'); $submsg = lang('At your request, this script is going to attempt to upgrade your old applications to the current versions').'.'; $subaction = 'upgraded'; $phpgw_info['setup']['currentver']['phpgwapi'] = 'oldversion'; $phpgw_info['setup']['stage']['db'] = 5; break; case 'Install': $subtitle = lang('Creating Tables'); $submsg = lang('At your request, this script is going to attempt to install all the applications for you').'.'; $subaction = 'installed'; $phpgw_info['setup']['currentver']['phpgwapi'] = 'new'; $phpgw_info['setup']['stage']['db'] = 5; break; } $setup_tpl->set_var('subtitle',$subtitle); $setup_tpl->set_var('submsg',$submsg); $setup_tpl->set_var('subaction',lang($subaction)); // Old PHP if (phpversion() < '3.0.16') { $phpgw_setup->show_header($phpgw_info['setup']['header_msg'],True); $phpgw_setup->show_alert_msg('Error', lang('You appear to be running an old version of PHP <br>It its recommend that you upgrade to a new version. <br>Older version of PHP might not run phpGroupWare correctly, if at all. <br><br>Please upgrade to at least version 3.0.16')); $phpgw_setup->show_footer(); exit; } // BEGIN setup page //$phpgw_setup->app_status(); $phpgw_info['server']['app_images'] = 'templates/default/images'; $incomplete = $phpgw_info['server']['app_images'] . '/incomplete.gif'; $completed = $phpgw_info['server']['app_images'] . '/completed.gif'; $setup_tpl->set_var('img_incomplete',$incomplete); $setup_tpl->set_var('img_completed',$completed); $setup_tpl->set_var('db_step_text',lang('Step 1 - Simple Application Management')); switch($phpgw_info['setup']['stage']['db']) { case 1: $setup_tpl->set_var('dbnotexist',lang('Your Database is not working!')); $setup_tpl->set_var('makesure',lang('makesure')); $setup_tpl->set_var('notcomplete',lang('not complete')); $setup_tpl->set_var('oncesetup',lang('Once the database is setup correctly')); $setup_tpl->set_var('createdb',lang('Or we can attempt to create the database for you:')); switch ($phpgw_domain[$ConfigDomain]['db_type']) { case 'mysql': $setup_tpl->set_var('instr',lang('mysqlinstr')); break; case 'pgsql': $setup_tpl->set_var('instr',lang('pgsqlinstr')); break; } $setup_tpl->parse('V_db_stage_1','B_db_stage_1'); $db_filled_block = $setup_tpl->get_var('V_db_stage_1'); $setup_tpl->set_var('V_db_filled_block',$db_filled_block); break; case 2: $setup_tpl->set_var('prebeta',lang('You appear to be running a pre-beta version of phpGroupWare.<br>These versions are no longer supported, and there is no upgrade path for them in setup.<br> You may wish to first upgrade to 0.9.10 (the last version to support pre-beta upgrades) <br>and then upgrade from there with the current version.')); $setup_tpl->set_var('notcomplete',lang('not complete')); $setup_tpl->parse('V_db_stage_2','B_db_stage_2'); $db_filled_block = $setup_tpl->get_var('V_db_stage_2'); $setup_tpl->set_var('V_db_filled_block',$db_filled_block); break; case 3: $setup_tpl->set_var('dbexists',lang('Your database is working, but you dont have any applications installed')); $setup_tpl->set_var('install',lang('Install')); $setup_tpl->set_var('proceed',lang('We can proceed')); $setup_tpl->set_var('allapps',lang('all applications')); $setup_tpl->parse('V_db_stage_3','B_db_stage_3'); $db_filled_block = $setup_tpl->get_var('V_db_stage_3'); $setup_tpl->set_var('V_db_filled_block',$db_filled_block); break; case 4: $setup_tpl->set_var('oldver',lang('You appear to be running version x of phpGroupWare',$setup_info['phpgwapi']['currentver'])); $setup_tpl->set_var('automatic',lang('We will automatically update your tables/records to x',$setup_info['phpgwapi']['version'])); $setup_tpl->set_var('backupwarn',lang('backupwarn')); $setup_tpl->set_var('upgrade',lang('Upgrade')); $setup_tpl->set_var('uninstall_all_applications',lang('Uninstall all applications')); $setup_tpl->set_var('dont_touch_my_data',lang('Dont touch my data')); $setup_tpl->set_var('dropwarn',lang('Your tables may be altered and you may lose data')); $setup_tpl->parse('V_db_stage_4','B_db_stage_4'); $db_filled_block = $setup_tpl->get_var('V_db_stage_4'); $setup_tpl->set_var('V_db_filled_block',$db_filled_block); break; case 5: $setup_tpl->set_var('status',lang('Status')); $setup_tpl->set_var('notcomplete',lang('not complete')); $setup_tpl->set_var('tblchange',lang('Table Change Messages')); $setup_tpl->parse('V_db_stage_5_pre','B_db_stage_5_pre'); $db_filled_block = $setup_tpl->get_var('V_db_stage_5_pre'); // FIXME : CAPTURE THIS OUTPUT $phpgw_setup->db->Halt_On_Error = 'report'; switch ($phpgw_info['setup']['currentver']['phpgwapi']) { case 'dbcreate': $phpgw_setup->db->create_database($db_root, $db_pass); break; case 'drop': $setup_info = $phpgw_setup->get_versions($setup_info); $setup_info = $phpgw_setup->process_droptables($setup_info); break; case 'new': $setup_info = $phpgw_setup->process_pass($setup_info,'new',$DEBUG); $included = True; include('lang.php'); $phpgw_info['setup']['currentver']['phpgwapi'] = 'oldversion'; break; case 'oldversion': $setup_info = $phpgw_setup->process_pass($setup_info,'upgrade',$DEBUG); $phpgw_info['setup']['currentver']['phpgwapi'] = 'oldversion'; break; } $phpgw_setup->db->Halt_On_Error = 'no'; $setup_tpl->set_var('tableshave',lang('If you did not receive any errors, your applications have been')); $setup_tpl->set_var('re-check_my_installation',lang('Re-Check My Installation')); $setup_tpl->parse('V_db_stage_5_post','B_db_stage_5_post'); $db_filled_block = $db_filled_block . $setup_tpl->get_var('V_db_stage_5_post'); $setup_tpl->set_var('V_db_filled_block',$db_filled_block); break; case 10: $setup_tpl->set_var('tablescurrent',lang('Your applications are current')); $setup_tpl->set_var('uninstall_all_applications',lang('Uninstall all applications')); $setup_tpl->set_var('insanity',lang('Insanity')); $setup_tpl->set_var('dropwarn',lang('Your tables will be dropped and you will lose data')); $setup_tpl->set_var('deletetables',lang('Uninstall all applications')); $setup_tpl->parse('V_db_stage_10','B_db_stage_10'); $db_filled_block = $setup_tpl->get_var('V_db_stage_10'); $setup_tpl->set_var('V_db_filled_block',$db_filled_block); break; default: $setup_tpl->set_var('dbnotexist',lang('Your database does not exist')); $setup_tpl->parse('V_db_stage_default','B_db_stage_default'); $db_filled_block = $setup_tpl->get_var('V_db_stage_default'); $setup_tpl->set_var('V_db_filled_block',$db_filled_block); break; } // Config Section $setup_tpl->set_var('config_step_text',lang('Step 2 - Configuration')); $phpgw_info['setup']['stage']['config'] = $phpgw_setup->check_config(); // begin DEBUG code //$phpgw_info['setup']['stage']['config'] = 10; // end DEBUG code switch($phpgw_info['setup']['stage']['config']) { case 1: $setup_tpl->set_var('config_status_img',$incomplete); $setup_tpl->set_var('config_status_alt',lang('not completed')); $btn_config_now = $phpgw_setup->make_frm_btn_simple( lang('Please configure phpGroupWare for your environment'), 'POST','config.php', 'submit',lang('Configure Now'), ''); $setup_tpl->set_var('config_table_data',$btn_config_now); $setup_tpl->set_var('ldap_table_data',' '); break; case 10: $setup_tpl->set_var('config_status_img',$completed); $setup_tpl->set_var('config_status_alt',lang('completed')); $btn_edit_config = $phpgw_setup->make_frm_btn_simple( lang('Configuration completed'), 'POST','config.php', 'submit',lang('Edit Current Configuration'), '' ); $phpgw_setup->db->query("select config_value FROM phpgw_config WHERE config_name='auth_type'"); $phpgw_setup->db->next_record(); if ($phpgw_setup->db->f(0) == 'ldap') { $phpgw_setup->db->query("select config_value FROM phpgw_config WHERE config_name='ldap_host'"); $phpgw_setup->db->next_record(); if ($phpgw_setup->db->f(0) != '') { $btn_config_ldap = $phpgw_setup->make_frm_btn_simple( lang('LDAP account import/export'), 'POST','ldap.php', 'submit',lang('Configure Now'), ''); $link_make_accts = ' '; } else { $btn_config_ldap = ''; $link_make_accts = $phpgw_setup->make_href_link_simple( '<br>', 'setup_demo.php', lang('Click Here'), lang('to setup 1 admin account and 3 demo accounts.<br><b>This will delete all existing accounts</b>') ); } } else { $btn_config_ldap = ''; $link_make_accts = $phpgw_setup->make_href_link_simple( '<br>', 'setup_demo.php', lang('Click Here'), lang('to setup 1 admin account and 3 demo accounts.<br><b>This will delete all existing accounts</b>') ); } $config_td = "$btn_edit_config" ."$link_make_accts"; $setup_tpl->set_var('config_table_data',$config_td); $setup_tpl->set_var('ldap_table_data',$btn_config_ldap); break; default: $setup_tpl->set_var('config_status_img',$incomplete); $setup_tpl->set_var('config_status_alt',lang('not completed')); $setup_tpl->set_var('config_table_data',lang('Not ready for this stage yet')); $setup_tpl->set_var('ldap_table_data',' '); break; } // Lang Section $setup_tpl->set_var('lang_step_text',lang('Step 3 - Language Management')); $phpgw_info['setup']['stage']['lang'] = $phpgw_setup->check_lang(); // begin DEBUG code //$phpgw_info['setup']['stage']['lang'] = 0; // end DEBUG code switch($phpgw_info['setup']['stage']['lang']) { case 1: $setup_tpl->set_var('lang_status_img',$incomplete); $setup_tpl->set_var('lang_status_alt','not completed'); $btn_install_lang = $phpgw_setup->make_frm_btn_simple( lang('You do not have any languages installed. Please install one now <br>'), 'POST','lang.php', 'submit',lang('Install Language'), ''); $setup_tpl->set_var('lang_table_data',$btn_install_lang); break; case 10: $langs_list = ''; reset ($phpgw_info['setup']['installed_langs']); while (list ($key, $value) = each ($phpgw_info['setup']['installed_langs'])) { if (!$notfirst) { $langs_list = $value; } else { $langs_list = $langs_list .', ' .$value; } $notfirst = True; } $setup_tpl->set_var('lang_status_img',$completed); $setup_tpl->set_var('lang_status_alt','completed'); $btn_manage_lang = $phpgw_setup->make_frm_btn_simple( lang('This stage is completed<br>'). lang('Currently installed languages: x <br>',$langs_list), 'POST','lang.php', 'submit',lang('Manage Languages'), ''); $setup_tpl->set_var('lang_table_data',$btn_manage_lang); break; default: $setup_tpl->set_var('lang_status_img',$incomplete); $setup_tpl->set_var('lang_status_alt',lang('not completed')); $setup_tpl->set_var('lang_table_data',lang('Not ready for this stage yet')); break; } $setup_tpl->set_var('apps_step_text',lang('Step 4 - Advanced Application Management')); // $phpgw_info['setup']['stage']['apps'] = $phpgw_setup->check_apps(); switch($phpgw_info['setup']['stage']['db']) { case 1: case 10: $setup_tpl->set_var('apps_status_img',$completed); $setup_tpl->set_var('apps_status_alt',lang('completed')); $btn_manage_apps = $phpgw_setup->make_frm_btn_simple( lang('This stage is completed<br>'), '','applications.php', 'submit',lang('Manage Applications'), ''); $setup_tpl->set_var('apps_table_data',$btn_manage_apps); break; default: $setup_tpl->set_var('apps_status_img',$incomplete); $setup_tpl->set_var('apps_status_alt',lang('not completed')); $setup_tpl->set_var('apps_table_data',lang('Not ready for this stage yet')); break; } $phpgw_setup->show_header($phpgw_info['setup']['header_msg'],False,"config",$ConfigDomain . '(' . $phpgw_domain[$ConfigDomain]["db_type"] . ')'); $setup_tpl->pparse('out','T_setup_main'); $phpgw_setup->show_footer(); ?>