Code

Added accept-to-gettext.inc for language selection.
[gosa.git] / html / index.php
1 <?php
2 /*
3    This code is part of GOsa (https://gosa.gonicus.de)
4    Copyright (C) 2003-2005  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 /* Load required includes */
22 require_once ("../include/php_setup.inc");
23 require_once ("functions.inc");
24 require_once ("class_log.inc");
25 header("Content-type: text/html; charset=UTF-8");
27 function displayLogin()
28 {
29   global $smarty,$message,$config,$ssl,$error_collector;
30   error_reporting(E_ALL);
31     /* Fill template with required values */
32     $username = "";
33     if(isset($_POST["username"])){
34       $username= $_POST["username"];
35     }
36     $smarty->assign ('date', gmdate("D, d M Y H:i:s"));
37     $smarty->assign ('username', $username);
38     $smarty->assign ('personal_img', get_template_path('images/personal.png'));
39     $smarty->assign ('password_img', get_template_path('images/password.png'));
40     $smarty->assign ('directory_img', get_template_path('images/ldapserver.png'));
42     /* Some error to display? */
43     if (!isset($message)){
44       $message= "";
45     }
46     $smarty->assign ("message", $message);
48     /* Displasy SSL mode warning? */
49     if ($ssl != "" && $config->data['MAIN']['WARNSSL'] == 'true'){
50       $smarty->assign ("ssl", _("Warning").": <a style=\"color:red;\" href=\"$ssl\">"._("Session is not encrypted!")."</a>");
51     } else {
52       $smarty->assign ("ssl", "");
53     }
55     /* Generate server list */
56     $servers= array();
57     if (isset($_POST['server'])){
58       $selected= validate($_POST['server']);
59     } else {
60       $selected= $config->data['MAIN']['DEFAULT'];
61     }
62     foreach ($config->data['LOCATIONS'] as $key => $ignored){
63       $servers[$key]= $key;
64     }
65     $smarty->assign ("server_options", $servers);
66     $smarty->assign ("server_id", $selected);
68     /* show login screen */
69     $smarty->assign ("PHPSESSID", session_id());
70     if (isset($_SESSION['errors'])){
71       $smarty->assign("errors", $_SESSION['errors']);
72     }
73     if ($error_collector != ""){
74       $smarty->assign("php_errors", $error_collector."</div>");
75     } else {
76       $smarty->assign("php_errors", "");
77     }
79     $smarty->display (get_template_path('headers.tpl'));
80     $smarty->display(get_template_path('login.tpl'));
81     exit();
82 }
86 /* Set error handler to own one, initialize time calculation
87    and start session. */
88 session_start ();
90 /* Destroy old session if exists. 
91     Else you will get your old session back, if you not logged out correctly. */
92 if(is_array($_SESSION) && count($_SESSION)){
93   session_destroy();
94   session_start();
95 }
97 $username= "";
99 /* Reset errors */
100 $_SESSION['errors']             = "";
101 $_SESSION['errorsAlreadyPosted']= array();
102 $_SESSION['LastError']          = "";
104 /* Check if we need to run setup */
105 if (!file_exists(CONFIG_DIR."/".CONFIG_FILE)){
106   header("location:setup.php");
107   exit();
110 /* Reset errors */
111 $_SESSION['errors']= "";
113 /* Check for java script */
114 if(isset($_POST['javascript']) && $_POST['javascript'] == "true") {
115   $_SESSION['js']= TRUE;
116 }elseif(isset($_POST['javascript'])) {
117   $_SESSION['js']= FALSE;
120 /* Check if gosa.conf (.CONFIG_FILE) is accessible */
121 if (!is_readable(CONFIG_DIR."/".CONFIG_FILE)){
122   echo sprintf(_("GOsa configuration %s/%s is not readable. Aborted."), CONFIG_DIR,CONFIG_FILE);
123   exit();
126 /* Parse configuration file */
127 $config= new config(CONFIG_DIR."/".CONFIG_FILE, $BASE_DIR);
128 $_SESSION['DEBUGLEVEL']= $config->data['MAIN']['DEBUGLEVEL'];
129 if ($_SERVER["REQUEST_METHOD"] != "POST"){
130   @DEBUG (DEBUG_CONFIG, __LINE__, __FUNCTION__, __FILE__, $config->data, "config");
133 /* Set template compile directory */
134 if (isset ($config->data['MAIN']['COMPILE'])){
135   $smarty->compile_dir= $config->data['MAIN']['COMPILE'];
136 } else {
137   $smarty->compile_dir= '/var/spool/gosa';
139 $smarty->assign ('nextfield', 'username');
141 /* Check for compile directory */
142 if (!(is_dir($smarty->compile_dir) && is_writable($smarty->compile_dir))){
143   echo sprintf(_("Directory '%s' specified as compile directory is not accessible!"),
144         $smarty->compile_dir);
145   exit();
148 /* Check for old files in compile directory */
149 clean_smarty_compile_dir($smarty->compile_dir);
151 /* Language setup */
152 if ($config->data['MAIN']['LANG'] == ""){
153   $lang= get_browser_language();
154 } else {
155   $lang= $config->data['MAIN']['LANG'];
157 putenv("LANGUAGE=");
158 putenv("LANG=$lang");
159 setlocale(LC_ALL, $lang);
160 $GLOBALS['t_language']= $lang;
161 $GLOBALS['t_gettext_message_dir'] = $BASE_DIR.'/locale/';
163 /* Set the text domain as 'messages' */
164 $domain = 'messages';
165 bindtextdomain($domain, "$BASE_DIR/locale");
166 textdomain($domain);
169 if ($_SERVER["REQUEST_METHOD"] != "POST"){
170   @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $lang, "Setting language to");
174 /* Check for SSL connection */
175 $ssl= "";
176 if (!isset($_SERVER['HTTPS']) ||
177     !stristr($_SERVER['HTTPS'], "on")) {
179   if (empty($_SERVER['REQUEST_URI'])) {
180     $ssl= "https://".$_SERVER['HTTP_HOST'].
181       $_SERVER['PATH_INFO'];
182   } else {
183     $ssl= "https://".$_SERVER['HTTP_HOST'].
184       $_SERVER['REQUEST_URI'];
185   }
188 /* If SSL is forced, just forward to the SSL enabled site */
189 if ($config->data['MAIN']['FORCESSL'] == 'true' && $ssl != ''){
190   header ("Location: $ssl");
191   exit;
194 /* Got a formular answer, validate and try to log in */
195 if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['login'])){
197   /* Reset error messages */
198   $message= "";
200   /* Destroy old sessions, they cause a successfull login to relog again ...*/
201   if(isset($_SESSION['_LAST_PAGE_REQUEST'])){
202     $_SESSION['_LAST_PAGE_REQUEST'] = time();
203   }
205   $server= validate($_POST["server"]);
206   $config->set_current($server);
208   /* Admin-logon and verify */
209   $ldap = $config->get_ldap_link();
210   if (is_null($ldap) || (is_int($ldap) && $ldap == 0)){
211     print_red (_("Can't bind to LDAP. Please contact the system administrator."));
212     displayLogin();
213     exit();
214   }
216   /* Check for schema file presence */
217   if(!isset($config->data['MAIN']['SCHEMA_CHECK'])){
218     $config->data['MAIN']['SCHEMA_CHECK'] = "true";
219   }
220   if(isset($config->data['MAIN']['SCHEMA_CHECK'])&&preg_match("/true/i",$config->data['MAIN']['SCHEMA_CHECK'])){
221     $recursive = (isset($config->current['RECURSIVE']) && $config->current['RECURSIVE'] == "true");
222     $tls =       (isset($config->current['TLS'])       && $config->current['TLS'] == "true");
224     if(!count($ldap->get_objectclasses())){
225       print_red(_("GOsa cannot retrieve information about the installed schema files. Please make sure, that this is possible."));
226       displayLogin();
227       exit()  ;
228     }else{
229       $cfg = array();
230       $cfg['admin']     = $config->current['ADMIN'];
231       $cfg['password']  = $config->current['PASSWORD'];
232       $cfg['connection']= $config->current['SERVER'];
233       $cfg['tls']       = $tls;
234       $str = check_schema($cfg,isset($config->current['RFC2307BIS']) && preg_match("/(true|yes|on|1)/i",$config->current['RFC2307BIS']));
235       $checkarr = array();
236       foreach($str as $tr){
237         if(isset($tr['IS_MUST_HAVE']) && !$tr['STATUS']){
238           print_red($tr['MSG']."<br>"._("Your ldap setup contains old schema definitions. Please re-run the setup."));
239           displayLogin();
240           exit();
241         }
242       }
243     }
244   }
245   /* Check for locking area */
246   $ldap->cat($config->current['CONFIG'], array("dn"));
247   $attrs= $ldap->fetch();
248   if (!count ($attrs)){
249     $ldap->cd($config->current['BASE']);
250     $ldap->create_missing_trees($config->current['CONFIG']);
251   }
253   /* Check for valid input */
254   $username= $_POST["username"];
255   if (!ereg("^[A-Za-z0-9_.-]+$", $username)){
256     $message= _("Please specify a valid username!");
257   } elseif (mb_strlen($_POST["password"], 'UTF-8') == 0){
258     $message= _("Please specify your password!");
259     $smarty->assign ('nextfield', 'password');
260   } else {
262     /* Login as user, initialize user ACL's */
263     $ui= ldap_login_user($username, $_POST["password"]);
264     if ($ui === NULL || !$ui){
265       $message= _("Please check the username/password combination.");
266       $smarty->assign ('nextfield', 'password');
267       new log("security","login","",array(),"Authentication failed for user \"$username\"") ;
268     } else {
269       /* Remove all locks of this user */
270       del_user_locks($ui->dn);
272       /* Save userinfo and plugin structure */
273       $_SESSION['ui']= $ui;
274       $_SESSION['session_cnt']= 0;
276       /* Let GOsa trigger a new connection for each POST, save
277          config to session. */
278       $config->get_departments();
279       $config->make_idepartments();
280       $_SESSION['config']= $config;
282       /* Take care about zend.ze1_compatiblity_mode */
283       if (ini_get("zend.ze1_compatibility_mode") != 0){
284         $_SESSION['PHP4COMPATIBLE']= TRUE;
285       }
287       /* are we using accountexpiration */
288       if((isset($config->data['MAIN']['ACCOUNT_EXPIRATION'])) && 
289           preg_match('/true/i', $config->data['MAIN']['ACCOUNT_EXPIRATION'])){
290       
291         $expired= ldap_expired_account($config, $ui->dn, $ui->username);
293         if ($expired == 1){
294           $message= _("Account locked. Please contact your system administrator.");
295           $smarty->assign ('nextfield', 'password');
296           new log("security","login","",array(),"Account for user \"$username\" has expired") ;
297         } elseif ($expired == 3){
298             $plist= new pluglist($config, $ui);
299             foreach ($plist->dirlist as $key => $value){
300               if (preg_match("/\bpassword\b/i",$value)){
301                 $plug=$key;
302                 new log("security","login","",array(),"User \"$username\" password forced to change") ;
303                 header ("Location: main.php?plug=$plug&amp;reset=1");
304                 exit;
305               }
306             }
307           }
309         /* Not account expired or password forced change go to main page */
310         new log("security","login","",array(),"User \"$username\" logged in successfully") ;
311         header ("Location: main.php?global_check=1");
312         exit;
313         
314       } else {
315         /* Go to main page */
316         new log("security","login","",array(),"User \"$username\" logged in successfully") ;
317         header ("Location: main.php?global_check=1");
318         exit;
319       }
320     }
321   }
324 /* Fill template with required values */
325 $smarty->assign ('date', gmdate("D, d M Y H:i:s"));
326 $smarty->assign ('username', $username);
327 $smarty->assign ('personal_img', get_template_path('images/personal.png'));
328 $smarty->assign ('password_img', get_template_path('images/password.png'));
329 $smarty->assign ('directory_img', get_template_path('images/ldapserver.png'));
331 /* Some error to display? */
332 if (!isset($message)){
333   $message= "";
336 $smarty->assign ("message", $message);
338 /* Displasy SSL mode warning? */
339 if ($ssl != "" && $config->data['MAIN']['WARNSSL'] == 'true'){
340   $smarty->assign ("ssl", "<b>"._("Warning").":<\/b> "._("Session will not be encrypted.")." <a style=\"color:red;\" href=\"$ssl\"><b>"._("Enter SSL session")."<\/b></a>!");
341 } else {
342   $smarty->assign ("ssl", "");
345 /* Translation of cookie-warning. Whether to display it, is determined by JavaScript */
346 $smarty->assign ("cookies", "<b>"._("Warning").":<\/b> "._("Your browser has cookies disabled. Please enable cookies and reload this page before logging in!"));
349 /* Generate server list */
350 $servers= array();
351 if (isset($_POST['server'])){
352   $selected= validate($_POST['server']);
353 } else {
354   $selected= $config->data['MAIN']['DEFAULT'];
356 foreach ($config->data['LOCATIONS'] as $key => $ignored){
357   $servers[$key]= $key;
359 $smarty->assign ("server_options", $servers);
360 $smarty->assign ("server_id", $selected);
362 /* show login screen */
363 $smarty->assign ("PHPSESSID", session_id());
364 if (isset($_SESSION['errors'])){
365   $smarty->assign("errors", $_SESSION['errors']);
367 if ($error_collector != ""){
368   $smarty->assign("php_errors", preg_replace("/%BUGBODY%/",$error_collector_mailto,$error_collector)."</div>");
369 } else {
370   $smarty->assign("php_errors", "");
373 /* Set focus to the error button if we've an error message */
374 $focus= "";
375 if (isset($_SESSION['errors']) && $_SESSION['errors'] != ""){
376   $focus= '<script language="JavaScript" type="text/javascript">';
377   $focus.= 'document.forms[0].error_accept.focus();';
378   $focus.= '</script>';
380 $smarty->assign("focus", $focus);
381 displayLogin();
383 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
384 ?>
386 </body>
387 </html>