All resets rewritten, missing svn:properties added
[mailer.git] / debug.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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 - 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 // Load security stuff here
41 require('inc/libs/security_functions.php');
42
43 // Set module and fake "CSS mode"
44 $GLOBALS['module'] = 'debug';
45 $GLOBALS['output_mode'] = -1;
46
47 // Load the required file(s)
48 require('inc/config-global.php');
49
50 // Redirect only to registration page when this script is installed
51 if ((isExtensionActive('debug')) && (!ifFatalErrorsDetected())) {
52         // Is the request parameter set?
53         if (isPostRequestParameterSet('request')) {
54                 // Handle the request
55                 if (DEBUG_HANDLE_REQUEST(postRequestParameter('request'))) {
56                         // Construct FQFN for the module
57                         $inc = sprintf("inc/debug/%s/request_%s",
58                                 getConfig('debug_mode'),
59                                 SQL_ESCAPE(postRequestParameter('request'))
60                         );
61
62                         // Is the module there? Else we log it!
63                         if (isIncludeReadable($inc)) {
64                                 // Load the requested module
65                                 loadInclude($inc);
66                         } else {
67                                 // Missing request files may happen while development
68                                 DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_404', postRequestParameter('request'));
69                         }
70                 } else {
71                         // Unhandled request detected
72                         DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_unhandled', postRequestParameter('request'));
73                 }
74         } else {
75                 // Empty request
76                 DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_empty', '');
77         }
78 } else {
79         // Not installed or fatal errors
80         DEBUG_ABUSE_LOG(__FILE__, __LINE__, 'request_fatal', getTotalFatalErrors());
81 } // END - if
82
83 // Really all done here... ;-)
84 shutdown();
85
86 // [EOF]
87 ?>