Code

fixed smarty encoding errors
[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   require_once("functions_setup.inc");
144   if(!is_schema_readable($config->current['SERVER'],$config->current['ADMIN'],$config->current['PASSWORD'])){
145     print_red(_("GOsa cannot retrieve information about the installed schema files. Please make sure, that this is possible."));
146     echo $_SESSION['errors'];
147     exit();
148   }else{
149     $str = (schema_check($config->current['SERVER'],$config->current['ADMIN'],$config->current['PASSWORD'],0,TRUE));
150     $checkarr = array();
151     foreach($str as $tr){
152       if(isset($tr['needonstartup'])){
153         print_red($tr['msg']."<br>"._("Your ldap setup contains old schema definitions. Please re-run the setup."));
154         print $_SESSION['errors'];
155         exit();
156       }
157     }
158   }
160   /* Check for locking area */
161   $ldap->cat($config->current['CONFIG']);
162   $attrs= $ldap->fetch();
163   if (!count ($attrs)){
164     $ldap->cd($config->current['BASE']);
165     $ldap->create_missing_trees($config->current['CONFIG']);
166   }
168   /* Check for at least one subtreeACL in the complete tree */
169   $ldap->cd($config->current['BASE']);
170   $ldap->search("(&(objectClass=gosaObject)(gosaSubtreeACL=:all))");
171   if ($ldap->count() < 1){
172     print_red(_("You're missing an administrative account for GOsa, you'll not be able to administrate anything!"));
173     displayLogin();
174     exit();
175   }
177   /* Check for valid input */
178   $username= $_POST["username"];
179   if (!ereg("^[A-Za-z0-9_.-]+$", $username)){
180     $message= _("Please specify a valid username!");
181   } elseif (mb_strlen($_POST["password"], 'UTF-8') == 0){
182     $message= _("Please specify your password!");
183     $smarty->assign ('nextfield', 'password');
184   } else {
186     /* Login as user, initialize user ACL's */
187     $ui= ldap_login_user($username, $_POST["password"]);
188     if ($ui === NULL || $ui == 0){
189       $message= _("Please check the username/password combination.");
190       $smarty->assign ('nextfield', 'password');
191       gosa_log ("Authentication failed for user \"$username\"");
192     } else {
193       /* Remove all locks of this user */
194       del_user_locks($ui->dn);
196       /* Save userinfo and plugin structure */
197       $_SESSION['ui']= $ui;
198       $_SESSION['session_cnt']= 0;
200       /* Let GOsa trigger a new connection for each POST, save
201          config to session. */
202       $_SESSION['config']= $config;
204       /* Go to main page */
205       gosa_log ("User \"$username\" logged in successfully");
206       header ("Location: main.php?global_check=1");
207       exit;
208     }
209   }
212 /* Fill template with required values */
213 $smarty->assign ('date', gmdate("D, d M Y H:i:s"));
214 $smarty->assign ('username', $username);
215 $smarty->assign ('personal_img', get_template_path('images/personal.png'));
216 $smarty->assign ('password_img', get_template_path('images/password.png'));
217 $smarty->assign ('directory_img', get_template_path('images/ldapserver.png'));
219 /* Some error to display? */
220 if (!isset($message)){
221   $message= "";
223 $smarty->assign ("message", $message);
225 /* Displasy SSL mode warning? */
226 if ($ssl != "" && $config->data['MAIN']['WARNSSL'] == 'true'){
227   $smarty->assign ("ssl", "<b>"._("Warning").":</b> "._("Session will not be encrypted.")." <a style=\"color:red;\" href=\"$ssl\"><b>"._("Enter SSL session")."</b></a>!");
228 } else {
229   $smarty->assign ("ssl", "");
232 /* Generate server list */
233 $servers= array();
234 if (isset($_POST['server'])){
235   $selected= validate($_POST['server']);
236 } else {
237   $selected= $config->data['MAIN']['DEFAULT'];
239 foreach ($config->data['LOCATIONS'] as $key => $ignored){
240   $servers[$key]= $key;
242 $smarty->assign ("server_options", $servers);
243 $smarty->assign ("server_id", $selected);
245 /* show login screen */
246 $smarty->display (get_template_path('headers.tpl'));
247 $smarty->assign ("PHPSESSID", session_id());
248 if (isset($_SESSION['errors'])){
249   $smarty->assign("errors", $_SESSION['errors']);
251 if ($error_collector != ""){
252   $smarty->assign("php_errors", $error_collector."</div>");
253 } else {
254   $smarty->assign("php_errors", "");
256 $smarty->display (get_template_path('login.tpl'));
264 function displayLogin()
266   global $smarty,$message,$config,$ssl,$error_collector;
267   error_reporting(E_ALL);
268     /* Fill template with required values */
269     $username = "";
270     if(isset($_POST["username"])){
271       $username= $_POST["username"];
272     }
273     $smarty->assign ('date', gmdate("D, d M Y H:i:s"));
274     $smarty->assign ('username', $username);
275     $smarty->assign ('personal_img', get_template_path('images/personal.png'));
276     $smarty->assign ('password_img', get_template_path('images/password.png'));
277     $smarty->assign ('directory_img', get_template_path('images/ldapserver.png'));
279     /* Some error to display? */
280     if (!isset($message)){
281       $message= "";
282     }
283     $smarty->assign ("message", $message);
285     /* Displasy SSL mode warning? */
286     if ($ssl != "" && $config->data['MAIN']['WARNSSL'] == 'true'){
287       $smarty->assign ("ssl", "<b>"._("Warning").":</b> "._("Session will not be encrypted.")." <a style=\"color:red;\" href=\"$ssl\"><b>"._("Enter SSL session")."</b></a>!");
288     } else {
289       $smarty->assign ("ssl", "");
290     }
292     /* Generate server list */
293     $servers= array();
294     if (isset($_POST['server'])){
295       $selected= validate($_POST['server']);
296     } else {
297       $selected= $config->data['MAIN']['DEFAULT'];
298     }
299     foreach ($config->data['LOCATIONS'] as $key => $ignored){
300       $servers[$key]= $key;
301     }
302     $smarty->assign ("server_options", $servers);
303     $smarty->assign ("server_id", $selected);
305     /* show login screen */
306     $smarty->display (get_template_path('headers.tpl'));
307     $smarty->assign ("PHPSESSID", session_id());
308     if (isset($_SESSION['errors'])){
309       $smarty->assign("errors", $_SESSION['errors']);
310     }
311     if ($error_collector != ""){
312       $smarty->assign("php_errors", $error_collector."</div>");
313     } else {
314       $smarty->assign("php_errors", "");
315     }
317     $smarty->display(get_template_path('login.tpl'));
318     exit();
323 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
324 ?>
326 </body>
327 </html>