Better out, then it is automatic
[mailer.git] / debug.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/12/2008 *
4  * ===============                              Last change: 23/12/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : debug.php                                        *
8  * -------------------------------------------------------------------- *
9  * Short description : Receiver script for debug.log files              *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Empfangsscript fuer debug.log 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 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Load security stuff here
40 require('inc/libs/security_functions.php');
41
42 // Set module and fake "CSS mode"
43 $GLOBALS['module'] = 'debug';
44 $GLOBALS['output_mode'] = -1;
45
46 // Load the required file(s)
47 require('inc/config-global.php');
48
49 // Redirect only to registration page when this script is installed
50 if ((isInstalled()) && (getTotalFatalErrors() == 0)) {
51         // Is the extension installed?
52         if (!EXT_IS_ACTIVE('debug')) {
53                 // Then abort here
54                 shutdown();
55         } // END - if
56
57         // Is the request parameter set?
58         if (REQUEST_ISSET_POST('request')) {
59                 // Handle the request
60                 if (DEBUG_HANDLE_REQUEST(REQUEST_POST('request'))) {
61                         // Construct FQFN for the module
62                         $INC = sprintf("inc/debug/%s/request_%s",
63                                 getConfig('debug_mode'),
64                                 SQL_ESCAPE(REQUEST_POST('request'))
65                         );
66
67                         // Is the module there? Else we log it!
68                         if (isIncludeReadable($INC)) {
69                                 // Load the request module
70                                 loadInclude($INC);
71                         } else {
72                                 // Missing request file, may happen while development
73                                 DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_404', REQUEST_POST('request'));
74                         }
75                 } else {
76                         // Unhandled request detected
77                         DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_unhandled', REQUEST_POST('request'));
78                 }
79         } else {
80                 // Empty request
81                 DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_empty', '');
82         }
83 } else {
84         // Not installed or fatal errors
85         DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_fatal', getTotalFatalErrors());
86 } // END - if
87
88 // Really all done here... ;-)
89 shutdown();
90
91 //
92 ?>