Code

Schema check is now configurable vai gosa.conf
[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 /* Set error handler to own one, initialize time calculation
27    and start session. */
28 session_start ();
29 $username= "";
31 /* Check if we need to run setup */
32 if (!file_exists(CONFIG_DIR."/gosa.conf")){
33   header("location:setup.php");
34   exit();
35 }
37 /* Reset errors */
38 $_SESSION['errors']= "";
40 /* Check for java script */
41 if(isset($_POST['javascript']) && $_POST['javascript'] == "true") {
42   $_SESSION['js']= TRUE;
43 }elseif(isset($_POST['javascript'])) {
44   $_SESSION['js']= FALSE;
45 }
47 /* Check if gosa.conf is accessable */
48 if (!is_readable(CONFIG_DIR."/gosa.conf")){
49   print_red(sprintf(_("GOsa configuration %s/gosa.conf is not readable. Aborted."), CONFIG_DIR));
50   echo $_SESSION['errors'];
51   exit();
52 }
54 /* Parse configuration file */
55 $config= new config(CONFIG_DIR."/gosa.conf", $BASE_DIR);
56 $_SESSION['DEBUGLEVEL']= $config->data['MAIN']['DEBUGLEVEL'];
57 if ($_SERVER["REQUEST_METHOD"] != "POST"){
58   @DEBUG (DEBUG_CONFIG, __LINE__, __FUNCTION__, __FILE__, $config->data, "config");
59 }
61 /* Set template compile directory */
62 if (isset ($config->data['MAIN']['COMPILE'])){
63   $smarty->compile_dir= $config->data['MAIN']['COMPILE'];
64 } else {
65   $smarty->compile_dir= '/var/spool/gosa';
66 }
67 $smarty->assign ('nextfield', 'username');
69 /* Check for compile directory */
70 if (!(is_dir($smarty->compile_dir) && is_writable($smarty->compile_dir))){
71   print_red(sprintf(_("Directory '%s' specified as compile directory is not accessable!"),
72         $smarty->compile_dir));
73   echo $_SESSION['errors'];
74   exit();
75 }
77 /* Check for old files in compile directory */
78 clean_smarty_compile_dir($smarty->compile_dir);
80 /* Language setup */
81 if ($config->data['MAIN']['LANG'] == ""){
82   $lang= get_browser_language();
83 } else {
84   $lang= $config->data['MAIN']['LANG'];
85 }
86 $lang.=".UTF-8";
87 putenv("LANGUAGE=");
88 putenv("LANG=$lang");
89 setlocale(LC_ALL, $lang);
90 $GLOBALS['t_language']= $lang;
91 $GLOBALS['t_gettext_message_dir'] = $BASE_DIR.'/locale/';
93 /* Set the text domain as 'messages' */
94 $domain = 'messages';
95 bindtextdomain($domain, "$BASE_DIR/locale");
96 textdomain($domain);
99 if ($_SERVER["REQUEST_METHOD"] != "POST"){
100   @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $lang, "Setting language to");
104 /* Check for SSL connection */
105 $ssl= "";
106 if (!isset($HTTP_SERVER_VARS['HTTPS']) ||
107     !stristr($HTTP_SERVER_VARS['HTTPS'], "on")) {
109   if (empty($HTTP_SERVER_VARS['REQUEST_URI'])) {
110     $ssl= "https://".$HTTP_SERVER_VARS['HTTP_HOST'].
111       $HTTP_SERVER_VARS['PATH_INFO'];
112   } else {
113     $ssl= "https://".$HTTP_SERVER_VARS['HTTP_HOST'].
114       $HTTP_SERVER_VARS['REQUEST_URI'];
115   }
118 /* If SSL is forced, just forward to the SSL enabled site */
119 if ($config->data['MAIN']['FORCESSL'] == 'true' && $ssl != ''){
120   header ("Location: $ssl");
121   exit;
124 /* Got a formular answer, validate and try to log in */
125 if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['login'])){
127   /* Reset error messages */
128   $message= "";
130   $server= validate($_POST["server"]);
131   $config->set_current($server);
133   /* Admin-logon and verify */
134   $ldap = $config->get_ldap_link();
135   if (is_null($ldap) || (is_int($ldap) && $ldap == 0)){
136     print_red (_("Can't bind to LDAP. Please contact the system administrator."));
137     echo $_SESSION['errors'];
138     $smarty->display(get_template_path('login.tpl'));
139     exit();
140   }
142   /* Check for schema file presence */
143   if(preg_match("/true/i",$config->data['MAIN']['SCHEMA_CHECK'])){
144     require_once("functions_setup.inc");
145     if(!is_schema_readable($config->current['SERVER'],$config->current['ADMIN'],$config->current['PASSWORD'])){
146       print_red(_("GOsa cannot retrieve information about the installed schema files. Please make sure, that this is possible."));
147       echo $_SESSION['errors'];
148       exit();
149     }else{
150       $str = (schema_check($config->current['SERVER'],$config->current['ADMIN'],$config->current['PASSWORD'],0,TRUE));
151       $checkarr = array();
152       foreach($str as $tr){
153         if(isset($tr['needonstartup'])){
154           print_red($tr['msg']."<br>"._("Your ldap setup contains old schema definitions. Please re-run the setup."));
155           print $_SESSION['errors'];
156           exit();
157         }
158       }
159     }
160   }
161   /* Check for locking area */
162   $ldap->cat($config->current['CONFIG']);
163   $attrs= $ldap->fetch();
164   if (!count ($attrs)){
165     $ldap->cd($config->current['BASE']);
166     $ldap->create_missing_trees($config->current['CONFIG']);
167   }
169   /* Check for at least one subtreeACL in the complete tree */
170   $ldap->cd($config->current['BASE']);
171   $ldap->search("(&(objectClass=gosaObject)(gosaSubtreeACL=:all))");
172   if ($ldap->count() < 1){
173     print_red(_("You're missing an administrative account for GOsa, you'll not be able to administrate anything!"));
174     displayLogin();
175     exit();
176   }
178   /* Check for valid input */
179   $username= $_POST["username"];
180   if (!ereg("^[A-Za-z0-9_.-]+$", $username)){
181     $message= _("Please specify a valid username!");
182   } elseif (mb_strlen($_POST["password"], 'UTF-8') == 0){
183     $message= _("Please specify your password!");
184     $smarty->assign ('nextfield', 'password');
185   } else {
187     /* Login as user, initialize user ACL's */
188     $ui= ldap_login_user($username, $_POST["password"]);
189     if ($ui === NULL || $ui == 0){
190       $message= _("Please check the username/password combination.");
191       $smarty->assign ('nextfield', 'password');
192       gosa_log ("Authentication failed for user \"$username\"");
193     } else {
194       /* Remove all locks of this user */
195       del_user_locks($ui->dn);
197       /* Save userinfo and plugin structure */
198       $_SESSION['ui']= $ui;
199       $_SESSION['session_cnt']= 0;
201       /* Let GOsa trigger a new connection for each POST, save
202          config to session. */
203       $_SESSION['config']= $config;
205       /* Go to main page */
206       gosa_log ("User \"$username\" logged in successfully");
207       header ("Location: main.php?global_check=1");
208       exit;
209     }
210   }
213 /* Fill template with required values */
214 $smarty->assign ('date', gmdate("D, d M Y H:i:s"));
215 $smarty->assign ('username', $username);
216 $smarty->assign ('personal_img', get_template_path('images/personal.png'));
217 $smarty->assign ('password_img', get_template_path('images/password.png'));
218 $smarty->assign ('directory_img', get_template_path('images/ldapserver.png'));
220 /* Some error to display? */
221 if (!isset($message)){
222   $message= "";
224 $smarty->assign ("message", $message);
226 /* Displasy SSL mode warning? */
227 if ($ssl != "" && $config->data['MAIN']['WARNSSL'] == 'true'){
228   $smarty->assign ("ssl", "<b>"._("Warning").":</b> "._("Session will not be encrypted.")." <a style=\"color:red;\" href=\"$ssl\"><b>"._("Enter SSL session")."</b></a>!");
229 } else {
230   $smarty->assign ("ssl", "");
233 /* Generate server list */
234 $servers= array();
235 if (isset($_POST['server'])){
236   $selected= validate($_POST['server']);
237 } else {
238   $selected= $config->data['MAIN']['DEFAULT'];
240 foreach ($config->data['LOCATIONS'] as $key => $ignored){
241   $servers[$key]= $key;
243 $smarty->assign ("server_options", $servers);
244 $smarty->assign ("server_id", $selected);
246 /* show login screen */
247 $smarty->display (get_template_path('headers.tpl'));
248 $smarty->assign ("PHPSESSID", session_id());
249 if (isset($_SESSION['errors'])){
250   $smarty->assign("errors", $_SESSION['errors']);
252 if ($error_collector != ""){
253   $smarty->assign("php_errors", $error_collector."</div>");
254 } else {
255   $smarty->assign("php_errors", "");
257 $smarty->display (get_template_path('login.tpl'));
265 function displayLogin()
267   global $smarty,$message,$config,$ssl,$error_collector;
268   error_reporting(E_ALL);
269     /* Fill template with required values */
270     $username = "";
271     if(isset($_POST["username"])){
272       $username= $_POST["username"];
273     }
274     $smarty->assign ('date', gmdate("D, d M Y H:i:s"));
275     $smarty->assign ('username', $username);
276     $smarty->assign ('personal_img', get_template_path('images/personal.png'));
277     $smarty->assign ('password_img', get_template_path('images/password.png'));
278     $smarty->assign ('directory_img', get_template_path('images/ldapserver.png'));
280     /* Some error to display? */
281     if (!isset($message)){
282       $message= "";
283     }
284     $smarty->assign ("message", $message);
286     /* Displasy SSL mode warning? */
287     if ($ssl != "" && $config->data['MAIN']['WARNSSL'] == 'true'){
288       $smarty->assign ("ssl", "<b>"._("Warning").":</b> "._("Session will not be encrypted.")." <a style=\"color:red;\" href=\"$ssl\"><b>"._("Enter SSL session")."</b></a>!");
289     } else {
290       $smarty->assign ("ssl", "");
291     }
293     /* Generate server list */
294     $servers= array();
295     if (isset($_POST['server'])){
296       $selected= validate($_POST['server']);
297     } else {
298       $selected= $config->data['MAIN']['DEFAULT'];
299     }
300     foreach ($config->data['LOCATIONS'] as $key => $ignored){
301       $servers[$key]= $key;
302     }
303     $smarty->assign ("server_options", $servers);
304     $smarty->assign ("server_id", $selected);
306     /* show login screen */
307     $smarty->display (get_template_path('headers.tpl'));
308     $smarty->assign ("PHPSESSID", session_id());
309     if (isset($_SESSION['errors'])){
310       $smarty->assign("errors", $_SESSION['errors']);
311     }
312     if ($error_collector != ""){
313       $smarty->assign("php_errors", $error_collector."</div>");
314     } else {
315       $smarty->assign("php_errors", "");
316     }
318     $smarty->display(get_template_path('login.tpl'));
319     exit();
324 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
325 ?>
327 </body>
328 </html>