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