2001-09-02 01:32:40 +02:00
|
|
|
<?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. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
2001-09-04 05:29:36 +02:00
|
|
|
/* $Id$ */
|
2001-12-21 04:41:06 +01:00
|
|
|
|
2001-09-02 01:32:40 +02:00
|
|
|
class soaccounts
|
|
|
|
{
|
|
|
|
function soaccounts()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-10-10 17:10:15 +02:00
|
|
|
function add_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 ($userData['account_groups'])
|
|
|
|
{
|
|
|
|
$apps->account_type = 'g';
|
|
|
|
reset($userData['account_groups']);
|
|
|
|
while($groups = each($userData['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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-21 04:41:06 +01:00
|
|
|
/* if ($apps_after)
|
2001-10-10 17:10:15 +02:00
|
|
|
{
|
|
|
|
$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);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
return $userData['account_id'];
|
|
|
|
}
|
2001-09-02 01:32:40 +02:00
|
|
|
}
|
|
|
|
?>
|