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