More double-quotes to single-quotes
[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 - 2013 by Mailer Developer Team                   *
20  * For more information visit: http://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 (isGetRequestElementSet('image')) {
56         if (getRequestElement('type') == 'usage') {
57                 $FQFN = sprintf('%s%s/usage.png',
58                         getPath(),
59                         getConfig('usage_base')
60                 );
61         } else {
62                 if (strpos(getRequestElement('image'), chr(92)) > 0) {
63                         setGetRequestElement('image', substr(getRequestElement('image'), 0, strpos(getRequestElement('image'), chr(92))));
64                 } // END - if
65                 $FQFN = sprintf('%s%s/%s_usage_%s.png',
66                         getPath(),
67                         getConfig('usage_base'),
68                         getRequestElement('type'),
69                         getRequestElement('image')
70                 );
71         }
72
73         if (isFileReadable($FQFN)) {
74                 $image = imagecreatefrompng($FQFN);
75                 setContentType('image/png');
76                 imagepng($image);
77                 imagedestroy($image);
78         } // END - if
79         doShutdown();
80 } elseif (isGetRequestElementSet('usage')) {
81         $FQFN = sprintf('%s%s/usage_%s.html',
82                 getPath(),
83                 getConfig('usage_base'),
84                 getRequestElement('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="' . sqlEscapeString(readFromFile($FQFN)) . '";');
91         // Until here...
92
93         // Replace URLs
94         $content = str_replace(
95                 // From:
96                 array(
97                         'usage.png',
98                         'daily_usage_',
99                         'hourly_usage_',
100                         'ctry_usage_',
101                         'usage_',
102                         '.html',
103                 ),
104                 // To:
105                 array(
106                         '{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;type=usage&amp;image=usage',
107                         '{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;type=daily&amp;image=',
108                         '{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;type=hourly&amp;image=',
109                         '{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;type=ctry&amp;image=',
110                         '{?URL?}/modules.php?module=admin&amp;what=' . getWhat() . '&amp;usage=',
111                         '',
112                 ),
113                 // Target to replace on:
114                 $content
115         );
116         $test = strtolower($content);
117
118         // Do we need to strip out above and including <body> plus trailing </html> tag?
119         if ((strpos($test, '<body') > 0) && (strpos($test, '</body>') > 0)) {
120                 // Okay, then do so.
121                 $content = substr(substr($content, 0, $body_end), $body_start);
122                 $content = substr($content, strpos($content, '>') + 1);
123         } // END - if
124
125         // Output code
126         outputHtml($content);
127 } else {
128         // Nothing to load, then there is no directory 'usage'
129         displayMessage('{--ADMIN_USAGE_DIRECTORY_404--}');
130 }
131
132 // [EOF]
133 ?>