restored lang.php after I kept screwing it up

This commit is contained in:
seek3r 2000-12-28 08:00:59 +00:00
parent 41a28f668a
commit c54b78187f
2 changed files with 97 additions and 143 deletions

View File

@ -11,166 +11,120 @@
/* $Id$ */ /* $Id$ */
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True, "currentapp" => "home", "noapi" => True); if (! $included) {
include("../header.inc.php");
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True, "currentapp" => "home", "noapi" => True);
include("./inc/functions.inc.php"); include("./inc/functions.inc.php");
include("../header.inc.php");
// Authorize the user to use setup app and load the database // Authorize the user to use setup app and load the database
// include("./inc/setup_auth.inc.php");
// Does not return unless user is authorized // Does not return unless user is authorized
$phpgw_info["server"]["api_inc"] = $phpgw_info["server"]["include_root"]."/phpgwapi/inc"; if (!$phpgw_setup->auth("Config")){
include($phpgw_info["server"]["api_inc"] . "/phpgw_common.inc.php"); Header("Location: index.php");
exit;
$common = new common; }
$phpgw_setup->loaddb(); $phpgw_setup->loaddb();
$phpgw_setup->db->query("select config_name,config_value from config where config_name like 'ldap%'",__LINE__,__FILE__); echo "<html><head><title>phpGroupWare Setup</title></head>\n";
while ($phpgw_setup->db->next_record()) { echo "<body bgcolor='#ffffff'>\n";
$config[$phpgw_setup->db->f("config_name")] = $phpgw_setup->db->f("config_value");
}
// First, see if we can connect to the LDAP server, if not send `em back to config.php with an include($phpgw_info["server"]["include_root"]."/phpgwapi/phpgw_common.inc.php");
// error message. $common = new common;
$sep = $common->filesystem_separator();
// connect to ldap server } else {
if (! $ldap = @ldap_connect($config["ldap_host"])) { $newinstall = True;
$noldapconnection = True; $lang_selected["en"] = "en";
} $submit = True;
// bind as admin, we not to able to do everything
if (! @ldap_bind($ldap,$config["ldap_root_dn"],$config["ldap_root_pw"])) {
$noldapconnection = True;
}
if ($noldapconnection) {
Header("Location: config.php?error=badldapconnection");
exit;
}
$sr = ldap_search($ldap,$config["ldap_context"],"(|(uid=*))",array("sn","givenname","uid","uidnumber"));
$info = ldap_get_entries($ldap, $sr);
for ($i=0; $i<$info["count"]; $i++) {
if (! $phpgw_info["server"]["global_denied_users"][$info[$i]["uid"][0]]) {
$account_info[$i]["account_id"] = $info[$i]["uidnumber"][0];
$account_info[$i]["account_lid"] = $info[$i]["uid"][0];
$account_info[$i]["account_lastname"] = $info[$i]["givenname"][0];
$account_info[$i]["account_firstname"] = $info[$i]["sn"][0];
}
}
$phpgw_setup->db->query("select app_name,app_title from applications where app_enabled != '0' and "
. "app_name != 'admin'",__LINE__,__FILE__);
while ($phpgw_setup->db->next_record()) {
$apps[$phpgw_setup->db->f("app_name")] = $phpgw_setup->db->f("app_title");
} }
if ($submit) { if ($submit) {
if (! count($admins)) { if (count($lang_selected)) {
$error = "<br>You must select at least 1 admin"; if ($upgrademethod == "dumpold") {
} $phpgw_setup->db->query("delete from lang");
//echo "<br>Test: dumpold";
if (! count($s_apps)) {
$error .= "<br>You must select at least 1 application";
}
if (! $error) {
include($phpgw_info["server"]["api_inc"] . "/phpgw_accounts_ldap.inc.php");
include($phpgw_info["server"]["api_inc"] . "/phpgw_accounts_shared.inc.php");
$accounts = new accounts;
while ($app = each($s_apps)) {
$permissions_string = $accounts->add_app($app[1]);
} }
$permissions_string = $accounts->add_app("",True); while (list($null,$lang) = each($lang_selected)) {
$admin_permissions_string = $permissions_string . "admin:"; $addlang = False;
if ($upgrademethod == "addonlynew") {
//echo "<br>Test: addonlynew - select count(*) from lang where lang='$lang'";
$phpgw_setup->db->query("select count(*) from lang where lang='$lang'");
$phpgw_setup->db->next_record();
while ($admin = each($admins)) { if ($phpgw_setup->db->f(0) == 0) {
$s_admin[$admin[1]] = True; //echo "<br>Test: addonlynew - True";
} $addlang = True;
}
while ($account = each($account_info)) {
if ($s_admin[$account[1]["account_id"]]) {
$np = $admin_permissions_string;
} else {
$np = $permissions_string;
} }
// do some checks before we try to import the data if (($addlang && $upgrademethod == "addonlynew") || ($upgrademethod != "addonlynew")) {
if (!empty($account[1]["account_id"]) && !empty($account[1]["account_lid"])) //echo '<br>Test: loop above file()';
$phpgw_setup->db->query("insert into accounts (account_id,account_lid,account_pwd,account_permissions," $raw_file = file($phpgw_info["server"]["server_root"] . "/setup/phpgw_" . strtolower($lang) . ".lang");
. "account_groups,account_status,account_lastpwd_change) values ('" . $account[1]["account_id"] . "','" while (list($null,$line) = each($raw_file)) {
. $account[1]["account_lid"] . "','x','$np',',1:0,','A','".time()."')",__LINE__,__FILE__); $addit = False;
} list($message_id,$app_name,$phpgw_setup->db_lang,$content) = explode("\t",$line);
$setup_complete = True; $message_id = addslashes(chop($message_id));
} $app_name = addslashes(chop($app_name));
} $phpgw_setup->db_lang = addslashes(chop($phpgw_setup->db_lang));
$content = addslashes(chop($content));
if ($upgrademethod == "addmissing") {
//echo "<br>Test: addmissing";
$phpgw_setup->db->query("select count(*) from lang where message_id='$message_id' and lang='$phpgw_setup->db_lang'");
$phpgw_setup->db->next_record();
// Add a check to see if there is no users in LDAP, if not create a default user. if ($phpgw_setup->db->f(0) == 0) {
//echo "<br>Test: addmissing - True - Total: " . $phpgw_setup->db->f(0);
$addit = True;
}
}
$phpgw_setup->setup_header(); if ($addit || ($upgrademethod == "dumpold" || $newinstall || $upgrademethod == "addonlynew")) {
//echo "<br>adding - insert into lang values ('$message_id','$app_name','$phpgw_setup->db_lang','$content')";
$phpgw_setup->db->query("insert into lang values ('$message_id','$app_name','$phpgw_setup->db_lang','$content')");
}
}
}
}
}
if ($error) { if (! $included) {
echo "<br><center><b>Error:</b> $error</center>"; echo "<center>Language files have been installed</center>";
} exit;
}
if ($setup_complete) { } else {
$phpgw_setup->db->query("select config_value from config where config_name='webserver_url'",__LINE__,__FILE__); if (! $included) {
$phpgw_setup->db->next_record(); $phpgw_setup->setup_header();
echo '<br><center>Setup has been completed! Click <a href="' . $phpgw_setup->db->f("config_value")
. '/login.php">here</a> to login</center>';
exit;
}
?> ?>
<p><table border="0" align="center" width="<?php echo ($newinstall?"60%":"80%"); ?>">
<form action="ldap.php" method="POST">
<table border="0" align="center" width="70%">
<tr bgcolor="486591"> <tr bgcolor="486591">
<td colspan="2">&nbsp;<font color="fefefe">LDAP import users</font></td> <td colspan="<?php echo ($newinstall?"1":"2"); ?>">&nbsp;<font color="fefefe">Multi-Language support setup</font></td>
</tr> </tr>
<tr bgcolor="e6e6e6"> <tr bgcolor="e6e6e6">
<td colspan="2">&nbsp;This section will help you import users from your LDAP tree into phpGroupWare's account tables.<br>&nbsp;</td> <td colspan="<?php echo ($newinstall?"1":"2"); ?>">This program will help you upgrade or installing different languages for phpGroupWare</td>
</tr> </tr>
<tr bgcolor="e6e6e6"> <tr bgcolor="e6e6e6">
<td align="left" valign="top"> <td<?php echo ($newinstall?' align="center"':""); ?>>Select which languages you would like to use.
&nbsp;Select which user(s) will have the admin privileges <form action="lang.php">
</td> <?php echo ($newinstall?'<input type="hidden" name="newinstall" value="True">':""); ?>
<td align="center"> <select name="lang_selected[]" multiple size="10">
<select name="admins[]" multiple size="5"> <?php
<?php $phpgw_setup->db->query("select lang_id,lang_name from languages where available='Yes'");
while ($account = each($account_info)) { while ($phpgw_setup->db->next_record()) {
echo '<option value="' . $account[1]["account_id"] . '">' echo '<option value="' . $phpgw_setup->db->f("lang_id") . '">' . $phpgw_setup->db->f("lang_name") . '</option>';
. $common->display_fullname($account[1]["account_lid"],$account[1]["account_firstname"],$account[1]["account_lastname"]) }
. '</option>'; ?>
echo "\n"; </select>
}
?>
</select>
</td> </td>
<?php
if (! $newinstall) {
echo '<td valign="top">Select which method of upgrade you would like to do'
. '<br><input type="radio" name="upgrademethod" value="dumpold">&nbsp;Delete all old langagues and install new ones'
. '<br><input type="radio" name="upgrademethod" value="addmissing">&nbsp;Only add new pharses'
. '<br><input type="radio" name="upgrademethod" value="addonlynew">&nbsp;only add languages that are not in the database already.'
. '</td>';
}
?>
</tr> </tr>
<tr bgcolor="e6e6e6">
<td align="left" valign="top">
&nbsp;Select the default applications your users will have access to.
<br>&nbsp;Note: You will be able to customize this later.
</td>
<td>
<select name="s_apps[]" multiple size="5">
<?php
while ($app = each($apps)) {
echo '<option value="' . $app[0] . '" selected>' . $app[1] . '</option>';
echo "\n";
}
?>
</select>
</td>
</tr>
<tr bgcolor="e6e6e6">
<td colspan="2" align="center">
<input type="submit" name="submit" value="import">
</td>
</tr>
</table> </table>
</form> <?php
echo '<center><input type="submit" name="submit" value="Install"></center>';
}
}

View File

@ -30,7 +30,7 @@
include("./sql/".$phpgw_domain[$ConfigDomain]["db_type"]."_newtables.inc.php"); include("./sql/".$phpgw_domain[$ConfigDomain]["db_type"]."_newtables.inc.php");
include("./sql/common_default_records.inc.php"); include("./sql/common_default_records.inc.php");
$included = True; $included = True;
// include($phpgw_info["server"]["server_root"] . "/setup/lang.php"); include($phpgw_info["server"]["server_root"] . "/setup/lang.php");
$phpgw_info["setup"]["currentver"]["phpgwapi"] = "oldversion"; $phpgw_info["setup"]["currentver"]["phpgwapi"] = "oldversion";
} }