2001-07-30 17:59:25 +02:00
< ? php
2006-05-29 04:56:16 +02:00
/**
* Setup - create admin account
*
* @ link http :// www . egroupware . org
* @ package setup
* @ author Miles Lott < milos @ groupwhere . org >
* @ author Ralf Becker < RalfBecker - AT - outdoor - training . de >
* @ license http :// opensource . org / licenses / gpl - license . php GPL - GNU General Public License
* @ version $Id $
*/
if ( ! strstr ( $_SERVER [ 'PHP_SELF' ], 'setup-cli.php' ))
2001-09-17 04:23:41 +02:00
{
2006-05-29 04:56:16 +02:00
$GLOBALS [ 'egw_info' ] = array (
'flags' => array (
'noheader' => True ,
'nonavbar' => True ,
'currentapp' => 'home' ,
'noapi' => True
));
include ( './inc/functions.inc.php' );
// Authorize the user to use setup app and load the database
// Does not return unless user is authorized
if ( ! $GLOBALS [ 'egw_setup' ] -> auth ( 'Config' ) || get_var ( 'cancel' , Array ( 'POST' )))
{
Header ( 'Location: index.php' );
exit ;
}
$GLOBALS [ 'egw_setup' ] -> loaddb ( true );
2001-07-30 17:59:25 +02:00
}
2005-11-27 08:48:22 +01:00
$error = '' ;
if ( $_POST [ 'submit' ])
{
/* Posted admin data */
$passwd = get_var ( 'passwd' , Array ( 'POST' ));
$passwd2 = get_var ( 'passwd2' , Array ( 'POST' ));
$username = get_var ( 'username' , Array ( 'POST' ));
$fname = get_var ( 'fname' , Array ( 'POST' ));
$lname = get_var ( 'lname' , Array ( 'POST' ));
2006-05-29 04:56:16 +02:00
$email = get_var ( 'email' , Array ( 'POST' ));
2005-11-27 08:48:22 +01:00
if ( $passwd != $passwd2 || ! $username )
{
$error = '<p>' . lang ( 'Passwords did not match, please re-enter' ) . " .</p> \n " ;
}
if ( ! $username )
{
$error = '<p>' . lang ( 'You must enter a username for the admin' ) . " .</p> \n " ;
}
}
if ( ! $_POST [ 'submit' ] || $error )
2001-12-11 05:36:40 +01:00
{
2005-03-04 13:40:28 +01:00
$tpl_root = $GLOBALS [ 'egw_setup' ] -> html -> setup_tpl_dir ( 'setup' );
2002-08-12 01:54:58 +02:00
$setup_tpl = CreateObject ( 'setup.Template' , $tpl_root );
2001-12-11 05:36:40 +01:00
$setup_tpl -> set_file ( array (
'T_head' => 'head.tpl' ,
'T_footer' => 'footer.tpl' ,
'T_alert_msg' => 'msg_alert_msg.tpl' ,
'T_login_main' => 'login_main.tpl' ,
'T_login_stage_header' => 'login_stage_header.tpl' ,
2005-11-27 08:48:22 +01:00
'T_admin_account' => 'admin_account.tpl'
2001-12-11 05:36:40 +01:00
));
$setup_tpl -> set_block ( 'T_login_stage_header' , 'B_multi_domain' , 'V_multi_domain' );
$setup_tpl -> set_block ( 'T_login_stage_header' , 'B_single_domain' , 'V_single_domain' );
2001-09-17 04:23:41 +02:00
2005-11-27 08:48:22 +01:00
$GLOBALS [ 'egw_setup' ] -> html -> show_header ( lang ( 'Create admin account' ));
2001-09-17 04:23:41 +02:00
2005-11-27 08:48:22 +01:00
$setup_tpl -> set_var ( array (
'error' => $error ,
'username' => $username ,
'fname' => $fname ,
'lname' => $lname ,
2006-06-08 01:10:06 +02:00
'email' => $email ,
2005-11-27 08:48:22 +01:00
));
$setup_tpl -> set_var ( 'action_url' , 'admin_account.php' );
2006-06-08 01:10:06 +02:00
$setup_tpl -> set_var ( 'description' , lang ( 'This will create a first user in eGroupWare or reset password and admin rights of an exiting user' ));
2004-01-26 04:17:55 +01:00
$setup_tpl -> set_var ( 'lang_deleteall' , lang ( 'Delete all existing SQL accounts, groups, ACLs and preferences (normally not necessary)?' ));
2003-12-29 22:12:37 +01:00
2001-12-11 05:36:40 +01:00
$setup_tpl -> set_var ( 'detailadmin' , lang ( 'Details for Admin account' ));
$setup_tpl -> set_var ( 'adminusername' , lang ( 'Admin username' ));
$setup_tpl -> set_var ( 'adminfirstname' , lang ( 'Admin first name' ));
$setup_tpl -> set_var ( 'adminlastname' , lang ( 'Admin last name' ));
2006-05-29 04:56:16 +02:00
$setup_tpl -> set_var ( 'adminemail' , lang ( 'Admin email address' ));
$setup_tpl -> set_var ( 'adminpassword' , lang ( 'Admin password' ));
2001-12-11 05:36:40 +01:00
$setup_tpl -> set_var ( 'adminpassword2' , lang ( 'Re-enter password' ));
2006-06-08 01:10:06 +02:00
$setup_tpl -> set_var ( 'admin_all_apps' , lang ( 'Give admin access to all installed apps' ));
$setup_tpl -> set_var ( 'all_apps_desc' , lang ( 'Usually more annoying.<br />Admins can use Admin >> Manage accounts or groups to give access to further apps.' ));
2001-12-11 05:36:40 +01:00
$setup_tpl -> set_var ( 'create_demo_accounts' , lang ( 'Create demo accounts' ));
2006-06-08 01:10:06 +02:00
$setup_tpl -> set_var ( 'demo_desc' , lang ( 'The username/passwords are: demo/guest, demo2/guest and demo3/guest.' ));
2001-12-11 05:36:40 +01:00
2003-08-28 16:31:11 +02:00
$setup_tpl -> set_var ( 'lang_submit' , lang ( 'Save' ));
$setup_tpl -> set_var ( 'lang_cancel' , lang ( 'Cancel' ));
2005-11-27 08:48:22 +01:00
$setup_tpl -> pparse ( 'out' , 'T_admin_account' );
2005-03-04 13:40:28 +01:00
$GLOBALS [ 'egw_setup' ] -> html -> show_footer ();
2001-12-11 05:36:40 +01:00
}
else
{
/* Begin transaction for acl, etc */
2005-03-04 13:40:28 +01:00
$GLOBALS [ 'egw_setup' ] -> db -> transaction_begin ();
2001-12-11 05:36:40 +01:00
2004-01-26 04:17:55 +01:00
if ( $_POST [ 'delete_all' ])
2003-12-29 22:12:37 +01:00
{
/* Now, clear out existing tables */
2005-11-27 08:48:22 +01:00
foreach ( array ( $GLOBALS [ 'egw_setup' ] -> accounts_table , $GLOBALS [ 'egw_setup' ] -> prefs_table , $GLOBALS [ 'egw_setup' ] -> acl_table , 'egw_access_log' ) as $table )
2005-11-02 12:45:52 +01:00
{
2005-11-27 08:48:22 +01:00
$GLOBALS [ 'egw_setup' ] -> db -> delete ( $table , '1=1' , __LINE__ , __FILE__ );
2005-11-02 12:45:52 +01:00
}
2003-12-29 22:12:37 +01:00
}
2001-12-11 05:36:40 +01:00
/* Create the demo groups */
2005-03-04 13:40:28 +01:00
$defaultgroupid = ( int ) $GLOBALS [ 'egw_setup' ] -> add_account ( 'Default' , 'Default' , 'Group' , False , False );
$admingroupid = ( int ) $GLOBALS [ 'egw_setup' ] -> add_account ( 'Admins' , 'Admin' , 'Group' , False , False );
2004-07-13 00:06:13 +02:00
if ( ! $defaultgroupid || ! $admingroupid )
{
2006-06-08 01:10:06 +02:00
if ( strstr ( $_SERVER [ 'PHP_SELF' ], 'setup-cli.php' ))
{
return 42 ; //lang('Error in group-creation !!!'); // dont exit on setup-cli
}
2004-07-13 00:06:13 +02:00
echo '<p><b>' . lang ( 'Error in group-creation !!!' ) . " </b></p> \n " ;
echo '<p>' . lang ( 'click <a href="index.php">here</a> to return to setup.' ) . " </p> \n " ;
2005-03-04 13:40:28 +01:00
$GLOBALS [ 'egw_setup' ] -> db -> transaction_abort ();
2004-07-13 00:06:13 +02:00
exit ;
}
2001-07-30 17:59:25 +02:00
2006-06-08 01:10:06 +02:00
// Group perms for the default group
2005-11-25 21:31:12 +01:00
$GLOBALS [ 'egw_setup' ] -> add_acl ( array ( 'addressbook' , 'calendar' , 'infolog' , 'felamimail' , 'preferences' , 'home' , 'manual' ), 'run' , $defaultgroupid );
2004-03-21 17:11:51 +01:00
2006-06-08 01:10:06 +02:00
$apps = array ();
2005-11-02 12:45:52 +01:00
$GLOBALS [ 'egw_setup' ] -> db -> select ( $GLOBALS [ 'egw_setup' ] -> applications_table , 'app_name' , 'app_enabled < 3' , __LINE__ , __FILE__ );
2005-03-04 13:40:28 +01:00
while ( $GLOBALS [ 'egw_setup' ] -> db -> next_record ())
2004-03-21 17:11:51 +01:00
{
2006-06-08 01:10:06 +02:00
$apps [] = $GLOBALS [ 'egw_setup' ] -> db -> f ( 'app_name' );
}
// if not otherwise selected, give admin only access to the rest of the default apps,
// not yet set for the default group or development only apps like (etemplate, jinn, tt's)
if ( ! $_POST [ 'admin_all_apps' ])
{
$apps = array_intersect ( array ( 'admin' , 'emailadmin' , 'filemanager' , 'mydms' , 'news_admin' , 'phpbrain' , 'phpsysinfo' , 'polls' , 'projectmanager' , 'resources' , 'sambaadmin' , 'sitemgr' , 'timesheet' , 'wiki' ), $apps );
2004-03-21 17:11:51 +01:00
}
2006-06-08 01:10:06 +02:00
$GLOBALS [ 'egw_setup' ] -> add_acl ( $apps , 'run' , $admingroupid );
2003-05-18 18:51:45 +02:00
2006-06-08 01:10:06 +02:00
// give admin access to default apps, not yet set for the default group
2003-05-18 18:51:45 +02:00
function insert_default_prefs ( $accountid )
{
2003-09-09 00:21:22 +02:00
$defaultprefs = array (
2003-12-19 13:34:45 +01:00
'common' => array (
'maxmatchs' => 15 ,
'template_set' => 'idots' ,
'theme' => 'idots' ,
'navbar_format' => 'icons' ,
'tz_offset' => 0 ,
'dateformat' => 'Y/m/d' ,
'timeformat' => '24' ,
'lang' => get_var ( 'ConfigLang' , Array ( 'POST' , 'COOKIE' ), 'en' ),
'default_app' => 'calendar' ,
'currency' => '$' ,
'show_help' => True ,
2004-08-13 23:04:59 +02:00
'max_icons' => 12 ,
2003-09-09 00:21:22 +02:00
),
2003-12-19 13:34:45 +01:00
'calendar' => array (
'workdaystarts' => 9 ,
'workdayends' => 17 ,
'weekdaystarts' => 'Monday' ,
'defaultcalendar' => 'day' ,
2003-09-09 00:21:22 +02:00
'planner_start_with_group' => $GLOBALS [ 'defaultgroupid' ],
),
);
2003-05-18 18:51:45 +02:00
foreach ( $defaultprefs as $app => $prefs )
{
2005-03-24 14:15:12 +01:00
// only insert them, if they not already exist
2005-11-13 08:49:56 +01:00
$GLOBALS [ 'egw_setup' ] -> db -> select ( $GLOBALS [ 'egw_setup' ] -> prefs_table , '*' , array (
2005-03-24 14:15:12 +01:00
'preference_owner' => $accountid ,
'preference_app' => $app ,
), __LINE__ , __FILE__ );
if ( ! $GLOBALS [ 'egw_setup' ] -> db -> next_record ())
{
2005-11-13 08:49:56 +01:00
$GLOBALS [ 'egw_setup' ] -> db -> insert ( $GLOBALS [ 'egw_setup' ] -> prefs_table , array (
2005-03-24 14:15:12 +01:00
'preference_value' => serialize ( $prefs )
), array (
'preference_owner' => $accountid ,
'preference_app' => $app ,
), __LINE__ , __FILE__ );
}
2003-05-18 18:51:45 +02:00
}
}
2006-06-10 18:00:26 +02:00
insert_default_prefs ( - 2 ); // -2 = default prefs
2002-04-15 00:12:59 +02:00
/* Creation of the demo accounts is optional - the checkbox is on by default. */
2002-04-29 21:49:24 +02:00
if ( get_var ( 'create_demo' , Array ( 'POST' )))
2001-12-11 05:36:40 +01:00
{
2003-12-29 22:12:37 +01:00
// Create 3 demo accounts
2005-03-04 13:40:28 +01:00
$GLOBALS [ 'egw_setup' ] -> add_account ( 'demo' , 'Demo' , 'Account' , 'guest' );
$GLOBALS [ 'egw_setup' ] -> add_account ( 'demo2' , 'Demo2' , 'Account' , 'guest' );
$GLOBALS [ 'egw_setup' ] -> add_account ( 'demo3' , 'Demo3' , 'Account' , 'guest' );
2001-12-11 05:36:40 +01:00
}
2001-09-17 04:23:41 +02:00
2003-12-29 22:12:37 +01:00
/* Create records for administrator account, with Admins as primary and Default as additional group */
2006-05-29 04:56:16 +02:00
$accountid = $GLOBALS [ 'egw_setup' ] -> add_account ( $username , $fname , $lname , $passwd , 'Admins' , True , $email );
2004-07-13 00:06:13 +02:00
if ( ! $accountid )
{
2006-06-08 01:10:06 +02:00
if ( strstr ( $_SERVER [ 'PHP_SELF' ], 'setup-cli.php' ))
{
return 41 ; //lang('Error in admin-creation !!!'); // dont exit on setup-cli
}
2004-07-13 00:06:13 +02:00
echo '<p><b>' . lang ( 'Error in admin-creation !!!' ) . " </b></p> \n " ;
echo '<p>' . lang ( 'click <a href="index.php">here</a> to return to setup.' ) . " </p> \n " ;
2005-03-04 13:40:28 +01:00
$GLOBALS [ 'egw_setup' ] -> db -> transaction_abort ();
2004-07-13 00:06:13 +02:00
exit ;
}
2006-06-07 01:44:50 +02:00
$GLOBALS [ 'egw_setup' ] -> set_memberships ( array ( $admingroupid , $defaultgroupid ), $accountid );
2002-03-03 22:53:00 +01:00
2005-03-04 13:40:28 +01:00
$GLOBALS [ 'egw_setup' ] -> db -> transaction_commit ();
2001-12-11 05:36:40 +01:00
2006-05-29 04:56:16 +02:00
if ( ! strstr ( $_SERVER [ 'PHP_SELF' ], 'setup-cli.php' ))
{
Header ( 'Location: index.php' );
}
2001-12-11 05:36:40 +01:00
}