New extension added, more EL-rewrites, naming-convention applied:
[mailer.git] / modules.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // XDEBUG call
41 //* DEBUG: */ xdebug_start_trace();
42
43 // Load security stuff here
44 require('inc/libs/security_functions.php');
45
46 // Init start time
47 $GLOBALS['startTime'] = microtime(true);
48
49 // Init output mode and module
50 $GLOBALS['output_mode'] = '0';
51 $GLOBALS['module'] = 'unknown';
52
53 // Needed include files
54 require('inc/config-global.php');
55
56 // Set content type
57 setContentType('text/html');
58
59 // Fix missing module to 'index'
60 if (!isGetRequestParameterSet('module')) {
61         // Set element
62         setGetRequestParameter('module', 'index');
63
64         // ... and module
65         setModule('index');
66 } // END - if
67
68 // The header file
69 loadIncludeOnce('inc/header.php');
70
71 // Modules are by default not valid!
72 $isModuleValid = false;
73 $URL = '';
74 $check = 'failed';
75
76 // Is the maintenance mode active or goes all well?
77 if ((isExtensionActive('maintenance')) && (getConfig('maintenance') == 'Y') && (!isAdmin()) && (getModule() != 'admin')) {
78         // Maintain mode is active and you are no admin
79         addFatalMessage(__FILE__, __LINE__, getMessage('MAILER_DOWN_FOR_MAINTENANCE'));
80 } elseif ((SQL_IS_LINK_UP()) && (!ifFatalErrorsDetected())) {
81         // Construct module name
82         $GLOBALS['module_inc'] =  sprintf("inc/modules/%s.php", getModule());
83
84         // Check module permission (again)
85         $check = checkModulePermissions();
86         switch ($check) {
87                 case 'cache_miss': // The cache is gone
88                 case 'admin_only': // Admin-only access
89                 case 'mem_only': // Member-only access
90                 case 'done': // All fine!
91                         // Does the module exists on local file system?
92                         if ((isIncludeReadable($GLOBALS['module_inc'])) && (!ifFatalErrorsDetected())) {
93                                 // Module is valid, active and located on the local disc...
94                                 $isModuleValid = true;
95                         } elseif (!ifFatalErrorsDetected()) {
96                                 // Set HTTP status
97                                 setHttpStatus('404');
98
99                                 // Module not found!
100                                 addFatalMessage(__FILE__, __LINE__, getMaskedMessage('MODULE_REGISTRY_404', getModule()));
101                         }
102                         break;
103
104                 case '404':
105                         // Set HTTP status
106                         setHttpStatus('404');
107
108                         // Add fatal message
109                         addFatalMessage(__FILE__, __LINE__, getMaskedMessage('MODULE_REGISTRY_404', getModule()));
110                         break;
111
112                 case 'locked':
113                         // Set HTTP status
114                         setHttpStatus('403');
115
116                         if (!isIncludeReadable($GLOBALS['module_inc'])) {
117                                 // Set HTTP status
118                                 setHttpStatus('404');
119
120                                 // Module does addionally not exists
121                                 addFatalMessage(__FILE__, __LINE__, getMaskedMessage('MODULE_REGISTRY_404', getModule()));
122                         } // END - if
123
124                         // Add fatal message
125                         addFatalMessage(__FILE__, __LINE__, getMaskedMessage('MODULE_IS_LOCKED', getModule()));
126                         break;
127
128                 default:
129                         // Unknown module status
130                         logDebugMessage(__FILE__, __LINE__, sprintf("Unknown status %s return from module check. Module=%s", $check, getModule()));
131                         addFatalMessage(__FILE__, __LINE__, getMaskedMessage('UNKNOWN_MODULE_STATUS', $check));
132                         break;
133         } // END - switch
134 } elseif (!ifFatalErrorsDetected()) {
135         // MySQL problems detected
136         addFatalMessage(__FILE__, __LINE__, getMessage('MYSQL_ERRORS'));
137 }
138
139 if (($isModuleValid === true) && (isset($GLOBALS['module_inc']))) {
140         // Everything is okay so we can load the module
141         loadIncludeOnce($GLOBALS['module_inc']);
142 } // END - if
143
144 // Add the footer (this will call shutdown())
145 loadIncludeOnce('inc/footer.php');
146
147 // [EOF]
148 ?>