d9fe102e9de8dc255241e5cf11e1d9ae5f6a24fc
[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', '');       }
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         `userid`, `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 (isValidUserId($content['refid'])) $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 . '%}">' . translateComma($content['refs']) . '</a>]';
124                 if ($content['cats']  > 0) $content['cats']  = $base . '&amp;what=list_cats&amp;userid=' . $userid . '%}">' . translateComma($content['cats']) . '</a>]';
125
126                 // Calculate timestamp for birthday
127                 $stamp = mktime(0, 0, 0, $content['birth_month'], $content['birth_day'], $content['birth_year']);
128
129                 // Is this above zero?
130                 if ($stamp > 0) {
131                         // Then use it
132                         $content['birthday'] = generateDateTime($stamp, 3);
133                 } else {
134                         // Zero or below so set zero!
135                         $content['birthday'] = generateDateTime(0, 3);
136                 }
137
138                 // Prepare data for template
139                 $content['email_link']        = generateEmailLink($content['email'], 'user_data');
140                 $content['last_online']       = generateDateTime($content['last_online'], 0);
141                 if ($content['emails_sent'] > 0) $content['emails_sent'] = $base . '&amp;what=email_details&amp;userid=' . $userid . '%}">' . translateComma($content['emails_sent']) . '</a>]';
142                 $content['joined']            = generateDateTime($content['joined'], 0);
143                 $content['last_update']       = generateDateTime($content['last_update'], 0);
144                 $content['last_profile_sent'] = generateDateTime($content['last_profile_sent'], 0);
145                 $content['total']             = countSumTotalData($userid, 'user_points', 'points');
146                 $content['locked']            = countSumTotalData($userid, 'user_points', 'locked_points');
147                 $content['lock_timestamp']    = generateDateTime($content['lock_timestamp'], 2);
148                 $content['nickname']          = '{--EXT_NICKNAME_404--}';
149
150                 // Nickname inclusion?
151                 // @TODO Rewrite these to filters
152                 if (isExtensionInstalled('nickname')) $content['nickname'] = getNickname($content['userid']);
153
154                 // Clickrate
155                 $content['click_rate'] = '0';
156                 if ($content['emails_received'] > 0) {
157                         $content['click_rate'] = ($content['mails_confirmed'] / $content['emails_received'] * 100);
158                 } // END - if
159
160                 // Is the extension 'country' installed?
161                 if (isExtensionActive('country')) {
162                         // Then overwrite country information
163                         $content['country'] = generateCountryInfo($content['country_code']);
164                 } elseif ($content['country'] == '0') {
165                         // Zero id???
166                         $content['country'] = '???';
167                 }
168
169                 // Add userid
170                 $content['userid'] = $userid;
171
172                 // Load user-details template
173                 loadTemplate('admin_user_details', false, $content);
174         } else {
175                 // Account does not exist!
176                 loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_MEMBER_404', $userid));
177         }
178
179         // Free the result
180         SQL_FREERESULT($result_user);
181 } else {
182         $whereStatement = '';
183         if (isGetRequestParameterSet('letter')) {
184                 // List only persons w
185                 $whereStatement = " WHERE `family` LIKE '".getRequestParameter('letter') . "%%'";
186         } // END - if
187
188         // Parse the status or mode parameter
189         if (isGetRequestParameterSet(('status'))) {
190                 // Is a WHERE statement already there?
191                 if (!empty($whereStatement)) {
192                         // Then append the status column
193                         $whereStatement .= sprintf(" AND `status`='%s'", SQL_ESCAPE(secureString(strtoupper(getRequestParameter('status')))));
194                 } else {
195                         // Start a new one
196                         $whereStatement = sprintf(" WHERE `status`='%s'", SQL_ESCAPE(secureString(strtoupper(getRequestParameter('status')))));
197                 }
198         } elseif (isGetRequestParameterSet('mode')) {
199                 // Choose what we need to list
200                 switch (getRequestParameter('mode')) {
201                         case 'norefs': // Users w/o refs
202                                 if (!empty($whereStatement)) {
203                                         // Add AND statement
204                                         $whereStatement .= " AND `refid`=0";
205                                 } else {
206                                         // Add WHERE statement
207                                         $whereStatement = " WHERE `refid`=0";
208                                 }
209                                 break;
210
211                         default: // Invalid list mode
212                                 logDebugMessage(__FILE__, __LINE__, sprintf("Invalid list mode %s detected.", getRequestParameter('mode')));
213                                 break;
214                 } // END - switch
215         } // END - if
216
217         // Generate master query string
218         $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",
219                 getRequestParameter('sortby')
220         );
221
222         // Prepare SQL and run it
223         $result_master = SQL_QUERY($sql, __FILE__, __LINE__);
224
225         // Calculate page count (0.5 fixes a bug with page count)
226         if (getConfig('user_limit') == '0') {
227                 setConfigEntry('user_limit', 100);
228                 loadTemplate('admin_settings_saved', false, '{--EXTENSION_WARNING_USER_LIMIT--}');
229         } // END - if
230
231         // Activate the extension please!
232         $numPages = round(SQL_NUMROWS($result_master) / getConfig('user_limit') + 0.5);
233
234         if (!isGetRequestParameterSet('page'))   setGetRequestParameter('page'  , 1);
235         if (!isGetRequestParameterSet('offset')) setGetRequestParameter('offset', getConfig('user_limit'));
236
237         // Add limitation to SQL string and run him again
238         $sql .= ' LIMIT ' . (getRequestParameter('offset') * getRequestParameter('page') - getRequestParameter('offset')) . ', ' . getRequestParameter('offset');
239         $result = SQL_QUERY($sql, __FILE__, __LINE__);
240
241         // Are there some entries?
242         if (!SQL_HASZERONUMS($result_master)) {
243                 // We have some (new?) registrations!
244                 $templateContent['colspan2']   = ($colspan + 2);
245                 $templateContent['user_count'] = getTotalConfirmedUser();
246
247                 // Sorting links
248                 $templateContent['alpha_sort'] = alpha(getRequestParameter('sortby'), ($colspan + 1), true);
249                 $templateContent['sort_links'] = addSortLinks(getRequestParameter('letter'), getRequestParameter('sortby'), ($colspan + 1), true);
250                 $templateContent['page_nav']   = '';
251
252                 if ($numPages > 1) {
253                         $templateContent['page_nav'] = addPageNavigation($numPages, getConfig('user_limit'), true, $colspan, true);
254                 } // END - if
255
256                 // Column with nickname when nickname extension is present
257                 // @TODO Rewrite this into a filter
258                 $templateContent['nickname_th'] = '';
259                 if (isExtensionActive('nickname')) {
260                         // Nickname extension found
261                         $templateContent['nickname_th'] = '<td class="header_column bottom" align="center">{--NICKNAME--}</td>';
262                 } // END - if
263
264                 // Load all users
265                 $OUT = '';
266                 while ($content = SQL_FETCHARRAY($result)) {
267                         // Merge more data in
268                         $content = merge_array($content, $templateContent);
269
270                         // Get number of unconfirmed mails
271                         $content['links'] = countSumTotalData($content['userid'], 'user_links', 'id', 'userid', true);
272                         if ($content['links'] > 0) $content['links'] = $base . '&amp;what=list_links&amp;userid=' . $content['userid'] . '%}">' . translateComma($content['links']) . '</a>]';
273
274                         // Set link to sent mails if present
275                         if ($content['emails_sent'] > 0) $content['emails_sent'] = $base . '&amp;what=email_details&amp;userid=' . $content['userid'] . '%}">' . translateComma($content['emails_sent']) . '</a>]';
276
277                         // Add nickname
278                         $content['nickname'] = '{--EXT_NICKNAME_404--}';
279                         if (isExtensionInstalled('nickname')) $content['nickname'] = getNickname($content['userid']);
280
281                         // Calculate total points
282                         $content['points'] = getTotalPoints($content['userid']);
283
284                         // Clickrate
285                         $content['rate'] = '0';
286                         if ($content['emails_received'] > 0) {
287                                 $content['rate'] = $content['mails_confirmed'] / $content['emails_received'] * 100;
288                         } // END - if
289
290                         // Transfer data to array
291                         $content['email']          = '[<a href="' . generateEmailLink($content['email'], 'user_data') . '">' . $content['email'] . '</a>]';
292                         $content['lock_timestamp'] = generateDateTime($content['lock_timestamp'], 2);
293                         $content['refs']           = countSumTotalData($content['userid'], 'user_refs', 'id', 'userid', true);
294                         $content['locked']         = countSumTotalData($content['userid'], 'user_points', 'locked_points');
295
296                         // If we have at least one referal, make it clickable to referal list
297                         if ($content['refs'] > 0) $content['refs'] = $base . '&amp;what=list_refs&amp;userid=' . $content['userid'] . '%}">' . translateComma($content['refs']) . '</a>]';
298
299                         // Is the extension 'country' installed?
300                         // @TODO Rewrite this into a filter
301                         if (isExtensionActive('country')) {
302                                 // Then overwrite country information
303                                 $content['country'] = generateCountryInfo($content['country_code']);
304                         } elseif ($content['country'] == '') {
305                                 // Zero id???
306                                 $content['country'] = '???';
307                         }
308
309                         // Load row template and switch colors
310                         $OUT .= loadTemplate('admin_list_user_row', true, $content);
311                 } // END - while
312
313                 // Free memory
314                 SQL_FREERESULT($result);
315
316                 // Free some memory
317                 SQL_FREERESULT($result_master);
318
319                 // Remember all rows
320                 $content['rows'] = $OUT;
321
322                 // Init title with "all accounts"
323                 $content['title'] = '{--ADMIN_ALL_ACCOUNTS--}';
324                 if (isGetRequestParameterSet(('status'))) {
325                         // Set title according to the 'status'
326                         $content['title'] = sprintf("{--ADMIN_LIST_STATUS_%s_ACCOUNTS--}", strtoupper(getRequestParameter(('status'))));
327                 } elseif (isGetRequestParameterSet('mode')) {
328                         // Set title according to the "mode"
329                         $content['title'] = sprintf("{--ADMIN_LIST_MODE_%s_ACCOUNTS--}", strtoupper(getRequestParameter('mode')));
330                 }
331
332                 // Merge more data again
333                 $content = merge_array($content, $templateContent);
334
335                 // Load main template
336                 loadTemplate('admin_list_user', false, $content);
337         } else {
338                 // No one as registered so far! :-(
339                 loadTemplate('admin_settings_saved', false, '{--ADMIN_NO_NONE_REGISTERED--}');
340         }
341
342         // Free memory
343         SQL_FREERESULT($result_master);
344 }
345
346 // [EOF]
347 ?>