egroupware_official/admin/newaccount.php

270 lines
8.3 KiB
PHP
Raw Normal View History

2000-08-18 05:24:22 +02:00
<?php
/**************************************************************************\
* phpGroupWare - administration *
* 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$ */
$phpgw_info = array();
2000-12-26 06:39:19 +01:00
$phpgw_info["flags"] = array("currentapp" => "admin", "noheader" => True, "nonavbar" => True,
"parent_page" => "accounts.php");
2000-08-18 05:24:22 +02:00
include("../header.inc.php");
include($phpgw_info["server"]["app_inc"]."/accounts_".$phpgw_info["server"]["account_repository"].".inc.php");
function is_odd($n)
{
$ln = substr($n,-1);
if ($ln == 1 || $ln == 3 || $ln == 5 || $ln == 7 || $ln == 9) {
return True;
} else {
return False;
}
}
2000-08-18 05:24:22 +02:00
if ($submit) {
$totalerrors = 0;
if ($phpgw_info["server"]["account_repository"] == "ldap" && ! $allow_long_loginids) {
if (strlen($n_loginid) > 8) {
$error[$totalerrors++] = lang("The loginid can not be more then 8 characters");
}
}
2000-08-18 05:24:22 +02:00
if (! $n_loginid)
$error[$totalerrors++] = lang("You must enter a loginid");
2000-08-18 05:24:22 +02:00
if (! $n_passwd)
$error[$totalerrors++] = lang("You must enter a password");
2000-08-18 05:24:22 +02:00
if ($n_passwd == $n_loginid)
$error[$totalerrors++] = lang("The login and password can not be the same");
2000-08-18 05:24:22 +02:00
if ($n_passwd != $n_passwd_2)
$error[$totalerrors++] = lang("The two passwords are not the same");
2000-08-18 05:24:22 +02:00
if (!count($new_permissions) || !count($n_groups)) {
$error[$totalerrors++] = "<br>" . lang("You must add at least 1 permission or group to this account");
}
if ($phpgw->accounts->exists($n_loginid)) {
2000-11-17 17:19:37 +01:00
$error[$totalerrors++] = lang("That loginid has already been taken");
}
2000-08-18 05:24:22 +02:00
if (! $error)
{
$phpgw->db->lock(array(
'phpgw_accounts',
'phpgw_preferences',
'phpgw_sessions',
'phpgw_acl',
'phpgw_applications'
));
$phpgw->accounts->create('u', $n_loginid, $n_passwd, $n_firstname, $n_lastname, $n_account_status);
$account_id = $phpgw->accounts->name2id($n_loginid);
$apps = CreateObject('phpgwapi.applications',array($account_id,'u'));
$apps->read_installed_apps();
// Read Group Apps
if ($n_groups)
{
$apps->account_type = 'g';
reset($n_groups);
while($groups = each($n_groups))
{
$apps->account_id = $groups[0];
$old_app_groups = $apps->read_account_specific();
@reset($old_app_groups);
while($old_group_app = each($old_app_groups))
{
if (!$apps_after[$old_group_app[0]])
{
$apps_after[$old_group_app[0]] = $old_app_groups[$old_group_app[0]];
}
}
}
}
$apps->account_type = 'u';
$apps->account_id = $account_id;
$apps->account_apps = Array(Array());
@reset($new_permissions);
while ($app = each($new_permissions))
{
if ($app[1])
{
$apps->add($app[0]);
if (!$apps_after[$app[0]])
{
$apps_after[] = $app[0];
}
}
}
$apps->save_repository();
// Assign user to groups
for ($i=0;$i<count($n_groups);$i++)
{
$phpgw->acl->add_repository('phpgw_group',$n_groups[$i],$account_id,'u',1);
}
$pref = CreateObject('phpgwapi.preferences',$account_id);
$phpgw->common->hook_single('add_def_pref','admin');
while ($apps = each($apps_after))
{
if ($apps[0] != 'admin')
{
$phpgw->common->hook_single('add_def_pref', $apps[0]);
}
}
$pref->save_repository(False);
$apps->account_apps = Array(Array());
$apps_after = Array(Array());
$phpgw->db->unlock();
/* // start inlcuding other admin tools
while($app = each($apps_after))
{
$phpgw->common->hook_single('add_user_data', $value);
}
*/
Header('Location: ' . $phpgw->link('accounts.php','cd='.$cd));
$phpgw->common->phpgw_exit();
2000-08-18 05:24:22 +02:00
}
}
else
{
$status = 'A';
}
2000-11-07 21:37:02 +01:00
$phpgw->template->set_file(array('form' => 'account_form.tpl'));
$phpgw->template->set_unknowns('remove');
$phpgw->common->phpgw_header();
echo parse_navbar();
2000-08-18 05:24:22 +02:00
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("lang_action",lang("Add new account"));
2000-11-23 04:26:45 +01:00
if ($totalerrors) {
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("error_messages","<center>" . $phpgw->common->error_list($error) . "</center>");
} else {
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("error_messages","");
}
2000-12-26 01:52:38 +01:00
2000-12-26 06:39:19 +01:00
$phpgw->template->set_var("th_bg",$phpgw_info["theme"]["th_bg"]);
2000-12-26 01:52:38 +01:00
$phpgw->template->set_var("tr_color1",$phpgw_info["theme"]["row_on"]);
$phpgw->template->set_var("tr_color2",$phpgw_info["theme"]["row_off"]);
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("form_action",$phpgw->link("newaccount.php"));
$phpgw->template->set_var("lang_loginid",lang("LoginID"));
if ($status)
{
$phpgw->template->set_var('account_status',' checked');
}
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("n_loginid_value",$n_loginid);
2000-12-26 01:52:38 +01:00
$phpgw->template->set_var("lang_account_active",lang("Account active"));
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("lang_password",lang("Password"));
$phpgw->template->set_var("n_passwd_value",$n_passwd);
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("lang_reenter_password",lang("Re-Enter Password"));
$phpgw->template->set_var("n_passwd_2_value",$n_passwd_2);
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("lang_firstname",lang("First Name"));
$phpgw->template->set_var("n_firstname_value",$n_firstname);
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("lang_lastname",lang("Last Name"));
$phpgw->template->set_var("n_lastname_value",$n_lastname);
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("lang_groups",lang("Groups"));
// groups list
$groups_select = '<select name="n_groups[]" multiple>';
$groups = $phpgw->accounts->get_list('groups');
while (list(,$group) = each($groups))
{
$groups_select .= '<option value="' . $group['account_id'] . '"';
$groups_select .= ">" . $group["account_lid"] . "</option>\n";
}
$groups_select .= '</select>';
$phpgw->template->set_var('groups_select',$groups_select);
// end groups list
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("","");
$i = 0;
$sorted_apps = $phpgw_info["apps"];
@asort($sorted_apps);
@reset($sorted_apps);
while ($permission = each($sorted_apps)) {
if ($permission[1]["enabled"]) {
$perm_display[$i][0] = $permission[0];
$perm_display[$i][1] = $permission[1]["title"];
$i++;
}
}
for ($i=0;$i<200;) { // The $i<200 is only used for a brake
if (! $perm_display[$i][1]) break;
2000-12-26 06:39:19 +01:00
$perms_html .= '<tr bgcolor="' . $phpgw_info["theme"]["row_on"] . '"><td>' . lang($perm_display[$i][1]) . '</td>'
. '<td><input type="checkbox" name="new_permissions['
. $perm_display[$i][0] . ']" value="True"';
if ($new_permissions[$perm_display[$i][0]]) {
$perms_html .= " checked";
}
$perms_html .= "></td>";
$i++;
if ($i == count($perm_display) && is_odd(count($perm_display))) {
$perms_html .= '<td colspan="2">&nbsp;</td></tr>';
}
if (! $perm_display[$i][1]) break;
$perms_html .= '<td>' . lang($perm_display[$i][1]) . '</td>'
. '<td><input type="checkbox" name="new_permissions['
. $perm_display[$i][0] . ']" value="True"';
if ($new_permissions[$perm_display[$i][0]]) {
$perms_html .= " checked";
}
$perms_html .= "></td></tr>";
$i++;
}
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("permissions_list",$perms_html);
$includedSomething = False;
// Skeeter: I don't see this as a player, if creating new accounts...
// start inlcuding other admin tools
// while(list($key,$value) = each($phpgw_info["user"]["app_perms"]))
// {
// check if we have something included, when not ne need to set
// {gui_hooks} to ""
// if ($phpgw->common->hook_single("show_newuser_data", $value)) $includedSomething="true";
// }
if (!$includedSomething) $phpgw->template->set_var("gui_hooks","");
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("lang_button",Lang("Add"));
echo $phpgw->template->finish($phpgw->template->parse("out","form"));
account_close();
$phpgw->common->phpgw_footer();
?>