egroupware_official/admin/editaccount.php

399 lines
11 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$ */
2001-02-11 04:07:43 +01:00
$phpgw_info['flags'] = array(
'noheader' => True,
'nonavbar' => True,
'currentapp' => 'admin',
'parent_page' => 'accounts.php'
);
2001-02-11 04:07:43 +01:00
include('../header.inc.php');
2001-02-11 04:07:43 +01:00
// creates the html for the user data
function createPageBody($_account_id,$_userData='',$_errors='')
{
global $phpgw, $phpgw_info;
2001-02-11 04:07:43 +01:00
$t = new Template($phpgw->common->get_tpl_dir('admin'));
$t->set_unknowns('remove');
$t->set_file(array(
'form' => 'account_form.tpl',
'form_passwordinfo' => 'account_form_password.tpl',
'form_buttons_' => 'account_form_buttons.tpl',
));
if ($_userData)
{
$userData=$_userData;
@reset($userData['account_groups']);
while (list($key, $value) = @each($userData['account_groups']))
2001-02-14 20:20:22 +01:00
{
$userGroups[$key]['account_id'] = $value;
}
$account = CreateObject('phpgwapi.accounts');
$allGroups = $account->get_list('groups');
}
else
{
$account = CreateObject('phpgwapi.accounts',$_account_id);
$userData = $account->read_repository();
2001-02-14 20:20:22 +01:00
$userGroups = $account->memberships(intval($_account_id));
$allGroups = $account->get_list('groups');
}
2001-02-11 04:07:43 +01:00
$t->set_var('form_action',$phpgw->link('/admin/editaccount.php',
2001-02-13 01:03:48 +01:00
"account_id=$_account_id&old_loginid=".rawurlencode($userData['account_lid'])));
2001-02-13 16:48:50 +01:00
2001-02-13 01:03:48 +01:00
if ($_errors)
{
$t->set_var('error_messages','<center>' . $phpgw->common->error_list($_errors) . '</center>');
2001-02-13 01:03:48 +01:00
}
$t->set_var('th_bg',$phpgw_info['theme']['th_bg']);
$t->set_var('tr_color1',$phpgw_info['theme']['row_on']);
$t->set_var('tr_color2',$phpgw_info['theme']['row_off']);
$t->set_var('lang_action',lang('Edit user account'));
$t->set_var('lang_loginid',lang('LoginID'));
$t->set_var('lang_account_active',lang('Account active'));
$t->set_var('lang_password',lang('Password'));
$t->set_var('lang_reenter_password',lang('Re-Enter Password'));
$t->set_var('lang_lastname',lang('Last Name'));
$t->set_var('lang_groups',lang('Groups'));
$t->set_var('lang_firstname',lang('First Name'));
$t->set_var('lang_button',lang('Save'));
$t->parse('form_buttons','form_buttons_',True);
$t->set_var('account_lid','<input name="account_lid" value="' . $userData['account_lid'] . '">');
$t->set_var('account_passwd',$account_passwd);
$t->set_var('account_passwd_2',$account_passwd_2);
$t->parse('password_fields','form_passwordinfo',True);
if ($userData['status'])
2001-02-11 04:07:43 +01:00
{
$t->set_var('account_status','<input type="checkbox" name="account_status" value="A" checked>');
}
else
{
$t->set_var('account_status','<input type="checkbox" name="account_status" value="A">');
}
$t->set_var('account_firstname','<input name="account_firstname" value="' . $userData['firstname'] . '">');
$t->set_var('account_lastname','<input name="account_lastname" value="' . $userData['lastname'] . '">');
2001-02-11 04:07:43 +01:00
2001-02-14 20:20:22 +01:00
$allAccounts;
$userGroups;
$groups_select = '<select name="account_groups[]" multiple>';
2001-02-14 20:20:22 +01:00
reset($allGroups);
while (list($key,$value) = each($allGroups))
{
$groups_select .= '<option value="' . $value['account_id'] . '"';
for ($i=0; $i<count($userGroups); $i++)
{
#print "Los1:".$userData["account_id"].$userGroups[$i]['account_id']." : ".$value['account_id']."<br>";
if ($userGroups[$i]['account_id'] == $value['account_id'])
{
$groups_select .= ' selected';
2001-02-14 20:20:22 +01:00
}
}
$groups_select .= '>' . $value['account_lid'] . '</option>';
2001-02-14 20:20:22 +01:00
}
$groups_select .= '</select>';
$t->set_var('groups_select',$groups_select);
2001-02-14 20:20:22 +01:00
// create list of available apps
2001-02-11 20:08:32 +01:00
$i = 0;
$apps = CreateObject('phpgwapi.applications',intval($_account_id));
$db_perms = $apps->read_account_specific();
@reset($phpgw_info['apps']);
$availableApps = $phpgw_info['apps'];
2001-02-11 20:08:32 +01:00
@asort($availableApps);
@reset($availableApps);
while ($application = each($availableApps))
{
if ($application[1]['enabled'])
2001-02-11 20:08:32 +01:00
{
$perm_display[$i]['appName'] = $application[0];
$perm_display[$i]['translatedName'] = $application[1]['title'];
2001-02-11 20:08:32 +01:00
$i++;
}
}
// create apps output
@reset($db_perms);
2001-02-11 22:59:48 +01:00
for ($i=0;$i<=count($perm_display);$i++)
2001-02-11 20:08:32 +01:00
{
$checked = '';
if ($_userData['account_permissions'][$perm_display[$i]['appName']] || $db_perms[$perm_display[$i]['appName']])
2001-02-11 20:08:32 +01:00
{
$checked = ' checked';
2001-02-11 20:08:32 +01:00
}
if ($perm_display[$i]['translatedName'])
2001-02-11 20:08:32 +01:00
{
2001-02-26 17:00:24 +01:00
$part1 = sprintf('<td>%s</td><td><input type="checkbox" name="account_permissions[%s]" value="True"%s></td>',
2001-02-11 22:59:48 +01:00
lang($perm_display[$i]['translatedName']),
$perm_display[$i]['appName'],
$checked);
2001-02-11 20:08:32 +01:00
}
$i++;
2001-02-11 22:59:48 +01:00
2001-02-26 17:00:24 +01:00
$checked = '';
if ($_userData['account_permissions'][$perm_display[$i]['appName']] || $db_perms[$perm_display[$i]['appName']])
2001-02-11 22:59:48 +01:00
{
2001-02-26 17:00:24 +01:00
$checked = ' checked';
2001-02-11 22:59:48 +01:00
}
2001-02-26 17:00:24 +01:00
if ($perm_display[$i]['translatedName'])
2001-02-11 22:59:48 +01:00
{
2001-02-26 17:00:24 +01:00
$part2 = sprintf('<td>%s</td><td><input type="checkbox" name="account_permissions[%s]" value="True"%s></td>',
2001-02-11 22:59:48 +01:00
lang($perm_display[$i]['translatedName']),
$perm_display[$i]['appName'],
$checked);
}
else
{
$part2 = '<td colspan="2">&nbsp;</td>';
}
2001-02-26 17:00:24 +01:00
$appRightsOutput .= sprintf('<tr bgcolor="%s">%s%s</tr>',$phpgw_info['theme']['row_on'], $part1, $part2);
2001-02-11 22:59:48 +01:00
}
$t->set_var('permissions_list',$appRightsOutput);
2001-02-11 20:08:32 +01:00
echo $t->finish($t->parse('out','form'));
2001-02-11 04:07:43 +01:00
}
// stores the userdata
function saveUserData($_userData)
{
$account = CreateObject('phpgwapi.accounts',$_userData['account_id']);
$account->update_data($_userData);
$account->save_repository();
if ($_userData['passwd'])
{
$auth = CreateObject('phpgwapi.auth');
$auth->change_password($old_passwd, $_userData['passwd'], $_userData['account_id']);
2001-02-11 22:59:48 +01:00
}
$apps = CreateObject('phpgwapi.applications',array(intval($_userData['account_id']),'u'));
# $apps->read_installed_apps();
# $apps_before = $apps->read_account_specific();
$apps->account_type = 'u';
$apps->account_id = $_userData['account_id'];
$apps->account_apps = Array(Array());
while($app = each($_userData['account_permissions']))
2001-02-11 22:59:48 +01:00
{
if($app[1])
{
$apps->add($app[0]);
if(!$apps_before[$app[0]])
{
$apps_after[] = $app[0];
}
}
}
$apps->save_repository();
2001-02-14 20:20:22 +01:00
$account = CreateObject('phpgwapi.accounts');
$allGroups = $account->get_list('groups');
reset($_userData['account_groups']);
while (list($key,$value) = each($_userData['account_groups']))
2001-02-14 20:20:22 +01:00
{
$newGroups[$value] = $value;
}
$acl = CreateObject('phpgwapi.acl',$_userData['account_id']);
reset($allGroups);
while (list($key,$groupData) = each($allGroups))
{
#print "$key,". $groupData['account_id'] ."<br>";
#print "$key,". $_userData['account_groups'][1] ."<br>";
2001-02-14 20:20:22 +01:00
if ($newGroups[$groupData['account_id']])
{
$acl->add_repository('phpgw_group',$groupData['account_id'],$_userData['account_id'],1);
}
else
{
$acl->delete_repository('phpgw_group',$groupData['account_id'],$_userData['account_id']);
}
}
2001-02-13 01:03:48 +01:00
}
2001-02-11 04:07:43 +01:00
2001-02-13 01:03:48 +01:00
// checks if the userdata are valid
// returns FALSE if the data are correct
// otherwise the error array
function userDataInvalid($_userData)
{
global $phpgw_info;
$totalerrors = 0;
if ($phpgw_info['server']['account_repository'] == 'ldap' && ! $allow_long_loginids)
2001-02-13 01:03:48 +01:00
{
if (strlen($_userData['account_lid']) > 8)
{
$error[$totalerrors] = lang('The loginid can not be more then 8 characters');
2001-02-13 01:03:48 +01:00
$totalerrors++;
}
}
if ($_userData['old_loginid'] != $_userData['account_lid'])
{
if (account_exsists($_userData['account_loginid']))
2001-02-13 01:03:48 +01:00
{
$error[$totalerrors] = lang('That loginid has already been taken');
2001-02-13 01:03:48 +01:00
$totalerrors++;
}
}
if ($_userData['account_passwd'] || $_userData['account_passwd_2'])
2001-02-13 01:03:48 +01:00
{
if ($_userData['account_passwd'] != $_userData['account_passwd_2'])
2001-02-13 01:03:48 +01:00
{
$error[$totalerrors] = lang('The two passwords are not the same');
2001-02-13 01:03:48 +01:00
$totalerrors++;
}
}
if (!count($_userData['account_permissions']) || !count($_userData['account_groups']))
2001-02-13 01:03:48 +01:00
{
2001-02-26 17:00:24 +01:00
$error[$totalerrors] = lang('You must add at least 1 permission or group to this account');
2001-02-14 20:20:22 +01:00
$totalerrors++;
2001-02-13 01:03:48 +01:00
}
if ($totalerrors == 0)
{
return FALSE;
}
else
{
return $error;
}
}
2001-02-11 04:07:43 +01:00
// todo
// not needed if i use the same file for new users too
if (! $account_id)
{
Header('Location: ' . $phpgw->link('/admin/accounts.php'));
}
2001-02-11 04:07:43 +01:00
if ($submit)
{
$userData = array(
'account_lid' => $account_lid,
'firstname' => $account_firstname,
'lastname' => $account_lastname,
'account_passwd' => $account_passwd,
'status' => $account_status,
'old_loginid' => rawurldecode($old_loginid),
'account_id' => $account_id,
'account_passwd_2' => $account_passwd_2,
'account_groups' => $account_groups,
'account_permissions' => $account_permissions
2001-02-11 04:07:43 +01:00
);
2001-02-13 01:03:48 +01:00
if (!$errors = userDataInvalid($userData))
2001-02-11 04:07:43 +01:00
{
saveUserData($userData);
Header('Location: ' . $phpgw->link('/admin/accounts.php', 'cd='.$cd));
2001-02-11 04:07:43 +01:00
$phpgw->common->phpgw_exit();
}
2001-02-13 01:03:48 +01:00
else
{
$phpgw->common->phpgw_header();
echo parse_navbar();
2001-02-13 01:03:48 +01:00
createPageBody($userData['account_id'],$userData,$errors);
$phpgw->common->phpgw_footer();
2001-02-13 01:03:48 +01:00
}
2001-02-11 04:07:43 +01:00
}
else
{
$phpgw->common->phpgw_header();
echo parse_navbar();
2001-02-11 04:07:43 +01:00
createPageBody($account_id);
$phpgw->common->phpgw_footer();
}
return;
2001-02-13 01:03:48 +01:00
//////////////////////////////////////////////////////////////////////////////////////////
//
// the old code
//
/////////////////////////////////////////////////////////////////////////////////////////
// The following sets any default preferences needed for new applications..
// This is smart enough to know if previous preferences were selected, use them.
$pref = CreateObject('phpgwapi.preferences',intval($account_id));
$t = $pref->get_preferences();
$docommit = False;
$after_apps = explode(':',$apps_after);
for ($i=1;$i<count($after_apps) - 1;$i++)
{
if ($after_apps[$i]=='admin')
{
$check = 'common';
}
else
{
$check = $after_apps[$i];
}
2001-02-26 17:00:24 +01:00
if (! $t[$check])
{
$phpgw->common->hook_single('add_def_pref', $after_apps[$i]);
$docommit = True;
}
}
if ($docommit)
{
$pref->commit();
}
// start including other admin tools
while ($app = each($apps_after))
{
$phpgw->common->hook_single('update_user_data', $app[0]);
}
$includedSomething = False;
// start inlcuding other admin tools
while($app = each($apps_after))
{
$phpgw->common->hook_single('show_user_data', $app[0]);
}
2000-12-26 01:52:38 +01:00
?>