9ecd2c4ee8776fa10390a95567128125e465a183
[mailer.git] / inc / modules / admin / what-list_user.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    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  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif ((!EXT_IS_ACTIVE("user")) || (GET_EXT_VERSION("user") == "")) {
39         // Missing extension!
40         ADD_FATAL(sprintf(EXTENSION_PROBLEM_NOT_INSTALLED, "user"));
41         return;
42 }
43
44 // Add description as navigation point
45 ADD_DESCR("admin", __FILE__);
46
47 // Init title with "all accounts"
48 $listHeader = ADMIN_ALL_ACCOUNTS;
49 if (!empty($_GET['mode'])) {
50         // Set title according to the "mode"
51         $listHeader = constant(sprintf("ADMIN_LIST_%s_ACCOUNTS", strtoupper(SQL_ESCAPE($_GET['mode']))));
52 } // END - if
53
54 // Remember it
55 define('__TITLE', $listHeader);
56
57 // Init variables
58 $MORE = ", userid"; $colspan = "4";
59
60 // Add nickname if extension is found&active
61 if (EXT_IS_ACTIVE("nickname")) { $MORE = ", nickname"; }
62
63 // Add random confirmed if extension version matches
64 if (GET_EXT_VERSION("user") >= "0.3.4") {
65         // Add it...
66         $MORE .= ", rand_confirmed";
67 } // END - if
68
69 // Init unset data (bad that we change $_GET here!)
70 if (empty($_GET['letter'])) { $_GET['letter'] = _ALL2;    }
71 if (empty($_GET['sortby'])) { $_GET['sortby'] = "userid"; }
72 if (empty($_GET['page']))   { $_GET['page']   = "1";      }
73
74 // Set base URL
75 $BASE = "[<A href=\"".URL."/modules.php?module=admin";
76
77 if (!empty($_GET['u_id'])) {
78         // Secure the user ID
79         $uid = bigintval($_GET['u_id']);
80
81         // Does the account exists?
82         $result_user = SQL_QUERY_ESC("SELECT 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."
83 FROM "._MYSQL_PREFIX."_user_data
84 WHERE userid=%s
85 LIMIT 1",
86                 array($uid), __FILE__, __LINE__);
87         if (SQL_NUMROWS($result_user) == 1) {
88                 // Account found!
89                 $DATA  = SQL_FETCHARRAY($result_user);
90
91                 // Get count/sum of refs, selected categories, unconfirmed mails
92                 $REFS  = GET_TOTAL_DATA($uid, "refsystem", "counter");
93                 $CATS  = GET_TOTAL_DATA($uid, "user_cats", "id", "userid", true);
94                 $LINKS = GET_TOTAL_DATA($uid, "user_links", "id", "userid", true);
95
96                 // Add links to the numbers
97                 if ($LINKS > 0) $LINKS = $BASE."&amp;what=list_links&amp;u_id=".$uid."\">".$LINKS."</A>]";
98                 if ($DATA['refid'] > 0) $DATA['refid'] = $BASE."&amp;what=list_user&amp;u_id=".$DATA['refid']."\">".$DATA['refid']."</A>]";
99                 if (empty($DATA['last_module'])) $DATA['last_module'] = "---";
100                 if ($REFS > 0) $REFS = $BASE."&amp;what=list_refs&amp;u_id=".$uid."\">".$REFS."</A>]";
101                 if ($CATS > 0) $CATS = $BASE."&amp;what=list_cats&amp;u_id=".$uid."\">".$CATS."</A>]";
102
103                 // Prepare data for template
104                 define('_BIRTHDAY', MAKE_DATETIME(mktime(0, 0, 0, $DATA['birth_month'], $DATA['birth_day'], $DATA['birth_year']), "3"));
105                 define('_REFS' , $REFS);
106                 define('_CATS' , $CATS);
107                 define('_LINKS', $LINKS);
108                 define('_ADMIN_LINKS', MEMBER_ACTION_LINKS($uid, $DATA['status']));
109                 $DATA['gender']            = TRANSLATE_GENDER($DATA['gender']);
110                 $DATA['email_link']        = CREATE_EMAIL_LINK($DATA['email'], "user_data");
111                 $DATA['status']            = TRANSLATE_STATUS($DATA['status']);
112                 $DATA['last_online']       = MAKE_DATETIME($DATA['last_online'], "0");
113                 $DATA['used_points']       = TRANSLATE_COMMA($DATA['used_points']);
114                 if ($DATA['emails_sent'] > 0) $DATA['emails_sent'] = $BASE."&amp;what=email_details&amp;u_id=".$uid."\">".TRANSLATE_COMMA($DATA['emails_sent'])."</A>]";
115                 $DATA['joined']            = MAKE_DATETIME($DATA['joined'], "0");
116                 $DATA['last_update']       = MAKE_DATETIME($DATA['last_update'], "0");
117                 $DATA['last_profile_sent'] = MAKE_DATETIME($DATA['last_profile_sent'], "0");
118                 $DATA['total']             = TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "points"));
119                 $DATA['locked']            = TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "locked_points"));
120
121                 // Nickname inclusion?
122                 if (EXT_IS_ACTIVE("nickname")) {
123                         // Nickname not set or invalid? Then 
124                         if ((empty($DATA['nickname'])) || ($DATA['nickname'] == $uid)) $DATA['nickname'] = "---";
125                 } else {
126                         // Extension not found
127                         $DATA['nickname'] = EXT_NICKNAME_404;
128                 }
129
130                 // Is the user extension newer?
131                 if (GET_EXT_VERSION("user") >= "0.3.4") {
132                         // Then "translate" the number
133                         $DATA['rand_confirmed'] = TRANSLATE_COMMA($DATA['rand_confirmed']);
134                 } // END - if
135
136                 // Clickrate
137                 $DATA['click_rate'] = 0;
138                 if ($DATA['emails_received'] > 0) {
139                         $DATA['click_rate'] = TRANSLATE_COMMA($DATA['mails_confirmed'] / $DATA['emails_received'] * 100);
140                 } // END - if
141
142                 // "Translate" more data
143                 $DATA['mails_confirmed'] = TRANSLATE_COMMA($DATA['mails_confirmed']);
144                 $DATA['emails_received'] = TRANSLATE_COMMA($DATA['emails_received']);
145
146                 // Load user-details template
147                 LOAD_TEMPLATE("admin_user_details", false, $uid);
148         } else {
149                 // Account does not exist!
150                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_MEMBER_404_1.$uid.ADMIN_MEMBER_404_2);
151         }
152
153         // Free the result
154         SQL_FREERESULT($result_user);
155 } else {
156         $whereStatement = "";
157         if (($_GET['letter'] != _ALL2) && ($_GET['letter'] != _OTHERS) && (!empty($_GET['letter']))) {
158                 // List only persons w
159                 $whereStatement = " WHERE family LIKE '".$_GET['letter']."%'";
160         } // END - if
161         if ($_GET['sortby'] == "family_name") $_GET['sortby'] = "family";
162
163         // Parse the mode parameter
164         if (isset($_GET['mode'])) {
165                 // Is a WHERE statement already there?
166                 if (!empty($whereStatement)) {
167                         // Then append the status column
168                         $whereStatement .= sprintf(" AND status='%s'", SQL_ESCAPE(strip_tags(strtoupper($_GET['mode']))));
169                 } else {
170                         // Start a new one
171                         $whereStatement = sprintf(" WHERE status='%s'", SQL_ESCAPE(strip_tags(strtoupper($_GET['mode']))));
172                 }
173         } // END - if
174
175         $SQL = "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 ".$_GET['sortby'];
176         $result_master = SQL_QUERY($SQL, __FILE__, __LINE__);
177
178         // Calculate page count (0.5 fixes a bug with page count)
179         if ($_CONFIG['user_limit'] == 0) {
180                 $_CONFIG['user_limit'] = 100;
181                 LOAD_TEMPLATE("admin_settings_saved", false, EXTENSION_WARNING_USER_LIMIT);
182         } // END - if
183
184         // Activate the extension please!
185         $PAGES = round(SQL_NUMROWS($result_master) / $_CONFIG['user_limit'] + 0.5);
186
187         if (empty($_GET['page']))   $_GET['page']   = "1";
188         if (empty($_GET['offset'])) $_GET['offset'] = $_CONFIG['user_limit'];
189
190         // Add limitation to SQL string and run him again
191         $SQL .= " LIMIT ".($_GET['offset'] * $_GET['page'] - $_GET['offset']).", ".$_GET['offset'];
192         $result = SQL_QUERY($SQL, __FILE__, __LINE__);
193
194         $result_user = SQL_QUERY("SELECT emails_sent FROM "._MYSQL_PREFIX."_user_data WHERE status='CONFIRMED'", __FILE__, __LINE__);
195         $user_count = SQL_NUMROWS($result_user);
196         SQL_FREERESULT($result_user);
197
198         if (SQL_NUMROWS($result_master) > 0) {
199                 // Free memory
200                 SQL_FREERESULT($result_master);
201
202                 // We have some (new?) registrations!
203                 define('__COLSPAN1'  , $colspan);
204                 define('__COLSPAN2'  , ($colspan + 2));
205                 define('__USER_CNT'  , $user_count);
206
207                 if ((function_exists('alpha')) && (function_exists('SortLinks'))) {
208                         define('__ALPHA_SORT', alpha($_GET['sortby'], $colspan, true));
209                         define('__SORT_LINKS', SortLinks($_GET['letter'], $_GET['sortby'], $colspan, true));
210                 } else {
211                         define('__ALPHA_SORT', "");
212                         define('__SORT_LINKS', "");
213                 }
214
215                 if ($PAGES > 1) {
216                         define('__PAGE_NAV', ADD_PAGENAV($PAGES, $_CONFIG['user_limit'], true, $colspan, true));
217                 } else {
218                         // No page navigation is required
219                         define('__PAGE_NAV', "");
220                 }
221
222                 // Column with nickname when nickname extension is present
223                 if (EXT_IS_ACTIVE("nickname"))
224                 {
225                         // Nickname extension found
226                         define('__NICKNAME_TH', "  <TD class=\"admin_title bottom2\" align=\"center\">".NICKNAME."</TD>");
227                 }
228                  else
229                 {
230                         // Not found
231                         define('__NICKNAME_TH', "");
232                 }
233
234                 $SW = 2; $OUT = "";
235                 while (list($uid, $gender, $sname, $fname, $email, $IP, $ref, $status, $emails_sent, $mails_confirmed, $emails_received, $nick) = SQL_FETCHROW($result)) {
236                         if ($ref > 0) $ref = ADMIN_USER_PROFILE_LINK($ref);
237                         $LINKS = GET_TOTAL_DATA($uid, "user_links", "id", "userid", true);
238                         $SENT = $emails_sent;
239                         if ($emails_sent > 0) $SENT = $BASE."&amp;what=email_details&amp;u_id=".$uid."\">".TRANSLATE_COMMA($emails_sent)."</A>]";
240                         if ($LINKS > 0) $LINKS = $BASE."&amp;what=list_links&amp;u_id=".$uid."\">".TRANSLATE_COMMA($LINKS)."</A>]";
241
242                         // Add nickname
243                         if (empty($nick) || $nick == $uid) $nick = "---";
244
245                         // Calculate total points
246                         $pointsTotal = GET_TOTAL_DATA($uid, "user_points", "points")  - GET_TOTAL_DATA($uid, "user_data", "used_points");
247
248                         // Clickrate
249                         $clickRate = 0;
250                         if ($emails_received > 0) {
251                                 $clickRate = $mails_confirmed / $emails_received * 100;
252                         } // END - if
253
254                         // Transfer data to array
255                         $content = array(
256                                 'sw'     => $SW,
257                                 'uid'    => ADMIN_USER_PROFILE_LINK($uid),
258                                 'gender' => TRANSLATE_GENDER($gender),
259                                 'sname'  => $sname,
260                                 'fname'  => $fname,
261                                 'email'  => "[<A href=\"".CREATE_EMAIL_LINK($email, "user_data")."\">".$email."</A>]",
262                                 'addr'   => $IP,
263                                 'ref'    => $ref,
264                                 'status' => TRANSLATE_STATUS($status),
265                                 'links'  => $LINKS,
266                                 'nick'   => $nick,
267                                 'alinks' => MEMBER_ACTION_LINKS($uid, $status),
268                                 'points' => TRANSLATE_COMMA($pointsTotal),
269                                 'sent'   => $SENT,
270                                 'rate'   => TRANSLATE_COMMA($clickRate),
271                                 'locked' => TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "locked_points"))
272                         );
273
274                         // Load row template and switch colors
275                         $OUT .= LOAD_TEMPLATE("admin_list_user_row", true, $content);
276                         $SW = 3 - $SW;
277                 } // END - while
278
279                 // Free memory
280                 SQL_FREERESULT($result);
281
282                 define('__USER_ROWS', $OUT);
283
284                 // Load main template
285                 LOAD_TEMPLATE("admin_list_user");
286
287                 // Free some memory
288                 SQL_FREERESULT($result_master);
289         } else {
290                 // No one as registered so far! :-(
291                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_NO_NONE_REGISTERED);
292         }
293 }
294
295 //
296 ?>