2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 11/15/2003 *
4 * =================== Last change: 04/02/2004 *
6 * -------------------------------------------------------------------- *
7 * File : what-usage.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Auto-detection of usage statistics *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Automatische Erkennung der Aufrufstatistiken *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
36 ************************************************************************/
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
46 // Base directory (should be moved to database)
47 $usage = getConfig('usage_base') . '/';
50 $FQFN = sprintf("%s%s/index.html",
52 getConfig('usage_base')
55 if (isGetRequestParameterSet('image')) {
56 if (getRequestParameter('type') == 'usage') {
57 $FQFN = sprintf("%s%s/usage.png",
59 getConfig('usage_base')
62 if (strpos(getRequestParameter('image'), "\\") > 0) setGetRequestParameter('image', substr(getRequestParameter('image'), 0, strpos(getRequestParameter('image'), "\\")));
63 $FQFN = sprintf("%s%s/%s_usage_%s.png",
65 getConfig('usage_base'),
66 getRequestParameter('type'),
67 getRequestParameter('image')
71 if (isFileReadable($FQFN)) {
72 $image = imagecreatefrompng($FQFN);
73 setContentType('image/png');
78 } elseif (isGetRequestParameterSet('usage')) {
79 $FQFN = sprintf("%s%s/usage_%s.html",
81 getConfig('usage_base'),
82 getRequestParameter('usage')
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)) . '";');
92 $content = str_replace('usage.png' , '{?URL?}/modules.php?module=admin&what=' . getWhat() . '&type=usage&image=usage', $content);
93 $content = str_replace('daily_usage_' , '{?URL?}/modules.php?module=admin&what=' . getWhat() . '&type=daily&image=' , $content);
94 $content = str_replace('hourly_usage_', '{?URL?}/modules.php?module=admin&what=' . getWhat() . '&type=hourly&image=' , $content);
95 $content = str_replace('ctry_usage_' , '{?URL?}/modules.php?module=admin&what=' . getWhat() . '&type=ctry&image=' , $content);
96 $content = str_replace('usage_' , '{?URL?}/modules.php?module=admin&what=' . getWhat() . '&usage=' , str_replace('.html', '', $content));
97 $test = strtolower($content);
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)) {
102 $content = substr(substr($content, 0, $body_end), $body_start);
103 $content = substr($content, strpos($content, '>') + 1);
107 outputHtml($content);
109 // Nothing to load, then we have no directory 'usage'
110 displayMessage('{--ADMIN_USAGE_DIRECTORY_404--}');