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