Code

Added dependency to libnet-pcap-perl.
[gosa.git] / gosa-core / html / logout.php
index b6d4b5531d8ee8e2e51a12d743077de670f73d2c..3c60db50bfd9bf4b2efaa3f8c39ae8ae6444cac6 100644 (file)
@@ -25,14 +25,14 @@ header("Content-type: text/html; charset=UTF-8");
 
 /* try to start session, so we can remove userlocks, 
   if the old session is still available */
-@session_start();
-if(isset($_SESSION['ui'])){
+@session::start();
+if(session::is_set('ui')){
   
   /* Get config & ui informations */
-  $ui= $_SESSION["ui"];
+  $ui= session::get("ui");
   
   /* config used for del_user_locks & some lines below to detect the language */  
-  $config= $_SESSION["config"];
+  $config= session::get("config");
 
   /* Remove all locks of this user */
   del_user_locks($ui->dn);
@@ -41,45 +41,54 @@ if(isset($_SESSION['ui'])){
   new log("security","logout","",array(),"User \"".$ui->username."\" logged out") ;
 }
 
+/* Language setup */
+if ((!isset($config))||(empty($config->data['MAIN']['LANG']))){
+  $lang= get_browser_language();
+} else {
+  $lang= $config->data['MAIN']['LANG'];
+}
+
+$lang.=".UTF-8";
+putenv("LANGUAGE=");
+putenv("LANG=$lang");
+setlocale(LC_ALL, $lang);
+$GLOBALS['t_language']= $lang;
+$GLOBALS['t_gettext_message_dir'] = $BASE_DIR.'/locale/';
+
+/* Set the text domain as 'messages' */
+$domain = 'messages';
+bindtextdomain($domain, LOCALE_DIR);
+textdomain($domain);
+
+/* Create smarty & Set template compile directory */
+$smarty= new smarty();
+if (isset ($config->data['MAIN']['COMPILE'])){
+  $smarty->compile_dir= $config->data['MAIN']['COMPILE'];
+} else {
+  $smarty->compile_dir= '/var/spool/gosa/';
+}
+
+    
 /* If GET request is posted, the logout was forced by pressing the link */
 if (isset($_GET['request'])){
   
   /* destroy old session */
-  @session_unset ();
-  @session_destroy ();
+  session::destroy ();
   
-  /* Go back to the base via header */
+  /* If we're not using htaccess authentication, just redirect... */
+  if (isset($config->data['MAIN']['HTACCESS_AUTH']) && preg_match('/^(true|yes)$/i', $config->data['MAIN']['HTACCESS_AUTH'])){
+
+    /* Else notice that the user has to close the browser... */
+    $smarty->display (get_template_path('headers.tpl'));
+    $smarty->display (get_template_path('logout-close.tpl'));
+    exit;
+  }
+
   header ("Location: index.php");
   exit();
 
 }else{  // The logout wasn't forced, so the session is invalid 
   
-  /* Language setup */
-  if ((!isset($config))||(empty($config->data['MAIN']['LANG']))){
-    $lang= get_browser_language();
-  } else {
-    $lang= $config->data['MAIN']['LANG'];
-  }
-
-  $lang.=".UTF-8";
-  putenv("LANGUAGE=");
-  putenv("LANG=$lang");
-  setlocale(LC_ALL, $lang);
-  $GLOBALS['t_language']= $lang;
-  $GLOBALS['t_gettext_message_dir'] = $BASE_DIR.'/locale/';
-
-  /* Set the text domain as 'messages' */
-  $domain = 'messages';
-  bindtextdomain($domain, "$BASE_DIR/locale");
-  textdomain($domain);
-    
-  /* Create smarty & Set template compile directory */
-  $smarty= new smarty();
-  if (isset ($config->data['MAIN']['COMPILE'])){
-    $smarty->compile_dir= $config->data['MAIN']['COMPILE'];
-  } else {
-    $smarty->compile_dir= '/var/spool/gosa/';
-  }
   $smarty->display (get_template_path('headers.tpl'));
   $smarty->display (get_template_path('logout.tpl'));
   exit;