Rewrites/fixes for handling config entries in SQLs
[mailer.git] / inc / modules / admin / what-list_user.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 09/28/2003 *
4  * ===================                          Last change: 08/18/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_user.php                               *
8  * -------------------------------------------------------------------- *
9  * Short description : List all or partial members                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle oder nur bestimmte Mitglieder auflisten     *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
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                  *
23  *                                                                      *
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.                                  *
28  *                                                                      *
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.                         *
33  *                                                                      *
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,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 if ((!isExtensionInstalled('user')) || (!isExtensionActive('user'))) {
49         // Missing extension!
50         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('user'));
51         return;
52 } // END - if
53
54 // Init variables
55 $MORE = '';
56 $colspan = 4;
57
58 // Add nickname if extension is found&active
59 // @TODO Rewrite these if-blocks in a filter
60 if (isExtensionActive('nickname')) {
61         // Add nickname
62         $MORE .= ", `nickname`";
63 } else {
64         $MORE .= ", `userid`";
65 }
66
67 // Add random confirmed if extension version matches
68 if (isExtensionInstalledAndNewer('user', '0.3.4')) {
69         // Add it...
70         $MORE .= ", `rand_confirmed`";
71
72         // Add lock reason?
73         if (isExtensionInstalledAndNewer('user', '0.3.5')) {
74                 // Add them...
75                 $MORE .= ", `lock_reason`, UNIX_TIMESTAMP(`lock_timestamp`) AS lock_timestamp";
76         } // END - if
77 } // END - if
78
79 // Is the extension 'country' installed?
80 if (isExtensionActive('country')) {
81         // Add country code
82         $MORE .= ", `country_code`";
83 } else {
84         // Add direct value
85         $MORE .= ", `country`";
86 }
87
88 // Init unset data
89 if (!isGetRequestParameterSet('letter')) { setGetRequestParameter('letter', getMessage('_ALL2')); }
90 if (!isGetRequestParameterSet('sortby')) { setGetRequestParameter('sortby', 'userid');            }
91 if (!isGetRequestParameterSet('page'))   { setGetRequestParameter('page'  , 1);                 }
92
93 // Set base URL
94 $base = '[<a href="{%url=modules.php?module=admin';
95
96 if (isGetRequestParameterSet('userid')) {
97         // Secure the user id
98         $userid = bigintval(getRequestParameter('userid'));
99
100         // Does the account exists?
101         $result_user = SQL_QUERY_ESC("SELECT
102         `gender`, `surname`, `family`, `street_nr`, `zip`, `city`, `country`, `email`, `birth_day`, `birth_month`, `birth_year`, `max_mails`, `receive_mails`, `refid`, `status`, `REMOTE_ADDR`, `last_online`, `last_module`, `ref_clicks`, `total_logins`, `used_points`, `emails_sent`, `joined`, `last_update`, `last_profile_sent`, `notified`, `ref_payout`, `emails_received`, `mails_confirmed`".$MORE."
103 FROM
104         `{?_MYSQL_PREFIX?}_user_data`
105 WHERE
106         `userid`=%s
107 LIMIT 1",
108                 array($userid), __FILE__, __LINE__);
109
110         // User found?
111         if (SQL_NUMROWS($result_user) == 1) {
112                 // Account found!
113                 $content  = SQL_FETCHARRAY($result_user);
114
115                 // Get count/sum of refs, selected categories, unconfirmed mails
116                 $content['refs']  = countSumTotalData($userid, 'refsystem' , 'counter');
117                 $content['cats']  = countSumTotalData($userid, 'user_cats' , 'id', 'userid', true);
118                 $content['links'] = countSumTotalData($userid, 'user_links', 'id', 'userid', true);
119
120                 // Add links to the numbers
121                 if ($content['links'] > 0) $content['links'] = $base . '&amp;what=list_links&amp;userid=' . $userid . '%}">' . $content['links'] . '</a>]';
122                 if ($content['refid'] > 0) $content['refid'] = $base . '&amp;what=list_user&amp;userid=' . $content['refid'] . '%}">'.$content['refid'] . '</a>]';
123                 if ($content['refs']  > 0) $content['refs']  = $base . '&amp;what=list_refs&amp;userid=' . $userid . '%}">' . $content['refs'] . '</a>]';
124                 if ($content['cats']  > 0) $content['cats']  = $base . '&amp;what=list_cats&amp;userid=' . $userid . '%}">' . $content['cats'] . '</a>]';
125
126                 // Fix empty module
127                 if (empty($content['last_module'])) $content['last_module'] = '---';
128
129                 // Calculate timestamp for birthday
130                 $stamp = mktime(0, 0, 0, $content['birth_month'], $content['birth_day'], $content['birth_year']);
131
132                 // Is this above zero?
133                 if ($stamp > 0) {
134                         // Then use it
135                         $content['birthday'] = generateDateTime($stamp, 3);
136                 } else {
137                         // Zero or below so set zero!
138                         $content['birthday'] = generateDateTime(0, 3);
139                 }
140
141                 // Prepare data for template
142                 $content['admin_links']       = generateMemberAdminActionLinks($userid, $content['status']);
143                 $content['email_link']        = generateEmailLink($content['email'], 'user_data');
144                 $content['last_online']       = generateDateTime($content['last_online'], 0);
145                 if ($content['emails_sent'] > 0) $content['emails_sent'] = $base . '&amp;what=email_details&amp;userid=' . $userid . '%}">' . translateComma($content['emails_sent']) . '</a>]';
146                 $content['joined']            = generateDateTime($content['joined'], 0);
147                 $content['last_update']       = generateDateTime($content['last_update'], 0);
148                 $content['last_profile_sent'] = generateDateTime($content['last_profile_sent'], 0);
149                 $content['total']             = translateComma(countSumTotalData($userid, 'user_points', 'points'));
150                 $content['locked']            = translateComma(countSumTotalData($userid, 'user_points', 'locked_points'));
151                 $content['lock_timestamp']    = generateDateTime($content['lock_timestamp'], 2);
152
153                 // Is the lock reason not set?
154                 if (!isset($content['lock_reason'])) $content['lock_reason'] = '---';
155
156                 // Nickname inclusion?
157                 // @TODO Rewrite these to filters
158                 if (isExtensionActive('nickname')) {
159                         // Nickname not set or invalid? Then
160                         if ((empty($content['nickname'])) || ($content['nickname'] == $userid)) $content['nickname'] = '---';
161                 } else {
162                         // Extension not found
163                         $content['nickname'] = getMessage('EXT_NICKNAME_404');
164                 }
165
166                 // Is the user extension newer?
167                 if (isExtensionInstalledAndNewer('user', '0.3.4')) {
168                         // Then "translate" the number
169                         $content['rand_confirmed'] = translateComma($content['rand_confirmed']);
170                 } // END - if
171
172                 // Clickrate
173                 $content['click_rate'] = '0';
174                 if ($content['emails_received'] > 0) {
175                         $content['click_rate'] = translateComma($content['mails_confirmed'] / $content['emails_received'] * 100);
176                 } // END - if
177
178                 // Is the extension 'country' installed?
179                 if (isExtensionActive('country')) {
180                         // Then overwrite country information
181                         $content['country'] = generateCountryInfo($content['country_code']);
182                 } elseif ($content['country'] == '0') {
183                         // Zero id???
184                         $content['country'] = '???';
185                 }
186
187                 // Add userid
188                 $content['userid'] = $userid;
189
190                 // Load user-details template
191                 loadTemplate('admin_user_details', false, $content);
192         } else {
193                 // Account does not exist!
194                 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_MEMBER_404', $userid));
195         }
196
197         // Free the result
198         SQL_FREERESULT($result_user);
199 } else {
200         $whereStatement = '';
201         if ((getRequestParameter('letter') != getMessage('_ALL2')) && (getRequestParameter('letter') != getMessage('_OTHERS')) && (isGetRequestParameterSet('letter'))) {
202                 // List only persons w
203                 $whereStatement = " WHERE `family` LIKE '".getRequestParameter('letter') . "%'";
204         } // END - if
205
206         // Parse the status or mode parameter
207         if (isGetRequestParameterSet(('status'))) {
208                 // Is a WHERE statement already there?
209                 if (!empty($whereStatement)) {
210                         // Then append the status column
211                         $whereStatement .= sprintf(" AND `status`='%s'", SQL_ESCAPE(secureString(strtoupper(getRequestParameter('status')))));
212                 } else {
213                         // Start a new one
214                         $whereStatement = sprintf(" WHERE `status`='%s'", SQL_ESCAPE(secureString(strtoupper(getRequestParameter('status')))));
215                 }
216         } elseif (isGetRequestParameterSet('mode')) {
217                 // Choose what we need to list
218                 switch (getRequestParameter('mode')) {
219                         case 'norefs': // Users w/o refs
220                                 if (!empty($whereStatement)) {
221                                         // Add AND statement
222                                         $whereStatement .= " AND `refid`=0";
223                                 } else {
224                                         // Add WHERE statement
225                                         $whereStatement = " WHERE `refid`=0";
226                                 }
227                                 break;
228
229                         default: // Invalid list mode
230                                 logDebugMessage(__FILE__, __LINE__, sprintf("Invalid list mode %s detected.", getRequestParameter('mode')));
231                                 break;
232                 } // END - switch
233         } // END - if
234
235         // Generate master query string
236         $sql = sprintf("SELECT `userid`, `gender`, `surname`, `family`, `email`, `REMOTE_ADDR`, `refid`, `status`, `emails_sent`, `mails_confirmed`, `emails_received`" . $MORE . " FROM `{?_MYSQL_PREFIX?}_user_data`" . $whereStatement . " ORDER BY `%s` ASC",
237                 getRequestParameter('sortby')
238         );
239
240         // Prepare SQL and run it
241         $result_master = SQL_QUERY($sql, __FILE__, __LINE__);
242
243         // Calculate page count (0.5 fixes a bug with page count)
244         if (getConfig('user_limit') == '0') {
245                 setConfigEntry('user_limit', 100);
246                 loadTemplate('admin_settings_saved', false, getMessage('EXTENSION_WARNING_USER_LIMIT'));
247         } // END - if
248
249         // Activate the extension please!
250         $PAGES = round(SQL_NUMROWS($result_master) / getConfig('user_limit') + 0.5);
251
252         if (!isGetRequestParameterSet('page'))   setGetRequestParameter('page'  , 1);
253         if (!isGetRequestParameterSet('offset')) setGetRequestParameter('offset', getConfig('user_limit'));
254
255         // Add limitation to SQL string and run him again
256         $sql .= " LIMIT ".(getRequestParameter('offset') * getRequestParameter('page') - getRequestParameter('offset')).", ".getRequestParameter('offset');
257         $result = SQL_QUERY($sql, __FILE__, __LINE__);
258
259         // Count all confirmed users
260         $user_count = countSumTotalData('CONFIRMED','user_data','userid','status',true);
261
262         // Are there some entries?
263         if (SQL_NUMROWS($result_master) > 0) {
264                 // We have some (new?) registrations!
265                 define('__COLSPAN2'  , ($colspan + 2));
266                 define('__USER_CNT'  , $user_count);
267
268                 // Sorting links
269                 define('__ALPHA_SORT', alpha(getRequestParameter('sortby'), $colspan, true));
270                 define('__SORT_LINKS', addSortLinks(getRequestParameter('letter'), getRequestParameter('sortby'), $colspan, true));
271
272                 if ($PAGES > 1) {
273                         define('__PAGE_NAV', addPageNavigation($PAGES, getConfig('user_limit'), true, $colspan, true));
274                 } else {
275                         // No page navigation is required
276                         define('__PAGE_NAV', '');
277                 }
278
279                 // Column with nickname when nickname extension is present
280                 // @TODO Rewrite this into a  filter
281                 if (isExtensionActive('nickname')) {
282                         // Nickname extension found
283                         define('__NICKNAME_TH', "  <td class=\"header_column bottom\" align=\"center\">{--NICKNAME--}</td>");
284                 } else {
285                         // Not found
286                         define('__NICKNAME_TH', '');
287                 }
288
289                 // Load all users
290                 $OUT = ''; $SW = 2;
291                 while ($content = SQL_FETCHARRAY($result)) {
292                         // Set refid link
293                         if ($content['refid'] > 0) $content['refid'] = generateUserProfileLink($content['refid']);
294
295                         // Get number of unconfirmed mails
296                         $content['links'] = countSumTotalData($content['userid'], 'user_links', 'id', 'userid', true);
297                         if ($content['links'] > 0) $content['links'] = $base . '&amp;what=list_links&amp;userid=' . $content['userid'] . '%}">' . translateComma($content['links']) . '</a>]';
298
299                         // Set link to sent mails if present
300                         if ($content['emails_sent'] > 0) $content['emails_sent'] = $base . '&amp;what=email_details&amp;userid=' . $content['userid'] . '%}">' . translateComma($content['emails_sent']) . '</a>]';
301
302                         // Add nickname
303                         if ((empty($content['nickname'])) || ($content['nickname'] == $content['userid'])) $content['nickname'] = '---';
304
305                         // Calculate total points
306                         $content['points'] = countSumTotalData($content['userid'], 'user_points', 'points')  - countSumTotalData($content['userid'], 'user_data', 'used_points');
307
308                         // Clickrate
309                         $content['rate'] = '0';
310                         if ($content['emails_received'] > 0) {
311                                 $content['rate'] = $content['mails_confirmed'] / $content['emails_received'] * 100;
312                         } // END - if
313
314                         // Transfer data to array
315                         $content['sw']             = $SW;
316                         $content['userid_link']    = generateUserProfileLink($content['userid']);
317                         $content['gender']         = translateGender($content['gender']);
318                         $content['email']          = '[<a href="' . generateEmailLink($content['email'], 'user_data') . '">' . $content['email'] . '</a>]';
319                         $content['alinks']         = generateMemberAdminActionLinks($content['userid'], $content['status']);
320                         $content['points']         = translateComma($content['points']);
321                         $content['rate']           = translateComma($content['rate']);
322                         $content['locked']         = translateComma(countSumTotalData($content['userid'], 'user_points', 'locked_points'));
323                         $content['lock_timestamp'] = generateDateTime($content['lock_timestamp'], 2);
324                         $content['status']         = translateUserStatus($content['status']);
325                         $content['refs']           = countSumTotalData($content['userid'], 'user_refs', 'id', 'userid', true);
326
327                         // If we have at least one referal, make it clickable to referal list
328                         if ($content['refs'] > 0) $content['refs'] = $base . '&amp;what=list_refs&amp;userid=' . $content['userid'] . '%}">' . $content['refs'] . '</a>]';
329
330                         // Is the lock reason not set?
331                         if (!isset($content['lock_reason'])) $content['lock_reason'] = '---';
332
333                         // Is the extension 'country' installed?
334                         // @TODO Rewrite this into a filter
335                         if (isExtensionActive('country')) {
336                                 // Then overwrite country information
337                                 $content['country'] = generateCountryInfo($content['country_code']);
338                         } elseif ($content['country'] == '') {
339                                 // Zero id???
340                                 $content['country'] = '???';
341                         }
342
343                         // Load row template and switch colors
344                         $OUT .= loadTemplate('admin_list_user_row', true, $content);
345                         $SW = 3 - $SW;
346                 } // END - while
347
348                 // Free memory
349                 SQL_FREERESULT($result);
350
351                 // Free some memory
352                 SQL_FREERESULT($result_master);
353
354                 // Remember all rows
355                 $content['rows'] = $OUT;
356
357                 // Init title with "all accounts"
358                 $content['title'] = getMessage('ADMIN_ALL_ACCOUNTS');
359                 if (isGetRequestParameterSet(('status'))) {
360                         // Set title according to the 'status'
361                         $content['title'] = getMessage(sprintf("ADMIN_LIST_STATUS_%s_ACCOUNTS", strtoupper(getRequestParameter(('status')))));
362                 } elseif (isGetRequestParameterSet('mode')) {
363                         // Set title according to the "mode"
364                         $content['title'] = getMessage(sprintf("ADMIN_LIST_MODE_%s_ACCOUNTS", strtoupper(getRequestParameter('mode'))));
365                 }
366
367                 // Load main template
368                 loadTemplate('admin_list_user', false, $content);
369         } else {
370                 // No one as registered so far! :-(
371                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_NO_NONE_REGISTERED'));
372         }
373
374         // Free memory
375         SQL_FREERESULT($result_master);
376 }
377
378 // [EOF]
379 ?>