Code

Fixed undefined index, in index
[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($_GET['js']) && !isset($_SESSION['js'])){
42   echo '<script language="JavaScript" type="text/javascript">';
43   echo '  location = "index.php?js=true";';
44   echo '</script>';
46   $_SESSION['js']= FALSE;
47 } else {
48   $_SESSION['js']= TRUE;
49 }
51 /* Check if gosa.conf is accessable */
52 if (!is_readable(CONFIG_DIR."/gosa.conf")){
53   print_red(sprintf(_("GOsa configuration %s/gosa.conf is not readable. Aborted."), CONFIG_DIR));
54   echo $_SESSION['errors'];
55   exit();
56 }
58 /* Parse configuration file */
59 $config= new config(CONFIG_DIR."/gosa.conf", $BASE_DIR);
60 $_SESSION['DEBUGLEVEL']= $config->data['MAIN']['DEBUGLEVEL'];
61 if ($_SERVER["REQUEST_METHOD"] != "POST"){
62   @DEBUG (DEBUG_CONFIG, __LINE__, __FUNCTION__, __FILE__, $config->data, "config");
63 }
65 /* Set template compile directory */
66 if (isset ($config->data['MAIN']['COMPILE'])){
67   $smarty->compile_dir= $config->data['MAIN']['COMPILE'];
68 } else {
69   $smarty->compile_dir= '/var/spool/gosa';
70 }
71 $smarty->assign ('nextfield', 'username');
73 /* Check for compile directory */
74 if (!(is_dir($smarty->compile_dir) && is_writable($smarty->compile_dir))){
75   print_red(sprintf(_("Directory '%s' specified as compile directory is not accessable!"),
76         $smarty->compile_dir));
77   echo $_SESSION['errors'];
78   exit();
79 }
81 /* Check for old files in compile directory */
82 clean_smarty_compile_dir($smarty->compile_dir);
84 /* Language setup */
85 if ($config->data['MAIN']['LANG'] == ""){
86   $lang= get_browser_language();
87 } else {
88   $lang= $config->data['MAIN']['LANG'];
89 }
90 $lang.=".UTF-8";
91 putenv("LANGUAGE=");
92 putenv("LANG=$lang");
93 setlocale(LC_ALL, $lang);
94 $GLOBALS['t_language']= $lang;
95 $GLOBALS['t_gettext_message_dir'] = $BASE_DIR.'/locale/';
97 /* Set the text domain as 'messages' */
98 $domain = 'messages';
99 bindtextdomain($domain, "$BASE_DIR/locale");
100 textdomain($domain);
103 if ($_SERVER["REQUEST_METHOD"] != "POST"){
104   @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $lang, "Setting language to");
108 /* Check for SSL connection */
109 $ssl= "";
110 if (!isset($HTTP_SERVER_VARS['HTTPS']) ||
111     !stristr($HTTP_SERVER_VARS['HTTPS'], "on")) {
113   if (empty($HTTP_SERVER_VARS['REQUEST_URI'])) {
114     $ssl= "https://".$HTTP_SERVER_VARS['HTTP_HOST'].
115       $HTTP_SERVER_VARS['PATH_INFO'];
116   } else {
117     $ssl= "https://".$HTTP_SERVER_VARS['HTTP_HOST'].
118       $HTTP_SERVER_VARS['REQUEST_URI'];
119   }
122 /* If SSL is forced, just forward to the SSL enabled site */
123 if ($config->data['MAIN']['FORCESSL'] == 'true' && $ssl != ''){
124   header ("Location: $ssl");
125   exit;
128 /* Got a formular answer, validate and try to log in */
129 if ($_SERVER["REQUEST_METHOD"] == "POST"){
131   /* Reset error messages */
132   $message= "";
134   $server= validate($_POST["server"]);
135   $config->set_current($server);
137   /* Admin-logon and verify */
138   $ldap = $config->get_ldap_link();
139   if (is_null($ldap) || (is_int($ldap) && $ldap == 0)){
140     print_red (_("Can't bind to LDAP. Please contact the system administrator."));
141     echo $_SESSION['errors'];
142     exit();
143   }
145   /* Check for schema file presence */
146   require_once("functions_setup.inc");
147   if(!is_schema_readable($config->current['SERVER'],$config->current['ADMIN'],$config->current['PASSWORD'])){
148     print_red(_("GOsa cannot retrieve information about the installed schema files. Please make sure, that this is possible."));
149     echo $_SESSION['errors'];
150     exit();
151   }else{
152     $str = (schema_check($config->current['SERVER'],$config->current['ADMIN'],$config->current['PASSWORD'],0,TRUE));
153     $checkarr = array();
154     foreach($str as $tr){
155       if(isset($tr['needonstartup'])){
156         print_red($tr['msg']."<br>"._("Your ldap setup contains old schema definitions. Please re-run the setup."));
157         print $_SESSION['errors'];
158         exit();
159       }
160     }
161   }
163   /* Check for locking area */
164   $ldap->cat($config->current['CONFIG']);
165   $attrs= $ldap->fetch();
166   if (!count ($attrs)){
167     $ldap->cd($config->current['BASE']);
168     $ldap->create_missing_trees($config->current['CONFIG']);
169   }
171   /* Check for at least one subtreeACL in the complete tree */
172   $ldap->cd($config->current['BASE']);
173   $ldap->search("(&(objectClass=gosaObject)(gosaSubtreeACL=:all))");
174   if ($ldap->count() < 1){
175 #FIXME: -> ldapsetup.tpl would be better
176     print_red(_("You're missing an administrative account for GOsa, you'll not be able to administrate anything!"));
177     echo $_SESSION['errors'];
178     exit;
179   }
181   /* Check for valid input */
182   $username= $_POST["username"];
183   if (!ereg("^[A-Za-z0-9_.-]+$", $username)){
184     $message= _("Please specify a valid username!");
185   } elseif (mb_strlen($_POST["password"], 'UTF-8') == 0){
186     $message= _("Please specify your password!");
187     $smarty->assign ('nextfield', 'password');
188   } else {
190     /* Login as user, initialize user ACL's */
191     $ui= ldap_login_user($username, $_POST["password"]);
192     if ($ui === NULL || $ui == 0){
193       $message= _("Please check the username/password combination.");
194       $smarty->assign ('nextfield', 'password');
195       gosa_log ("Authentication failed for user \"$username\"");
196     } else {
197       /* Remove all locks of this user */
198       del_user_locks($ui->dn);
200       /* Save userinfo and plugin structure */
201       $_SESSION['ui']= $ui;
202       $_SESSION['session_cnt']= 0;
204       /* Let GOsa trigger a new connection for each POST, save
205          config to session. */
206       $_SESSION['config']= $config;
208       /* Go to main page */
209       gosa_log ("User \"$username\" logged in successfully");
210       header ("Location: main.php?global_check=1");
211       exit;
212     }
213   }
216 /* Fill template with required values */
217 $smarty->assign ('date', gmdate("D, d M Y H:i:s"));
218 $smarty->assign ('username', $username);
219 $smarty->assign ('personal_img', get_template_path('images/personal.png'));
220 $smarty->assign ('password_img', get_template_path('images/password.png'));
221 $smarty->assign ('directory_img', get_template_path('images/ldapserver.png'));
223 /* Some error to display? */
224 if (!isset($message)){
225   $message= "";
227 $smarty->assign ("message", $message);
229 /* Displasy SSL mode warning? */
230 if ($ssl != "" && $config->data['MAIN']['WARNSSL'] == 'true'){
231   $smarty->assign ("ssl", "<b>"._("Warning").":</b> "._("Session will not be encrypted.")." <a style=\"color:red;\" href=\"$ssl\"><b>"._("Enter SSL session")."</b></a>!");
232 } else {
233   $smarty->assign ("ssl", "");
236 /* Generate server list */
237 $servers= array();
238 if (isset($_POST['server'])){
239   $selected= validate($_POST['server']);
240 } else {
241   $selected= $config->data['MAIN']['DEFAULT'];
243 foreach ($config->data['LOCATIONS'] as $key => $ignored){
244   $servers[$key]= $key;
246 $smarty->assign ("server_options", $servers);
247 $smarty->assign ("server_id", $selected);
249 /* show login screen */
250 $smarty->display (get_template_path('headers.tpl'));
251 $smarty->assign ("PHPSESSID", session_id());
252 if (isset($_SESSION['errors'])){
253   $smarty->assign("errors", $_SESSION['errors']);
255 if ($error_collector != ""){
256   $smarty->assign("php_errors", $error_collector."</div>");
257 } else {
258   $smarty->assign("php_errors", "");
260 $smarty->display (get_template_path('login.tpl'));
262 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
263 ?>
265 </body>
266 </html>