mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:29 +01:00
b5c28fba48
NTLM SSO removes Windows users on a PC, which is a member of a Windows domain and who are logged into that domain, from the need to explicitly log into eGW. They simply point IE to the eGW URL (eg. http://domain.com/egroupware/) and start working. They can of cause explicitly log out and log in as an other user. For more information look at the README at http://www.egroupware.org/viewvc/trunk/phpgwapi/ntml/README 2. different authentication for SyncML and/or GroupDAV You can now use eg. an external auth provider for the login via the WebGUI (eg. ADS) and the passwords stored in SQL for SyncML.
166 lines
4.4 KiB
PHP
Executable File
166 lines
4.4 KiB
PHP
Executable File
<?php
|
|
/**************************************************************************\
|
|
* eGroupWare *
|
|
* http://www.egroupware.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$ */
|
|
|
|
if(!file_exists('header.inc.php'))
|
|
{
|
|
Header('Location: setup/index.php');
|
|
exit;
|
|
}
|
|
|
|
if(isset($_GET['hasupdates']) && $_GET['hasupdates'] == 'yes')
|
|
{
|
|
$hasupdates = True;
|
|
}
|
|
|
|
/*
|
|
This is the menuaction driver for the multi-layered design
|
|
*/
|
|
if(isset($_GET['menuaction']) && preg_match('/^[A-Za-z0-9_]+\.[A-Za-z0-9_]+\.[A-Za-z0-9_]+$/',$_GET['menuaction']))
|
|
{
|
|
list($app,$class,$method) = explode('.',$_GET['menuaction']);
|
|
if(! $app || ! $class || ! $method)
|
|
{
|
|
$invalid_data = True;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$app = 'home';
|
|
$invalid_data = True;
|
|
}
|
|
|
|
if($app == 'phpgwapi')
|
|
{
|
|
$app = 'home';
|
|
$api_requested = True;
|
|
}
|
|
|
|
$GLOBALS['egw_info'] = array(
|
|
'flags' => array(
|
|
'noheader' => True,
|
|
'nonavbar' => True,
|
|
'currentapp' => $app
|
|
)
|
|
);
|
|
include('./header.inc.php');
|
|
|
|
// Check if we are using windows or normal webpage
|
|
$windowed = false;
|
|
$tpl_info = EGW_SERVER_ROOT . '/phpgwapi/templates/' . basename($GLOBALS['egw_info']['user']['preferences']['common']['template_set']) . '/setup/setup.inc.php';
|
|
|
|
if(@file_exists($tpl_info))
|
|
{
|
|
include_once($tpl_info);
|
|
// if(isset($template_info))
|
|
// {
|
|
if($GLOBALS['egw_info']['template'][$GLOBALS['egw_info']['user']['preferences']['common']['template_set']]['windowed'])
|
|
{
|
|
$windowed = true;
|
|
}
|
|
// }
|
|
}
|
|
|
|
if($app == 'home' && !$api_requested && !$windowed)
|
|
{
|
|
if ($GLOBALS['egw_info']['server']['force_default_app'] && $GLOBALS['egw_info']['server']['force_default_app'] != 'user_choice')
|
|
{
|
|
$GLOBALS['egw_info']['user']['preferences']['common']['default_app'] = $GLOBALS['egw_info']['server']['force_default_app'];
|
|
}
|
|
if($GLOBALS['egw_info']['user']['preferences']['common']['default_app'] && !$hasupdates)
|
|
{
|
|
/** Test if our default app is available else open about.php */
|
|
if(is_file('./'.$GLOBALS['egw_info']['user']['preferences']['common']['default_app'].'/index.php'))
|
|
{
|
|
$GLOBALS['egw']->redirect_link('/'.$GLOBALS['egw_info']['user']['preferences']['common']['default_app'].'/index.php');
|
|
}
|
|
else
|
|
{
|
|
$GLOBALS['egw']->redirect_link('/about.php');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$GLOBALS['egw']->redirect_link('/home/index.php');
|
|
}
|
|
}
|
|
|
|
if($windowed && $_GET['cd'] == 'yes')
|
|
{
|
|
$GLOBALS['egw_info']['flags'] = array(
|
|
'noheader' => False,
|
|
'nonavbar' => False,
|
|
'currentapp' => 'eGroupWare'
|
|
);
|
|
$GLOBALS['egw']->common->egw_header();
|
|
$GLOBALS['egw']->common->egw_footer();
|
|
|
|
}
|
|
else
|
|
{
|
|
if($api_requested)
|
|
{
|
|
$app = 'phpgwapi';
|
|
}
|
|
|
|
require_once(EGW_INCLUDE_ROOT.'/'.$app.'/inc/class.'.$class.'.inc.php');
|
|
$GLOBALS[$class] = $obj = new $class();
|
|
if((is_array($obj->public_functions) && $obj->public_functions[$method]) && !$invalid_data)
|
|
{
|
|
$obj->$method();
|
|
unset($app);
|
|
unset($class);
|
|
unset($method);
|
|
unset($invalid_data);
|
|
unset($api_requested);
|
|
}
|
|
else
|
|
{
|
|
if(!$app || !$class || !$method || $invalid_data)
|
|
{
|
|
if(@is_object($GLOBALS['egw']->log))
|
|
{
|
|
$GLOBALS['egw']->log->message(array(
|
|
'text' => 'W-BadmenuactionVariable, menuaction missing or corrupt: %1',
|
|
'p1' => $menuaction,
|
|
'line' => __LINE__,
|
|
'file' => __FILE__
|
|
));
|
|
}
|
|
}
|
|
|
|
if(!is_array($GLOBALS[$class]->public_functions) || !$GLOBALS[$class]->public_functions[$method] && $method)
|
|
{
|
|
if(@is_object($GLOBALS['egw']->log))
|
|
{
|
|
$GLOBALS['egw']->log->message(array(
|
|
'text' => 'W-BadmenuactionVariable, attempted to access private method: %1',
|
|
'p1' => $method,
|
|
'line' => __LINE__,
|
|
'file' => __FILE__
|
|
));
|
|
}
|
|
}
|
|
if(@is_object($GLOBALS['egw']->log))
|
|
{
|
|
$GLOBALS['egw']->log->commit();
|
|
}
|
|
|
|
$GLOBALS['egw']->redirect_link('/home/index.php');
|
|
}
|
|
|
|
if(!isset($GLOBALS['egw_info']['nofooter']))
|
|
{
|
|
$GLOBALS['egw']->common->egw_footer();
|
|
}
|
|
}
|