* @package api
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @version $Id$
*/
error_reporting(E_ALL & ~E_NOTICE);
magic_quotes_runtime(false);
$egw_min_php_version = '5.1';
if (!function_exists('version_compare') || version_compare(PHP_VERSION,$egw_min_php_version) < 0)
{
die("eGroupWare requires PHP $egw_min_php_version or greater.
Please contact your System Administrator to upgrade PHP!");
}
// check if eGW's pear repository is installed and prefer it over the other ones
if (is_dir(EGW_SERVER_ROOT.'/egw-pear'))
{
set_include_path(EGW_SERVER_ROOT.'/egw-pear'.PATH_SEPARATOR.get_include_path());
//echo "
include_path='".get_include_path()."'
\n"; } if (!defined('EGW_API_INC')) define('EGW_API_INC',PHPGW_API_INC); // this is to support the header upgrade /* Make sure the header.inc.php is current. */ if (!isset($GLOBALS['egw_domain']) || $GLOBALS['egw_info']['server']['versions']['header'] < $GLOBALS['egw_info']['server']['versions']['current_header']) { echo '!!! YOU DO NOT HAVE YOUR \$GLOBALS['egw_info']['flags']['currentapp'] SET !!!
\n";
echo '!!! PLEASE CORRECT THIS SITUATION !!!
egw-enviroment restored in %d ms
\n",1000*(perfgetmicrotime()-$GLOBALS['egw_info']['flags']['page_start_time'])); $GLOBALS['egw_info']['flags']['session_restore_time'] = microtime(true) - $GLOBALS['egw_info']['flags']['page_start_time']; if (is_object($GLOBALS['egw']->translation)) return; // exit this file, as the rest of the file creates a new egw-object and -enviroment } // egw object could NOT be restored from the session, create a new one unset($GLOBALS['egw']); $GLOBALS['egw_info'] = array('flags'=>$GLOBALS['egw_info']['flags']); unset($GLOBALS['egw_info']['flags']['restored_from_session']); unset($_SESSION['egw_info_cache']); unset($_SESSION['egw_required_files']); unset($_SESSION['egw_object_cache']); } //echo "could not restore egw_info and the egw-object!!!
\n"; } else // destroy the session-cache if called by login or logout { unset($_SESSION['egw_info_cache']); unset($_SESSION['egw_required_files']); unset($_SESSION['egw_object_cache']); } } print_debug('sane environment','messageonly','api'); /****************************************************************************\ * Multi-Domain support * \****************************************************************************/ if (!isset($GLOBALS['egw_info']['server']['default_domain']) || // allow to overwrite the default domain !isset($GLOBALS['egw_domain'][$GLOBALS['egw_info']['server']['default_domain']])) { if(isset($GLOBALS['egw_domain'][$_SERVER['SERVER_NAME']])) { $GLOBALS['egw_info']['server']['default_domain'] = $_SERVER['SERVER_NAME']; } else { $domain_part = explode('.',$_SERVER['SERVER_NAME']); array_shift($domain_part); $domain_part = implode('.',$domain_part); if(isset($GLOBALS['egw_domain'][$domain_part])) { $GLOBALS['egw_info']['server']['default_domain'] = $domain_part; } else { reset($GLOBALS['egw_domain']); list($GLOBALS['egw_info']['server']['default_domain']) = each($GLOBALS['egw_domain']); } unset($domain_part); } } if (isset($_POST['login'])) // on login { $GLOBALS['login'] = $_POST['login']; if (strpos($GLOBALS['login'],'@') === False || count($GLOBALS['egw_domain']) == 1) { $GLOBALS['login'] .= '@' . get_var('logindomain',array('POST'),$GLOBALS['egw_info']['server']['default_domain']); } $parts = explode('@',$GLOBALS['login']); $GLOBALS['egw_info']['user']['domain'] = array_pop($parts); } else // on "normal" pageview { $GLOBALS['egw_info']['user']['domain'] = get_var('domain',array('GET','COOKIE'),false); } if (@isset($GLOBALS['egw_domain'][$GLOBALS['egw_info']['user']['domain']])) { $GLOBALS['egw_info']['server']['db_host'] = $GLOBALS['egw_domain'][$GLOBALS['egw_info']['user']['domain']]['db_host']; $GLOBALS['egw_info']['server']['db_port'] = $GLOBALS['egw_domain'][$GLOBALS['egw_info']['user']['domain']]['db_port']; $GLOBALS['egw_info']['server']['db_name'] = $GLOBALS['egw_domain'][$GLOBALS['egw_info']['user']['domain']]['db_name']; $GLOBALS['egw_info']['server']['db_user'] = $GLOBALS['egw_domain'][$GLOBALS['egw_info']['user']['domain']]['db_user']; $GLOBALS['egw_info']['server']['db_pass'] = $GLOBALS['egw_domain'][$GLOBALS['egw_info']['user']['domain']]['db_pass']; $GLOBALS['egw_info']['server']['db_type'] = $GLOBALS['egw_domain'][$GLOBALS['egw_info']['user']['domain']]['db_type']; } else { $GLOBALS['egw_info']['server']['db_host'] = $GLOBALS['egw_domain'][$GLOBALS['egw_info']['server']['default_domain']]['db_host']; $GLOBALS['egw_info']['server']['db_port'] = $GLOBALS['egw_domain'][$GLOBALS['egw_info']['server']['default_domain']]['db_port']; $GLOBALS['egw_info']['server']['db_name'] = $GLOBALS['egw_domain'][$GLOBALS['egw_info']['server']['default_domain']]['db_name']; $GLOBALS['egw_info']['server']['db_user'] = $GLOBALS['egw_domain'][$GLOBALS['egw_info']['server']['default_domain']]['db_user']; $GLOBALS['egw_info']['server']['db_pass'] = $GLOBALS['egw_domain'][$GLOBALS['egw_info']['server']['default_domain']]['db_pass']; $GLOBALS['egw_info']['server']['db_type'] = $GLOBALS['egw_domain'][$GLOBALS['egw_info']['server']['default_domain']]['db_type']; } print_debug('domain',@$GLOBALS['egw_info']['user']['domain'],'api'); // the egw-object instanciates all sub-classes (eg. $GLOBALS['egw']->db) and the egw_info array $GLOBALS['egw'] = new egw(array_keys($GLOBALS['egw_domain'])); if ($GLOBALS['egw_info']['flags']['currentapp'] != 'login') { if (!$GLOBALS['egw_info']['server']['show_domain_selectbox']) { unset ($GLOBALS['egw_domain']); // we kill this for security reasons } //printf("egw-enviroment new created in %d ms
\n",1000*(perfgetmicrotime()-$GLOBALS['egw_info']['flags']['page_start_time'])); } // saving the the egw_info array and the egw-object in the session if ($GLOBALS['egw_info']['server']['sessions_type'] == 'php4-restore' && $GLOBALS['egw_info']['flags']['currentapp'] != 'login') { $_SESSION['egw_info_cache'] = $GLOBALS['egw_info']; unset($_SESSION['egw_info_cache']['flags']); // dont save the flags, they change on each request $_SESSION['egw_object_cache'] = serialize($GLOBALS['egw']); }