Blame Identity/Webenv/phpBB/3.0.4/viewonline.php

ef5584
ef5584
/**
ef5584
*
ef5584
* @package phpBB3
ef5584
* @version $Id: viewonline.php 8705 2008-07-28 16:55:00Z Kellanved $
ef5584
* @copyright (c) 2005 phpBB Group
ef5584
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
ef5584
*
ef5584
*/
ef5584
ef5584
/**
ef5584
* @ignore
ef5584
*/
ef5584
define('IN_PHPBB', true);
ef5584
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
ef5584
$phpEx = substr(strrchr(__FILE__, '.'), 1);
ef5584
include($phpbb_root_path . 'common.' . $phpEx);
ef5584
ef5584
// Start session management
ef5584
$user->session_begin();
ef5584
$auth->acl($user->data);
ef5584
$user->setup('memberlist');
ef5584
ef5584
// Get and set some variables
ef5584
$mode		= request_var('mode', '');
ef5584
$session_id	= request_var('s', '');
ef5584
$start		= request_var('start', 0);
ef5584
$sort_key	= request_var('sk', 'b');
ef5584
$sort_dir	= request_var('sd', 'd');
ef5584
$show_guests= ($config['load_online_guests']) ? request_var('sg', 0) : 0;
ef5584
ef5584
// Can this user view profiles/memberlist?
ef5584
if (!$auth->acl_gets('u_viewprofile', 'a_user', 'a_useradd', 'a_userdel'))
ef5584
{
ef5584
	if ($user->data['user_id'] != ANONYMOUS)
ef5584
	{
ef5584
		trigger_error('NO_VIEW_USERS');
ef5584
	}
ef5584
ef5584
	login_box('', $user->lang['LOGIN_EXPLAIN_VIEWONLINE']);
ef5584
}
ef5584
ef5584
$sort_key_text = array('a' => $user->lang['SORT_USERNAME'], 'b' => $user->lang['SORT_JOINED'], 'c' => $user->lang['SORT_LOCATION']);
ef5584
$sort_key_sql = array('a' => 'u.username_clean', 'b' => 's.session_time', 'c' => 's.session_page');
ef5584
ef5584
// Sorting and order
ef5584
if (!isset($sort_key_text[$sort_key]))
ef5584
{
ef5584
	$sort_key = 'b';
ef5584
}
ef5584
ef5584
$order_by = $sort_key_sql[$sort_key] . ' ' . (($sort_dir == 'a') ? 'ASC' : 'DESC');
ef5584
ef5584
// Whois requested
ef5584
if ($mode == 'whois' && $auth->acl_get('a_') && $session_id)
ef5584
{
ef5584
	include($phpbb_root_path . 'includes/functions_user.' . $phpEx);
ef5584
ef5584
	$sql = 'SELECT u.user_id, u.username, u.user_type, s.session_ip
ef5584
		FROM ' . USERS_TABLE . ' u, ' . SESSIONS_TABLE . " s
ef5584
		WHERE s.session_id = '" . $db->sql_escape($session_id) . "'
ef5584
			AND	u.user_id = s.session_user_id";
ef5584
	$result = $db->sql_query($sql);
ef5584
ef5584
	if ($row = $db->sql_fetchrow($result))
ef5584
	{
ef5584
		$template->assign_var('WHOIS', user_ipwhois($row['session_ip']));
ef5584
	}
ef5584
	$db->sql_freeresult($result);
ef5584
ef5584
	// Output the page
ef5584
	page_header($user->lang['WHO_IS_ONLINE']);
ef5584
ef5584
	$template->set_filenames(array(
ef5584
		'body' => 'viewonline_whois.html')
ef5584
	);
ef5584
	make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
ef5584
ef5584
	page_footer();
ef5584
}
ef5584
ef5584
// Forum info
ef5584
$sql = 'SELECT forum_id, forum_name, parent_id, forum_type, left_id, right_id
ef5584
	FROM ' . FORUMS_TABLE . '
ef5584
	ORDER BY left_id ASC';
