Fixed a comparison problem like string1 < string2
[mailer.git] / modules.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/25/2003 *
4  * ===============                              Last change: 07/01/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : modules.php                                      *
8  * -------------------------------------------------------------------- *
9  * Short description : Main loader file. Loads our needed stuff         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Hauptladedatei. Laedt alle benoetigten Dateien   *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // XDEBUG call
35 //xdebug_start_trace();
36
37 // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
38 require_once ("inc/libs/security_functions.php");
39
40 // Init "action" and "what"
41 global $what, $action, $startTime;
42 $GLOBALS['startTime'] = microtime(true);
43 $CSS = 0;
44 $GLOBALS['what'] = ""; $GLOBALS['action'] = "";
45 $GLOBALS['userid'] = 0;
46
47 // Fix missing module to "index"
48 if (empty($_GET['module'])) $_GET['module'] = "index";
49
50 // Secure action/what if present
51 if (!empty($_GET['action'])) $GLOBALS['action'] = secureString($_GET['action']);
52 if (!empty($_GET['what'])) $GLOBALS['what'] = secureString($_GET['what']);
53
54 // Secure the module name (very important line!)
55 $GLOBALS['module'] = secureString($_GET['module']);
56
57 // Needed include files
58 require ("inc/config.php");
59
60 // Check if logged in
61 if (IS_MEMBER()) {
62         // Is still logged in so we welcome him with his name
63         $result = SQL_QUERY_ESC("SELECT surname, family FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
64          array($GLOBALS['userid']), __FILE__, __LINE__);
65         if (SQL_NUMROWS($result) == 1) {
66                 // Load surname and family's name and build the username
67                 list($s, $f) = SQL_FETCHROW($result);
68                 $username = $s." ".$f;
69
70                 // Update only cookies and no login data!
71                 UPDATE_LOGIN_DATA(false);
72         } else {
73
74                 // Hmmm, logged in and no valid cookies???
75                 $username = "<I>"._UNKNOWN."</I>";
76         }
77
78         // Free memory
79         SQL_FREERESULT($result);
80 } elseif (IS_ADMIN()) {
81         $username = _ADMIN;
82 } else {
83         // He's a guest, hello there... ;-)
84         $username = _GUEST;
85 }
86
87 // The header file
88 include (PATH."inc/header.php");
89
90 // Modules are by default not valid!
91 $MOD_VALID = false; $check = "failed";
92 if ((!empty($_CONFIG['maintenance'])) && ($_CONFIG['maintenance'] == "Y") && (!IS_ADMIN()) && ($GLOBALS['module'] != "admin")) {
93         // Maintain mode is active and you are no admin
94         ADD_FATAL(LANG_DOWN_MAINTAINCE);
95 } elseif (($link) && ($db) && (sizeof($FATAL) == 0)) {
96         // Did we found the module listed in allowed modules and are we successfully connected?
97         $check = CHECK_MODULE($GLOBALS['module']);
98         switch ($check)
99         {
100         case "admin_only":
101         case "mem_only":
102         case "done":
103                 // Construct module name
104                 define('__MODULE', sprintf("%sinc/modules/%s.php", PATH, $GLOBALS['module']));
105
106                 // Does the module exists on local file system?
107                 if ((FILE_READABLE(__MODULE)) && (sizeof($FATAL) == 0)) {
108                         // Module is valid, active and located on the local disc...
109                         $MOD_VALID = true;
110                 } elseif (!empty($URL)) {
111                         // An URL was specified so we load the de-referrer module
112                         LOAD_URL(DEREFERER($URL));
113                 } elseif (sizeof($FATAL) == 0) {
114                         ADD_FATAL(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2);
115                 }
116                 break;
117
118         case "404":
119                 ADD_FATAL(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2);
120                 break;
121
122         case "locked":
123                 if (!FILE_READABLE(PATH."inc/modules/".$GLOBALS['module'].".php"))
124                 {
125                         // Module does addionally not exists
126                         ADD_FATAL(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2);
127                 }
128                 ADD_FATAL(LANG_MOD_LOCKED_1.$GLOBALS['module'].LANG_MOD_LOCKED_2);
129                 break;
130
131         default:
132                 ADD_FATAL(LANG_MOD_UNKNOWN_1.$check.LANG_MOD_UNKNOWN_2);
133                 break;
134         }
135 }
136  elseif (sizeof($FATAL) == 0)
137 {
138         // MySQL problems!
139         ADD_FATAL(MYSQL_ERRORS);
140 }
141
142 if ($MOD_VALID) {
143         /////////////////////////////////////////////
144         // Main including line DO NOT REMOVE/EDIT! //
145         /////////////////////////////////////////////
146         //
147         // Everything is okay so we can load the module
148         include (__MODULE);
149 }
150
151 // Next-to-end add the footer
152 include (PATH."inc/footer.php");
153
154 //
155 ?>