mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-21 18:03:18 +01:00
748 lines
30 KiB
PHP
748 lines
30 KiB
PHP
<?php
|
|
/***************************************************************************
|
|
* memberlist.php
|
|
* -------------------
|
|
* begin : Friday, May 11, 2001
|
|
* copyright : (C) 2001 The phpBB Group
|
|
* email : support@phpbb.com
|
|
*
|
|
* $Id$
|
|
*
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
***************************************************************************/
|
|
|
|
define('IN_PHPBB', true);
|
|
$phpbb_root_path = './';
|
|
include($phpbb_root_path . 'extension.inc');
|
|
include($phpbb_root_path . 'common.'.$phpEx);
|
|
|
|
// Start session management
|
|
$user->start();
|
|
$user->setup();
|
|
$auth->acl($user->data);
|
|
|
|
// Grab data
|
|
$mode = (isset($_REQUEST['mode'])) ? htmlspecialchars($_REQUEST['mode']) : '';
|
|
$user_id = (isset($_GET['u'])) ? intval($_GET['u']) : ANONYMOUS;
|
|
|
|
|
|
switch ($mode)
|
|
{
|
|
case 'email':
|
|
break;
|
|
default:
|
|
// Can this user view profiles/memberslist?
|
|
if (!$auth->acl_gets('u_viewprofile', 'a_'))
|
|
{
|
|
if ($user->data['user_id'] != ANONYMOUS)
|
|
{
|
|
trigger_error($user->lang['NO_VIEW_USERS']);
|
|
}
|
|
|
|
login_box(preg_replace('#.*?([a-z]+?\.' . $phpEx . '.*?)$#i', '\1', htmlspecialchars($_SERVER['REQUEST_URI'])));
|
|
}
|
|
break;
|
|
}
|
|
|
|
|
|
$start = (isset($_GET['start'])) ? intval($_GET['start']) : 0;
|
|
$form = (!empty($_GET['form'])) ? htmlspecialchars($_GET['form']) : 0;
|
|
$field = (isset($_GET['field'])) ? htmlspecialchars($_GET['field']) : 'username';
|
|
|
|
$sort_key = (!empty($_REQUEST['sk'])) ? htmlspecialchars($_REQUEST['sk']) : 'c';
|
|
$sort_dir = (!empty($_REQUEST['sd'])) ? htmlspecialchars($_REQUEST['sd']) : 'a';
|
|
|
|
$username = (!empty($_REQUEST['username'])) ? trim(htmlspecialchars($_REQUEST['username'])) : '';
|
|
$email = (!empty($_REQUEST['email'])) ? trim(htmlspecialchars($_REQUEST['email'])) : '';
|
|
$icq = (!empty($_REQUEST['icq'])) ? intval(htmlspecialchars($_REQUEST['icq'])) : '';
|
|
$aim = (!empty($_REQUEST['aim'])) ? trim(htmlspecialchars($_REQUEST['aim'])) : '';
|
|
$yahoo = (!empty($_REQUEST['yahoo'])) ? trim(htmlspecialchars($_REQUEST['yahoo'])) : '';
|
|
$msn = (!empty($_REQUEST['msn'])) ? trim(htmlspecialchars($_REQUEST['msn'])) : '';
|
|
|
|
$joined_select = (!empty($_REQUEST['joined_select'])) ? htmlspecialchars($_REQUEST['joined_select']) : 'lt';
|
|
$active_select = (!empty($_REQUEST['active_select'])) ? htmlspecialchars($_REQUEST['active_select']) : 'lt';
|
|
$count_select = (!empty($_REQUEST['count_select'])) ? htmlspecialchars($_REQUEST['count_select']) : 'eq';
|
|
$joined = (!empty($_REQUEST['joined'])) ? explode('-', trim(htmlspecialchars($_REQUEST['joined']))) : array();
|
|
$active = (!empty($_REQUEST['active'])) ? explode('-', trim(htmlspecialchars($_REQUEST['active']))) : array();
|
|
$count = (!empty($_REQUEST['count'])) ? intval($_REQUEST['count']) : '';
|
|
$ipdomain = (!empty($_REQUEST['ip'])) ? trim(htmlspecialchars($_REQUEST['ip'])) : '';
|
|
|
|
|
|
// Grab rank information for later
|
|
$sql = "SELECT *
|
|
FROM " . RANKS_TABLE . "
|
|
ORDER BY rank_special, rank_min DESC";
|
|
$result = $db->sql_query($sql, 120);
|
|
|
|
$ranksrow = array();
|
|
while ($row = $db->sql_fetchrow($result))
|
|
{
|
|
$ranksrow[] = $row;
|
|
}
|
|
$db->sql_freeresult($result);
|
|
|
|
|
|
// What do you want to do today? ... oops, I think that line is taken ...
|
|
switch ($mode)
|
|
{
|
|
case 'leaders':
|
|
// Display a listing of board admins, moderators
|
|
break;
|
|
|
|
case 'contact':
|
|
$page_title = $user->lang['IM_USER'];
|
|
$template_html = 'memberlist_im.html';
|
|
break;
|
|
|
|
case 'viewprofile':
|
|
// Display a profile
|
|
$page_title = sprintf($user->lang['VIEWING_PROFILE'], $row['username']);
|
|
$template_html = 'memberlist_view.html';
|
|
|
|
if ($user_id == ANONYMOUS)
|
|
{
|
|
trigger_error($user->lang['NO_USER']);
|
|
}
|
|
|
|
// Do the SQL thang
|
|
$sql = "SELECT g.group_id, g.group_name, g.group_type
|
|
FROM " . GROUPS_TABLE . " g, " . USER_GROUP_TABLE . " ug
|
|
WHERE ug.user_id = $user_id
|
|
AND g.group_id = ug.group_id" . (($auth->acl_get('a_'))? ' AND g.group_type <> ' . GROUP_HIDDEN : '') . '
|
|
ORDER BY group_type, group_name';
|
|
$result = $db->sql_query($sql);
|
|
|
|
$group_options = '';
|
|
while ($row = $db->sql_fetchrow($result))
|
|
{
|
|
$group_options .= '<option value="' . $row['group_id'] . '">' . (($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name']) . '</option>';
|
|
}
|
|
|
|
// We left join on the session table to see if the user is currently online
|
|
$sql = "SELECT username, user_id, user_colour, user_permissions, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_viewemail, user_posts, user_regdate, user_rank, user_from, user_occ, user_interests, user_website, user_email, user_icq, user_aim, user_yim, user_msnm, user_avatar, user_avatar_type, user_allowavatar, user_lastvisit, MAX(session_time) AS session_time
|
|
FROM " . USERS_TABLE . "
|
|
LEFT JOIN " . SESSIONS_TABLE . " ON session_user_id = user_id
|
|
WHERE user_id = $user_id
|
|
AND user_active = 1
|
|
GROUP BY username, user_id, user_colour, user_permissions, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_viewemail, user_posts, user_regdate, user_rank, user_from, user_occ, user_interests, user_website, user_email, user_icq, user_aim, user_yim, user_msnm, user_avatar, user_avatar_type, user_allowavatar, user_lastvisit";
|
|
$result = $db->sql_query($sql);
|
|
|
|
if (!($row = $db->sql_fetchrow($result)))
|
|
{
|
|
trigger_error($user->lang['NO_USER']);
|
|
}
|
|
$db->sql_freeresult($result);
|
|
|
|
// Which forums does this user have an enabled post count?
|
|
// Really auth should be handling this capability ...
|
|
$post_count_sql = array();
|
|
$auth2 = new auth();
|
|
$auth2->acl($row);
|
|
|
|
foreach ($auth2->acl['local'] as $forum => $auth_string)
|
|
{
|
|
if ($auth_string{$acl_options['local']['f_postcount']})
|
|
{
|
|
$post_count_sql[] = $forum;
|
|
}
|
|
}
|
|
$post_count_sql = (sizeof($post_count_sql)) ? 'AND f.forum_id IN (' . implode(', ', $post_count_sql) . ')' : '';
|
|
unset($auth2);
|
|
|
|
// Grab all the relevant data
|
|
$sql = "SELECT COUNT(p.post_id) AS num_posts
|
|
FROM " . POSTS_TABLE . " p, " . FORUMS_TABLE . " f
|
|
WHERE p.poster_id = $user_id
|
|
AND f.forum_id = p.forum_id
|
|
$post_count_sql";
|
|
$result = $db->sql_query($sql);
|
|
|
|
$num_real_posts = min($row['user_posts'], $db->sql_fetchfield('num_posts', 0, $result));
|
|
$db->sql_freeresult($result);
|
|
|
|
$sql = "SELECT f.forum_id, f.forum_name, COUNT(post_id) AS num_posts
|
|
FROM " . POSTS_TABLE . " p, " . FORUMS_TABLE . " f
|
|
WHERE p.poster_id = $user_id
|
|
AND f.forum_id = p.forum_id
|
|
$post_count_sql
|
|
GROUP BY f.forum_id, f.forum_name
|
|
ORDER BY num_posts DESC";
|
|
$result = $db->sql_query_limit($sql, 1);
|
|
|
|
$active_f_row = $db->sql_fetchrow($result);
|
|
$db->sql_freeresult($result);
|
|
|
|
$sql = "SELECT t.topic_id, t.topic_title, COUNT(p.post_id) AS num_posts
|
|
FROM " . POSTS_TABLE . " p, " . TOPICS_TABLE . " t, " . FORUMS_TABLE . " f
|
|
WHERE p.poster_id = $user_id
|
|
AND t.topic_id = p.topic_id
|
|
AND f.forum_id = t.forum_id
|
|
$post_count_sql
|
|
GROUP BY t.topic_id, t.topic_title
|
|
ORDER BY num_posts DESC";
|
|
$result = $db->sql_query_limit($sql, 1);
|
|
|
|
$active_t_row = $db->sql_fetchrow($result);
|
|
$db->sql_freeresult($result);
|
|
|
|
// Do the relevant calculations
|
|
$memberdays = max(1, round((time() - $row['user_regdate']) / 86400));
|
|
$posts_per_day = $row['user_posts'] / $memberdays;
|
|
$percentage = ($config['num_posts']) ? min(100, ($num_real_posts / $config['num_posts']) * 100) : 0;
|
|
|
|
$active_f_name = $active_f_id = $active_f_count = $active_f_pct = '';
|
|
if (!empty($active_f_row['num_posts']))
|
|
{
|
|
$active_f_name = $active_f_row['forum_name'];
|
|
$active_f_id = $active_f_row['forum_id'];
|
|
$active_f_count = $active_f_row['num_posts'];
|
|
$active_f_pct = ($active_f_count / $row['user_posts']) * 100;
|
|
}
|
|
unset($active_f_row);
|
|
|
|
$active_t_name = $active_t_id = $active_t_count = $active_t_pct = '';
|
|
if (!empty($active_t_row['num_posts']))
|
|
{
|
|
$active_t_name = $active_t_row['topic_title'];
|
|
$active_t_id = $active_t_row['topic_id'];
|
|
$active_t_count = $active_t_row['num_posts'];
|
|
$active_t_pct = ($active_t_count / $row['user_posts']) * 100;
|
|
}
|
|
unset($active_t_row);
|
|
|
|
$template->assign_vars(show_profile($row));
|
|
|
|
$template->assign_vars(array(
|
|
'POSTS_DAY' => sprintf($user->lang['POST_DAY'], $posts_per_day),
|
|
'POSTS_PCT' => sprintf($user->lang['POST_PCT'], $percentage),
|
|
'ACTIVE_FORUM' => $active_f_name,
|
|
'ACTIVE_FORUM_POSTS'=> ($active_f_count == 1) ? sprintf($user->lang['USER_POST'], 1) : sprintf($user->lang['USER_POSTS'], $active_f_count),
|
|
'ACTIVE_FORUM_PCT' => sprintf($user->lang['POST_PCT'], $active_f_pct),
|
|
'ACTIVE_TOPIC' => $active_t_name,
|
|
'ACTIVE_TOPIC_POSTS'=> ($active_t_count == 1) ? sprintf($user->lang['USER_POST'], 1) : sprintf($user->lang['USER_POSTS'], $active_t_count),
|
|
'ACTIVE_TOPIC_PCT' => sprintf($user->lang['POST_PCT'], $active_t_pct),
|
|
|
|
'OCCUPATION' => (!empty($row['user_occ'])) ? $row['user_occ'] : '',
|
|
'INTERESTS' => (!empty($row['user_interests'])) ? $row['user_interests'] : '',
|
|
|
|
'S_PROFILE_ACTION' => "groupcp.$phpEx$SID",
|
|
'S_GROUP_OPTIONS' => $group_options,
|
|
|
|
'U_ACTIVE_FORUM' => "viewforum.$phpEx$SID&f=$active_f_id",
|
|
'U_ACTIVE_TOPIC' => "viewtopic.$phpEx$SID&t=$active_t_id",)
|
|
);
|
|
break;
|
|
|
|
case 'email':
|
|
// Send an email
|
|
$page_title = $user->lang['SEND_EMAIL'];
|
|
$template_html = 'memberlist_email.html';
|
|
|
|
if ($user_id == ANONYMOUS)
|
|
{
|
|
trigger_error($user->lang['NO_USER']);
|
|
}
|
|
|
|
if (empty($config['board_email_form']) || empty($config['email_enable']) || !$auth->acl_gets('u_sendemail', 'a_user'))
|
|
{
|
|
trigger_error($user->lang['NO_EMAIL']);
|
|
}
|
|
|
|
// Get the appropriate username, etc.
|
|
$sql = "SELECT username, user_email, user_viewemail, user_lang
|
|
FROM " . USERS_TABLE . "
|
|
WHERE user_id = $user_id
|
|
AND user_active = 1";
|
|
$result = $db->sql_query($sql);
|
|
|
|
if (!($row = $db->sql_fetchrow($result)))
|
|
{
|
|
trigger_error($$user->lang['NO_USER']);
|
|
}
|
|
$db->sql_freeresult($result);
|
|
|
|
// Can we send email to this user?
|
|
if (empty($row['user_viewemail']) && !$auth->acl_get('a_user'))
|
|
{
|
|
trigger_error($user->lang['NO_EMAIL']);
|
|
}
|
|
|
|
// Are we trying to abuse the facility?
|
|
if (time() - $user->data['user_emailtime'] < $config['flood_interval'])
|
|
{
|
|
trigger_error($lang['FLOOD_EMAIL_LIMIT']);
|
|
}
|
|
|
|
// User has submitted a message, handle it
|
|
if (isset($_POST['submit']))
|
|
{
|
|
$error = FALSE;
|
|
|
|
if (isset($_POST['subject']) && trim($_POST['subject']) != '')
|
|
{
|
|
$subject = trim(stripslashes($_POST['subject']));
|
|
}
|
|
else
|
|
{
|
|
$error = TRUE;
|
|
$error_msg = (!empty($error_msg)) ? $error_msg . '<br />' . $lang['EMPTY_SUBJECT_EMAIL'] : $lang['EMPTY_SUBJECT_EMAIL'];
|
|
}
|
|
|
|
if (isset($_POST['message']) && trim($_POST['message']) != '')
|
|
{
|
|
$message = trim(stripslashes($_POST['message']));
|
|
}
|
|
else
|
|
{
|
|
$error = TRUE;
|
|
$error_msg = (!empty($error_msg)) ? $error_msg . '<br />' . $lang['EMPTY_MESSAGE_EMAIL'] : $lang['EMPTY_MESSAGE_EMAIL'];
|
|
}
|
|
|
|
if (!$error)
|
|
{
|
|
$sql = "UPDATE " . USERS_TABLE . "
|
|
SET user_emailtime = " . time() . "
|
|
WHERE user_id = " . $user->data['user_id'];
|
|
$result = $db->sql_query($sql);
|
|
|
|
include($phpbb_root_path . 'includes/emailer.'.$phpEx);
|
|
$emailer = new emailer();
|
|
|
|
$emailer->template('profile_send_email', $row['user_lang']);
|
|
$emailer->subject($subject);
|
|
|
|
$emailer->replyto($user->data['user_email']);
|
|
$emailer->to($row['user_email'], $row['username']);
|
|
if (!empty($_POST['cc_email']))
|
|
{
|
|
$emailer->cc($user->data['user_email'], $user->data['username']);
|
|
}
|
|
|
|
$emailer->headers('X-AntiAbuse: Board servername - ' . $server_name);
|
|
$emailer->headers('X-AntiAbuse: User_id - ' . $user->data['user_id']);
|
|
$emailer->headers('X-AntiAbuse: Username - ' . $user->data['username']);
|
|
$emailer->headers('X-AntiAbuse: User IP - ' . $user->ip);
|
|
|
|
$emailer->assign_vars(array(
|
|
'SITENAME' => $config['sitename'],
|
|
'BOARD_EMAIL' => $config['board_contact'],
|
|
'FROM_USERNAME' => $user->data['username'],
|
|
'TO_USERNAME' => $row['username'],
|
|
'MESSAGE' => $message)
|
|
);
|
|
|
|
$emailer->send();
|
|
$emailer->reset();
|
|
|
|
$template->assign_vars(array(
|
|
'META' => '<meta http-equiv="refresh" content="3;url=' . "index.$phpEx$SID" . '">')
|
|
);
|
|
|
|
trigger_error($lang['EMAIL_SENT'] . '<br /><br />' . sprintf($lang['RETURN_INDEX'], '<a href="' . "index.$phpEx$SID" . '">', '</a>'));
|
|
}
|
|
}
|
|
|
|
$template->assign_vars(array(
|
|
'USERNAME' => addslashes($row['username']),
|
|
'ERROR_MESSAGE' => (!empty($error_msg)) ? $error_msg : '',
|
|
|
|
'S_POST_ACTION' => "memberlist.$phpEx$SID&mode=email&u=$user_id")
|
|
);
|
|
break;
|
|
|
|
default:
|
|
// The basic memberlist
|
|
$page_title = $user->lang['MEMBERLIST'];
|
|
$template_html = 'memberlist_body.html';
|
|
|
|
// Sorting
|
|
$sort_key_text = array('a' => $user->lang['SORT_USERNAME'], 'b' => $user->lang['SORT_LOCATION'], 'c' => $user->lang['SORT_JOINED'], 'd' => $user->lang['SORT_POST_COUNT'], 'e' => $user->lang['SORT_EMAIL'], 'f' => $user->lang['WEBSITE'], 'g' => $user->lang['ICQ'], 'h' => $user->lang['AIM'], 'i' => $user->lang['MSNM'], 'j' => $user->lang['YIM'], 'k' => $user->lang['SORT_LAST_ACTIVE'], 'l' => $user->lang['SORT_RANK']);
|
|
$sort_key_sql = array('a' => 'username', 'b' => 'user_from', 'c' => 'user_regdate', 'd' => 'user_posts', 'e' => 'user_email', 'f' => 'user_website', 'g' => 'user_icq', 'h' => 'user_aim', 'i' => 'user_msnm', 'j' => 'user_yim', 'k' => 'user_lastvisit', 'l' => 'user_rank DESC, user_posts');
|
|
|
|
$sort_dir_text = array('a' => $user->lang['ASCENDING'], 'd' => $user->lang['DESCENDING']);
|
|
|
|
$s_sort_key = '';
|
|
foreach ($sort_key_text as $key => $value)
|
|
{
|
|
$selected = ($sort_key == $key) ? ' selected="selected"' : '';
|
|
$s_sort_key .= '<option value="' . $key . '"' . $selected . '>' . $value . '</option>';
|
|
}
|
|
|
|
$s_sort_dir = '';
|
|
foreach ($sort_dir_text as $key => $value)
|
|
{
|
|
$selected = ($sort_dir == $key) ? ' selected="selected"' : '';
|
|
$s_sort_dir .= '<option value="' . $key . '"' . $selected . '>' . $value . '</option>';
|
|
}
|
|
|
|
// Additional sorting options for user search ... if search is enabled, if not
|
|
// then only admins can make use of this (for ACP functionality)
|
|
$where_sql = '';
|
|
if ($mode == 'searchuser' && (!empty($config['load_search']) || $auth->acl_get('a_')))
|
|
{
|
|
$find_key_match = array('lt' => '<', 'gt' => '>', 'eq' => '=');
|
|
|
|
$find_count = array('lt' => $user->lang['LESS_THAN'], 'eq' => $user->lang['EQUAL_TO'], 'gt' => $user->lang['MORE_THAN']);
|
|
$s_find_count = '';
|
|
foreach ($find_count as $key => $value)
|
|
{
|
|
$selected = ($count_select == $key) ? ' selected="selected"' : '';
|
|
$s_find_count .= '<option value="' . $key . '"' . $selected . '>' . $value . '</option>';
|
|
}
|
|
|
|
$find_time = array('lt' => $user->lang['BEFORE'], 'gt' => $user->lang['AFTER']);
|
|
$s_find_join_time = '';
|
|
foreach ($find_time as $key => $value)
|
|
{
|
|
$selected = ($joined_select == $key) ? ' selected="selected"' : '';
|
|
$s_find_join_time .= '<option value="' . $key . '"' . $selected . '>' . $value . '</option>';
|
|
}
|
|
|
|
$s_find_active_time = '';
|
|
foreach ($find_time as $key => $value)
|
|
{
|
|
$selected = ($active_select == $key) ? ' selected="selected"' : '';
|
|
$s_find_active_time .= '<option value="' . $key . '"' . $selected . '>' . $value . '</option>';
|
|
}
|
|
|
|
$where_sql .= ($username) ? " AND username LIKE '" . str_replace('*', '%', $db->sql_escape($username)) ."'" : '';
|
|
$where_sql .= ($email) ? " AND user_email LIKE '" . str_replace('*', '%', $db->sql_escape($email)) ."' " : '';
|
|
$where_sql .= ($icq) ? " AND user_icq LIKE '" . str_replace('*', '%', $db->sql_escape($icq)) ."' " : '';
|
|
$where_sql .= ($aim) ? " AND user_aim LIKE '" . str_replace('*', '%', $db->sql_escape($aim)) ."' " : '';
|
|
$where_sql .= ($yahoo) ? " AND user_yim LIKE '" . str_replace('*', '%', $db->sql_escape($yahoo)) ."' " : '';
|
|
$where_sql .= ($msn) ? " AND user_msnm LIKE '" . str_replace('*', '%', $db->sql_escape($msn)) ."' " : '';
|
|
$where_sql .= ($joined) ? " AND user_regdate " . $find_key_match[$joined_select] . " " . gmmktime(0, 0, 0, intval($joined[1]), intval($joined[2]), intval($joined[0])) : '';
|
|
$where_sql .= ($count) ? " AND user_posts " . $find_key_match[$count_select] . " $count " : '';
|
|
$where_sql .= ($active) ? " AND user_lastvisit " . $find_key_match[$active_select] . " " . gmmktime(0, 0, 0, $active[1], intval($active[2]), intval($active[0])) : '';
|
|
|
|
if (!empty($ipdomain))
|
|
{
|
|
$ips = (preg_match('#[a-z]#', $ipdomain)) ? implode(', ', preg_replace('#([0-9]{1,3}\.[0-9]{1,3}[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})#', "'\\1'", gethostbynamel($ipdomain))) : "'" . str_replace('*', '%', $ipdomain) . "'";
|
|
|
|
$sql = "SELECT DISTINCT poster_id
|
|
FROM " . POSTS_TABLE . "
|
|
WHERE poster_ip " . ((preg_match('#%#', $ips)) ? 'LIKE' : 'IN') . " ($ips)";
|
|
$result = $db->sql_query($sql);
|
|
|
|
if ($row = $db->sql_fetchrow($result))
|
|
{
|
|
$ip_sql = '';
|
|
do
|
|
{
|
|
$ip_sql .= (($ip_sql != '') ? ', ' : '') . $row['poster_id'];
|
|
}
|
|
while ($row = $db->sql_fetchrow($result));
|
|
|
|
$where_sql .= " AND user_id IN ($ip_sql)";
|
|
}
|
|
else
|
|
{
|
|
// A minor fudge but it does the job :D
|
|
$where_sql .= " AND user_id IN ('-1')";
|
|
}
|
|
}
|
|
}
|
|
|
|
// Sorting and order
|
|
$order_by = $sort_key_sql[$sort_key] . ' ' . (($sort_dir == 'a') ? 'ASC' : 'DESC');
|
|
|
|
// Count the users ...
|
|
if ($where_sql != '')
|
|
{
|
|
$sql = "SELECT COUNT(user_id) AS total_users
|
|
FROM " . USERS_TABLE . "
|
|
WHERE user_id <> " . ANONYMOUS . "
|
|
$where_sql";
|
|
$result = $db->sql_query($sql);
|
|
|
|
$total_users = ($row = $db->sql_fetchrow($result)) ? $row['total_users'] : 0;
|
|
}
|
|
else
|
|
{
|
|
$total_users = $config['num_users'];
|
|
}
|
|
|
|
// Pagination string
|
|
$pagination_url = "memberlist.$phpEx$SID&mode=$mode";
|
|
|
|
// Build a relevant pagination_url
|
|
$global_var = (isset($_POST['submit'])) ? '_POST' : '_GET';
|
|
foreach ($$global_var as $key => $var)
|
|
{
|
|
if (in_array($key, array('submit', 'start', 'mode')) || $var == '')
|
|
{
|
|
continue;
|
|
}
|
|
$pagination_url .= '&' . $key . '=' . urlencode($var);
|
|
}
|
|
|
|
// Some search user specific data
|
|
if ($mode == 'searchuser' && (!empty($config['load_search']) || $auth->acl_get('a_')))
|
|
{
|
|
$template->assign_vars(array(
|
|
'USERNAME' => $username,
|
|
'EMAIL' => $email,
|
|
'ICQ' => $icq,
|
|
'AIM' => $aim,
|
|
'YAHOO' => $yahoo,
|
|
'MSNM' => $msn,
|
|
'JOINED' => implode('-', $joined),
|
|
'ACTIVE' => implode('-', $active),
|
|
'COUNT' => $count,
|
|
'IP' => $ipdomain,
|
|
|
|
'S_SEARCH_USER' => true,
|
|
'S_FORM_NAME' => $form,
|
|
'S_FIELD_NAME' => $field,
|
|
'S_COUNT_OPTIONS' => $s_find_count,
|
|
'S_SORT_OPTIONS' => $s_sort_key,
|
|
'S_USERNAME_OPTIONS' => $username_list,
|
|
'S_JOINED_TIME_OPTIONS' => $s_find_join_time,
|
|
'S_ACTIVE_TIME_OPTIONS' => $s_find_active_time,
|
|
'S_SEARCH_ACTION' => "memberslist.$phpEx$SID&mode=searchuser&field=$field")
|
|
);
|
|
}
|
|
|
|
$sql = 'SELECT session_user_id, MAX(session_time) AS session_time
|
|
FROM ' . SESSIONS_TABLE . '
|
|
WHERE session_time >= ' . (time() - 300) . '
|
|
AND session_user_id <> ' . ANONYMOUS . '
|
|
GROUP BY session_user_id';
|
|
$result = $db->sql_query($sql);
|
|
|
|
$session_times = array();
|
|
while ($row = $db->sql_fetchrow($result))
|
|
{
|
|
$session_times[$row['session_user_id']] = $row['session_time'];
|
|
}
|
|
$db->sql_freeresult($result);
|
|
|
|
// Do the SQL thang
|
|
$sql = "SELECT username, user_id, user_colour, user_viewemail, user_posts, user_regdate, user_rank, user_from, user_website, user_email, user_icq, user_aim, user_yim, user_msnm, user_avatar, user_avatar_type, user_allowavatar, user_lastvisit
|
|
FROM " . USERS_TABLE . "
|
|
WHERE user_id <> " . ANONYMOUS . "
|
|
$where_sql
|
|
ORDER BY $order_by";
|
|
$result = $db->sql_query_limit($sql, $config['topics_per_page'], $start);
|
|
|
|
if ($row = $db->sql_fetchrow($result))
|
|
{
|
|
$i = 0;
|
|
do
|
|
{
|
|
$row['session_time'] = (!empty($session_times[$row['user_id']])) ? $session_times[$row['user_id']] : '';
|
|
|
|
$template->assign_block_vars('memberrow', array_merge(show_profile($row), array(
|
|
'ROW_NUMBER' => $i + ($start + 1),
|
|
|
|
'S_ROW_COUNT' => $i,
|
|
|
|
'U_VIEWPROFILE' => "memberlist.$phpEx$SID&mode=viewprofile&u=" . $row['user_id']))
|
|
);
|
|
|
|
$i++;
|
|
}
|
|
while ($row = $db->sql_fetchrow($result));
|
|
}
|
|
|
|
// Generate page
|
|
$template->assign_vars(array(
|
|
'PAGINATION' => generate_pagination($pagination_url, $total_users, $config['topics_per_page'], $start),
|
|
'PAGE_NUMBER' => on_page($total_users, $config['topics_per_page'], $start),
|
|
'TOTAL_USERS' => ($total_users == 1) ? $user->lang['LIST_USER'] : sprintf($user->lang['LIST_USERS'], $total_users),
|
|
|
|
'U_FIND_MEMBER' => (!empty($config['load_search']) || $auth->acl_get('a_')) ? "memberlist.$phpEx$SID&mode=searchuser" : '',
|
|
'U_SORT_USERNAME' => "memberlist.$phpEx$SID&sk=a&sd=" . (($sort_key == 'a' && $sort_dir == 'a') ? 'd' : 'a'),
|
|
'U_SORT_FROM' => "memberlist.$phpEx$SID&sk=b&sd=" . (($sort_key == 'b' && $sort_dir == 'a') ? 'd' : 'a'),
|
|
'U_SORT_JOINED' => "memberlist.$phpEx$SID&sk=c&sd=" . (($sort_key == 'c' && $sort_dir == 'a') ? 'd' : 'a'),
|
|
'U_SORT_POSTS' => "memberlist.$phpEx$SID&sk=d&sd=" . (($sort_key == 'd' && $sort_dir == 'a') ? 'd' : 'a'),
|
|
'U_SORT_EMAIL' => "memberlist.$phpEx$SID&sk=e&sd=" . (($sort_key == 'e' && $sort_dir == 'a') ? 'd' : 'a'),
|
|
'U_SORT_WEBSITE' => "memberlist.$phpEx$SID&sk=f&sd=" . (($sort_key == 'f' && $sort_dir == 'a') ? 'd' : 'a'),
|
|
'U_SORT_ICQ' => "memberlist.$phpEx$SID&sk=g&sd=" . (($sort_key == 'g' && $sort_dir == 'a') ? 'd' : 'a'),
|
|
'U_SORT_AIM' => "memberlist.$phpEx$SID&sk=h&sd=" . (($sort_key == 'h' && $sort_dir == 'a') ? 'd' : 'a'),
|
|
'U_SORT_MSN' => "memberlist.$phpEx$SID&sk=i&sd=" . (($sort_key == 'i' && $sort_dir == 'a') ? 'd' : 'a'),
|
|
'U_SORT_YIM' => "memberlist.$phpEx$SID&sk=j&sd=" . (($sort_key == 'j' && $sort_dir == 'a') ? 'd' : 'a'),
|
|
'U_SORT_ACTIVE' => "memberlist.$phpEx$SID&sk=k&sd=" . (($sort_key == 'k' && $sort_dir == 'a') ? 'd' : 'a'),
|
|
'U_SORT_RANK' => "memberlist.$phpEx$SID&sk=l&sd=" . (($sort_key == 'l' && $sort_dir == 'a') ? 'd' : 'a'),
|
|
|
|
'S_MODE_SELECT' => $s_sort_key,
|
|
'S_ORDER_SELECT'=> $s_sort_dir,
|
|
'S_MODE_ACTION' => "memberlist.$phpEx$SID&mode=$mode&form=$form")
|
|
);
|
|
}
|
|
|
|
|
|
// Output the page
|
|
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
|
|
|
|
$template->set_filenames(array(
|
|
'body' => $template_html)
|
|
);
|
|
make_jumpbox('viewforum.'.$phpEx);
|
|
|
|
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
|
|
|
|
|
|
// ---------
|
|
// FUNCTIONS
|
|
//
|
|
function show_profile($data)
|
|
{
|
|
global $config, $auth, $template, $user, $SID, $phpEx;
|
|
global $ranksrow;
|
|
|
|
static $bbcode;
|
|
|
|
$username = $data['username'];
|
|
$user_id = $data['user_id'];
|
|
|
|
$poster_avatar = '';
|
|
if (isset($data['user_avatar_type']) && $user_id && !empty($data['user_allowavatar']))
|
|
{
|
|
switch($data['user_avatar_type'])
|
|
{
|
|
case USER_AVATAR_UPLOAD:
|
|
$poster_avatar = ($config['allow_avatar_upload']) ? '<img src="' . $config['avatar_path'] . '/' . $data['user_avatar'] . '" alt="" border="0" />' : '';
|
|
break;
|
|
|
|
case USER_AVATAR_REMOTE:
|
|
$poster_avatar = ($config['allow_avatar_remote']) ? '<img src="' . $data['user_avatar'] . '" alt="" border="0" />' : '';
|
|
break;
|
|
|
|
case USER_AVATAR_GALLERY:
|
|
$poster_avatar = ($config['allow_avatar_local']) ? '<img src="' . $config['avatar_gallery_path'] . '/' . $data['user_avatar'] . '" alt="" border="0" />' : '';
|
|
break;
|
|
}
|
|
}
|
|
|
|
$rank_title = $rank_img = '';
|
|
foreach ($ranksrow as $rank)
|
|
{
|
|
if (empty($data['user_rank']) && $data['user_posts'] >= $rank['rank_min'])
|
|
{
|
|
$rank_title = $rank['rank_title'];
|
|
$rank_img = (!empty($rank['rank_image'])) ? '<img src="' . $rank['rank_image'] . '" border="0" alt="' . $rank_title . '" title="' . $rank_title . '" /><br />' : '';
|
|
break;
|
|
}
|
|
|
|
if (!empty($rank['rank_special']) && $data['user_rank'] == $rank['rank_id'])
|
|
{
|
|
$rank_title = $rank['rank_title'];
|
|
$rank_img = (!empty($rank['rank_image'])) ? '<img src="' . $rank['rank_image'] . '" border="0" alt="' . $rank_title . '" title="' . $rank_title . '" /><br />' : '';
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!empty($data['user_viewemail']) || $auth->acl_get('a_'))
|
|
{
|
|
$email_uri = (!empty($config['board_email_form'])) ? "memberlist.$phpEx$SID&mode=email&u=" . $user_id : 'mailto:' . $row['user_email'];
|
|
$email_img = '<a href="' . $email_uri . '">' . $user->img('btn_email', $user->lang['EMAIL']) . '</a>';
|
|
$email = '<a href="' . $email_uri . '">' . $user->lang['EMAIL'] . '</a>';
|
|
}
|
|
else
|
|
{
|
|
$email_img = '';
|
|
$email = '';
|
|
}
|
|
|
|
$temp_url = "memberlist.$phpEx$SID&mode=viewprofile&u=$user_id";
|
|
$profile_img = '<a href="' . $temp_url . '">' . $user->img('btn_profile', $user->lang['PROFILE']) . '</a>';
|
|
$profile = '<a href="' . $temp_url . '">' . $user->lang['PROFILE'] . '</a>';
|
|
|
|
$temp_url = "ucp.$phpEx$SID&mode=pm&action=send&u=$user_id";
|
|
$pm_img = '<a href="' . $temp_url . '">' . $user->img('btn_pm', $user->lang['MESSAGE']) . '</a>';
|
|
$pm = '<a href="' . $temp_url . '">' . $user->lang['MESSAGE'] . '</a>';
|
|
|
|
$www_img = (!empty($data['user_website'])) ? '<a href="' . $data['user_website'] . '" target="_userwww">' . $user->img('btn_www', $user->lang['WWW']) . '</a>' : '';
|
|
$www = (!empty($data['user_website'])) ? '<a href="' . $data['user_website'] . '" target="_userwww">' . $user->lang['WWW'] . '</a>' : '';
|
|
|
|
if (!empty($data['user_icq']))
|
|
{
|
|
$temp_url = "memberlist.$phpEx$SID&mode=contact&action=icq&u=$user_id";
|
|
$icq_status_img = '<a href="' . $temp_url . '" target="_contact" onclick="window.open(\\\'' . $temp_url . '\\\', \\\'_phpbbprivmsg\\\', \\\'HEIGHT=225,resizable=yes,WIDTH=400\\\');return false"><img src="http://web.icq.com/whitepages/online?icq=' . $data['user_icq'] . '&img=5" width="18" height="18" border="0" /></a>';
|
|
$icq_img = '<a href="' . $temp_url . '" target="_contact" onclick="window.open(\\\'' . $temp_url . '\\\', \\\'_phpbbprivmsg\\\', \\\'HEIGHT=225,resizable=yes,WIDTH=400\\\');return false">' . $user->img('btn_icq', $user->lang['ICQ']) . '</a>';
|
|
$icq = '<a href="' . $temp_url . '" target="_contact" onclick="window.open(\'' . $temp_url . '\', \'_phpbbprivmsg\', \'HEIGHT=225,resizable=yes,WIDTH=400\');return false">' . $user->lang['ICQ'] . '</a>';
|
|
}
|
|
else
|
|
{
|
|
$icq_status_img = '';
|
|
$icq_img = '';
|
|
$icq = '';
|
|
}
|
|
|
|
$temp_url = "memberlist.$phpEx$SID&mode=contact&action=aim&u=$user_id";
|
|
$aim_img = (!empty($data['user_aim'])) ? '<a href="' . $temp_url . '" target="_contact" onclick="window.open(\'' . $temp_url . '\', \'_phpbbprivmsg\', \'HEIGHT=225,resizable=yes,WIDTH=400\');return false">' . $user->img('btn_aim', $user->lang['AIM']) . '</a>' : '';
|
|
$aim = (!empty($data['user_aim'])) ? '<a href="' . $temp_url . '" target="_contact" onclick="window.open(\'' . $temp_url . '\', \'_phpbbprivmsg\', \'HEIGHT=225,resizable=yes,WIDTH=400\');return false">' . $user->lang['AIM'] . '</a>' : '';
|
|
|
|
$temp_url = "memberlist.$phpEx$SID&mode=contact&action=msnm&u=$user_id";
|
|
$msn_img = (!empty($data['user_msnm'])) ? '<a href="' . $temp_url . '" target="_contact" onclick="window.open(\'' . $temp_url . '\', \'_phpbbprivmsg\', \'HEIGHT=225,resizable=yes,WIDTH=400\');return false">' . $user->img('btn_msnm', $user->lang['MSNM']) . '</a>' : '';
|
|
$msn = (!empty($data['user_msnm'])) ? '<a href="' . $temp_url . '" target="_contact" onclick="window.open(\'' . $temp_url . '\', \'_phpbbprivmsg\', \'HEIGHT=225,resizable=yes,WIDTH=400\');return false">' . $user->lang['MSNM'] . '</a>' : '';
|
|
|
|
$temp_url = 'http://edit.yahoo.com/config/send_webmesg?.target=' . $data['user_yim'] . '&.src=pg';
|
|
$yim_img = (!empty($data['user_yim'])) ? '<a href="' . $temp_url . '" target="_contact" onclick="im_popup(\'' . $temp_url . '\', 790, 400)">' . $user->img('btn_yim', $user->lang['YIM']) . '</a>' : '';
|
|
$yim = (!empty($data['user_yim'])) ? '<a href="' . $temp_url . '" target="_contact" onclick="im_popup(\'' . $temp_url . '\', 790, 400)">' . $user->lang['YIM'] . '</a>' : '';
|
|
|
|
$temp_url = "search.$phpEx$SID&search_author=" . urlencode($username) . "&showresults=posts";
|
|
$search_img = '<a href="' . $temp_url . '">' . $user->img('btn_search', $user->lang['SEARCH']) . '</a>';
|
|
$search = '<a href="' . $temp_url . '">' . $user->lang['SEARCH'] . '</a>';
|
|
|
|
if ($data['user_sig_bbcode_bitfield'])
|
|
{
|
|
if (!isset($bbcode))
|
|
{
|
|
include_once($phpbb_root_path . 'includes/bbcode.'.$phpEx);
|
|
$bbcode = new bbcode();
|
|
}
|
|
$bbcode->bbcode_second_pass($data['user_sig'], $data['user_sig_bbcode_uid'], $data['user_sig_bbcode_bitfield']);
|
|
}
|
|
|
|
$last_visit = (!empty($data['session_time'])) ? $data['session_time'] : $data['user_lastvisit'];
|
|
|
|
$template_vars = array(
|
|
'USERNAME' => $username,
|
|
'USER_COLOR' => (!empty($data['user_colour'])) ? $data['user_colour'] : '',
|
|
'RANK_TITLE' => $rank_title,
|
|
'SIGNATURE' => (!empty($data['user_sig'])) ? str_replace("\n", '<br />', $data['user_sig']) : '',
|
|
|
|
'ONLINE_IMG' => (intval($data['session_time']) >= time() - ($config['load_online_time'] * 60)) ? $user->img('btn_online', $user->lang['USER_ONLINE']) : $user->img('btn_offline', $user->lang['USER_ONLINE']),
|
|
'AVATAR_IMG' => $poster_avatar,
|
|
'RANK_IMG' => $rank_img,
|
|
|
|
'JOINED' => $user->format_date($data['user_regdate'], $user->lang['DATE_FORMAT']),
|
|
'VISITED' => (empty($last_visit)) ? ' - ' : $user->format_date($last_visit, $user->lang['DATE_FORMAT']),
|
|
'POSTS' => ($data['user_posts']) ? $data['user_posts'] : 0,
|
|
|
|
'PM_IMG' => $pm_img,
|
|
'PM' => $pm,
|
|
'EMAIL_IMG' => $email_img,
|
|
'EMAIL' => $email,
|
|
'WWW_IMG' => $www_img,
|
|
'WWW' => $www,
|
|
'ICQ_STATUS_IMG'=> $icq_status_img,
|
|
'ICQ_IMG' => $icq_img,
|
|
'ICQ' => $icq,
|
|
'AIM_IMG' => $aim_img,
|
|
'AIM' => $aim,
|
|
'MSN_IMG' => $msn_img,
|
|
'MSN' => $msn,
|
|
'YIM_IMG' => $yim_img,
|
|
'YIM' => $yim,
|
|
|
|
'S_ONLINE' => (intval($data['session_time']) >= time() - 300) ? true : false
|
|
);
|
|
|
|
return $template_vars;
|
|
}
|
|
//
|
|
// FUNCTIONS
|
|
// ---------
|
|
|
|
?>
|