6bf976a1c8a930a64459240c507054ebb3944fb1
[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", basename(__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         $eval = sprintf("\$listHeader = ADMIN_LIST_%s_ACCOUNTS;", strtoupper(SQL_ESCAPE($_GET['mode'])));
52         eval($eval);
53 } // END - if
54
55 // Remember it
56 define('__TITLE', $listHeader);
57
58 $MORE = ", userid"; $colspan = "4"; //                 27
59 if (EXT_IS_ACTIVE("nickname")) { $MORE = ", nickname"; }
60
61 if (empty($_GET['letter'])) { $_GET['letter'] = _ALL2;    }
62 if (empty($_GET['sortby'])) { $_GET['sortby'] = "userid"; }
63 if (empty($_GET['page']))   { $_GET['page']   = "1";      }
64
65 // Set base URL
66 $BASE = "[<A href=\"".URL."/modules.php?module=admin";
67
68 if (!empty($_GET['u_id'])) {
69         // Secure the user ID
70         $uid = bigintval($_GET['u_id']);
71
72         // Does the account exists?        0      1        2         3       4     5      6       7         8          9          10           11           12         13     14         15           16          17            18           19           20           21        22        23             24              25         26
73         $result = 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".$MORE."
74 FROM "._MYSQL_PREFIX."_user_data
75 WHERE userid=%s LIMIT 1",
76          array($uid), __FILE__, __LINE__);
77         if (SQL_NUMROWS($result) == 1) {
78                 // Account found!
79                 $DATA  = SQL_FETCHROW($result);
80                 SQL_FREERESULT($result);
81
82                 $REFS  = GET_TOTAL_DATA($uid, "refsystem", "counter");
83                 $CATS  = GET_TOTAL_DATA($uid, "user_cats", "id", "userid", true);
84                 $LINKS = GET_TOTAL_DATA($uid, "user_links", "id", "userid", true);
85
86                 if ($LINKS > 0) $LINKS = $BASE."&amp;what=list_links&amp;u_id=".$uid."\">".$LINKS."</A>]";
87                 if ($DATA[13] > 0) $DATA[13] = str_replace(("u_id=".$uid), ("u_id=".$DATA[13]), $BASE."&amp;what=list_user\">".$DATA[13]."</A>]");
88                 if (empty($DATA[17])) $DATA[17] = "---";
89                 if ($REFS > 0) $REFS = $BASE."&amp;what=list_refs&amp;u_id=".$uid."\">".$REFS."</A>]";
90                 if ($CATS > 0) $CATS = $BASE."&amp;what=list_cats&amp;u_id=".$uid."\">".$CATS."</A>]";
91
92                 // Prepare data for template
93                 define('_BIRTHDAY', MAKE_DATETIME(mktime(0, 0, 0, $DATA[9], $DATA[8], $DATA[10]), "3"));
94                 define('_REFS' , $REFS);
95                 define('_CATS' , $CATS);
96                 define('_LINKS', $LINKS);
97                 define('_ADMIN_LINKS', MEMBER_ACTION_LINKS($uid, $DATA[14]));
98                 $DATA[0]      = TRANSLATE_GENDER($DATA[0]);
99                 $DATA[28]     = CREATE_EMAIL_LINK($DATA[7], "user_data");
100                 $DATA[14]     = TRANSLATE_STATUS($DATA[14]);
101                 $DATA[16]     = MAKE_DATETIME($DATA[16], "0");
102                 $DATA[20]     = TRANSLATE_COMMA($DATA[20]);
103                 if ($DATA[21] > 0) $DATA[21] = $BASE."&amp;what=email_details&amp;u_id=".$uid."\">".TRANSLATE_COMMA($DATA[21])."</A>]";
104                 $DATA[22]     = MAKE_DATETIME($DATA[22], "0");
105                 $DATA[23]     = MAKE_DATETIME($DATA[23], "0");
106                 $DATA[24]     = MAKE_DATETIME($DATA[24], "0");
107                 if ((empty($DATA[27])) || ($DATA[27] == $uid)) $DATA[27] = "---";
108                 $DATA['total']  = TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "points"));
109                 $DATA['locked'] = TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "locked_points"));
110
111                 if (EXT_IS_ACTIVE("nickname")) {
112                         if ((empty($DATA[27])) || ($DATA[27] == $uid)) $DATA[27] = "---";
113                 } else {
114                         $DATA[27] = EXT_NICKNAME_404;
115                 }
116
117                 // Template laden
118                 LOAD_TEMPLATE("admin_user_details", false, $uid);
119         } else {
120                 // Account does not exists!
121                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_MEMBER_404_1.$uid.ADMIN_MEMBER_404_2);
122         }
123 } else {
124         $whereStatement = "";
125         if (($_GET['letter'] != _ALL2) && ($_GET['letter'] != _OTHERS) && (!empty($_GET['letter']))) {
126                 // List only persons w
127                 $whereStatement = " WHERE family LIKE '".$_GET['letter']."%'";
128         } // END - if
129         if ($_GET['sortby'] == "family_name") $_GET['sortby'] = "family";
130
131         // Parse the mode parameter
132         if (isset($_GET['mode'])) {
133                 // Is a WHERE statement already there?
134                 if (!empty($whereStatement)) {
135                         // Then append the status column
136                         $whereStatement .= sprintf(" AND status='%s'", SQL_ESCAPE(strip_tags(strtoupper($_GET['mode']))));
137                 } else {
138                         // Start a new one
139                         $whereStatement = sprintf(" WHERE status='%s'", SQL_ESCAPE(strip_tags(strtoupper($_GET['mode']))));
140                 }
141         } // END - if
142
143         $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'];
144         $result_master = SQL_QUERY($SQL, __FILE__, __LINE__);
145
146         // Calculate page count (0.5 fixes a bug with page count)
147         if ($_CONFIG['user_limit'] == 0) {
148                 $_CONFIG['user_limit'] = 100;
149                 LOAD_TEMPLATE("admin_settings_saved", false, EXTENSION_WARNING_USER_LIMIT);
150         } // END - if
151
152         // Activate the extension please!
153         $PAGES = round(SQL_NUMROWS($result_master) / $_CONFIG['user_limit'] + 0.5);
154
155         if (empty($_GET['page']))   $_GET['page']   = "1";
156         if (empty($_GET['offset'])) $_GET['offset'] = $_CONFIG['user_limit'];
157
158         // Add limitation to SQL string and run him again
159         $SQL .= " LIMIT ".($_GET['offset'] * $_GET['page'] - $_GET['offset']).", ".$_GET['offset'];
160         $result = SQL_QUERY($SQL, __FILE__, __LINE__);
161
162         $result_user = SQL_QUERY("SELECT emails_sent FROM "._MYSQL_PREFIX."_user_data WHERE status='CONFIRMED'", __FILE__, __LINE__);
163         $user_count = SQL_NUMROWS($result_user);
164         SQL_FREERESULT($result_user);
165
166         if (SQL_NUMROWS($result_master) > 0) {
167                 // Free memory
168                 SQL_FREERESULT($result_master);
169
170                 // We have some (new?) registrations!
171                 define('__COLSPAN1'  , $colspan);
172                 define('__COLSPAN2'  , ($colspan + 2));
173                 define('__USER_CNT'  , $user_count);
174
175                 if ((function_exists('alpha')) && (function_exists('SortLinks'))) {
176                         define('__ALPHA_SORT', alpha($_GET['sortby'], $colspan, true));
177                         define('__SORT_LINKS', SortLinks($_GET['letter'], $_GET['sortby'], $colspan, true));
178                 } else {
179                         define('__ALPHA_SORT', "");
180                         define('__SORT_LINKS', "");
181                 }
182
183                 if ($PAGES > 1) {
184                         define('__PAGE_NAV', ADD_PAGENAV($PAGES, $_CONFIG['user_limit'], true, $colspan, true));
185                 } else {
186                         // No page navigation is required
187                         define('__PAGE_NAV', "");
188                 }
189
190                 // Column with nickname when nickname extension is present
191                 if (EXT_IS_ACTIVE("nickname"))
192                 {
193                         // Nickname extension found
194                         define('__NICKNAME_TH', "  <TD class=\"admin_title bottom2\" align=\"center\">".NICKNAME."</TD>");
195                 }
196                  else
197                 {
198                         // Not found
199                         define('__NICKNAME_TH', "");
200                 }
201
202                 $SW = 2; $OUT = "";
203                 while (list($uid, $gender, $sname, $fname, $email, $IP, $ref, $status, $emails_sent, $mails_confirmed, $emails_received, $nick) = SQL_FETCHROW($result)) {
204                         if ($ref > 0) $ref = ADMIN_USER_PROFILE_LINK($ref);
205                         $LINKS = GET_TOTAL_DATA($uid, "user_links", "id", "userid", true);
206                         $SENT = $emails_sent;
207                         if ($emails_sent > 0) $SENT = $BASE."&amp;what=email_details&amp;u_id=".$uid."\">".TRANSLATE_COMMA($emails_sent)."</A>]";
208                         if ($LINKS > 0) $LINKS = $BASE."&amp;what=list_links&amp;u_id=".$uid."\">".TRANSLATE_COMMA($LINKS)."</A>]";
209
210                         // Add nickname
211                         if (empty($nick) || $nick == $uid) $nick = "---";
212
213                         // Calculate total points
214                         $pointsTotal = GET_TOTAL_DATA($uid, "user_points", "points")  - GET_TOTAL_DATA($uid, "user_data", "used_points");
215
216                         // Clickrate
217                         $clickRate = 0;
218                         if ($emails_received > 0) {
219                                 $clickRate = $mails_confirmed / $emails_received * 100;
220                         } // END - if
221
222                         // Transfer data to array
223                         $content = array(
224                                 'sw'     => $SW,
225                                 'uid'    => ADMIN_USER_PROFILE_LINK($uid),
226                                 'gender' => TRANSLATE_GENDER($gender),
227                                 'sname'  => $sname,
228                                 'fname'  => $fname,
229                                 'email'  => "[<A href=\"".CREATE_EMAIL_LINK($email, "user_data")."\">".$email."</A>]",
230                                 'addr'   => $IP,
231                                 'ref'    => $ref,
232                                 'status' => TRANSLATE_STATUS($status),
233                                 'links'  => $LINKS,
234                                 'nick'   => $nick,
235                                 'alinks' => MEMBER_ACTION_LINKS($uid, $status),
236                                 'points' => TRANSLATE_COMMA($pointsTotal),
237                                 'sent'   => $SENT,
238                                 'rate'   => TRANSLATE_COMMA($clickRate),
239                                 'locked' => TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "locked_points"))
240                         );
241
242                         // Load row template and switch colors
243                         $OUT .= LOAD_TEMPLATE("admin_list_user_row", true, $content);
244                         $SW = 3 - $SW;
245                 } // END - while
246
247                 // Free memory
248                 SQL_FREERESULT($result);
249
250                 define('__USER_ROWS', $OUT);
251
252                 // Load main template
253                 LOAD_TEMPLATE("admin_list_user");
254
255                 // Free some memory
256                 SQL_FREERESULT($result_master);
257         } else {
258                 // No one as registered so far! :-(
259                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_NO_NONE_REGISTERED);
260         }
261 }
262
263 //
264 ?>