Code

Updated schemaCheck
[gosa.git] / gosa-core / html / main.php
1 <?php
2 /*
3  * This code is part of GOsa (http://www.gosa-project.org)
4  * Copyright (C) 2003-2008 GONICUS GmbH
5  *
6  * ID: $$Id$$
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
23 /* Save start time */
24 $start = microtime();
26 /* Basic setup, remove eventually registered sessions */
27 require_once ("../include/php_setup.inc");
28 require_once ("functions.inc");
30 /* Set header */
31 header("Content-type: text/html; charset=UTF-8");
33 /* Set the text domain as 'messages' */
34 $domain = 'messages';
35 bindtextdomain($domain, LOCALE_DIR);
36 textdomain($domain);
38 /* Remember everything we did after the last click */
39 session::start();
40 session::set('errorsAlreadyPosted',array());
41 session::global_set('runtime_cache',array());
42 session::set('limit_exceeded',FALSE);
44 pathNavigator::clear();
46 if ($_SERVER["REQUEST_METHOD"] == "POST"){
47   @DEBUG (DEBUG_POST, __LINE__, __FUNCTION__, __FILE__, $_POST, "_POST");
48 }
49 @DEBUG (DEBUG_POST, __LINE__, __FUNCTION__, __FILE__, session::get_all(), "_SESSION");
51 /* Logged in? Simple security check */
52 if (!session::global_is_set('config')){
53   new log("security","login","",array(),"main.php called without session - logging out") ;
54   header ("Location: logout.php");
55   exit;
56
58 /* Check for uniqe ip address */
59 $ui= session::global_get('ui');
60 if ($_SERVER['REMOTE_ADDR'] != $ui->ip){
61   new log("security","login","",array(),"main.php called with session which has a changed IP address.") ;
62   header ("Location: logout.php");
63   exit;
64 }
65 $config= session::global_get('config');
66 $config->check_and_reload();
67 $config->configRegistry->reload();
68 if(!$config->configRegistry->validateSchemata($force=FALSE,$disableIncompatiblePlugins=TRUE)){
69     $config->configRegistry->displayErrors();
70 }
72 /* Enable compressed output */
73 if ($config->get_cfg_value("core","sendCompressedOutput") == "true"){
74   ob_start("ob_gzhandler");
75 }
77 /* Check for invalid sessions */
78 if(session::global_get('_LAST_PAGE_REQUEST') == ""){
79   session::global_set('_LAST_PAGE_REQUEST',time());
80 }else{
82   /* check GOsa.conf for defined session lifetime */
83   $max_life= $config->get_cfg_value("core","sessionLifetime");
85   /* get time difference between last page reload */
86   $request_time = (time()- session::global_get('_LAST_PAGE_REQUEST'));
88   /* If page wasn't reloaded for more than max_life seconds 
89    * kill session
90    */
91   if($request_time > $max_life){
92     session::destroy();
93     new log("security","login","",array(),"main.php called without session - logging out") ;
94     header ("Location: logout.php");
95     exit;
96   }
97   session::global_set('_LAST_PAGE_REQUEST',time());
98 }
101 @DEBUG (DEBUG_CONFIG, __LINE__, __FUNCTION__, __FILE__, $config->data, "config");
103 /* Set template compile directory */
104 $smarty->compile_dir= $config->get_cfg_value("core","templateCompileDirectory");
105 $smarty->error_unassigned= true;
107 /* Set default */
108 $reload_navigation = false;
110 /* Set last initialised language to current, browser settings */
111 if(!session::global_is_set('Last_init_lang')){
112   $reload_navigation = true;
113   session::global_set('Last_init_lang',get_browser_language());
116 /* If last language != current force navi reload */
117 $lang= get_browser_language();
118 if(session::global_get('Last_init_lang') != $lang){
119   $reload_navigation = true;
122 /* Language setup */
123 session::global_set('Last_init_lang',$lang);
125 /* Preset current main base */
126 if(!session::global_is_set('CurrentMainBase')){
127   session::global_set('CurrentMainBase',get_base_from_people($ui->dn));
130 putenv("LANGUAGE=");
131 putenv("LANG=$lang");
132 setlocale(LC_ALL, $lang);
133 $GLOBALS['t_language']= $lang;
134 $GLOBALS['t_gettext_message_dir'] = $BASE_DIR.'/locale/';
136 /* Check if the config is up to date */
137 $config->check_config_version();
139 /* Set the text domain as 'messages' */
140 $domain = 'messages';
141 bindtextdomain($domain, LOCALE_DIR);
142 textdomain($domain);
143 @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $lang, "Setting language to");
145 /* Prepare plugin list */
146 if (!session::global_is_set('plist')){
147   /* Initially load all classes */
148   $class_list= get_declared_classes();
149   foreach ($class_mapping as $class => $path){
150     if (!in_array($class, $class_list)){
151       if (is_readable("$BASE_DIR/$path")){
152         require_once("$BASE_DIR/$path");
153       } else {
154         msg_dialog::display(_("Fatal error"),
155             sprintf(_("Cannot locate file %s - please run %s to fix this"),
156               bold("$BASE_DIR/$path"), bold("update-gosa")), FATAL_ERROR_DIALOG);
157         exit;
158       }
159     }
160   }
162   session::global_set('plist', new pluglist($config, $ui));
164   /* Load ocMapping into userinfo */
165   $tmp= new acl($config, NULL, $ui->dn);
166   $ui->ocMapping= $tmp->ocMapping;
167   session::global_set('ui',$ui);
169 $plist= session::global_get('plist');
171 /* Check for register globals */
172 if (isset($global_check) && $config->boolValueIsTrue("core","forceGlobals")){
173   msg_dialog::display(
174             _("PHP configuration"),
175             _("FATAL: Register globals is active. Please fix this in order to continue."),
176             FATAL_ERROR_DIALOG);
178   new log("security","login","",array(),"Register globals is on. For security reasons, this should be turned off.") ;
179   session::destroy ();
180   exit;
183 /* Check Plugin variable */
184 if (session::global_is_set('plugin_dir')){
185   $old_plugin_dir= session::global_get('plugin_dir');
186 } else {
187   $old_plugin_dir= "";
189 if (isset($_GET['plug']) && $plist->plugin_access_allowed($_GET['plug'])){
190   $plug= validate($_GET['plug']);
191   $plugin_dir= $plist->get_path($plug);
192   session::global_set('plugin_dir',$plugin_dir);
193   if ($plugin_dir == ""){
194     new log("security","gosa","",array(),"main.php called with invalid plug parameter \"$plug\"") ;
195     header ("Location: logout.php");
196     exit;
197   }
198 } else {
200   /* set to welcome page as default plugin */
201   session::global_set('plugin_dir',"welcome");
202   $plugin_dir= "$BASE_DIR/plugins/generic/welcome";
205 /* Handle plugin locks.
206     - Remove the plugin from session if we switched to another. (cleanup) 
207     - Remove all created locks if "reset" was posted.
208     - Remove all created locks if we switched to another plugin.
209 */
210 $cleanup    = FALSE;
211 $remove_lock= FALSE;
213 /* Check if we have changed the selected plugin 
214 */
215 if($old_plugin_dir != $plugin_dir && $old_plugin_dir != ""){
216   if (is_file("$old_plugin_dir/main.inc")){
217     $cleanup = $remove_lock = TRUE;
218     require ("$old_plugin_dir/main.inc");
219     $cleanup = $remove_lock = FALSE;
220   }
221 }else // elseif
223 /* Reset was posted, remove all created locks for the current plugin
224 */
225 if((isset($_GET['reset']) && $_GET['reset'] == 1) || isset($_POST['delete_lock'])){
226   $remove_lock = TRUE;
229 /* Check for sizelimits */
230 eval_sizelimit();
232 /* Check for memory */
233 if (function_exists("memory_get_usage")){
234   if (memory_get_usage() > (to_byte(ini_get('memory_limit')) - 2048000 )){
235     msg_dialog::display(_("Configuration error"), _("Running out of memory!"), WARNING_DIALOG);
236   }
239 /* Redirect on back event */
240 if ($_SERVER["REQUEST_METHOD"] == "POST"){
242   /* Look for button events that match /^back[0-9]+$/,
243      extract the number and step the correct plugin. */
244   foreach ($_POST as $key => $value){
245     if (preg_match("/^back[0-9]+$/", $key)){
246       $back= substr($key, 4);
247       header ("Location: main.php?plug=$back");
248       exit;
249     }
250   }
253 /* Redirect on password back event */
254 if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['password_back'])){
255   header ("Location: main.php");
256   exit;
259 /* Check for multiple windows logout */
260 if ($_SERVER["REQUEST_METHOD"] == "POST"){
261   if (isset($_POST['reset_session'])){
262     header ("Location: logout.php");
263     exit;
264   }
268 /* Load department list when plugin has changed. That is some kind of
269    compromise between speed and beeing up to date */
270 if (isset($_GET['reset'])){
271   set_object_info();
274 /* show web frontend */
275 $smarty->assign ("title","GOsa");
276 $smarty->assign ("logo", image(get_template_path("images/logo.png")));
277 $smarty->assign ("logoutimage", get_template_path("images/btn-logout.png"));
278 $smarty->assign ("date", date("l, dS F Y H:i:s O"));
279 $smarty->assign ("lang", preg_replace('/_.*$/', '', $lang));
280 $smarty->assign ("must", "<span class='required'>*</span>");
281 if (isset($plug)){
282   $plug= "?plug=$plug";
283 } else {
284   $plug= "";
286 if (session::global_get('js')==FALSE){
287   $smarty->assign("javascript", "false");
288   $smarty->assign("help_method", "href='helpviewer.php$plug' target='_blank'");
289 } else {
290   $smarty->assign("javascript", "true");
291   $smarty->assign("help_method"," onclick=\"return popup('helpviewer.php$plug','GOsa help');\"");
294 if($ui->ignore_acl_for_current_user()){
295   $smarty->assign ("loggedin", "<font color='red'>"._("ACLs are disabled")."</font>&nbsp;".sprintf(_("You're logged in as %s"), "<span>".$ui->cn." [".$ui->username."]</span>"));
296 }else{
297   $smarty->assign ("loggedin", sprintf(_("You're logged in as %s"), "<span>".$ui->cn." [".$ui->username."]</span>"));
299 $smarty->assign ("go_logo", get_template_path('images/go_logo.png'));
300 $smarty->assign ("go_base", get_template_path('images/dtree.png'));
301 $smarty->assign ("go_home", get_template_path('images/gohome.png'));
302 $smarty->assign ("go_out", get_template_path('images/logout.png'));
303 $smarty->assign ("go_top", get_template_path('images/go_top.png'));
304 $smarty->assign ("go_corner", get_template_path('images/go_corner.png'));
305 $smarty->assign ("go_left", get_template_path('images/go_left.png'));
306 $smarty->assign ("go_help", get_template_path('images/help.png'));
308 /* reload navigation if language changed*/  
309 if($reload_navigation){
310   $plist->menu="";
312 $smarty->assign ("menu", $plist->gen_menu());
313 $smarty->assign ("plug", "$plug");
316 /* React on clicks */
317 if ($_SERVER["REQUEST_METHOD"] == "POST"){
318   if (isset($_POST['delete_lock']) || isset($_POST['open_readonly'])){
320     /* Set old Post data */
321     if(session::global_is_set('LOCK_VARS_USED_GET')){
322       foreach(session::global_get('LOCK_VARS_USED_GET') as $name => $value){
323         $_GET[$name]  = $value;
324       } 
325     } 
326     if(session::global_is_set('LOCK_VARS_USED_POST')){
327       foreach(session::global_get('LOCK_VARS_USED_POST') as $name => $value){
328         $_POST[$name] = $value;
329       } 
330     }
331     if(session::global_is_set('LOCK_VARS_USED_REQUEST')){
332       foreach(session::global_get('LOCK_VARS_USED_REQUEST') as $name => $value){
333         $_REQUEST[$name] = $value;
334       } 
335     }
336   }
339 /* check if we are using account expiration */
340 if ($config->get_cfg_value("core","handleExpiredAccounts") == "true"){
341   $expired= ldap_expired_account($config, $ui->dn, $ui->username);
343   if ($expired == 2){
344     new log("security","gosa","",array(),"password for user \"$ui->username\" is about to expire") ;
345     msg_dialog::display(_("Password change"), _("Your password is about to expire, please change your password!"), INFO_DIALOG);
346   }
349 /* Load plugin */
350 if (is_file("$plugin_dir/main.inc")){
351   $display ="";
352   require ("$plugin_dir/main.inc");
353 } else {
354   msg_dialog::display(
355       _("Plugin"),
356       sprintf(_("FATAL: Cannot find any plugin definitions for plugin %s!"), bold($plug)),
357       FATAL_ERROR_DIALOG);
358   exit();
362 /* Print_out last ErrorMessage repeated string. */
363 $smarty->assign("msg_dialogs", msg_dialog::get_dialogs());
364 $smarty->assign ("pathMenu", $plist->genPathMenu());
365 $smarty->assign("contents", $display);
366 $smarty->assign("sessionLifetime", $config->get_cfg_value('core','sessionLifetime'));
368 /* If there's some post, take a look if everything is there... */
369 if (isset($_POST) && count($_POST)){
370   if (!isset($_POST['php_c_check'])){
371     msg_dialog::display(
372             _("Configuration Error"),
373             sprintf(_("FATAL: not all POST variables have been transfered by PHP - please inform your administrator!")),
374             FATAL_ERROR_DIALOG);
375     exit();
376   }
379 /* Assign erros to smarty */
380 if (session::is_set('errors')){
381   $smarty->assign("errors", session::get('errors'));
383 if ($error_collector != ""){
384   $smarty->assign("php_errors", preg_replace("/%BUGBODY%/",$error_collector_mailto,$error_collector)."</div>");
385 } else {
386   $smarty->assign("php_errors", "");
389 /* Set focus to the error button if we've an error message */
390 $focus= "";
391 if (session::is_set('errors') && session::get('errors') != ""){
392   $focus= '<script language="JavaScript" type="text/javascript">';
393   $focus.= 'document.forms[0].error_accept.focus();';
394   $focus.= '</script>';
397 $focus= '<script language="JavaScript" type="text/javascript">';
398 $focus.= 'next_msg_dialog();';
399 $focus.= '</script>';
400 $smarty->assign("focus", $focus);
402 /* Set channel if needed */
403 #TODO: * move all global session calls to global_
404 #      * create a new channel where needed (mostly management dialogues)
405 #      * remove regulary created channels when not needed anymore
406 #      * take a look at external php calls (i.e. get fax, ldif, etc.)
407 #      * handle aborted sessions (by pressing anachors i.e. Main, Menu, etc.)
408 #      * check lock removals, is "dn" global or not in this case?
409 #      * last page request -> global or not?
410 #      * check that filters are still global
411 #      * maxC global?
412 if (isset($_POST['_channel_'])){
413         echo "DEBUG - current channel: ".$_POST['_channel_'];
414         $smarty->assign("channel", $_POST['_channel_']);
415 } else {
416         $smarty->assign("channel", "");
419 $display= "<!-- headers.tpl-->".$smarty->fetch(get_template_path('headers.tpl')).
420           $smarty->fetch(get_template_path('framework.tpl'));
422 /* Save dialog filters and selected base in a cookie. 
423    So we may be able to restore the filter an base settings on reload.
424 */
425 $cookie = array();
427 if(isset($_COOKIE['GOsa_Filter_Settings'])){
428   $cookie = unserialize(base64_decode($_COOKIE['GOsa_Filter_Settings']));
429 }elseif(isset($HTTP_COOKIE_VARS['GOsa_Filter_Settings'])){
430   $cookie = unserialize(base64_decode($HTTP_COOKIE_VARS['GOsa_Filter_Settings']));
433 /* Save filters? */
434 if($config->get_cfg_value("core","storeFilterSettings") == "true"){
435   $cookie_vars = array("MultiDialogFilters","CurrentMainBase");
436   foreach($cookie_vars as $var){
437     if(session::global_is_set($var)){
438       $cookie[$ui->dn][$var] = session::global_get($var);
439     }
440   }
441   if(isset($_GET['plug'])){
442     $cookie[$ui->dn]['plug'] = $_GET['plug'];
443   }
444   @setcookie("GOsa_Filter_Settings",base64_encode(serialize($cookie)),time() + (60*60*24));
447 /* Show page... */
448 echo $display;
450 /* Save plist and config */
451 session::global_set('plist',$plist);
452 session::global_set('config',$config);
453 session::set('errorsAlreadyPosted',array());
455 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
456 ?>