Removed some column aliases as they make it harder to check which column was ment
[mailer.git] / inc / modules / guest / what-mediadata.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 12/09/2003 *
4  * ===================                          Last change: 02/12/2006 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-mediadata.php                               *
8  * -------------------------------------------------------------------- *
9  * Short description : Media data                                       *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Mediendaten                                      *
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 - 2012 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')) {
40         exit();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('guest', __FILE__);
45
46 // Both ext-mediadata and ext-user must be there
47 if ((!isExtensionActive('mediadata')) && (!isAdmin())) {
48         displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=mediadata%}');
49         return;
50 } elseif ((!isExtensionActive('user')) && (!isAdmin())) {
51         displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=user%}');
52         return;
53 }
54
55 // Get total confirmed user ids...
56 $content['user_confirmed']   = getTotalConfirmedUser();
57 $content['user_unconfirmed'] = getTotalUnconfirmedUser();
58 $content['user_locked']      = getTotalLockedUser();
59 $content['user_count']       = ($content['user_confirmed'] + $content['user_unconfirmed'] + $content['user_locked']);
60
61 // Start of this exchange
62 $content['mt_start'] = generateDateTime(getMtStart(), '3');
63
64 // Project timestamp when number of members are reached
65 $PROJECTED = '0';
66 if ($content['user_count'] > 0) {
67         // @TODO Find a better formular than this one
68         $PROJECTED = round((time() - getMtStart()) / $content['user_count'] * getMtStage() + getMtStart());
69 } // END - if
70
71 // Generate timestamp
72 $TEST = makeTime(0, 0, 0, $PROJECTED);
73
74 if ($TEST > time()) {
75         $content['projected'] = '{%message,USER_MT_PROJECTED=' . generateDateTime($PROJECTED, '3') . '%}';
76 } else {
77         $content['projected'] = getMaskedMessage('USER_MT_PROJECTED', '{--USER_PROJECTION_UNKNOWN--}');
78 }
79
80 // User who can receive mails
81 $content['user_max_mails'] = countSumTotalData('CONFIRMED', 'user_data', 'max_mails', 'status', TRUE, runFilterChain('user_exclusion_sql', " AND `max_mails` > 0"));
82
83 // Users who can receive mails today
84 $content['user_max_rec'] = countSumTotalData('CONFIRMED', 'user_data', 'receive_mails', 'status', TRUE, runFilterChain('user_exclusion_sql', " AND `receive_mails` > 0"));
85
86 // Max mails per day
87 $content['max'] = countSumTotalData('CONFIRMED', 'user_data', 'max_mails', 'status', FALSE, runFilterChain('user_exclusion_sql', " AND `max_mails` > 0"));
88
89 // Max mails for this day
90 $content['rec'] = countSumTotalData('CONFIRMED', 'user_data', 'receive_mails', 'status', FALSE, runFilterChain('user_exclusion_sql', " AND `receive_mails` > 0"));
91
92 // Initial lots of variables
93 $bmails = '0';
94 $sent   = '0';
95 $max    = '0';
96 $rec    = '0';
97 $clicks = '0';
98
99 // Mail orders (only current)
100 $nmails = getMediadataEntry('normal_orders');
101 if (empty($nmails)) $nmails = '0';
102
103 // Mails sent so far
104 $clicks = getMediadataEntry('normal_clicks');
105 $sent   = getMediadataEntry('normal_send');
106 if (empty($sent))   $sent   = '0';
107 if (empty($clicks)) $clicks = '0';
108
109 // Bonus mails
110 if (isExtensionActive('bonus')) {
111         $bmails = getMediadataEntry('bonus_orders');
112         if (empty($bmails)) $bmails = '0';
113
114         // Count bonus mails clicks / sent mails
115         $dmy  = getMediadataEntry('bonus_clicks');
116         $dmy2 = getMediadataEntry('bonus_send');
117         if (empty($dmy))  $dmy  = '0';
118         if (empty($dmy2)) $dmy2 = '0';
119         $sent += $dmy2; $clicks += $dmy;
120 } // END - if
121
122 $content['user_stats'] = ($nmails + $bmails);
123 $content['sent']       = $sent;
124
125 // All clicks
126 $content['user_links'] = abs($sent - $clicks);
127
128 // Click rate
129 $content['click_rate'] = '0';
130 if ($sent > 0) {
131         $content['click_rate'] = $clicks / $sent * 100;
132 } // END - if
133
134 // Load jackpot
135 $jackpot = '0';
136 if (isExtensionActive('jackpot')) $jackpot = getJackpotPoints();
137
138 if (empty($jackpot)) $jackpot = '0';
139 $content['jackpot'] = $jackpot;
140
141 // Total referral link clicks, total logins
142 $result = SQL_QUERY('SELECT
143         SUM(`d`.`ref_clicks`) AS `total_ref_clicks`,
144         SUM(`d`.`total_logins`) AS `total_logins`
145 FROM
146         `{?_MYSQL_PREFIX?}_user_data` AS `d`
147 ' . runFilterChain('user_exclusion_sql', ''), __FILE__, __LINE__);
148 list($ref, $logins) = SQL_FETCHROW($result);
149 SQL_FREERESULT($result);
150
151 // Get total points
152 $points = getMediadataEntry('total_points');
153
154 if (empty($points)) $points = '0';
155 if (empty($ref))    $ref    = '0';
156 if (empty($logins)) $logins = '0';
157
158 $content['total_points']    = $points;
159 $content['total_refclicks'] = $ref;
160 $content['total_logins']    = $logins;
161
162 // Referral banner
163 $total = countSumTotalData('Y', 'refbanner', 'id', 'visible', TRUE);
164
165 // Total views and clicks
166 $result = SQL_QUERY("SELECT SUM(`counter`) AS `views`, SUM(`clicks`) AS `clicks` FROM `{?_MYSQL_PREFIX?}_refbanner` WHERE `visible`='Y'", __FILE__, __LINE__);
167 list($views, $clicks) = SQL_FETCHROW($result);
168 SQL_FREERESULT($result);
169
170 if (empty($total))  $total  = '0';
171 if (empty($views))  $views  = '0';
172 if (empty($clicks)) $clicks = '0';
173
174 $content['ref_total']  = $total;
175 $content['ref_views']  = $views;
176 $content['ref_clicks'] = $clicks;
177
178 //
179 // Extra mediadata depending on installed extensions
180 //
181
182 // Initialize Variables
183 $OUT_EXTRA   = '';
184 $OUT_POINTS  = '';
185 $OUT_USER    = '';
186 $OUT_SPECIAL = ''; // We don't need row count here
187
188 // @TODO Rewrite all these if-blocks to filters
189 if (isExtensionActive('beg')) {
190         // Clicks on beg links
191         $data = array(
192                 'lang'  => '{--MEDIA_BEG_CLICKS--}',
193                 'value' => countSumTotalData('0', 'user_data', 'beg_clicks', 'userid', FALSE, ' AND `beg_clicks` > 0')
194         );
195         $OUT_EXTRA .= loadTemplate('mediadata_extra_row', TRUE, $data);
196 } // END - if
197
198 if (isExtensionActive('doubler')) {
199         // Add header
200         $OUT_SPECIAL .= loadTemplate('mediadata_extra_hrow', TRUE, '{--MEDIA_DOUBLER_HEADER--}');
201
202         // Add first line (count)
203         $data = array(
204                 'lang'  => '{--MEDIA_DOUBLER_COUNT--}',
205                 'value' => countSumTotalData('Y','doubler','id','completed', TRUE, ' AND `points` > 0'),
206         );
207
208         // Add points
209         $OUT_SPECIAL .= loadTemplate('mediadata_extra_row2', TRUE, $data);
210         $data = array(
211                 'lang'  => '{--MEDIA_DOUBLER_CPOINTS--}',
212                 'value' => countSumTotalData('Y','doubler','id','completed', FALSE, ' AND `points` > 0')
213         );
214         $OUT_SPECIAL .= loadTemplate('mediadata_extra_row', TRUE, $data);
215         $data = array(
216                 'lang'  => '{--MEDIA_DOUBLER_WAITING--}',
217                 'value' => countSumTotalData('N','doubler','id','completed', TRUE, ' AND `points` > 0')
218         );
219         $OUT_SPECIAL .= loadTemplate('mediadata_extra_row', TRUE, $data);
220         $data = array(
221                 'lang'  => '{--MEDIA_DOUBLER_WPOINTS--}',
222                 'value' => countSumTotalData('N','doubler','id','completed', FALSE, ' AND `points` > 0')
223         );
224         $OUT_SPECIAL .= loadTemplate('mediadata_extra_row', TRUE, $data);
225 } // END - if
226
227 if (isExtensionActive('holiday')) {
228         // Total holiday requests
229         $result = SQL_QUERY("SELECT
230         COUNT(`h`.`userid`) AS `count_holidays`
231 FROM
232         `{?_MYSQL_PREFIX?}_user_holidays` AS `h`
233 LEFT JOIN
234         `{?_MYSQL_PREFIX?}_user_data` AS `d`
235 ON
236         `h`.`userid`=`d`.`userid`
237 WHERE
238         `d`.`holiday_active`='Y'
239 " . runFilterChain('user_exclusion_sql', ' '),
240         __FILE__, __LINE__);
241         list($holiday) = SQL_FETCHROW($result);
242         SQL_FREERESULT($result);
243         if (empty($holiday)) $holiday = '0';
244         $data = array(
245                 'lang'  => '{--MEDIA_HOLIDAY_COUNT--}',
246                 'value' => $holiday
247         );
248         $OUT_USER .= loadTemplate('mediadata_extra_row', TRUE, $data);
249 } // END - if
250
251 if (isExtensionActive('transfer')) {
252         // Statistics for points transfers
253         $result = SQL_QUERY("SELECT
254         COUNT(`t`.`id`) AS `cnt`,
255         SUM(`t`.`points`) AS `points`
256 FROM
257         `{?_MYSQL_PREFIX?}_user_transfers_in` AS `t`
258 LEFT JOIN
259         `{?_MYSQL_PREFIX?}_user_data` AS `d`
260 ON
261         `t`.`userid`=`d`.`userid`
262 " . runFilterChain('user_exclusion_sql', ''),
263                 __FILE__, __LINE__);
264         list($count_in, $points_in) = SQL_FETCHROW($result);
265         SQL_FREERESULT($result);
266         if (empty($count_in))  $count_in  = '0';
267         if (empty($points_in)) $points_in = '0';
268
269         $result = SQL_QUERY("SELECT
270         COUNT(`t`.`id`) AS `cnt`, SUM(`t`.`points`) AS `points`
271 FROM
272         `{?_MYSQL_PREFIX?}_user_transfers_out` AS `t`
273 LEFT JOIN
274         `{?_MYSQL_PREFIX?}_user_data` AS `d`
275 ON
276         `t`.`userid`=`d`.`userid`
277 " . runFilterChain('user_exclusion_sql', ''),
278         __FILE__, __LINE__);
279         list($count_out, $points_out) = SQL_FETCHROW($result);
280         SQL_FREERESULT($result);
281         if (empty($count_out))  $count_out  = '0';
282         if (empty($points_out)) $points_out = '0';
283
284         // Add header
285         $OUT_SPECIAL .= loadTemplate('mediadata_extra_hrow', TRUE, '{--MEDIA_TRANSFER_HEADER--}');
286         $data = array(
287                 'lang'  => '{--MEDIA_TRANSFER_IN_COUNT--}',
288                 'value' => $count_in,
289         );
290         $OUT_SPECIAL .= loadTemplate('mediadata_extra_row2', TRUE, $data);
291         $data = array(
292                 'lang'  => '{--MEDIA_TRANSFER_IN_POINTS--}',
293                 'value' => $points_in
294         );
295         $OUT_SPECIAL .= loadTemplate('mediadata_extra_row', TRUE, $data);
296         $data = array(
297                 'lang'  => '{--MEDIA_TRANSFER_OUT_COUNT--}',
298                 'value' => $count_out
299         );
300         $OUT_SPECIAL .= loadTemplate('mediadata_extra_row', TRUE, $data);
301         $data = array(
302                 'lang'  => '{--MEDIA_TRANSFER_OUT_POINTS--}',
303                 'value' => $points_out
304         );
305         $OUT_SPECIAL .= loadTemplate('mediadata_extra_row', TRUE, $data);
306 } // END - if
307
308 $content['out_extra']   = $OUT_EXTRA;
309 $content['out_points']  = $OUT_POINTS;
310 $content['out_user']    = $OUT_USER;
311 $content['out_special'] = $OUT_SPECIAL;
312
313 // Load template
314 loadTemplate('mediadata', FALSE, $content);
315
316 // [EOF]
317 ?>