ef5584
$result = $db->sql_query($sql, 600);
ef5584
ef5584
$forum_data = array();
ef5584
while ($row = $db->sql_fetchrow($result))
ef5584
{
ef5584
	$forum_data[$row['forum_id']] = $row;
ef5584
}
ef5584
$db->sql_freeresult($result);
ef5584
ef5584
$guest_counter = 0;
ef5584
ef5584
// Get number of online guests (if we do not display them)
ef5584
if (!$show_guests)
ef5584
{
ef5584
	switch ($db->sql_layer)
ef5584
	{
ef5584
		case 'sqlite':
ef5584
			$sql = 'SELECT COUNT(session_ip) as num_guests
ef5584
				FROM (
ef5584
					SELECT DISTINCT session_ip
ef5584
						FROM ' . SESSIONS_TABLE . '
ef5584
						WHERE session_user_id = ' . ANONYMOUS . '
ef5584
							AND session_time >= ' . (time() - ($config['load_online_time'] * 60)) .
ef5584
				')';
ef5584
		break;
ef5584
ef5584
		default:
ef5584
			$sql = 'SELECT COUNT(DISTINCT session_ip) as num_guests
ef5584
				FROM ' . SESSIONS_TABLE . '
ef5584
				WHERE session_user_id = ' . ANONYMOUS . '
ef5584
					AND session_time >= ' . (time() - ($config['load_online_time'] * 60));
ef5584
		break;
ef5584
	}
ef5584
	$result = $db->sql_query($sql);
ef5584
	$guest_counter = (int) $db->sql_fetchfield('num_guests');
ef5584
	$db->sql_freeresult($result);
ef5584
}
ef5584
ef5584
// Get user list
ef5584
$sql = 'SELECT u.user_id, u.username, u.username_clean, u.user_type, u.user_colour, s.session_id, s.session_time, s.session_page, s.session_ip, s.session_browser, s.session_viewonline, s.session_forum_id
ef5584
	FROM ' . USERS_TABLE . ' u, ' . SESSIONS_TABLE . ' s
ef5584
	WHERE u.user_id = s.session_user_id
ef5584
		AND s.session_time >= ' . (time() - ($config['load_online_time'] * 60)) .
ef5584
		((!$show_guests) ? ' AND s.session_user_id <> ' . ANONYMOUS : '') . '
ef5584
	ORDER BY ' . $order_by;
ef5584
$result = $db->sql_query($sql);
ef5584
ef5584
$prev_id = $prev_ip = $user_list = array();
ef5584
$logged_visible_online = $logged_hidden_online = $counter = 0;
ef5584
ef5584
while ($row = $db->sql_fetchrow($result))
ef5584
{
ef5584
	if ($row['user_id'] != ANONYMOUS && !isset($prev_id[$row['user_id']]))
ef5584
	{
ef5584
		$view_online = $s_user_hidden = false;
ef5584
		$user_colour = ($row['user_colour']) ? ' style="color:#' . $row['user_colour'] . '" class="username-coloured"' : '';
ef5584
		
ef5584
		$username_full = ($row['user_type'] != USER_IGNORE) ? get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']) : '<span' . $user_colour . '>' . $row['username'] . '';
ef5584
ef5584
		if (!$row['session_viewonline'])
ef5584
		{
ef5584
			$view_online = ($auth->acl_get('u_viewonline')) ? true : false;
ef5584
			$logged_hidden_online++;
ef5584
ef5584
			$username_full = '' . $username_full . '';
ef5584
			$s_user_hidden = true;
ef5584
		}
ef5584
		else
ef5584
		{
ef5584
			$view_online = true;
ef5584
			$logged_visible_online++;
ef5584
		}
ef5584
ef5584
		$prev_id[$row['user_id']] = 1;
ef5584
ef5584
		if ($view_online)
ef5584
		{
ef5584
			$counter++;
ef5584
		}
ef5584
ef5584
		if (!$view_online || $counter > $start + $config['topics_per_page'] || $counter <= $start)
ef5584
		{
ef5584
			continue;
ef5584
		}
ef5584
	}
ef5584
	else if ($show_guests && $row['user_id'] == ANONYMOUS && !isset($prev_ip[$row['session_ip']]))
ef5584
	{
ef5584
		$prev_ip[$row['session_ip']] = 1;
ef5584
		$guest_counter++;
ef5584
		$counter++;
ef5584
ef5584
		if ($counter > $start + $config['topics_per_page'] || $counter <= $start)
ef5584
		{
ef5584
			continue;
ef5584
		}
ef5584
ef5584
		$s_user_hidden = false;
ef5584
		$username_full = get_username_string('full', $row['user_id'], $user->lang['GUEST']);
ef5584
	}
ef5584
	else
ef5584
	{
ef5584
		continue;
ef5584
	}
ef5584
ef5584
	preg_match('#^([a-z/]+)#i', $row['session_page'], $on_page);
ef5584
	if (!sizeof($on_page))
ef5584
	{
ef5584
		$on_page[1] = '';
ef5584
	}
ef5584
ef5584
	switch ($on_page[1])
ef5584
	{
ef5584
		case 'index':
ef5584
			$location = $user->lang['INDEX'];
ef5584
			$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
ef5584
		break;
ef5584
ef5584
		case 'adm/index':
ef5584
			$location = $user->lang['ACP'];
ef5584
			$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
ef5584
		break;
ef5584
ef5584
		case 'posting':
ef5584
		case 'viewforum':
ef5584
		case 'viewtopic':
ef5584
			$forum_id = $row['session_forum_id'];
ef5584
ef5584
			if ($forum_id && $auth->acl_get('f_list', $forum_id))
ef5584
			{
ef5584
				$location = '';
ef5584
				$location_url = append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $forum_id);
ef5584
ef5584
				if ($forum_data[$forum_id]['forum_type'] == FORUM_LINK)
ef5584
				{
ef5584
					$location = sprintf($user->lang['READING_LINK'], $forum_data[$forum_id]['forum_name']);
ef5584
					break;
ef5584
				}
ef5584
ef5584
				switch ($on_page[1])
ef5584
				{
ef5584
					case 'posting':
ef5584
						preg_match('#mode=([a-z]+)#', $row['session_page'], $on_page);
ef5584
						$posting_mode = (!empty($on_page[1])) ? $on_page[1] : '';
ef5584
ef5584
						switch ($posting_mode)
ef5584
						{
ef5584
							case 'reply':
ef5584
							case 'quote':
ef5584
								$location = sprintf($user->lang['REPLYING_MESSAGE'], $forum_data[$forum_id]['forum_name']);
ef5584
							break;
ef5584
ef5584
							default:
ef5584
								$location = sprintf($user->lang['POSTING_MESSAGE'], $forum_data[$forum_id]['forum_name']);
ef5584
							break;
ef5584
						}
ef5584
					break;
ef5584
ef5584
					case 'viewtopic':
ef5584
						$location = sprintf($user->lang['READING_TOPIC'], $forum_data[$forum_id]['forum_name']);
ef5584
					break;
ef5584
ef5584
					case 'viewforum':
ef5584
						$location = sprintf($user->lang['READING_FORUM'], $forum_data[$forum_id]['forum_name']);
ef5584
					break;
ef5584
				}
ef5584
			}
ef5584
			else
ef5584
			{
ef5584
				$location = $user->lang['INDEX'];
ef5584
				$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
ef5584
			}
ef5584
		break;
ef5584
ef5584
		case 'search':
ef5584
			$location = $user->lang['SEARCHING_FORUMS'];
ef5584
			$location_url = append_sid("{$phpbb_root_path}search.$phpEx");
ef5584
		break;
ef5584
ef5584
		case 'faq':
ef5584
			$location = $user->lang['VIEWING_FAQ'];
ef5584
			$location_url = append_sid("{$phpbb_root_path}faq.$phpEx");
ef5584
		break;
ef5584
ef5584
		case 'viewonline':
ef5584
			$location = $user->lang['VIEWING_ONLINE'];
ef5584
			$location_url = append_sid("{$phpbb_root_path}viewonline.$phpEx");
ef5584
		break;
ef5584
ef5584
		case 'memberlist':
ef5584
			$location = (strpos($row['session_page'], 'mode=viewprofile') !== false) ? $user->lang['VIEWING_MEMBER_PROFILE'] : $user->lang['VIEWING_MEMBERS'];
ef5584
			$location_url = append_sid("{$phpbb_root_path}memberlist.$phpEx");
ef5584
		break;
ef5584
ef5584
		case 'mcp':
ef5584
			$location = $user->lang['VIEWING_MCP'];
ef5584
			$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
ef5584
		break;
ef5584
ef5584
		case 'ucp':
ef5584
			$location = $user->lang['VIEWING_UCP'];
ef5584
ef5584
			// Grab some common modules
ef5584
			$url_params = array(
ef5584
				'mode=register'		=> 'VIEWING_REGISTER',
ef5584
				'i=pm&mode=compose'	=> 'POSTING_PRIVATE_MESSAGE',
ef5584
				'i=pm&'				=> 'VIEWING_PRIVATE_MESSAGES',
ef5584
				'i=profile&'		=> 'CHANGING_PROFILE',
ef5584
				'i=prefs&'			=> 'CHANGING_PREFERENCES',
ef5584
			);
ef5584
ef5584
			foreach ($url_params as $param => $lang)
ef5584
			{
ef5584
				if (strpos($row['session_page'], $param) !== false)
ef5584
				{
ef5584
					$location = $user->lang[$lang];
ef5584
					break;
ef5584
				}
ef5584
			}
ef5584
ef5584
			$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
ef5584
		break;
ef5584
ef5584
		case 'download/file':
ef5584
			$location = $user->lang['DOWNLOADING_FILE'];
ef5584
			$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
ef5584
		break;
ef5584
ef5584
		case 'report':
ef5584
			$location = $user->lang['REPORTING_POST'];
ef5584
			$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
ef5584
		break;
ef5584
ef5584
		default:
ef5584
			$location = $user->lang['INDEX'];
ef5584
			$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
ef5584
		break;
ef5584
	}
ef5584
ef5584
	$template->assign_block_vars('user_row', array(
ef5584
		'USERNAME' 			=> $row['username'],
ef5584
		'USERNAME_COLOUR'	=> $row['user_colour'],
ef5584
		'USERNAME_FULL'		=> $username_full,
ef5584
		'LASTUPDATE'		=> $user->format_date($row['session_time']),
ef5584
		'FORUM_LOCATION'	=> $location,
ef5584
		'USER_IP'			=> ($auth->acl_get('a_')) ? (($mode == 'lookup' && $session_id == $row['session_id']) ? gethostbyaddr($row['session_ip']) : $row['session_ip']) : '',
ef5584
		'USER_BROWSER'		=> ($auth->acl_get('a_user')) ? $row['session_browser'] : '',
ef5584
ef5584
		'U_USER_PROFILE'	=> ($row['user_type'] != USER_IGNORE) ? get_username_string('profile', $row['user_id'], '') : '',
ef5584
		'U_USER_IP'			=> append_sid("{$phpbb_root_path}viewonline.$phpEx", 'mode=lookup' . (($mode != 'lookup' || $row['session_id'] != $session_id) ? '&s=' . $row['session_id'] : '') . "&sg=$show_guests&start=$start&sk=$sort_key&sd=$sort_dir"),
ef5584
		'U_WHOIS'			=> append_sid("{$phpbb_root_path}viewonline.$phpEx", 'mode=whois&s=' . $row['session_id']),
ef5584
		'U_FORUM_LOCATION'	=> $location_url,
ef5584
		
ef5584
		'S_USER_HIDDEN'		=> $s_user_hidden,
ef5584
		'S_GUEST'			=> ($row['user_id'] == ANONYMOUS) ? true : false,
ef5584
		'S_USER_TYPE'		=> $row['user_type'],
ef5584
	));
ef5584
}
ef5584
$db->sql_freeresult($result);
ef5584
unset($prev_id, $prev_ip);
ef5584
ef5584
// Generate reg/hidden/guest online text
ef5584
$vars_online = array(
ef5584
	'REG'	=> array('logged_visible_online', 'l_r_user_s'),
ef5584
	'HIDDEN'=> array('logged_hidden_online', 'l_h_user_s'),
ef5584
	'GUEST'	=> array('guest_counter', 'l_g_user_s')
ef5584
);
ef5584
ef5584
foreach ($vars_online as $l_prefix => $var_ary)
ef5584
{
ef5584
	switch ($$var_ary[0])
ef5584
	{
ef5584
		case 0:
ef5584
			$$var_ary[1] = $user->lang[$l_prefix . '_USERS_ZERO_ONLINE'];
ef5584
		break;
ef5584
ef5584
		case 1:
ef5584
			$$var_ary[1] = $user->lang[$l_prefix . '_USER_ONLINE'];
ef5584
		break;
ef5584
ef5584
		default:
ef5584
			$$var_ary[1] = $user->lang[$l_prefix . '_USERS_ONLINE'];
ef5584
		break;
ef5584
	}
ef5584
}
ef5584
unset($vars_online);
ef5584
ef5584
$pagination = generate_pagination(append_sid("{$phpbb_root_path}viewonline.$phpEx", "sg=$show_guests&sk=$sort_key&sd=$sort_dir"), $counter, $config['topics_per_page'], $start);
ef5584
ef5584
// Grab group details for legend display
ef5584
if ($auth->acl_gets('a_group', 'a_groupadd', 'a_groupdel'))
ef5584
{
ef5584
	$sql = 'SELECT group_id, group_name, group_colour, group_type
ef5584
		FROM ' . GROUPS_TABLE . '
ef5584
		WHERE group_legend = 1
ef5584
		ORDER BY group_name ASC';
ef5584
}
ef5584
else
ef5584
{
ef5584
	$sql = 'SELECT g.group_id, g.group_name, g.group_colour, g.group_type
ef5584
		FROM ' . GROUPS_TABLE . ' g
ef5584
		LEFT JOIN ' . USER_GROUP_TABLE . ' ug
ef5584
			ON (
ef5584
				g.group_id = ug.group_id
ef5584
				AND ug.user_id = ' . $user->data['user_id'] . '
ef5584
				AND ug.user_pending = 0
ef5584
			)
ef5584
		WHERE g.group_legend = 1
ef5584
			AND (g.group_type <> ' . GROUP_HIDDEN . ' OR ug.user_id = ' . $user->data['user_id'] . ')
ef5584
		ORDER BY g.group_name ASC';
ef5584
}
ef5584
$result = $db->sql_query($sql);
ef5584
ef5584
$legend = '';
ef5584
while ($row = $db->sql_fetchrow($result))
ef5584
{
ef5584
	if ($row['group_name'] == 'BOTS')
ef5584
	{
ef5584
		$legend .= (($legend != '') ? ', ' : '') . '' . $user->lang['G_BOTS'] . '';
ef5584
	}
ef5584
	else
ef5584
	{
ef5584
		$legend .= (($legend != '') ? ', ' : '') . '' . (($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name']) . '';
ef5584
	}
ef5584
}
ef5584
$db->sql_freeresult($result);
ef5584
ef5584
// Refreshing the page every 60 seconds...
ef5584
meta_refresh(60, append_sid("{$phpbb_root_path}viewonline.$phpEx", "sg=$show_guests&sk=$sort_key&sd=$sort_dir&start=$start"));
ef5584
ef5584
// Send data to template
ef5584
$template->assign_vars(array(
ef5584
	'TOTAL_REGISTERED_USERS_ONLINE'	=> sprintf($l_r_user_s, $logged_visible_online) . sprintf($l_h_user_s, $logged_hidden_online),
ef5584
	'TOTAL_GUEST_USERS_ONLINE'		=> sprintf($l_g_user_s, $guest_counter),
ef5584
	'LEGEND'						=> $legend,
ef5584
	'PAGINATION'					=> $pagination,
ef5584
	'PAGE_NUMBER'					=> on_page($counter, $config['topics_per_page'], $start),
ef5584
ef5584
	'U_SORT_USERNAME'		=> append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sk=a&sd=' . (($sort_key == 'a' && $sort_dir == 'a') ? 'd' : 'a') . '&sg=' . ((int) $show_guests)),
ef5584
	'U_SORT_UPDATED'		=> append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sk=b&sd=' . (($sort_key == 'b' && $sort_dir == 'a') ? 'd' : 'a') . '&sg=' . ((int) $show_guests)),
ef5584
	'U_SORT_LOCATION'		=> append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sk=c&sd=' . (($sort_key == 'c' && $sort_dir == 'a') ? 'd' : 'a') . '&sg=' . ((int) $show_guests)),
ef5584
ef5584
	'U_SWITCH_GUEST_DISPLAY'	=> append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sg=' . ((int) !$show_guests)),
ef5584
	'L_SWITCH_GUEST_DISPLAY'	=> ($show_guests) ? $user->lang['HIDE_GUESTS'] : $user->lang['DISPLAY_GUESTS'],
ef5584
	'S_SWITCH_GUEST_DISPLAY'	=> ($config['load_online_guests']) ? true : false)
ef5584
);
ef5584
ef5584
// We do not need to load the who is online box here. ;)
ef5584
$config['load_online'] = false;
ef5584
ef5584
// Output the page
ef5584
page_header($user->lang['WHO_IS_ONLINE']);
ef5584
ef5584
$template->set_filenames(array(
ef5584
	'body' => 'viewonline_body.html')
ef5584
);
ef5584
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
ef5584
ef5584
page_footer();
ef5584
ef5584
?>