Adding of network type handlers finished (listing is still work-in-progress)
[mailer.git] / inc / modules / admin / what-usage.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/15/2003 *
4  * ===================                          Last change: 04/02/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-usage.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Auto-detection of usage statistics               *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Automatische Erkennung der Aufrufstatistiken     *
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 // Base directory (should be moved to database)
48 $usage = getConfig('usage_base') . '/';
49
50 if (isGetRequestElementSet('image')) {
51         if (getRequestElement('type') == 'usage') {
52                 $FQFN = sprintf("%s%s/usage.png",
53                         getConfig('PATH'),
54                         getConfig('usage_base')
55                 );
56         } else {
57                 if (strpos(getRequestElement('image'), "\\") > 0) setGetRequestElement('image', substr(getRequestElement('image'), 0, strpos(getRequestElement('image'), "\\")));
58                 $FQFN = sprintf("%s%s/%s_usage_%s.png",
59                         getConfig('PATH'),
60                         getConfig('usage_base'),
61                         getRequestElement('type'),
62                         getRequestElement('image')
63                 );
64         }
65
66         if (isFileReadable($FQFN)) {
67                 $image = imagecreatefrompng($FQFN);
68                 sendHeader('Content-Type: image/png');
69                 imagepng($image);
70                 imagedestroy($image);
71         }
72         shutdown();
73 } elseif (!isGetRequestElementSet('usage')) {
74         $FQFN = sprintf("%s%s/index.html",
75                 getConfig('PATH'),
76                 getConfig('usage_base')
77         );
78 } else {
79         $FQFN = sprintf("%s%s/usage_%s.html",
80                 getConfig('PATH'),
81                 getConfig('usage_base'),
82                 getRequestElement('usage')
83         );
84 }
85
86 if ((!empty($FQFN)) && (isFileReadable($FQFN))) {
87         // @TODO This code is double, see LOAD_TEMPLATE and loadEmailTemplate in functions.php
88         eval("\$content=\"".SQL_ESCAPE(readFromFile($FQFN))."\";");
89         // Until here...
90
91         // Replace URLs
92         $content = str_replace('usage.png'    , '{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;type=usage&amp;image=usage', $content);
93         $content = str_replace('daily_usage_' , '{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;type=daily&amp;image='     , $content);
94         $content = str_replace('hourly_usage_', '{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;type=hourly&amp;image='    , $content);
95         $content = str_replace('ctry_usage_'  , '{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;type=ctry&amp;image='      , $content);
96         $content = str_replace('usage_'       , '{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;usage='                , str_replace('.html', '', $content));
97         $test = strtolower($content);
98
99         // Do we need to strip out above and including <body> plus trailing </html> tag?
100         if ((strpos($test, '<body') > 0) && (strpos($test, '</body>') > 0)) {
101                 // Okay, then do so.
102                 $content = substr(substr($content, 0, $body_end), $body_start);
103                 $content = substr($content, strpos($content, '>') + 1);
104         } // END - if
105
106         // Output code
107         outputHtml($content);
108 } else {
109         // Nothing to load, then we have no directory 'usage'
110         loadTemplate('admin_settings_saved', false, getMessage('ADMIN_USAGE_DIRECTORY_404'));
111 }
112
113 // [EOF]
114 ?>