2001-07-30 17:59:25 +02:00
|
|
|
<?php
|
2008-08-20 08:04:28 +02:00
|
|
|
/**
|
|
|
|
* eGroupWare Setup - System configuration
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @package setup
|
|
|
|
* @author Miles Lott <milos@groupwhere.org>
|
|
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
include('./inc/functions.inc.php');
|
|
|
|
|
|
|
|
/*
|
|
|
|
Authorize the user to use setup app and load the database
|
|
|
|
Does not return unless user is authorized
|
|
|
|
*/
|
|
|
|
if(!$GLOBALS['egw_setup']->auth('Config') || @$_POST['cancel'])
|
|
|
|
{
|
|
|
|
Header('Location: index.php');
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl_root = $GLOBALS['egw_setup']->html->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_config_pre_script' => 'config_pre_script.tpl',
|
|
|
|
'T_config_post_script' => 'config_post_script.tpl'
|
|
|
|
));
|
|
|
|
|
|
|
|
/* Following to ensure windows file paths are saved correctly */
|
2010-07-25 11:08:24 +02:00
|
|
|
if (function_exists('get_magic_quotes_runtime') && get_magic_quotes_runtime())
|
|
|
|
{
|
|
|
|
set_magic_quotes_runtime(0);
|
|
|
|
}
|
2008-08-20 08:04:28 +02:00
|
|
|
$GLOBALS['egw_setup']->loaddb();
|
|
|
|
|
|
|
|
/* Check api version, use correct table */
|
|
|
|
$setup_info = $GLOBALS['egw_setup']->detection->get_db_versions();
|
|
|
|
|
|
|
|
$newsettings = $_POST['newsettings'];
|
|
|
|
|
|
|
|
if(@get_var('submit',Array('POST')) && @$newsettings)
|
|
|
|
{
|
|
|
|
/* Load hook file with functions to validate each config (one/none/all) */
|
|
|
|
$GLOBALS['egw_setup']->hook('config_validate','setup');
|
|
|
|
|
2008-10-21 16:22:27 +02:00
|
|
|
$datetime = CreateObject('phpgwapi.egw_datetime');
|
2008-08-20 08:04:28 +02:00
|
|
|
switch((int)$newsettings['daytime_port'])
|
2001-12-18 03:20:31 +01:00
|
|
|
{
|
2008-08-20 08:04:28 +02:00
|
|
|
case 13:
|
|
|
|
$newsettings['tz_offset'] = $datetime->getntpoffset();
|
|
|
|
break;
|
|
|
|
case 80:
|
|
|
|
$newsettings['tz_offset'] = $datetime->gethttpoffset();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$newsettings['tz_offset'] = $datetime->getbestguess();
|
|
|
|
break;
|
2001-12-18 03:20:31 +01:00
|
|
|
}
|
2008-08-20 08:04:28 +02:00
|
|
|
unset($datetime);
|
2001-07-30 17:59:25 +02:00
|
|
|
|
2008-08-20 08:04:28 +02:00
|
|
|
print_debug('TZ_OFFSET',$newsettings['tz_offset']);
|
2001-11-15 00:17:27 +01:00
|
|
|
|
2008-08-20 08:04:28 +02:00
|
|
|
$GLOBALS['egw_setup']->db->transaction_begin();
|
|
|
|
foreach($newsettings as $setting => $value)
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2008-08-20 08:04:28 +02:00
|
|
|
if($GLOBALS['egw_info']['server']['found_validation_hook'] && @function_exists($setting))
|
2002-08-14 01:39:39 +02:00
|
|
|
{
|
2008-08-20 08:04:28 +02:00
|
|
|
$setting($newsettings);
|
|
|
|
if($GLOBALS['config_error'])
|
|
|
|
{
|
|
|
|
$GLOBALS['error'] .= '<b>'.$GLOBALS['config_error'] ."</b><br />\n";
|
|
|
|
$GLOBALS['config_error'] = '';
|
|
|
|
/* Bail out, stop writing config data */
|
2002-08-14 01:39:39 +02:00
|
|
|
break;
|
2008-08-20 08:04:28 +02:00
|
|
|
}
|
|
|
|
$value = $newsettings[$setting]; // it might be changed by the validation hook
|
2002-08-14 01:39:39 +02:00
|
|
|
}
|
2008-08-20 08:04:28 +02:00
|
|
|
/* Don't erase passwords, since we also do not print them below */
|
|
|
|
if(empty($value) && !(stristr($setting,'passwd') || stristr($setting,'password') || stristr($setting,'root_pw')))
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2008-08-20 08:04:28 +02:00
|
|
|
$GLOBALS['egw_setup']->db->delete($GLOBALS['egw_setup']->config_table,array(
|
|
|
|
'config_name' => $setting,
|
|
|
|
'config_app' => 'phpgwapi',
|
|
|
|
),__LINE__,__FILE__);
|
|
|
|
unset($newsettings[$setting]);
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
2008-08-20 08:04:28 +02:00
|
|
|
elseif($value)
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2008-08-20 08:04:28 +02:00
|
|
|
$GLOBALS['egw_setup']->db->insert($GLOBALS['egw_setup']->config_table,array(
|
|
|
|
'config_value' => $value,
|
|
|
|
),array(
|
|
|
|
'config_name' => $setting,
|
|
|
|
'config_app' => 'phpgwapi',
|
|
|
|
),__LINE__,__FILE__);
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
|
|
|
}
|
2008-08-20 08:04:28 +02:00
|
|
|
if(!$GLOBALS['error'])
|
2001-07-30 17:59:25 +02:00
|
|
|
{
|
2008-08-20 08:04:28 +02:00
|
|
|
$GLOBALS['egw_setup']->db->transaction_commit();
|
2011-09-13 11:25:25 +02:00
|
|
|
// unset cached config, as this is the primary source for configuration now
|
|
|
|
egw_cache::unsetInstance('config', 'configs');
|
2008-08-20 08:04:28 +02:00
|
|
|
|
|
|
|
Header('Location: index.php');
|
|
|
|
exit;
|
2006-03-08 10:41:53 +01:00
|
|
|
}
|
2008-08-20 08:04:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$GLOBALS['egw_setup']->html->show_header(lang('Configuration'),False,'config',$GLOBALS['egw_setup']->ConfigDomain . '(' . $GLOBALS['egw_domain'][$GLOBALS['egw_setup']->ConfigDomain]['db_type'] . ')');
|
|
|
|
|
|
|
|
// if we have an validation error, use the new settings made by the user and not the stored config
|
|
|
|
if($GLOBALS['error'] && is_array($newsettings))
|
|
|
|
{
|
|
|
|
$GLOBALS['current_config'] = $newsettings;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$GLOBALS['egw_setup']->db->select($GLOBALS['egw_setup']->config_table,'*',false,__LINES__,__FILES__);
|
|
|
|
while($GLOBALS['egw_setup']->db->next_record())
|
2006-03-08 10:41:53 +01:00
|
|
|
{
|
2008-08-20 08:04:28 +02:00
|
|
|
$GLOBALS['current_config'][$GLOBALS['egw_setup']->db->f('config_name')] = $GLOBALS['egw_setup']->db->f('config_value');
|
2001-07-30 17:59:25 +02:00
|
|
|
}
|
2008-08-20 08:04:28 +02:00
|
|
|
}
|
|
|
|
$setup_tpl->pparse('out','T_config_pre_script');
|
|
|
|
|
|
|
|
/* Now parse each of the templates we want to show here */
|
|
|
|
class phpgw
|
|
|
|
{
|
|
|
|
var $common;
|
|
|
|
var $accounts;
|
|
|
|
var $applications;
|
|
|
|
var $db;
|
|
|
|
}
|
|
|
|
$GLOBALS['egw'] = new phpgw;
|
|
|
|
$GLOBALS['egw']->common =& CreateObject('phpgwapi.common');
|
|
|
|
$GLOBALS['egw']->db =& $GLOBALS['egw_setup']->db;
|
|
|
|
|
|
|
|
$t = CreateObject('phpgwapi.Template',$GLOBALS['egw']->common->get_tpl_dir('setup'));
|
|
|
|
|
|
|
|
$t->set_unknowns('keep');
|
|
|
|
$t->set_file(array('config' => 'config.tpl'));
|
|
|
|
$t->set_block('config','body','body');
|
|
|
|
|
|
|
|
$vars = $t->get_undefined('body');
|
|
|
|
$GLOBALS['egw_setup']->hook('config','setup');
|
|
|
|
|
|
|
|
foreach($vars as $value)
|
|
|
|
{
|
|
|
|
$valarray = explode('_',$value);
|
|
|
|
$type = $valarray[0];
|
|
|
|
$new = $newval = '';
|
|
|
|
|
|
|
|
while($chunk = next($valarray))
|
2001-09-21 22:14:04 +02:00
|
|
|
{
|
2008-08-20 08:04:28 +02:00
|
|
|
$new[] = $chunk;
|
2001-09-21 22:14:04 +02:00
|
|
|
}
|
2008-08-20 08:04:28 +02:00
|
|
|
$newval = implode(' ',$new);
|
2001-09-21 22:14:04 +02:00
|
|
|
|
2008-08-20 08:04:28 +02:00
|
|
|
switch ($type)
|
2004-11-28 19:38:50 +01:00
|
|
|
{
|
2008-08-20 08:04:28 +02:00
|
|
|
case 'lang':
|
|
|
|
$t->set_var($value,lang($newval));
|
|
|
|
break;
|
|
|
|
case 'value':
|
|
|
|
$newval = str_replace(' ','_',$newval);
|
|
|
|
/* Don't show passwords in the form */
|
|
|
|
if(strpos($value,'passwd') !== false || strpos($value,'password') !== false || strpos($value,'root_pw') !== false)
|
|
|
|
{
|
2004-11-28 19:38:50 +01:00
|
|
|
$t->set_var($value,'');
|
2008-08-20 08:04:28 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$t->set_var($value,@$current_config[$newval]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'selected':
|
|
|
|
$configs = array();
|
|
|
|
$config = '';
|
|
|
|
$newvals = explode(' ',$newval);
|
|
|
|
$setting = end($newvals);
|
|
|
|
for($i=0;$i<(count($newvals) - 1); $i++)
|
|
|
|
{
|
|
|
|
$configs[] = $newvals[$i];
|
|
|
|
}
|
|
|
|
$config = implode('_',$configs);
|
|
|
|
/* echo $config . '=' . $current_config[$config]; */
|
|
|
|
if(@$current_config[$config] == $setting)
|
|
|
|
{
|
|
|
|
$t->set_var($value,' selected');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$t->set_var($value,'');
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'hook':
|
|
|
|
$newval = str_replace(' ','_',$newval);
|
|
|
|
$t->set_var($value,$newval($current_config));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$t->set_var($value,'');
|
|
|
|
break;
|
2004-11-28 19:38:50 +01:00
|
|
|
}
|
2008-08-20 08:04:28 +02:00
|
|
|
}
|
2004-11-28 19:38:50 +01:00
|
|
|
|
2008-08-20 08:04:28 +02:00
|
|
|
if($GLOBALS['error'])
|
|
|
|
{
|
|
|
|
if($GLOBALS['error'] == 'badldapconnection')
|
2004-11-28 19:38:50 +01:00
|
|
|
{
|
2008-08-20 08:04:28 +02:00
|
|
|
/* Please check the number and dial again :) */
|
|
|
|
$GLOBALS['egw_setup']->html->show_alert_msg('Error',
|
|
|
|
lang('There was a problem trying to connect to your LDAP server. <br />'
|
|
|
|
.'please check your LDAP server configuration') . '.');
|
2004-11-28 19:38:50 +01:00
|
|
|
}
|
|
|
|
|
2008-08-20 08:04:28 +02:00
|
|
|
$GLOBALS['egw_setup']->html->show_alert_msg('Error',$GLOBALS['error'].'<p>');
|
|
|
|
}
|
|
|
|
|
|
|
|
$t->pfp('out','body');
|
|
|
|
unset($t);
|
2001-09-21 22:14:04 +02:00
|
|
|
|
2008-08-20 08:04:28 +02:00
|
|
|
$setup_tpl->set_var('more_configs',lang('Please login to egroupware and run the admin application for additional site configuration') . '.');
|
2001-07-30 17:59:25 +02:00
|
|
|
|
2008-08-20 08:04:28 +02:00
|
|
|
$setup_tpl->set_var('lang_submit',lang('Save'));
|
|
|
|
$setup_tpl->set_var('lang_cancel',lang('Cancel'));
|
|
|
|
$setup_tpl->pparse('out','T_config_post_script');
|
2002-03-03 22:53:00 +01:00
|
|
|
|
2008-08-20 08:04:28 +02:00
|
|
|
$GLOBALS['egw_setup']->html->show_footer();
|