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