6d244e9656a9866efe8595bac7e1c5a3c9cf43fe
[mailer.git] / inc / modules / admin / what-logs.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 11/15/2003 *
4  * ===============                              Last change: 04/02/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-logs.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : Management for access log files                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Management fuer Zugriffslogbuecher               *
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  * 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 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!isAdmin())) {
41         die();
42 }
43
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
46
47 if (isGetRequestElementSet('access')) {
48         // Secure input and construct FQFN
49         $access = SQL_ESCAPE(secureString(getRequestElement('access')));
50         $target = sprintf("%slogs/%s", getConfig('PATH'), $access);
51
52         // Is the file valid and readable?
53         if (isFileReadable($target)) {
54                 // Load it directly
55                 $content = readFromFile($target);
56
57                 // Save old content
58                 $OUTPUT = ob_get_contents();
59
60                 // Clean content
61                 clearOutputBuffer();
62
63                 // Set header
64                 if (substr($access, -3, 3) == 'log') {
65                         // Output header
66                         sendHeader('Content-Type: text/plain');
67                 } elseif (substr($access, -3, 3) == '.gz') {
68                         // @TODO Fix content-type here
69                         sendHeader('Content-Type: text/plain');
70                 } elseif (substr($access, -3, 3) == '.bz2') {
71                         // @TODO Fix content-type here
72                         sendHeader('Content-Type: text/plain');
73                 } else {
74                         // Restore old content
75                         outputHtml($OUTPUT);
76
77                         // Output message
78                         loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_UNKNOWN_LOGFILE_FORMAT'), $access));
79                         return;
80                 }
81
82                 // Output the logfile's content and exit
83                 print($content);
84                 shutdown();
85         } else {
86                 // Not readable!
87                 loadTemplate('admin_settings_saved', false, sprintf(getMessage('LOGFILE_NOT_READABLE'), $access));
88         }
89 } else {
90         // Is the directory there?
91         if (isDirectory(getConfig('PATH') . getConfig('logs_base'))) {
92                 // Logs directory does exist so begin the list
93                 outputHtml('<ol>');
94
95                 // Read all files
96                 $files = getArrayFromDirectory(getConfig('logs_base'), 'access');
97
98                 // And walk through them
99                 foreach ($files as $file) {
100                         // Cut dirname away
101                         $file = basename($file);
102
103                         // Okay, add it
104                         outputHtml('<li><a href="{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;access=' . urlencode($file) . '">' . $file . '</a></li>');
105                 } // END - foreach
106
107                 // Finish list
108                 outputHtml('</ol>');
109         } else {
110                 // logs directory does not exist
111                 loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_LOGS_DIR_404'), getConfig('logs_base')));
112         }
113 }
114
115 // [EOF]
116 ?>