Code

7e4412085724afc392d3aa9a700be6fcf1f8e12e
[gosa.git] / gosa-core / html / main.php
1 <?php
2 /*
3    This code is part of GOsa (https://gosa.gonicus.de)
4    Copyright (C) 2003  Cajus Pollmeier
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
21 /* Save start time */
22 $start = microtime();
24 /* Basic setup, remove eventually registered sessions */
25 require_once ("../include/php_setup.inc");
26 require_once ("functions.inc");
28 /* Set header */
29 header("Content-type: text/html; charset=UTF-8");
31 /* Set the text domain as 'messages' */
32 $domain = 'messages';
33 bindtextdomain($domain, LOCALE_DIR);
34 textdomain($domain);
36 /* Remember everything we did after the last click */
37 session::start();
38 session::set('errorsAlreadyPosted',array());
39 session::set('limit_exceeded',FALSE);
41 if ($_SERVER["REQUEST_METHOD"] == "POST"){
42   @DEBUG (DEBUG_POST, __LINE__, __FUNCTION__, __FILE__, $_POST, "_POST");
43 }
44 @DEBUG (DEBUG_POST, __LINE__, __FUNCTION__, __FILE__, session::get_all(), "_SESSION");
46 /* Logged in? Simple security check */
47 if (!session::is_set('config')){
48   new log("security","login","",array(),"main.php called without session - logging out") ;
49   header ("Location: logout.php");
50   exit;
51
53 /* Check for uniqe ip address */
54 $ui= session::get('ui');
55 if ($_SERVER['REMOTE_ADDR'] != $ui->ip){
56   new log("security","login","",array(),"main.php called with session which has a changed IP address.") ;
57   header ("Location: logout.php");
58   exit;
59 }
60 $config= session::get('config');
61 $config->check_and_reload();
63 /* Enable compressed output */
64 if (isset($config->data['MAIN']['COMPRESSED']) && preg_match('/^(true|on)$/i', $config->data['MAIN']['COMPRESSED'])){
65   ob_start("ob_gzhandler");
66 }
68 /* Check for invalid sessions */
69 if(session::get('_LAST_PAGE_REQUEST') == ""){
70   session::set('_LAST_PAGE_REQUEST',time());
71 }else{
73   /* check GOsa.conf for defined session lifetime */
74   if(isset($config->data['MAIN']['SESSION_LIFETIME'])){
75     $max_life = $config->data['MAIN']['SESSION_LIFETIME'];
76   }else{
77     $max_life = 60*60*2;
78   }
80   /* get time difference between last page reload */
81   $request_time = (time()- session::get('_LAST_PAGE_REQUEST'));
83   /* If page wasn't reloaded for more than max_life seconds 
84    * kill session
85    */
86   if($request_time > $max_life){
87     session::destroy();
88     new log("security","login","",array(),"main.php called without session - logging out") ;
89     header ("Location: logout.php");
90     exit;
91   }
92   session::set('_LAST_PAGE_REQUEST',time());
93 }
96 @DEBUG (DEBUG_CONFIG, __LINE__, __FUNCTION__, __FILE__, $config->data, "config");
98 /* Set template compile directory */
99 if (isset ($config->data['MAIN']['COMPILE'])){
100   $smarty->compile_dir= $config->data['MAIN']['COMPILE'];
101 } else {
102   $smarty->compile_dir= '/var/spool/gosa/';
105 /* Set default */
106 $reload_navigation = false;
108 /* Set last initialised language to current, browser settings */
109 if(!session::is_set('Last_init_lang')){
110   $reload_navigation = true;
111   session::set('Last_init_lang',get_browser_language());
114 /* If last language != current force navi reload */
115 $lang= get_browser_language();
116 if(session::get('Last_init_lang') != $lang){
117   $reload_navigation = true;
120 /* Language setup */
121 session::set('Last_init_lang',$lang);
123 /* Preset current main base */
124 if(!session::is_set('CurrentMainBase')){
125   session::set('CurrentMainBase',get_base_from_people($ui->dn));
128 putenv("LANGUAGE=");
129 putenv("LANG=$lang");
130 setlocale(LC_ALL, $lang);
131 $GLOBALS['t_language']= $lang;
132 $GLOBALS['t_gettext_message_dir'] = $BASE_DIR.'/locale/';
134 /* Set the text domain as 'messages' */
135 $domain = 'messages';
136 bindtextdomain($domain, LOCALE_DIR);
137 textdomain($domain);
138 @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $lang, "Setting language to");
140 session::un_set('plist');
142 /* Prepare plugin list */
143 if (!session::is_set('plist')){
144   /* Initially load all classes */
145   $class_list= get_declared_classes();
146   foreach ($class_mapping as $class => $path){
147     if (!in_array($class, $class_list)){
148       if (is_readable("$BASE_DIR/$path")){
149         require_once("$BASE_DIR/$path");
150       } else {
151         msg_dialog::display(_("Could not location file."),
152             sprintf(_("Fatal error: cannot locate file '%s' - please run '%s' to fix this"),
153               "$BASE_DIR/$path", "<b>update-gosa</b>"), FATAL_ERROR_DIALOG);
154         exit;
155       }
156     }
157   }
159   session::set('plist', new pluglist($config, $ui));
161   /* Load ocMapping into userinfo */
162   $tmp= new acl($config, NULL, $ui->dn);
163   $ui->ocMapping= $tmp->ocMapping;
164   session::set('ui',$ui);
166 $plist= session::get('plist');
167 /* Check for register globals */
168 if (isset($global_check) && $config->data['MAIN']['FORCEGLOBALS'] == 'true'){
169   msg_dialog::display(
170             _("PHP configuration"),
171             _("FATAL: Register globals is on. GOsa will refuse to login unless this is fixed by an administrator."),
172             FATAL_ERROR_DIALOG);
174   new log("security","login","",array(),"Register globals is on. For security reasons, this should be turned off.") ;
175   session::destroy ();
176   exit;
179 /* Check Plugin variable */
180 if (session::is_set('plugin_dir')){
181   $old_plugin_dir= session::get('plugin_dir');
182 } else {
183   $old_plugin_dir= "";
185 if (isset($_GET['plug'])){
186   $plug= validate($_GET['plug']);
187   $plugin_dir= $plist->get_path($plug);
188   session::set('plugin_dir',$plugin_dir);
189   if ($plugin_dir == ""){
190     new log("security","gosa","",array(),"main.php called with invalid plug parameter \"$plug\"") ;
191     header ("Location: logout.php");
192     exit;
193   }
194 } else {
196   /* set to welcome page as default plugin */
197   session::set('plugin_dir',"welcome");
198   $plugin_dir= "$BASE_DIR/plugins/generic/welcome";
201 /* Check if we need to delete a lock */
202 if ($old_plugin_dir != $plugin_dir){
203   if (is_file("$old_plugin_dir/main.inc")){
204     $remove_lock= true;
205     require_once ("$old_plugin_dir/main.inc");
206   }
208 $remove_lock= false;
210 /* Check for sizelimits */
211 eval_sizelimit();
213 /* Check for memory */
214 if (function_exists("memory_get_usage")){
215   if (memory_get_usage() > (to_byte(ini_get('memory_limit')) - 2048000 )){
216     msg_dialog::display(_("Configuration warning"), _("Running out of memory!"), WARNING_DIALOG);
217   }
220 /* Redirect on back event */
221 if ($_SERVER["REQUEST_METHOD"] == "POST"){
223   /* Look for button events that match /^back[0-9]+$/,
224      extract the number and step the correct plugin. */
225   foreach ($_POST as $key => $value){
226     if (preg_match("/^back[0-9]+$/", $key)){
227       $back= substr($key, 4);
228       header ("Location: main.php?plug=$back");
229       exit;
230     }
231   }
234 /* Redirect on password back event */
235 if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['password_back'])){
236   header ("Location: main.php");
237   exit;
240 /* Check for multiple windows logout */
241 if ($_SERVER["REQUEST_METHOD"] == "POST"){
242   if (isset($_POST['reset_session'])){
243     header ("Location: logout.php");
244     exit;
245   }
247   if (isset($_POST['cancel_lock'])){
248     session::un_set('dn');
249   }
253 /* Load department list when plugin has changed. That is some kind of
254    compromise between speed and beeing up to date */
255 if (isset($_GET['reset'])){
256   if (session::is_set('objectinfo')){
257     session::un_set('objectinfo');
258   }
261 /* Install eGOsa hooks, convert _POST to session */
262 if(isset($_GET['explorer'])){
263   session::set('eGosa',TRUE);
265 if(session::is_set('POST')){
266   $_SERVER["REQUEST_METHOD"] = "POST";
267   foreach (session::get('POST') as $key => $dummy){
268     $_POST[$key]= $dummy;
269   }
270   session::un_set('POST');
273 /* show web frontend */
274 $smarty->assign ("date", date("l, dS F Y H:i:s O"));
275 $smarty->assign ("must", "<font class=\"must\">*</font>");
276 if (isset($plug)){
277   $plug= "?plug=$plug";
278 } else {
279   $plug= "";
281 if (session::get('js')==FALSE){
282   $smarty->assign("javascript", "false");
283   $smarty->assign("help_method", "href='helpviewer.php$plug' target='_blank'");
284 } else {
285   $smarty->assign("javascript", "true");
286   $smarty->assign("help_method"," onclick=\"return popup('helpviewer.php$plug','GOsa help');\"");
289 $smarty->assign ("username", $ui->username);
290 $smarty->assign ("go_logo", get_template_path('images/go_logo.png'));
291 $smarty->assign ("go_base", get_template_path('images/dtree.png'));
292 $smarty->assign ("go_home", get_template_path('images/gohome.png'));
293 $smarty->assign ("go_out", get_template_path('images/stop.png'));
294 $smarty->assign ("go_top", get_template_path('images/go_top.png'));
295 $smarty->assign ("go_corner", get_template_path('images/go_corner.png'));
296 $smarty->assign ("go_left", get_template_path('images/go_left.png'));
297 $smarty->assign ("go_help", get_template_path('images/help.png'));
299 /* reload navigation if language changed*/  
300 if($reload_navigation){
301   $plist->menu="";
303 $plist->gen_headlines();
304 $plist->gen_menu();
305 $smarty->assign ("menu", $plist->menu);
306 $smarty->assign ("plug", "$plug");
308 $header= "<!-- headers.tpl-->".$smarty->fetch(get_template_path('headers.tpl'));
310 /* React on clicks */
311 if ($_SERVER["REQUEST_METHOD"] == "POST"){
313   /* 'delete_lock' is set by the lock removal dialog. We should remove the
314      lock at this point globally. Plugins do not need to remove it. */
315   if (isset($_POST['delete_lock']) && session::is_set('dn')){
316     del_lock (session::get('dn'));
318     /* Set old Post data */
319     if(session::is_set('LOCK_VARS_USED')){
320       foreach(session::get('LOCK_VARS_USED') as $name => $value){
321         $_GET[$name]  = $value;
322         $_POST[$name] = $value;
323       } 
324     }
325     session::un_set ('dn');
326   }
329   /* I don't want multiple browser windows open. One way to check it is
330      to count a hidden field and warn the user if SESSION and INPUT count
331      differ. */
332   if (isset($_POST['session_cnt'])){
333     if ($_POST['session_cnt'] != session::get('session_cnt')){
334       $smarty->display(get_template_path('conflict.tpl'));
335       exit ();
336     }
337     session::set('session_cnt', (session::get('session_cnt') + 1));
338     session::set('post_cnt' , validate($_POST['session_cnt']) + 1);
339   }
342 /* Only generate hidden click counter, if post_cnt is defined */
343 if (session::is_set('post_cnt')){
344   echo "<input type=\"hidden\" name=\"session_cnt\" value=\"".session::get('post_cnt')."\">\n";
347 /* check if we are using account expiration */
348 if((isset($config->data['MAIN']['ACCOUNT_EXPIRATION'])) &&
349     preg_match('/true/i', $config->data['MAIN']['ACCOUNT_EXPIRATION'])){
351   $expired= ldap_expired_account($config, $ui->dn, $ui->username);
353   if ($expired == 2){
354     new log("security","gosa","",array(),"password for user \"$ui->username\" is about to expire") ;
355     msg_dialog::display(_("Password reminder"), _("Your password is about to expire, please change your password!"), INFO_DIALOG);
356   }
359 /* Load plugin */
360 if (is_file("$plugin_dir/main.inc")){
361   require_once ("$plugin_dir/main.inc");
362 } else {
363   msg_dialog::display(
364             _("Plugin"),
365             sprintf(_("FATAL: Can't find any plugin definitions for plugin '%s'!"), $plug),
366             FATAL_ERROR_DIALOG);
367   exit();
371 /* Print_out last ErrorMessage repeated string. */
372 if(isset($_GET['add'])){
373 msg_dialog::display("Error"   ,"Kann datei nicht schreiben, bla",ERROR_DIALOG);
374 msg_dialog::display("Warning" ,"Kann datei nicht schreiben, bla",WARNING_DIALOG);
375 msg_dialog::display("Info"    ,"Kann datei nicht schreiben, bla",INFO_DIALOG);
376 msg_dialog::display("Confirm" ,"Kann datei nicht schreiben, bla",CONFIRM_DIALOG);
379 $smarty->assign("msg_dialogs", msg_dialog::get_dialogs());
380 $smarty->assign("contents", $display);
382 /* Assign erros to smarty */
383 if (session::is_set('errors')){
384   $smarty->assign("errors", session::get('errors'));
386 if ($error_collector != ""){
387   $smarty->assign("php_errors", preg_replace("/%BUGBODY%/",$error_collector_mailto,$error_collector)."</div>");
388 } else {
389   $smarty->assign("php_errors", "");
392 /* Set focus to the error button if we've an error message */
393 $focus= "";
394 if (session::is_set('errors') && session::get('errors') != ""){
395   $focus= '<script language="JavaScript" type="text/javascript">';
396   $focus.= 'document.forms[0].error_accept.focus();';
397   $focus.= '</script>';
400 $focus= '<script language="JavaScript" type="text/javascript">';
401 $focus.= 'next_msg_dialog();';
402 $focus.= '</script>';
403 $smarty->assign("focus", $focus);
405 $display= $header.$smarty->fetch(get_template_path('framework.tpl'));
407 /* Save dialog filters and selected base in a cookie. 
408    So we may be able to restore the filter an base settings on reload.
409 */
410 $cookie = array();
412 if(isset($_COOKIE['GOsa_Filter_Settings'])){
413   $cookie = unserialize(base64_decode($_COOKIE['GOsa_Filter_Settings']));
414 }elseif(isset($HTTP_COOKIE_VARS['GOsa_Filter_Settings'])){
415   $cookie = unserialize(base64_decode($HTTP_COOKIE_VARS['GOsa_Filter_Settings']));
417 if(isset($config->data['MAIN']['SAVE_FILTER']) && preg_match("/true/",$config->data['MAIN']['SAVE_FILTER'])){
418   $cookie_vars = array("MultiDialogFilters","CurrentMainBase");
419   foreach($cookie_vars as $var){
420     if(session::is_set($var)){
421       $cookie[$ui->dn][$var] = session::get($var);
422     }
423   }
424   if(isset($_GET['plug'])){
425     $cookie[$ui->dn]['plug'] = $_GET['plug'];
426   }
427   @setcookie("GOsa_Filter_Settings",base64_encode(serialize($cookie)),time() + (60*60*24));
430 /* Show page... */
431 echo $display;
433 /* Save plist and config */
434 session::set('plist',$plist);
435 session::set('config',$config);
436 session::set('errorsAlreadyPosted',array());
438 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
439 ?>