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 * 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 *
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. *
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. *
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, *
38 ************************************************************************/
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
48 // Base directory (should be moved to database)
49 $usage = getConfig('usage_base') . '/';
51 if (isGetRequestParameterSet('image')) {
52 if (getRequestParameter('type') == 'usage') {
53 $FQFN = sprintf("%s%s/usage.png",
55 getConfig('usage_base')
58 if (strpos(getRequestParameter('image'), "\\") > 0) setGetRequestParameter('image', substr(getRequestParameter('image'), 0, strpos(getRequestParameter('image'), "\\")));
59 $FQFN = sprintf("%s%s/%s_usage_%s.png",
61 getConfig('usage_base'),
62 getRequestParameter('type'),
63 getRequestParameter('image')
67 if (isFileReadable($FQFN)) {
68 $image = imagecreatefrompng($FQFN);
69 sendHeader('Content-Type: image/png');
74 } elseif (!isGetRequestParameterSet('usage')) {
75 $FQFN = sprintf("%s%s/index.html",
77 getConfig('usage_base')
80 $FQFN = sprintf("%s%s/usage_%s.html",
82 getConfig('usage_base'),
83 getRequestParameter('usage')
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)) . '";');
93 $content = str_replace('usage.png' , '{?URL?}/modules.php?module=admin&what=' . getWhat() . '&type=usage&image=usage', $content);
94 $content = str_replace('daily_usage_' , '{?URL?}/modules.php?module=admin&what=' . getWhat() . '&type=daily&image=' , $content);
95 $content = str_replace('hourly_usage_', '{?URL?}/modules.php?module=admin&what=' . getWhat() . '&type=hourly&image=' , $content);
96 $content = str_replace('ctry_usage_' , '{?URL?}/modules.php?module=admin&what=' . getWhat() . '&type=ctry&image=' , $content);
97 $content = str_replace('usage_' , '{?URL?}/modules.php?module=admin&what=' . getWhat() . '&usage=' , str_replace('.html', '', $content));
98 $test = strtolower($content);
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)) {
103 $content = substr(substr($content, 0, $body_end), $body_start);
104 $content = substr($content, strpos($content, '>') + 1);
108 outputHtml($content);
110 // Nothing to load, then we have no directory 'usage'
111 loadTemplate('admin_settings_saved', false, '{--ADMIN_USAGE_DIRECTORY_404--}');