Fix for the fix... ;-)
[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
73                 // Additionally admin?
74                 if (IS_ADMIN()) {
75                         // Add it
76                         $username .= " ("._ADMIN_SHORT.")";
77                 } // END - if
78         } else {
79                 // Hmmm, logged in and no valid cookies???
80                 $username = "<I>"._UNKNOWN."</I>";
81         }
82
83         // Free memory
84         SQL_FREERESULT($result);
85 } elseif (IS_ADMIN()) {
86         $username = _ADMIN;
87 } else {
88         // He's a guest, hello there... ;-)
89         $username = _GUEST;
90 }
91
92 // The header file
93 include (PATH."inc/header.php");
94
95 // Modules are by default not valid!
96 $MOD_VALID = false; $check = "failed";
97 if ((!empty($_CONFIG['maintenance'])) && ($_CONFIG['maintenance'] == "Y") && (!IS_ADMIN()) && ($GLOBALS['module'] != "admin")) {
98         // Maintain mode is active and you are no admin
99         ADD_FATAL(LANG_DOWN_MAINTAINCE);
100 } elseif (($link) && ($db) && (sizeof($FATAL) == 0)) {
101         // Did we found the module listed in allowed modules and are we successfully connected?
102         $check = CHECK_MODULE($GLOBALS['module']);
103         switch ($check)
104         {
105         case "admin_only":
106         case "mem_only":
107         case "done":
108                 // Construct module name
109                 define('__MODULE', sprintf("%sinc/modules/%s.php", PATH, $GLOBALS['module']));
110
111                 // Does the module exists on local file system?
112                 if ((FILE_READABLE(__MODULE)) && (sizeof($FATAL) == 0)) {
113                         // Module is valid, active and located on the local disc...
114                         $MOD_VALID = true;
115                 } elseif (!empty($URL)) {
116                         // An URL was specified so we load the de-referrer module
117                         LOAD_URL(DEREFERER($URL));
118                 } elseif (sizeof($FATAL) == 0) {
119                         ADD_FATAL(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2);
120                 }
121                 break;
122
123         case "404":
124                 ADD_FATAL(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2);
125                 break;
126
127         case "locked":
128                 if (!FILE_READABLE(PATH."inc/modules/".$GLOBALS['module'].".php"))
129                 {
130                         // Module does addionally not exists
131                         ADD_FATAL(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2);
132                 }
133                 ADD_FATAL(LANG_MOD_LOCKED_1.$GLOBALS['module'].LANG_MOD_LOCKED_2);
134                 break;
135
136         default:
137                 ADD_FATAL(LANG_MOD_UNKNOWN_1.$check.LANG_MOD_UNKNOWN_2);
138                 break;
139         }
140 }
141  elseif (sizeof($FATAL) == 0)
142 {
143         // MySQL problems!
144         ADD_FATAL(MYSQL_ERRORS);
145 }
146
147 if ($MOD_VALID) {
148         /////////////////////////////////////////////
149         // Main including line DO NOT REMOVE/EDIT! //
150         /////////////////////////////////////////////
151         //
152         // Everything is okay so we can load the module
153         include (__MODULE);
154 }
155
156 // Next-to-end add the footer
157 include (PATH."inc/footer.php");
158
159 //
160 ?>