Code

Updatd index.php
[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 header("Content-type: text/html; charset=UTF-8");
26 function displayLogin()
27 {
28   global $smarty,$message,$config,$ssl,$error_collector;
29   error_reporting(E_ALL);
30     /* Fill template with required values */
31     $username = "";
32     if(isset($_POST["username"])){
33       $username= $_POST["username"];
34     }
35     $smarty->assign ('date', gmdate("D, d M Y H:i:s"));
36     $smarty->assign ('username', $username);
37     $smarty->assign ('personal_img', get_template_path('images/personal.png'));
38     $smarty->assign ('password_img', get_template_path('images/password.png'));
39     $smarty->assign ('directory_img', get_template_path('images/ldapserver.png'));
41     /* Some error to display? */
42     if (!isset($message)){
43       $message= "";
44     }
45     $smarty->assign ("message", $message);
47     /* Displasy SSL mode warning? */
48     if ($ssl != "" && $config->data['MAIN']['WARNSSL'] == 'true'){
49       $smarty->assign ("ssl", "<b>"._("Warning").":</b> "._("Session will not be encrypted.")." <a style=\"color:red;\" href=\"$ssl\"><b>"._("Enter SSL session")."</b></a>!");
50     } else {
51       $smarty->assign ("ssl", "");
52     }
54     /* Generate server list */
55     $servers= array();
56     if (isset($_POST['server'])){
57       $selected= validate($_POST['server']);
58     } else {
59       $selected= $config->data['MAIN']['DEFAULT'];
60     }
61     foreach ($config->data['LOCATIONS'] as $key => $ignored){
62       $servers[$key]= $key;
63     }
64     $smarty->assign ("server_options", $servers);
65     $smarty->assign ("server_id", $selected);
67     /* show login screen */
68     $smarty->assign ("PHPSESSID", session_id());
69     if (isset($_SESSION['errors'])){
70       $smarty->assign("errors", $_SESSION['errors']);
71     }
72     if ($error_collector != ""){
73       $smarty->assign("php_errors", $error_collector."</div>");
74     } else {
75       $smarty->assign("php_errors", "");
76     }
78     $smarty->display(get_template_path('headers.tpl'));
79     $smarty->display(get_template_path('login.tpl'));
80     exit();
81 }
83 session_start();
85 /* Destroy old session if exists.
86     Else you will get your old session back, if you not logged out correctly. */
87 if(is_array($_SESSION) && count($_SESSION)){
88   session_destroy();
89   session_start();
90 }
92 $username= "";
94 /* Reset errors */
95 $_SESSION['errors']             = "";
96 $_SESSION['errorsAlreadyPosted']= array();
97 $_SESSION['LastError']          = "";
99 /* Check if we need to run setup */
100 if (!file_exists(CONFIG_DIR."/".CONFIG_FILE)){
101   header("location:setup.php");
102   exit();
105 /* Reset errors */
106 $_SESSION['errors']= "";
108 /* Check for java script */
109 if(isset($_POST['javascript']) && $_POST['javascript'] == "true") {
110   $_SESSION['js']= TRUE;
111 }elseif(isset($_POST['javascript'])) {
112   $_SESSION['js']= FALSE;
115 /* Check if CONFIG_FILE is accessible */
116 if (!is_readable(CONFIG_DIR."/".CONFIG_FILE)){
117   echo sprintf(_("GOsa configuration %s/%s is not readable. Aborted."), CONFIG_DIR,CONFIG_FILE);
118   exit();
121 /* Parse configuration file */
122 $config= new config(CONFIG_DIR."/".CONFIG_FILE, $BASE_DIR);
123 $_SESSION['DEBUGLEVEL']= $config->data['MAIN']['DEBUGLEVEL'];
124 if ($_SERVER["REQUEST_METHOD"] != "POST"){
125   @DEBUG (DEBUG_CONFIG, __LINE__, __FUNCTION__, __FILE__, $config->data, "config");
128 /* Set template compile directory */
129 if (isset ($config->data['MAIN']['COMPILE'])){
130   $smarty->compile_dir= $config->data['MAIN']['COMPILE'];
131 } else {
132   $smarty->compile_dir= '/var/spool/gosa';
134 $smarty->assign ('nextfield', 'username');
136 /* Check for compile directory */
137 if (!(is_dir($smarty->compile_dir) && is_writable($smarty->compile_dir))){
138   echo sprintf(_("Directory '%s' specified as compile directory is not accessible!"),
139         $smarty->compile_dir);
140   exit();
143 /* Check for old files in compile directory */
144 clean_smarty_compile_dir($smarty->compile_dir);
146 /* Language setup */
147 if ($config->data['MAIN']['LANG'] == ""){
148   $lang= get_browser_language();
149 } else {
150   $lang= $config->data['MAIN']['LANG'];
152 $lang.=".UTF-8";
153 putenv("LANGUAGE=");
154 putenv("LANG=$lang");
155 setlocale(LC_ALL, $lang);
156 $GLOBALS['t_language']= $lang;
157 $GLOBALS['t_gettext_message_dir'] = $BASE_DIR.'/locale/';
159 /* Set the text domain as 'messages' */
160 $domain = 'messages';
161 bindtextdomain($domain, "$BASE_DIR/locale");
162 textdomain($domain);
165 if ($_SERVER["REQUEST_METHOD"] != "POST"){
166   @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $lang, "Setting language to");
170 /* Check for SSL connection */
171 $ssl= "";
172 if (!isset($_SERVER['HTTPS']) ||
173     !stristr($_SERVER['HTTPS'], "on")) {
175   if (empty($_SERVER['REQUEST_URI'])) {
176     $ssl= "https://".$_SERVER['HTTP_HOST'].
177       $_SERVER['PATH_INFO'];
178   } else {
179     $ssl= "https://".$_SERVER['HTTP_HOST'].
180       $_SERVER['REQUEST_URI'];
181   }
184 /* If SSL is forced, just forward to the SSL enabled site */
185 if ($config->data['MAIN']['FORCESSL'] == 'true' && $ssl != ''){
186   header ("Location: $ssl");
187   exit;
190 /* Got a formular answer, validate and try to log in */
191 if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['login'])){
193   /* Reset error messages */
194   $message= "";
196   /* Destroy old sessions, they cause a successfull login to relog again ...*/
197   if(isset($_SESSION['_LAST_PAGE_REQUEST'])){
198     $_SESSION['_LAST_PAGE_REQUEST'] = time();
199   }
201   $server= validate($_POST["server"]);
202   $config->set_current($server);
204   /* Admin-logon and verify */
205   $ldap = $config->get_ldap_link();
206   if (is_null($ldap) || (is_int($ldap) && $ldap == 0)){
207     print_red (_("Can't bind to LDAP. Please contact the system administrator."));
208     displayLogin();
209     exit();
210   }
212   /* Check for schema file presence */
213   if(!isset($config->data['MAIN']['SCHEMA_CHECK'])){
214     $config->data['MAIN']['SCHEMA_CHECK'] = "true";
215   }
216   if(isset($config->data['MAIN']['SCHEMA_CHECK'])&&preg_match("/true/i",$config->data['MAIN']['SCHEMA_CHECK'])){
217     $recursive = (isset($config->current['RECURSIVE']) && $config->current['RECURSIVE'] == "true");
218     $tls =       (isset($config->current['TLS'])       && $config->current['TLS'] == "true");
220     if(!count($ldap->get_objectclasses())){
222       print_red(_("GOsa cannot retrieve information about the installed schema files. Please make sure, that this is possible."));
223       displayLogin();
224       exit();
225     }else{
226  
227       $cfg = array(); 
228       $cfg['admin']     = $config->current['ADMIN'];
229       $cfg['password']  = $config->current['PASSWORD'];
230       $cfg['connection']= $config->current['SERVER'];
231       $cfg['tls']       = $tls;
232   
233       $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 at least one subtreeACL in the complete tree */
254   $ldap->cd($config->current['BASE']);
255   $ldap->search("(&(objectClass=gosaObject)(gosaSubtreeACL=:all))");
256   if ($ldap->count() < 1){
257     print_red(_("You're missing an administrative account for GOsa, you'll not be able to administrate anything!"));
258     displayLogin();
259     exit();
260   }
262   /* Check for valid input */
263   $username= $_POST["username"];
264   if (!ereg("^[A-Za-z0-9_.-]+$", $username)){
265     $message= _("Please specify a valid username!");
266   } elseif (mb_strlen($_POST["password"], 'UTF-8') == 0){
267     $message= _("Please specify your password!");
268     $smarty->assign ('nextfield', 'password');
269   } else {
271     /* Login as user, initialize user ACL's */
272     $ui= ldap_login_user($username, $_POST["password"]);
273     if ($ui === NULL || !$ui ){
274       $message= _("Please check the username/password combination.");
275       $smarty->assign ('nextfield', 'password');
276       gosa_log ("Authentication failed for user \"$username\"");
277     } else {
278       /* Remove all locks of this user */
279       del_user_locks($ui->dn);
281       /* Save userinfo and plugin structure */
282       $_SESSION['ui']= $ui;
283       $_SESSION['session_cnt']= 0;
285       /* Let GOsa trigger a new connection for each POST, save
286          config to session. */
287       $config->get_departments();
288       $config->make_idepartments();
289       $_SESSION['config']= $config;
291       /* Take care about zend.ze1_compatiblity_mode */
292       if (ini_get("zend.ze1_compatibility_mode") != 0){
293         $_SESSION['PHP4COMPATIBLE']= TRUE;
294       }
296       /* are we using accountexpiration */
297       if((isset($config->data['MAIN']['ACCOUNT_EXPIRATION'])) && 
298           preg_match('/true/i', $config->data['MAIN']['ACCOUNT_EXPIRATION'])){
299       
300         $expired= ldap_expired_account($config, $ui->dn, $ui->username);
302         if ($expired == 1){
303           $message= _("Account locked. Please contact your system administrator.");
304           $smarty->assign ('nextfield', 'password');
305           gosa_log ("Account for user \"$username\" has expired");
306         } elseif ($expired == 3){
307             $plist= new pluglist($config, $ui);
308             foreach ($plist->dirlist as $key => $value){
309               if (preg_match("/\bpassword\b/i",$value)){
310                 $plug=$key;
311                 gosa_log ("User \"$username\" password forced to change");
312                 header ("Location: main.php?plug=$plug&reset=1");
313                 exit;
314               }
315             }
316           }
318         /* Not account expired or password forced change go to main page */
319         gosa_log ("User \"$username\" logged in successfully");
320         header ("Location: main.php?global_check=1");
321         exit;
322         
323       } else {
324         /* Go to main page */
325         gosa_log ("User \"$username\" logged in successfully");
326         header ("Location: main.php?global_check=1");
327         exit;
328       }
329     }
330   }
333 /* Fill template with required values */
334 $smarty->assign ('date', gmdate("D, d M Y H:i:s"));
335 $smarty->assign ('username', $username);
336 $smarty->assign ('personal_img', get_template_path('images/personal.png'));
337 $smarty->assign ('password_img', get_template_path('images/password.png'));
338 $smarty->assign ('directory_img', get_template_path('images/ldapserver.png'));
340 /* Some error to display? */
341 if (!isset($message)){
342   $message= "";
345 $smarty->assign ("message", $message);
347 /* Displasy SSL mode warning? */
348 if ($ssl != "" && $config->data['MAIN']['WARNSSL'] == 'true'){
349   $smarty->assign ("ssl", "<b>"._("Warning").":<\/b> "._("Session will not be encrypted.")." <a style=\"color:red;\" href=\"$ssl\"><b>"._("Enter SSL session")."<\/b></a>!");
350 } else {
351   $smarty->assign ("ssl", "");
354 /* Translation of cookie-warning. Whether to display it, is determined by JavaScript */
355 $smarty->assign ("cookies", "<b>"._("Warning").":<\/b> "._("Your browser has cookies disabled. Please enable cookies and reload this page before logging in!"));
358 /* Generate server list */
359 $servers= array();
360 if (isset($_POST['server'])){
361   $selected= validate($_POST['server']);
362 } else {
363   $selected= $config->data['MAIN']['DEFAULT'];
365 foreach ($config->data['LOCATIONS'] as $key => $ignored){
366   $servers[$key]= $key;
368 $smarty->assign ("server_options", $servers);
369 $smarty->assign ("server_id", $selected);
371 /* show login screen */
372 $smarty->assign ("PHPSESSID", session_id());
373 if (isset($_SESSION['errors'])){
374   $smarty->assign("errors", $_SESSION['errors']);
376 if ($error_collector != ""){
377   $smarty->assign("php_errors", $error_collector."</div>");
378 } else {
379   $smarty->assign("php_errors", "");
381 displayLogin();
384 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
385 ?>
387 </body>
388 </html>