A lot CSS classes rewritten, please update all your themes.
[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  * 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 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 // Base directory (should be moved to database)
49 $usage = getConfig('usage_base') . '/';
50
51 // Init FQFN
52 $FQFN = sprintf("%s%s/index.html",
53         getPath(),
54         getConfig('usage_base')
55 );
56
57 if (isGetRequestParameterSet('image')) {
58         if (getRequestParameter('type') == 'usage') {
59                 $FQFN = sprintf("%s%s/usage.png",
60                         getPath(),
61                         getConfig('usage_base')
62                 );
63         } else {
64                 if (strpos(getRequestParameter('image'), "\\") > 0) setGetRequestParameter('image', substr(getRequestParameter('image'), 0, strpos(getRequestParameter('image'), "\\")));
65                 $FQFN = sprintf("%s%s/%s_usage_%s.png",
66                         getPath(),
67                         getConfig('usage_base'),
68                         getRequestParameter('type'),
69                         getRequestParameter('image')
70                 );
71         }
72
73         if (isFileReadable($FQFN)) {
74                 $image = imagecreatefrompng($FQFN);
75                 sendHeader('Content-Type: image/png');
76                 imagepng($image);
77                 imagedestroy($image);
78         }
79         shutdown();
80 } elseif (isGetRequestParameterSet('usage')) {
81         $FQFN = sprintf("%s%s/usage_%s.html",
82                 getPath(),
83                 getConfig('usage_base'),
84                 getRequestParameter('usage')
85         );
86 }
87
88 if ((!empty($FQFN)) && (isFileReadable($FQFN))) {
89         // @TODO This code is double, see loadTemplate() and loadEmailTemplate() in functions.php
90         eval('$content="' . SQL_ESCAPE(readFromFile($FQFN)) . '";');
91         // Until here...
92
93         // Replace URLs
94         $content = str_replace('usage.png'    , '{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;type=usage&amp;image=usage', $content);
95         $content = str_replace('daily_usage_' , '{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;type=daily&amp;image='     , $content);
96         $content = str_replace('hourly_usage_', '{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;type=hourly&amp;image='    , $content);
97         $content = str_replace('ctry_usage_'  , '{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;type=ctry&amp;image='      , $content);
98         $content = str_replace('usage_'       , '{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;usage='                    , str_replace('.html', '', $content));
99         $test = strtolower($content);
100
101         // Do we need to strip out above and including <body> plus trailing </html> tag?
102         if ((strpos($test, '<body') > 0) && (strpos($test, '</body>') > 0)) {
103                 // Okay, then do so.
104                 $content = substr(substr($content, 0, $body_end), $body_start);
105                 $content = substr($content, strpos($content, '>') + 1);
106         } // END - if
107
108         // Output code
109         outputHtml($content);
110 } else {
111         // Nothing to load, then we have no directory 'usage'
112         loadTemplate('admin_settings_saved', false, '{--ADMIN_USAGE_DIRECTORY_404--}');
113 }
114
115 // [EOF]
116 ?>