A lot has been rewritten, ext-teams added, ext-forced continued:
[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  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 // Base directory (should be moved to database)
47 $usage = getConfig('usage_base') . '/';
48
49 // Init FQFN
50 $FQFN = sprintf("%s%s/index.html",
51         getPath(),
52         getConfig('usage_base')
53 );
54
55 if (isGetRequestParameterSet('image')) {
56         if (getRequestParameter('type') == 'usage') {
57                 $FQFN = sprintf("%s%s/usage.png",
58                         getPath(),
59                         getConfig('usage_base')
60                 );
61         } else {
62                 if (strpos(getRequestParameter('image'), "\\") > 0) setGetRequestParameter('image', substr(getRequestParameter('image'), 0, strpos(getRequestParameter('image'), "\\")));
63                 $FQFN = sprintf("%s%s/%s_usage_%s.png",
64                         getPath(),
65                         getConfig('usage_base'),
66                         getRequestParameter('type'),
67                         getRequestParameter('image')
68                 );
69         }
70
71         if (isFileReadable($FQFN)) {
72                 $image = imagecreatefrompng($FQFN);
73                 setContentType('image/png');
74                 imagepng($image);
75                 imagedestroy($image);
76         } // END - if
77         shutdown();
78 } elseif (isGetRequestParameterSet('usage')) {
79         $FQFN = sprintf("%s%s/usage_%s.html",
80                 getPath(),
81                 getConfig('usage_base'),
82                 getRequestParameter('usage')
83         );
84 }
85
86 if ((!empty($FQFN)) && (isFileReadable($FQFN))) {
87         // @TODO This code is double, see loadTemplate() 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         displayMessage('{--ADMIN_USAGE_DIRECTORY_404--}');
111 }
112
113 // [EOF]
114 ?>