forked from extern/egroupware
852 lines
25 KiB
PHP
Executable File
852 lines
25 KiB
PHP
Executable File
<?php
|
|
/**************************************************************************\
|
|
* phpGroupWare - account 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$ */
|
|
|
|
class boaccounts
|
|
{
|
|
var $public_functions = array(
|
|
'add_group' => True,
|
|
'add_user' => True,
|
|
'delete_group' => True,
|
|
'delete_user' => True,
|
|
'edit_group' => True,
|
|
'edit_user' => True
|
|
);
|
|
|
|
var $so;
|
|
|
|
function boaccounts()
|
|
{
|
|
$this->so = createobject('admin.soaccounts');
|
|
}
|
|
|
|
function account_total($account_type,$query='')
|
|
{
|
|
return $this->so->account_total($account_type,$query);
|
|
}
|
|
|
|
function delete_group()
|
|
{
|
|
if (!@isset($GLOBALS['HTTP_POST_VARS']['account_id']) || !@$GLOBALS['HTTP_POST_VARS']['account_id'])
|
|
{
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'));
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
|
}
|
|
|
|
$account_id = intval($GLOBALS['HTTP_POST_VARS']['account_id']);
|
|
|
|
$GLOBALS['phpgw']->db->lock(
|
|
Array(
|
|
'phpgw_accounts',
|
|
'phpgw_acl'
|
|
)
|
|
);
|
|
|
|
$old_group_list = $GLOBALS['phpgw']->acl->get_ids_for_location($account_id,1,'phpgw_group');
|
|
|
|
@reset($old_group_list);
|
|
while($old_group_list && $id = each($old_group_list))
|
|
{
|
|
$GLOBALS['phpgw']->acl->delete_repository('phpgw_group',$account_id,intval($id[1]));
|
|
}
|
|
|
|
$GLOBALS['phpgw']->acl->delete_repository('%%','run',$account_id);
|
|
|
|
if (! @rmdir($GLOBALS['phpgw_info']['server']['files_dir'].SEP.'groups'.SEP.$GLOBALS['phpgw']->accounts->id2name($account_id)))
|
|
{
|
|
$cd = 38;
|
|
}
|
|
else
|
|
{
|
|
$cd = 32;
|
|
}
|
|
|
|
$GLOBALS['phpgw']->accounts->delete($account_id);
|
|
|
|
$GLOBALS['phpgw']->db->unlock();
|
|
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',
|
|
Array(
|
|
'menuaction' => 'admin.uiaccounts.list_groups',
|
|
'cd' => $cd
|
|
)
|
|
)
|
|
);
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
|
}
|
|
|
|
function delete_user()
|
|
{
|
|
if(isset($GLOBALS['HTTP_POST_VARS']['cancel']))
|
|
{
|
|
Header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_users'));
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
|
|
|
}
|
|
elseif($GLOBALS['HTTP_POST_VARS']['delete_account'])
|
|
{
|
|
$accountid = $GLOBALS['HTTP_POST_VARS']['account_id'];
|
|
settype($account_id,'integer');
|
|
$account_id = get_account_id($accountid);
|
|
$lid = $GLOBALS['phpgw']->accounts->id2name($account_id);
|
|
$db = $GLOBALS['phpgw']->db;
|
|
$db->query('SELECT app_name,app_order FROM phpgw_applications WHERE app_enabled!=0 ORDER BY app_order',__LINE__,__FILE__);
|
|
if($db->num_rows())
|
|
{
|
|
while($db->next_record())
|
|
{
|
|
$appname = $db->f('app_name');
|
|
|
|
if($appname <> 'admin')
|
|
{
|
|
$GLOBALS['phpgw']->common->hook_single('deleteaccount', $appname);
|
|
}
|
|
}
|
|
}
|
|
|
|
$GLOBALS['phpgw']->common->hook_single('deleteaccount','preferences');
|
|
$GLOBALS['phpgw']->common->hook_single('deleteaccount','admin');
|
|
|
|
$basedir = $GLOBALS['phpgw_info']['server']['files_dir'] . SEP . 'users' . SEP;
|
|
|
|
if (! @rmdir($basedir . $lid))
|
|
{
|
|
$cd = 34;
|
|
}
|
|
else
|
|
{
|
|
$cd = 29;
|
|
}
|
|
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',
|
|
Array(
|
|
'menuaction' => 'admin.uiaccounts.list_users',
|
|
'cd' => $cd
|
|
)
|
|
)
|
|
);
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
|
}
|
|
}
|
|
|
|
function add_group()
|
|
{
|
|
$temp_users = ($GLOBALS['HTTP_POST_VARS']['account_user']?$GLOBALS['HTTP_POST_VARS']['account_user']:Array());
|
|
$account_user = Array();
|
|
@reset($temp_users);
|
|
while(list($key,$user_id) = each($temp_users))
|
|
{
|
|
$account_user[$user_id] = ' selected';
|
|
}
|
|
@reset($account_user);
|
|
|
|
$group_permissions = ($GLOBALS['HTTP_POST_VARS']['account_apps']?$GLOBALS['HTTP_POST_VARS']['account_apps']:Array());
|
|
$account_apps = Array();
|
|
@reset($group_permissions);
|
|
while(list($key,$value) = each($group_permissions))
|
|
{
|
|
if($value)
|
|
{
|
|
$account_apps[$key] = True;
|
|
}
|
|
}
|
|
@reset($account_apps);
|
|
|
|
$group_info = Array(
|
|
'account_id' => ($GLOBALS['HTTP_POST_VARS']['account_id']?intval($GLOBALS['HTTP_POST_VARS']['account_id']):0),
|
|
'account_name' => ($GLOBALS['HTTP_POST_VARS']['account_name']?$GLOBALS['HTTP_POST_VARS']['account_name']:''),
|
|
'account_user' => $account_user,
|
|
'account_apps' => $account_apps
|
|
);
|
|
|
|
$this->validate_group($group_info);
|
|
|
|
$GLOBALS['phpgw']->db->lock(
|
|
Array(
|
|
'phpgw_accounts',
|
|
'phpgw_nextid',
|
|
'phpgw_preferences',
|
|
'phpgw_sessions',
|
|
'phpgw_acl',
|
|
'phpgw_applications',
|
|
'phpgw_app_sessions',
|
|
'phpgw_hooks'
|
|
)
|
|
);
|
|
|
|
$group = CreateObject('phpgwapi.accounts',$group_info['account_id']);
|
|
$group->acct_type = 'g';
|
|
$account_info = array(
|
|
'account_type' => 'g',
|
|
'account_lid' => $group_info['account_name'],
|
|
'account_passwd' => '',
|
|
'account_firstname' => $group_info['account_name'],
|
|
'account_lastname' => 'Group',
|
|
'account_status' => 'A',
|
|
'account_expires' => -1
|
|
// 'account_file_space' => $account_file_space_number . "-" . $account_file_space_type,
|
|
);
|
|
$group->create($account_info);
|
|
$group_info['account_id'] = $GLOBALS['phpgw']->accounts->name2id($group_info['account_name']);
|
|
|
|
$apps = CreateObject('phpgwapi.applications',$group_info['account_id']);
|
|
$apps->update_data(Array());
|
|
reset($group_info['account_apps']);
|
|
while(list($app,$value) = each($group_info['account_apps']))
|
|
{
|
|
$apps->add($app);
|
|
$new_apps[] = $app;
|
|
}
|
|
$apps->save_repository();
|
|
|
|
$acl = CreateObject('phpgwapi.acl',$group_info['account_id']);
|
|
$acl->read_repository();
|
|
|
|
@reset($group_info['account_user']);
|
|
while(list($user_id,$dummy) = each($group_info['account_user']))
|
|
{
|
|
if(!$dummy)
|
|
{
|
|
continue;
|
|
}
|
|
$acl->add_repository('phpgw_group',$group_info['account_id'],$user_id,1);
|
|
|
|
$docommit = False;
|
|
$GLOBALS['pref'] = CreateObject('phpgwapi.preferences',$user_id);
|
|
$t = $GLOBALS['pref']->read_repository();
|
|
@reset($new_apps);
|
|
while(list($app_key,$app_name) = each($new_apps))
|
|
{
|
|
if (!$t[($app_name=='admin'?'common':$app_name)])
|
|
{
|
|
$GLOBALS['phpgw']->common->hook_single('add_def_pref', $app_name);
|
|
$docommit = True;
|
|
}
|
|
}
|
|
if ($docommit)
|
|
{
|
|
$GLOBALS['pref']->save_repository();
|
|
}
|
|
}
|
|
|
|
$acl->save_repository();
|
|
|
|
$basedir = $phpgw_info['server']['files_dir'] . SEP . 'groups' . SEP;
|
|
$cd = 31;
|
|
umask(000);
|
|
if (! @mkdir ($basedir . $group_info['account_name'], 0707))
|
|
{
|
|
$cd = 37;
|
|
}
|
|
|
|
$GLOBALS['phpgw']->db->unlock();
|
|
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',
|
|
Array(
|
|
'menuaction' => 'admin.uiaccounts.list_groups',
|
|
'cd' => $cd
|
|
)
|
|
)
|
|
);
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
|
}
|
|
|
|
function add_user()
|
|
{
|
|
if ($GLOBALS['HTTP_POST_VARS']['submit'])
|
|
{
|
|
$userData = array(
|
|
'account_type' => 'u',
|
|
'account_lid' => $GLOBALS['HTTP_POST_VARS']['account_lid'],
|
|
'account_firstname' => $GLOBALS['HTTP_POST_VARS']['account_firstname'],
|
|
'account_lastname' => $GLOBALS['HTTP_POST_VARS']['account_lastname'],
|
|
'account_passwd' => $GLOBALS['HTTP_POST_VARS']['account_passwd'],
|
|
'account_status' => ($GLOBALS['HTTP_POST_VARS']['account_status']?$GLOBALS['HTTP_POST_VARS']['account_status']:''),
|
|
'old_loginid' => ($GLOBALS['HTTP_GET_VARS']['old_loginid']?rawurldecode($GLOBALS['HTTP_GET_VARS']['old_loginid']):''),
|
|
'account_id' => ($GLOBALS['HTTP_GET_VARS']['account_id']?$GLOBALS['HTTP_GET_VARS']['account_id']:0),
|
|
'account_passwd_2' => $GLOBALS['HTTP_POST_VARS']['account_passwd_2'],
|
|
'account_groups' => $GLOBALS['HTTP_POST_VARS']['account_groups'],
|
|
'account_permissions' => $GLOBALS['HTTP_POST_VARS']['account_permissions'],
|
|
'homedirectory' => $GLOBALS['HTTP_POST_VARS']['homedirectory'],
|
|
'loginshell' => $GLOBALS['HTTP_POST_VARS']['loginshell'],
|
|
'account_expires_month' => $GLOBALS['HTTP_POST_VARS']['account_expires_month'],
|
|
'account_expires_day' => $GLOBALS['HTTP_POST_VARS']['account_expires_day'],
|
|
'account_expires_year' => $GLOBALS['HTTP_POST_VARS']['account_expires_year']
|
|
/* 'file_space' => $GLOBALS['HTTP_POST_VARS']['account_file_space_number'] . "-" . $GLOBALS['HTTP_POST_VARS']['account_file_space_type'] */
|
|
);
|
|
|
|
if (!$errors = $this->validate_user($userData))
|
|
{
|
|
$userData['account_expires'] = $userData['expires'];
|
|
$GLOBALS['phpgw']->db->lock(
|
|
Array(
|
|
'phpgw_accounts',
|
|
'phpgw_nextid',
|
|
'phpgw_preferences',
|
|
'phpgw_sessions',
|
|
'phpgw_acl',
|
|
'phpgw_applications',
|
|
'phpgw_app_sessions',
|
|
'phpgw_hooks'
|
|
)
|
|
);
|
|
|
|
$GLOBALS['phpgw']->accounts->create($userData);
|
|
|
|
$userData['account_id'] = $GLOBALS['phpgw']->accounts->name2id($userData['account_lid']);
|
|
|
|
$apps = CreateObject('phpgwapi.applications',array($userData['account_id'],'u'));
|
|
$apps->read_installed_apps();
|
|
|
|
// Read Group Apps
|
|
if ($GLOBALS['HTTP_POST_VARS']['account_groups'])
|
|
{
|
|
$apps->account_type = 'g';
|
|
reset($GLOBALS['HTTP_POST_VARS']['account_groups']);
|
|
while($groups = each($GLOBALS['HTTP_POST_VARS']['account_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 = $userData['account_id'];
|
|
$apps->account_apps = Array(Array());
|
|
|
|
if ($userData['account_permissions'])
|
|
{
|
|
@reset($userData['account_permissions']);
|
|
while (list($app,$turned_on) = each($userData['account_permissions']))
|
|
{
|
|
if ($turned_on)
|
|
{
|
|
$apps->add($app);
|
|
if (!$apps_after[$app])
|
|
{
|
|
$apps_after[] = $app;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
$apps->save_repository();
|
|
|
|
$GLOBALS['phpgw']->acl->add_repository('preferences','changepassword',$userData['account_id'],1);
|
|
|
|
// Assign user to groups
|
|
if ($userData['account_groups'])
|
|
{
|
|
$c_acct_groups = count($userData['account_groups']);
|
|
for ($i=0;$i<$c_acct_groups;$i++)
|
|
{
|
|
$GLOBALS['phpgw']->acl->add_repository('phpgw_group',$userData['account_groups'][$i],$userData['account_id'],1);
|
|
}
|
|
}
|
|
|
|
if ($apps_after)
|
|
{
|
|
$GLOBALS['pref'] = CreateObject('phpgwapi.preferences',$userData['account_id']);
|
|
$GLOBALS['phpgw']->common->hook_single('add_def_pref','admin');
|
|
while ($apps = each($apps_after))
|
|
{
|
|
if (strcasecmp ($apps[0], 'admin') != 0)
|
|
{
|
|
$GLOBALS['phpgw']->common->hook_single('add_def_pref', $apps[1]);
|
|
}
|
|
}
|
|
$GLOBALS['pref']->save_repository(False);
|
|
}
|
|
|
|
$apps->account_apps = Array(Array());
|
|
$apps_after = Array(Array());
|
|
|
|
$GLOBALS['phpgw']->db->unlock();
|
|
|
|
/*
|
|
// start inlcuding other admin tools
|
|
while($app = each($apps_after))
|
|
{
|
|
$GLOBALS['phpgw']->common->hook_single('add_user_data', $value);
|
|
}
|
|
*/
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',
|
|
Array(
|
|
'menuaction' => 'admin.uiaccounts.list_users',
|
|
'cd' => $cd
|
|
)
|
|
)
|
|
);
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
|
}
|
|
else
|
|
{
|
|
$ui = createobject('admin.uiaccounts');
|
|
$ui->create_edit_user($userData['account_id'],$userData,$errors);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_users'));
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
|
}
|
|
}
|
|
|
|
function edit_group()
|
|
{
|
|
$temp_users = ($GLOBALS['HTTP_POST_VARS']['account_user']?$GLOBALS['HTTP_POST_VARS']['account_user']:Array());
|
|
$account_user = Array();
|
|
@reset($temp_users);
|
|
while(list($key,$user_id) = each($temp_users))
|
|
{
|
|
$account_user[$user_id] = ' selected';
|
|
}
|
|
@reset($account_user);
|
|
|
|
$group_permissions = ($GLOBALS['HTTP_POST_VARS']['account_apps']?$GLOBALS['HTTP_POST_VARS']['account_apps']:Array());
|
|
$account_apps = Array();
|
|
@reset($group_permissions);
|
|
while(list($key,$value) = each($group_permissions))
|
|
{
|
|
if($value)
|
|
{
|
|
$account_apps[$key] = True;
|
|
}
|
|
}
|
|
@reset($account_apps);
|
|
|
|
$group_info = Array(
|
|
'account_id' => ($GLOBALS['HTTP_POST_VARS']['account_id']?intval($GLOBALS['HTTP_POST_VARS']['account_id']):0),
|
|
'account_name' => ($GLOBALS['HTTP_POST_VARS']['account_name']?$GLOBALS['HTTP_POST_VARS']['account_name']:''),
|
|
'account_user' => $account_user,
|
|
'account_apps' => $account_apps
|
|
);
|
|
|
|
$this->validate_group($group_info);
|
|
|
|
// Lock tables
|
|
$GLOBALS['phpgw']->db->lock(
|
|
Array(
|
|
'phpgw_accounts',
|
|
'phpgw_preferences',
|
|
'phpgw_config',
|
|
'phpgw_applications',
|
|
'phpgw_hooks',
|
|
'phpgw_sessions',
|
|
'phpgw_acl',
|
|
'phpgw_app_sessions'
|
|
)
|
|
);
|
|
|
|
$group = CreateObject('phpgwapi.accounts',$group_info['account_id']);
|
|
$old_group_info = $group->read_repository();
|
|
|
|
// Set group apps
|
|
$apps = CreateObject('phpgwapi.applications',$group_info['account_info']);
|
|
$apps_before = $apps->read_account_specific();
|
|
$apps->update_data(Array());
|
|
$new_apps = Array();
|
|
if(count($group_info['account_apps']))
|
|
{
|
|
reset($group_info['account_apps']);
|
|
while(list($app,$value) = each($group_info['account_apps']))
|
|
{
|
|
$apps->add($app);
|
|
if(!@$apps_before[$app] || @$apps_before == False)
|
|
{
|
|
$new_apps[] = $app;
|
|
}
|
|
}
|
|
}
|
|
$apps->save_repository();
|
|
|
|
// Set new account_lid, if needed
|
|
if($old_group_info['account_lid'] <> $group_info['account_name'])
|
|
{
|
|
$group->data['account_lid'] = $group_info['account_name'];
|
|
|
|
$basedir = $GLOBALS['phpgw_info']['server']['files_dir'] . SEP . 'groups' . SEP;
|
|
if (! @rename($basedir . $old_group_info['account_lid'], $basedir . $group_info['account_name']))
|
|
{
|
|
$cd = 39;
|
|
}
|
|
else
|
|
{
|
|
$cd = 33;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$cd = 33;
|
|
}
|
|
|
|
// Set group acl
|
|
$acl = CreateObject('phpgwapi.acl',$group_info['account_id']);
|
|
// $acl->read_repository();
|
|
$old_group_list = $acl->get_ids_for_location($group_info['account_id'],1,'phpgw_group');
|
|
@reset($old_group_list);
|
|
while($old_group_list && list($key,$user_id) = each($old_group_list))
|
|
{
|
|
$acl->delete_repository('phpgw_group',$group_info['account_id'],$user_id);
|
|
if(!$group_info['account_user'][$user_id])
|
|
{
|
|
// If the user is logged in, it will force a refresh of the session_info
|
|
$GLOBALS['phpgw']->db->query("update phpgw_sessions set session_action='' "
|
|
."where session_lid='" . $GLOBALS['phpgw']->accounts->id2name($user_id)
|
|
. '@' . $GLOBALS['phpgw_info']['user']['domain'] . "'",__LINE__,__FILE__);
|
|
}
|
|
}
|
|
|
|
// $acl->save_repository();
|
|
// $acl->read_repository();
|
|
|
|
@reset($group_info['account_user']);
|
|
while(list($user_id,$dummy) = each($group_info['account_user']))
|
|
{
|
|
if(!$dummy)
|
|
{
|
|
continue;
|
|
}
|
|
$acl->add_repository('phpgw_group',$group_info['account_id'],$user_id,1);
|
|
|
|
// If the user is logged in, it will force a refresh of the session_info
|
|
$GLOBALS['phpgw']->db->query("update phpgw_sessions set session_action='' "
|
|
."where session_lid='" . $GLOBALS['phpgw']->accounts->id2name($user_id)
|
|
. '@' . $GLOBALS['phpgw_info']['user']['domain'] . "'",__LINE__,__FILE__);
|
|
|
|
// The following sets any default preferences needed for new applications..
|
|
// This is smart enough to know if previous preferences were selected, use them.
|
|
$docommit = False;
|
|
if($new_apps)
|
|
{
|
|
$GLOBALS['pref'] = CreateObject('phpgwapi.preferences',$user_id);
|
|
$t = $GLOBALS['pref']->read_repository();
|
|
@reset($new_apps);
|
|
while(list($app_key,$app_name) = each($new_apps))
|
|
{
|
|
if (!$t[($app_name=='admin'?'common':$app_name)])
|
|
{
|
|
$GLOBALS['phpgw']->common->hook_single('add_def_pref', $app_name);
|
|
$docommit = True;
|
|
}
|
|
}
|
|
}
|
|
if ($docommit)
|
|
{
|
|
$GLOBALS['pref']->save_repository();
|
|
}
|
|
|
|
// This is down here so we are sure to catch the acl changes
|
|
// for LDAP to update the memberuid attribute
|
|
$group->save_repository();
|
|
}
|
|
|
|
/*
|
|
// Update any other options here, since the above save_repository () depends
|
|
// on a group having users
|
|
$group->data['file_space'] = $GLOBALS['HTTP_POST_VARS']['account_file_space_number'] . "-" . $GLOBALS['HTTP_POST_VARS']['account_file_space_type'];
|
|
$group->save_repository();
|
|
*/
|
|
|
|
$GLOBALS['phpgw']->db->unlock();
|
|
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',
|
|
Array(
|
|
'menuaction' => 'admin.uiaccounts.list_groups',
|
|
'cd' => $cd
|
|
)
|
|
)
|
|
);
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
|
}
|
|
|
|
function edit_user()
|
|
{
|
|
if ($GLOBALS['HTTP_POST_VARS']['submit'])
|
|
{
|
|
$userData = array(
|
|
'account_lid' => $GLOBALS['HTTP_POST_VARS']['account_lid'],
|
|
'firstname' => $GLOBALS['HTTP_POST_VARS']['account_firstname'],
|
|
'lastname' => $GLOBALS['HTTP_POST_VARS']['account_lastname'],
|
|
'account_passwd' => $GLOBALS['HTTP_POST_VARS']['account_passwd'],
|
|
'status' => $GLOBALS['HTTP_POST_VARS']['account_status'],
|
|
'old_loginid' => ($GLOBALS['HTTP_GET_VARS']['old_loginid']?rawurldecode($GLOBALS['HTTP_GET_VARS']['old_loginid']):''),
|
|
'account_id' => ($GLOBALS['HTTP_GET_VARS']['account_id']?$GLOBALS['HTTP_GET_VARS']['account_id']:0),
|
|
'account_passwd_2' => $GLOBALS['HTTP_POST_VARS']['account_passwd_2'],
|
|
'account_groups' => $GLOBALS['HTTP_POST_VARS']['account_groups'],
|
|
'account_permissions' => $GLOBALS['HTTP_POST_VARS']['account_permissions'],
|
|
'homedirectory' => $GLOBALS['HTTP_POST_VARS']['homedirectory'],
|
|
'loginshell' => $GLOBALS['HTTP_POST_VARS']['loginshell'],
|
|
'account_expires_month' => $GLOBALS['HTTP_POST_VARS']['account_expires_month'],
|
|
'account_expires_day' => $GLOBALS['HTTP_POST_VARS']['account_expires_day'],
|
|
'account_expires_year' => $GLOBALS['HTTP_POST_VARS']['account_expires_year']
|
|
/* 'file_space' => $GLOBALS['HTTP_POST_VARS']['account_file_space_number'] . "-" . $GLOBALS['HTTP_POST_VARS']['account_file_space_type'] */
|
|
);
|
|
|
|
if (!$errors = $this->validate_user($userData))
|
|
{
|
|
$this->save_user($userData);
|
|
// check if would create a menu
|
|
// if we do, we can't return to the users list, because
|
|
// there are also some other plugins
|
|
$menuClass = CreateObject('admin.uimenuclass');
|
|
if (!$menuClass->createHTMLCode('edit_user'))
|
|
{
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',
|
|
Array(
|
|
'menuaction' => 'admin.uiaccounts.list_users',
|
|
'cd' => $cd
|
|
)
|
|
)
|
|
);
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
|
}
|
|
else
|
|
{
|
|
$linkdata = Array(
|
|
'menuaction' => 'admin.uiaccounts.edit_user',
|
|
'cd' => $cd,
|
|
'account_id' => $GLOBALS['HTTP_GET_VARS']['account_id']
|
|
);
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php', $linkdata));
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$ui = createobject('admin.uiaccounts');
|
|
$ui->create_edit_user($userData['account_id'],$userData,$errors);
|
|
}
|
|
}
|
|
}
|
|
|
|
function validate_group($group_info)
|
|
{
|
|
$errors = Array();
|
|
|
|
$group = CreateObject('phpgwapi.accounts',$group_info['account_id']);
|
|
$group->read_repository();
|
|
|
|
if(!$group_info['account_name'])
|
|
{
|
|
$errors[] = lang('You must enter a group name.');
|
|
}
|
|
|
|
if($group_info['account_name'] != $group->id2name($group_info['account_id']))
|
|
{
|
|
if ($group->exists($group_info['account_name']))
|
|
{
|
|
$errors[] = lang('Sorry, that group name has already been taken.');
|
|
}
|
|
}
|
|
|
|
/*
|
|
if (preg_match ("/\D/", $account_file_space_number))
|
|
{
|
|
$errors[] = lang ('File space must be an integer');
|
|
}
|
|
*/
|
|
if(count($errors))
|
|
{
|
|
$ui = createobject('admin.uiaccounts');
|
|
$ui->create_edit_group($group_info,$errors);
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
|
}
|
|
}
|
|
|
|
/* checks if the userdata are valid
|
|
returns FALSE if the data are correct
|
|
otherwise the error array
|
|
*/
|
|
function validate_user(&$_userData)
|
|
{
|
|
$totalerrors = 0;
|
|
|
|
if ($GLOBALS['phpgw_info']['server']['account_repository'] == 'ldap' && ! $allow_long_loginids)
|
|
{
|
|
if (strlen($_userData['account_lid']) > 8)
|
|
{
|
|
$error[$totalerrors] = lang('The loginid can not be more then 8 characters');
|
|
$totalerrors++;
|
|
}
|
|
}
|
|
|
|
if (!$_userData['account_lid'])
|
|
{
|
|
$error[$totalerrors] = lang('You must enter a loginid');
|
|
$totalerrors++;
|
|
}
|
|
|
|
if ($_userData['old_loginid'] != $_userData['account_lid'])
|
|
{
|
|
if ($GLOBALS['phpgw']->accounts->exists($_userData['account_lid']))
|
|
{
|
|
$error[$totalerrors] = lang('That loginid has already been taken');
|
|
$totalerrors++;
|
|
}
|
|
}
|
|
|
|
if ($_userData['account_passwd'] || $_userData['account_passwd_2'])
|
|
{
|
|
if ($_userData['account_passwd'] != $_userData['account_passwd_2'])
|
|
{
|
|
$error[$totalerrors] = lang('The two passwords are not the same');
|
|
$totalerrors++;
|
|
}
|
|
}
|
|
|
|
if (!count($_userData['account_permissions']) && !count($_userData['account_groups']))
|
|
{
|
|
$error[$totalerrors] = lang('You must add at least 1 permission or group to this account');
|
|
$totalerrors++;
|
|
}
|
|
|
|
if ($_userData['account_expires_month'] || $_userData['account_expires_day'] || $_userData['account_expires_year'])
|
|
{
|
|
if (! checkdate($_userData['account_expires_month'],$_userData['account_expires_day'],$_userData['account_expires_year']))
|
|
{
|
|
$error[$totalerrors] = lang('You have entered an invalid expiration date');
|
|
$totalerrors++;
|
|
}
|
|
else
|
|
{
|
|
$_userData['expires'] = mktime(2,0,0,$_userData['account_expires_month'],$_userData['account_expires_day'],$_userData['account_expires_year']);
|
|
$_userData['account_expires'] = $_userData['expires'];
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$_userData['expires'] = -1;
|
|
$_userData['account_expires'] = $_userData['expires'];
|
|
}
|
|
|
|
/*
|
|
$check_account_file_space = explode ('-', $_userData['file_space']);
|
|
if (preg_match ("/\D/", $check_account_file_space[0]))
|
|
{
|
|
$error[$totalerrors] = lang ('File space must be an integer');
|
|
$totalerrors++;
|
|
}
|
|
*/
|
|
|
|
if ($totalerrors == 0)
|
|
{
|
|
return FALSE;
|
|
}
|
|
else
|
|
{
|
|
return $error;
|
|
}
|
|
}
|
|
|
|
/* stores the userdata */
|
|
function save_user($_userData)
|
|
{
|
|
$account = CreateObject('phpgwapi.accounts',$_userData['account_id']);
|
|
$account->update_data($_userData);
|
|
$account->save_repository();
|
|
if ($_userData['account_passwd'])
|
|
{
|
|
$auth = CreateObject('phpgwapi.auth');
|
|
$auth->change_password($old_passwd, $_userData['account_passwd'], $_userData['account_id']);
|
|
}
|
|
|
|
$apps = CreateObject('phpgwapi.applications',array(intval($_userData['account_id']),'u'));
|
|
|
|
$apps->account_id = $_userData['account_id'];
|
|
if ($_userData['account_permissions'])
|
|
{
|
|
while($app = each($_userData['account_permissions']))
|
|
{
|
|
if($app[1])
|
|
{
|
|
$apps->add($app[0]);
|
|
}
|
|
}
|
|
}
|
|
$apps->save_repository();
|
|
|
|
$account = CreateObject('phpgwapi.accounts',$_userData['account_id']);
|
|
$allGroups = $account->get_list('groups');
|
|
|
|
if ($_userData['account_groups'])
|
|
{
|
|
reset($_userData['account_groups']);
|
|
while (list($key,$value) = each($_userData['account_groups']))
|
|
{
|
|
$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>"; */
|
|
|
|
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']);
|
|
}
|
|
}
|
|
$GLOBALS['phpgw']->session->delete_cache(intval($_userData['account_id']));
|
|
}
|
|
|
|
function load_group_users($account_id)
|
|
{
|
|
$temp_user = $GLOBALS['phpgw']->acl->get_ids_for_location($account_id,1,'phpgw_group');
|
|
if(!$temp_user)
|
|
{
|
|
return Array();
|
|
}
|
|
else
|
|
{
|
|
$group_user = $temp_user;
|
|
}
|
|
$account_user = Array();
|
|
while (list($key,$user) = each($group_user))
|
|
{
|
|
$account_user[$user] = ' selected';
|
|
}
|
|
@reset($account_user);
|
|
return $account_user;
|
|
}
|
|
|
|
function load_group_apps($account_id)
|
|
{
|
|
$apps = CreateObject('phpgwapi.applications',intval($account_id));
|
|
$app_list = $apps->read_account_specific();
|
|
$account_apps = Array();
|
|
while(list($key,$app) = each($app_list))
|
|
{
|
|
$account_apps[$app['name']] = True;
|
|
}
|
|
@reset($account_apps);
|
|
return $account_apps;
|
|
}
|
|
}
|
|
?>
|