Blame Identity/Webenv/App/phpBB/3.0.4/includes/session.php

f2e824
f2e824
/**
f2e824
*
f2e824
* @package phpBB3
f2e824
* @version $Id: session.php 9170 2008-12-04 12:56:12Z toonarmy $
f2e824
* @copyright (c) 2005 phpBB Group
f2e824
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
f2e824
*
f2e824
*/
f2e824
f2e824
/**
f2e824
* @ignore
f2e824
*/
f2e824
if (!defined('IN_PHPBB'))
f2e824
{
f2e824
	exit;
f2e824
}
f2e824
f2e824
/**
f2e824
* Session class
f2e824
* @package phpBB3
f2e824
*/
f2e824
class session
f2e824
{
f2e824
	var $cookie_data = array();
f2e824
	var $page = array();
f2e824
	var $data = array();
f2e824
	var $browser = '';
f2e824
	var $forwarded_for = '';
f2e824
	var $host = '';
f2e824
	var $session_id = '';
f2e824
	var $ip = '';
f2e824
	var $load = 0;
f2e824
	var $time_now = 0;
f2e824
	var $update_session_page = true;
f2e824
f2e824
	/**
f2e824
	* Extract current session page
f2e824
	*
f2e824
	* @param string $root_path current root path (phpbb_root_path)
f2e824
	*/
f2e824
	function extract_current_page($root_path)
f2e824
	{
f2e824
		$page_array = array();
f2e824
f2e824
		// First of all, get the request uri...
f2e824
		$script_name = (!empty($_SERVER['PHP_SELF'])) ? $_SERVER['PHP_SELF'] : getenv('PHP_SELF');
f2e824
		$args = (!empty($_SERVER['QUERY_STRING'])) ? explode('&', $_SERVER['QUERY_STRING']) : explode('&', getenv('QUERY_STRING'));
f2e824
f2e824
		// If we are unable to get the script name we use REQUEST_URI as a failover and note it within the page array for easier support...
f2e824
		if (!$script_name)
f2e824
		{
f2e824
			$script_name = (!empty($_SERVER['REQUEST_URI'])) ? $_SERVER['REQUEST_URI'] : getenv('REQUEST_URI');
f2e824
			$script_name = (($pos = strpos($script_name, '?')) !== false) ? substr($script_name, 0, $pos) : $script_name;
f2e824
			$page_array['failover'] = 1;
f2e824
		}
f2e824
f2e824
		// Replace backslashes and doubled slashes (could happen on some proxy setups)
f2e824
		$script_name = str_replace(array('\\', '//'), '/', $script_name);
f2e824
f2e824
		// Now, remove the sid and let us get a clean query string...
f2e824
		$use_args = array();
f2e824
f2e824
		// Since some browser do not encode correctly we need to do this with some "special" characters...
f2e824
		// " -> %22, ' => %27, < -> %3C, > -> %3E
f2e824
		$find = array('"', "'", '<', '>');
f2e824
		$replace = array('%22', '%27', '%3C', '%3E');
f2e824
f2e824
		foreach ($args as $key => $argument)
f2e824
		{
f2e824
			if (strpos($argument, 'sid=') === 0)
f2e824
			{
f2e824
				continue;
f2e824
			}
f2e824
f2e824
			$use_args[] = str_replace($find, $replace, $argument);
f2e824
		}
f2e824
		unset($args);
f2e824
f2e824
		// The following examples given are for an request uri of {path to the phpbb directory}/adm/index.php?i=10&b=2
f2e824
f2e824
		// The current query string
f2e824
		$query_string = trim(implode('&', $use_args));
f2e824
f2e824
		// basenamed page name (for example: index.php)
f2e824
		$page_name = basename($script_name);
f2e824
		$page_name = urlencode(htmlspecialchars($page_name));
f2e824
f2e824
		// current directory within the phpBB root (for example: adm)
f2e824
		$root_dirs = explode('/', str_replace('\\', '/', phpbb_realpath($root_path)));
f2e824
		$page_dirs = explode('/', str_replace('\\', '/', phpbb_realpath('./')));
f2e824
		$intersection = array_intersect_assoc($root_dirs, $page_dirs);
f2e824
f2e824
		$root_dirs = array_diff_assoc($root_dirs, $intersection);
f2e824
		$page_dirs = array_diff_assoc($page_dirs, $intersection);
f2e824
f2e824
		$page_dir = str_repeat('../', sizeof($root_dirs)) . implode('/', $page_dirs);
f2e824
f2e824
		if ($page_dir && substr($page_dir, -1, 1) == '/')
f2e824
		{
f2e824
			$page_dir = substr($page_dir, 0, -1);
f2e824
		}
f2e824
f2e824
		// Current page from phpBB root (for example: adm/index.php?i=10&b=2)
f2e824
		$page = (($page_dir) ? $page_dir . '/' : '') . $page_name . (($query_string) ? "?$query_string" : '');
f2e824
f2e824
		// The script path from the webroot to the current directory (for example: /phpBB3/adm/) : always prefixed with / and ends in /
f2e824
		$script_path = trim(str_replace('\\', '/', dirname($script_name)));
f2e824
f2e824
		// The script path from the webroot to the phpBB root (for example: /phpBB3/)
f2e824
		$script_dirs = explode('/', $script_path);
f2e824
		array_splice($script_dirs, -sizeof($page_dirs));
f2e824
		$root_script_path = implode('/', $script_dirs) . (sizeof($root_dirs) ? '/' . implode('/', $root_dirs) : '');
f2e824
f2e824
		// We are on the base level (phpBB root == webroot), lets adjust the variables a bit...
f2e824
		if (!$root_script_path)
f2e824
		{
f2e824
			$root_script_path = ($page_dir) ? str_replace($page_dir, '', $script_path) : $script_path;
f2e824
		}
f2e824
f2e824
		$script_path .= (substr($script_path, -1, 1) == '/') ? '' : '/';
f2e824
		$root_script_path .= (substr($root_script_path, -1, 1) == '/') ? '' : '/';
f2e824
f2e824
		$page_array += array(
f2e824
			'page_name'			=> $page_name,
f2e824
			'page_dir'			=> $page_dir,
f2e824
f2e824
			'query_string'		=> $query_string,
f2e824
			'script_path'		=> str_replace(' ', '%20', htmlspecialchars($script_path)),
f2e824
			'root_script_path'	=> str_replace(' ', '%20', htmlspecialchars($root_script_path)),
f2e824
f2e824
			'page'				=> $page,
f2e824
			'forum'				=> (isset($_REQUEST['f']) && $_REQUEST['f'] > 0) ? (int) $_REQUEST['f'] : 0,
f2e824
		);
f2e824
f2e824
		return $page_array;
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Get valid hostname/port. HTTP_HOST is used, SERVER_NAME if HTTP_HOST not present.
f2e824
	*/
f2e824
	function extract_current_hostname()
f2e824
	{
f2e824
		global $config;
f2e824
f2e824
		// Get hostname
f2e824
		$host = (!empty($_SERVER['HTTP_HOST'])) ? $_SERVER['HTTP_HOST'] : ((!empty($_SERVER['SERVER_NAME'])) ? $_SERVER['SERVER_NAME'] : getenv('SERVER_NAME'));
f2e824
f2e824
		// Should be a string and lowered
f2e824
		$host = (string) strtolower($host);
f2e824
f2e824
		// If host is equal the cookie domain or the server name (if config is set), then we assume it is valid
f2e824
		if ((isset($config['cookie_domain']) && $host === $config['cookie_domain']) || (isset($config['server_name']) && $host === $config['server_name']))
f2e824
		{
f2e824
			return $host;
f2e824
		}
f2e824
f2e824
		// Is the host actually a IP? If so, we use the IP... (IPv4)
f2e824
		if (long2ip(ip2long($host)) === $host)
f2e824
		{
f2e824
			return $host;
f2e824
		}
f2e824
f2e824
		// Now return the hostname (this also removes any port definition). The http:// is prepended to construct a valid URL, hosts never have a scheme assigned
f2e824
		$host = @parse_url('http://' . $host);
f2e824
		$host = (!empty($host['host'])) ? $host['host'] : '';
f2e824
f2e824
		// Remove any portions not removed by parse_url (#)
f2e824
		$host = str_replace('#', '', $host);
f2e824
f2e824
		// If, by any means, the host is now empty, we will use a "best approach" way to guess one
f2e824
		if (empty($host))
f2e824
		{
f2e824
			if (!empty($config['server_name']))
f2e824
			{
f2e824
				$host = $config['server_name'];
f2e824
			}
f2e824
			else if (!empty($config['cookie_domain']))
f2e824
			{
f2e824
				$host = (strpos($config['cookie_domain'], '.') === 0) ? substr($config['cookie_domain'], 1) : $config['cookie_domain'];
f2e824
			}
f2e824
			else
f2e824
			{
f2e824
				// Set to OS hostname or localhost
f2e824
				$host = (function_exists('php_uname')) ? php_uname('n') : 'localhost';
f2e824
			}
f2e824
		}
f2e824
f2e824
		// It may be still no valid host, but for sure only a hostname (we may further expand on the cookie domain... if set)
f2e824
		return $host;
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Start session management
f2e824
	*
f2e824
	* This is where all session activity begins. We gather various pieces of
f2e824
	* information from the client and server. We test to see if a session already
f2e824
	* exists. If it does, fine and dandy. If it doesn't we'll go on to create a
f2e824
	* new one ... pretty logical heh? We also examine the system load (if we're
f2e824
	* running on a system which makes such information readily available) and
f2e824
	* halt if it's above an admin definable limit.
f2e824
	*
f2e824
	* @param bool $update_session_page if true the session page gets updated.
f2e824
	*			This can be set to circumvent certain scripts to update the users last visited page.
f2e824
	*/
f2e824
	function session_begin($update_session_page = true)
f2e824
	{
f2e824
		global $phpEx, $SID, $_SID, $_EXTRA_URL, $db, $config, $phpbb_root_path;
f2e824
f2e824
		// Give us some basic information
f2e824
		$this->time_now				= time();
f2e824
		$this->cookie_data			= array('u' => 0, 'k' => '');
f2e824
		$this->update_session_page	= $update_session_page;
f2e824
		$this->browser				= (!empty($_SERVER['HTTP_USER_AGENT'])) ? htmlspecialchars((string) $_SERVER['HTTP_USER_AGENT']) : '';
f2e824
		$this->referer				= (!empty($_SERVER['HTTP_REFERER'])) ? htmlspecialchars((string) $_SERVER['HTTP_REFERER']) : '';
f2e824
		$this->forwarded_for		= (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) ? (string) $_SERVER['HTTP_X_FORWARDED_FOR'] : '';
f2e824
f2e824
		$this->host					= $this->extract_current_hostname();
f2e824
		$this->page					= $this->extract_current_page($phpbb_root_path);
f2e824
f2e824
		// if the forwarded for header shall be checked we have to validate its contents
f2e824
		if ($config['forwarded_for_check'])
f2e824
		{
f2e824
			$this->forwarded_for = preg_replace('#, +#', ', ', $this->forwarded_for);
f2e824
f2e824
			// split the list of IPs
f2e824
			$ips = explode(', ', $this->forwarded_for);
f2e824
			foreach ($ips as $ip)
f2e824
			{
f2e824
				// check IPv4 first, the IPv6 is hopefully only going to be used very seldomly
f2e824
				if (!empty($ip) && !preg_match(get_preg_expression('ipv4'), $ip) && !preg_match(get_preg_expression('ipv6'), $ip))
f2e824
				{
f2e824
					// contains invalid data, don't use the forwarded for header
f2e824
					$this->forwarded_for = '';
f2e824
					break;
f2e824
				}
f2e824
			}
f2e824
		}
f2e824
		else
f2e824
		{
f2e824
			$this->forwarded_for = '';
f2e824
		}
f2e824
f2e824
		if (isset($_COOKIE[$config['cookie_name'] . '_sid']) || isset($_COOKIE[$config['cookie_name'] . '_u']))
f2e824
		{
f2e824
			$this->cookie_data['u'] = request_var($config['cookie_name'] . '_u', 0, false, true);
f2e824
			$this->cookie_data['k'] = request_var($config['cookie_name'] . '_k', '', false, true);
f2e824
			$this->session_id 		= request_var($config['cookie_name'] . '_sid', '', false, true);
f2e824
f2e824
			$SID = (defined('NEED_SID')) ? '?sid=' . $this->session_id : '?sid=';
f2e824
			$_SID = (defined('NEED_SID')) ? $this->session_id : '';
f2e824
f2e824
			if (empty($this->session_id))
f2e824
			{
f2e824
				$this->session_id = $_SID = request_var('sid', '');
f2e824
				$SID = '?sid=' . $this->session_id;
f2e824
				$this->cookie_data = array('u' => 0, 'k' => '');
f2e824
			}
f2e824
		}
f2e824
		else
f2e824
		{
f2e824
			$this->session_id = $_SID = request_var('sid', '');
f2e824
			$SID = '?sid=' . $this->session_id;
f2e824
		}
f2e824
f2e824
		$_EXTRA_URL = array();
f2e824
f2e824
		// Why no forwarded_for et al? Well, too easily spoofed. With the results of my recent requests
f2e824
		// it's pretty clear that in the majority of cases you'll at least be left with a proxy/cache ip.
f2e824
		$this->ip = (!empty($_SERVER['REMOTE_ADDR'])) ? htmlspecialchars($_SERVER['REMOTE_ADDR']) : '';
f2e824
		$this->load = false;
f2e824
f2e824
		// Load limit check (if applicable)
f2e824
		if ($config['limit_load'] || $config['limit_search_load'])
f2e824
		{
f2e824
			if ((function_exists('sys_getloadavg') && $load = sys_getloadavg()) || ($load = explode(' ', @file_get_contents('/proc/loadavg'))))
f2e824
			{
f2e824
				$this->load = array_slice($load, 0, 1);
f2e824
				$this->load = floatval($this->load[0]);
f2e824
			}
f2e824
			else
f2e824
			{
f2e824
				set_config('limit_load', '0');
f2e824
				set_config('limit_search_load', '0');
f2e824
			}
f2e824
		}
f2e824
f2e824
		// Is session_id is set or session_id is set and matches the url param if required
f2e824
		if (!empty($this->session_id) && (!defined('NEED_SID') || (isset($_GET['sid']) && $this->session_id === $_GET['sid'])))
f2e824
		{
f2e824
			$sql = 'SELECT u.*, s.*
f2e824
				FROM ' . SESSIONS_TABLE . ' s, ' . USERS_TABLE . " u
f2e824
				WHERE s.session_id = '" . $db->sql_escape($this->session_id) . "'
f2e824
					AND u.user_id = s.session_user_id";
f2e824
			$result = $db->sql_query($sql);
f2e824
			$this->data = $db->sql_fetchrow($result);
f2e824
			$db->sql_freeresult($result);
f2e824
f2e824
			// Did the session exist in the DB?
f2e824
			if (isset($this->data['user_id']))
f2e824
			{
f2e824
				// Validate IP length according to admin ... enforces an IP
f2e824
				// check on bots if admin requires this
f2e824
//				$quadcheck = ($config['ip_check_bot'] && $this->data['user_type'] & USER_BOT) ? 4 : $config['ip_check'];
f2e824
f2e824
				if (strpos($this->ip, ':') !== false && strpos($this->data['session_ip'], ':') !== false)
f2e824
				{
f2e824
					$s_ip = short_ipv6($this->data['session_ip'], $config['ip_check']);
f2e824
					$u_ip = short_ipv6($this->ip, $config['ip_check']);
f2e824
				}
f2e824
				else
f2e824
				{
f2e824
					$s_ip = implode('.', array_slice(explode('.', $this->data['session_ip']), 0, $config['ip_check']));
f2e824
					$u_ip = implode('.', array_slice(explode('.', $this->ip), 0, $config['ip_check']));
f2e824
				}
f2e824
f2e824
				$s_browser = ($config['browser_check']) ? trim(strtolower(substr($this->data['session_browser'], 0, 149))) : '';
f2e824
				$u_browser = ($config['browser_check']) ? trim(strtolower(substr($this->browser, 0, 149))) : '';
f2e824
f2e824
				$s_forwarded_for = ($config['forwarded_for_check']) ? substr($this->data['session_forwarded_for'], 0, 254) : '';
f2e824
				$u_forwarded_for = ($config['forwarded_for_check']) ? substr($this->forwarded_for, 0, 254) : '';
f2e824
f2e824
				// referer checks
f2e824
				// The @ before $config['referer_validation'] suppresses notices present while running the updater
f2e824
				$check_referer_path = (@$config['referer_validation'] == REFERER_VALIDATE_PATH);
f2e824
				$referer_valid = true;
f2e824
f2e824
				// we assume HEAD and TRACE to be foul play and thus only whitelist GET
f2e824
				if (@$config['referer_validation'] && isset($_SERVER['REQUEST_METHOD']) && strtolower($_SERVER['REQUEST_METHOD']) !== 'get')
f2e824
				{
f2e824
					$referer_valid = $this->validate_referer($check_referer_path);
f2e824
				}
f2e824
f2e824
				if ($u_ip === $s_ip && $s_browser === $u_browser && $s_forwarded_for === $u_forwarded_for && $referer_valid)
f2e824
				{
f2e824
					$session_expired = false;
f2e824
f2e824
					// Check whether the session is still valid if we have one
f2e824
					$method = basename(trim($config['auth_method']));
f2e824
					include_once($phpbb_root_path . 'includes/auth/auth_' . $method . '.' . $phpEx);
f2e824
f2e824
					$method = 'validate_session_' . $method;
f2e824
					if (function_exists($method))
f2e824
					{
f2e824
						if (!$method($this->data))
f2e824
						{
f2e824
							$session_expired = true;
f2e824
						}
f2e824
					}
f2e824
f2e824
					if (!$session_expired)
f2e824
					{
f2e824
						// Check the session length timeframe if autologin is not enabled.
f2e824
						// Else check the autologin length... and also removing those having autologin enabled but no longer allowed board-wide.
f2e824
						if (!$this->data['session_autologin'])
f2e824
						{
f2e824
							if ($this->data['session_time'] < $this->time_now - ($config['session_length'] + 60))
f2e824
							{
f2e824
								$session_expired = true;
f2e824
							}
f2e824
						}
f2e824
						else if (!$config['allow_autologin'] || ($config['max_autologin_time'] && $this->data['session_time'] < $this->time_now - (86400 * (int) $config['max_autologin_time']) + 60))
f2e824
						{
f2e824
							$session_expired = true;
f2e824
						}
f2e824
					}
f2e824
f2e824
					if (!$session_expired)
f2e824
					{
f2e824
						// Only update session DB a minute or so after last update or if page changes
f2e824
						if ($this->time_now - $this->data['session_time'] > 60 || ($this->update_session_page && $this->data['session_page'] != $this->page['page']))
f2e824
						{
f2e824
							$sql_ary = array('session_time' => $this->time_now);
f2e824
f2e824
							if ($this->update_session_page)
f2e824
							{
f2e824
								$sql_ary['session_page'] = substr($this->page['page'], 0, 199);
f2e824
								$sql_ary['session_forum_id'] = $this->page['forum'];
f2e824
							}
f2e824
f2e824
							$db->sql_return_on_error(true);
f2e824
f2e824
							$sql = 'UPDATE ' . SESSIONS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . "
f2e824
								WHERE session_id = '" . $db->sql_escape($this->session_id) . "'";
f2e824
							$result = $db->sql_query($sql);
f2e824
f2e824
							$db->sql_return_on_error(false);
f2e824
f2e824
							// If the database is not yet updated, there will be an error due to the session_forum_id
f2e824
							// @todo REMOVE for 3.0.2
f2e824
							if ($result === false)
f2e824
							{
f2e824
								unset($sql_ary['session_forum_id']);
f2e824
f2e824
								$sql = 'UPDATE ' . SESSIONS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . "
f2e824
									WHERE session_id = '" . $db->sql_escape($this->session_id) . "'";
f2e824
								$db->sql_query($sql);
f2e824
							}
f2e824
						}
f2e824
f2e824
						$this->data['is_registered'] = ($this->data['user_id'] != ANONYMOUS && ($this->data['user_type'] == USER_NORMAL || $this->data['user_type'] == USER_FOUNDER)) ? true : false;
f2e824
						$this->data['is_bot'] = (!$this->data['is_registered'] && $this->data['user_id'] != ANONYMOUS) ? true : false;
f2e824
						$this->data['user_lang'] = basename($this->data['user_lang']);
f2e824
f2e824
						return true;
f2e824
					}
f2e824
				}
f2e824
				else
f2e824
				{
f2e824
					// Added logging temporarly to help debug bugs...
f2e824
					if (defined('DEBUG_EXTRA') && $this->data['user_id'] != ANONYMOUS)
f2e824
					{
f2e824
						if ($referer_valid)
f2e824
						{
f2e824
							add_log('critical', 'LOG_IP_BROWSER_FORWARDED_CHECK', $u_ip, $s_ip, $u_browser, $s_browser, htmlspecialchars($u_forwarded_for), htmlspecialchars($s_forwarded_for));
f2e824
						}
f2e824
						else
f2e824
						{
f2e824
							add_log('critical', 'LOG_REFERER_INVALID', $this->referer);
f2e824
						}
f2e824
					}
f2e824
				}
f2e824
			}
f2e824
		}
f2e824
f2e824
		// If we reach here then no (valid) session exists. So we'll create a new one
f2e824
		return $this->session_create();
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Create a new session
f2e824
	*
f2e824
	* If upon trying to start a session we discover there is nothing existing we
f2e824
	* jump here. Additionally this method is called directly during login to regenerate
f2e824
	* the session for the specific user. In this method we carry out a number of tasks;
f2e824
	* garbage collection, (search)bot checking, banned user comparison. Basically
f2e824
	* though this method will result in a new session for a specific user.
f2e824
	*/
f2e824
	function session_create($user_id = false, $set_admin = false, $persist_login = false, $viewonline = true)
f2e824
	{
f2e824
		global $SID, $_SID, $db, $config, $cache, $phpbb_root_path, $phpEx;
f2e824
f2e824
		$this->data = array();
f2e824
f2e824
		/* Garbage collection ... remove old sessions updating user information
f2e824
		// if necessary. It means (potentially) 11 queries but only infrequently
f2e824
		if ($this->time_now > $config['session_last_gc'] + $config['session_gc'])
f2e824
		{
f2e824
			$this->session_gc();
f2e824
		}*/
f2e824
f2e824
		// Do we allow autologin on this board? No? Then override anything
f2e824
		// that may be requested here
f2e824
		if (!$config['allow_autologin'])
f2e824
		{
f2e824
			$this->cookie_data['k'] = $persist_login = false;
f2e824
		}
f2e824
f2e824
		/**
f2e824
		* Here we do a bot check, oh er saucy! No, not that kind of bot
f2e824
		* check. We loop through the list of bots defined by the admin and
f2e824
		* see if we have any useragent and/or IP matches. If we do, this is a
f2e824
		* bot, act accordingly
f2e824
		*/
f2e824
		$bot = false;
f2e824
		$active_bots = $cache->obtain_bots();
f2e824
f2e824
		foreach ($active_bots as $row)
f2e824
		{
f2e824
			if ($row['bot_agent'] && preg_match('#' . str_replace('\*', '.*?', preg_quote($row['bot_agent'], '#')) . '#i', $this->browser))
f2e824
			{
f2e824
				$bot = $row['user_id'];
f2e824
			}
f2e824
f2e824
			// If ip is supplied, we will make sure the ip is matching too...
f2e824
			if ($row['bot_ip'] && ($bot || !$row['bot_agent']))
f2e824
			{
f2e824
				// Set bot to false, then we only have to set it to true if it is matching
f2e824
				$bot = false;
f2e824
f2e824
				foreach (explode(',', $row['bot_ip']) as $bot_ip)
f2e824
				{
f2e824
					if (strpos($this->ip, $bot_ip) === 0)
f2e824
					{
f2e824
						$bot = (int) $row['user_id'];
f2e824
						break;
f2e824
					}
f2e824
				}
f2e824
			}
f2e824
f2e824
			if ($bot)
f2e824
			{
f2e824
				break;
f2e824
			}
f2e824
		}
f2e824
f2e824
		$method = basename(trim($config['auth_method']));
f2e824
		include_once($phpbb_root_path . 'includes/auth/auth_' . $method . '.' . $phpEx);
f2e824
f2e824
		$method = 'autologin_' . $method;
f2e824
		if (function_exists($method))
f2e824
		{
f2e824
			$this->data = $method();
f2e824
f2e824
			if (sizeof($this->data))
f2e824
			{
f2e824
				$this->cookie_data['k'] = '';
f2e824
				$this->cookie_data['u'] = $this->data['user_id'];
f2e824
			}
f2e824
		}
f2e824
f2e824
		// If we're presented with an autologin key we'll join against it.
f2e824
		// Else if we've been passed a user_id we'll grab data based on that
f2e824
		if (isset($this->cookie_data['k']) && $this->cookie_data['k'] && $this->cookie_data['u'] && !sizeof($this->data))
f2e824
		{
f2e824
			$sql = 'SELECT u.*
f2e824
				FROM ' . USERS_TABLE . ' u, ' . SESSIONS_KEYS_TABLE . ' k
f2e824
				WHERE u.user_id = ' . (int) $this->cookie_data['u'] . '
f2e824
					AND u.user_type IN (' . USER_NORMAL . ', ' . USER_FOUNDER . ")
f2e824
					AND k.user_id = u.user_id
f2e824
					AND k.key_id = '" . $db->sql_escape(md5($this->cookie_data['k'])) . "'";
f2e824
			$result = $db->sql_query($sql);
f2e824
			$this->data = $db->sql_fetchrow($result);
f2e824
			$db->sql_freeresult($result);
f2e824
			$bot = false;
f2e824
		}
f2e824
		else if ($user_id !== false && !sizeof($this->data))
f2e824
		{
f2e824
			$this->cookie_data['k'] = '';
f2e824
			$this->cookie_data['u'] = $user_id;
f2e824
f2e824
			$sql = 'SELECT *
f2e824
				FROM ' . USERS_TABLE . '
f2e824
				WHERE user_id = ' . (int) $this->cookie_data['u'] . '
f2e824
					AND user_type IN (' . USER_NORMAL . ', ' . USER_FOUNDER . ')';
f2e824
			$result = $db->sql_query($sql);
f2e824
			$this->data = $db->sql_fetchrow($result);
f2e824
			$db->sql_freeresult($result);
f2e824
			$bot = false;
f2e824
		}
f2e824
f2e824
		// If no data was returned one or more of the following occurred:
f2e824
		// Key didn't match one in the DB
f2e824
		// User does not exist
f2e824
		// User is inactive
f2e824
		// User is bot
f2e824
		if (!sizeof($this->data) || !is_array($this->data))
f2e824
		{
f2e824
			$this->cookie_data['k'] = '';
f2e824
			$this->cookie_data['u'] = ($bot) ? $bot : ANONYMOUS;
f2e824
f2e824
			if (!$bot)
f2e824
			{
f2e824
				$sql = 'SELECT *
f2e824
					FROM ' . USERS_TABLE . '
f2e824
					WHERE user_id = ' . (int) $this->cookie_data['u'];
f2e824
			}
f2e824
			else
f2e824
			{
f2e824
				// We give bots always the same session if it is not yet expired.
f2e824
				$sql = 'SELECT u.*, s.*
f2e824
					FROM ' . USERS_TABLE . ' u
f2e824
					LEFT JOIN ' . SESSIONS_TABLE . ' s ON (s.session_user_id = u.user_id)
f2e824
					WHERE u.user_id = ' . (int) $bot;
f2e824
			}
f2e824
f2e824
			$result = $db->sql_query($sql);
f2e824
			$this->data = $db->sql_fetchrow($result);
f2e824
			$db->sql_freeresult($result);
f2e824
		}
f2e824
f2e824
		if ($this->data['user_id'] != ANONYMOUS && !$bot)
f2e824
		{
f2e824
			$this->data['session_last_visit'] = (isset($this->data['session_time']) && $this->data['session_time']) ? $this->data['session_time'] : (($this->data['user_lastvisit']) ? $this->data['user_lastvisit'] : time());
f2e824
		}
f2e824
		else
f2e824
		{
f2e824
			$this->data['session_last_visit'] = $this->time_now;
f2e824
		}
f2e824
f2e824
		// Force user id to be integer...
f2e824
		$this->data['user_id'] = (int) $this->data['user_id'];
f2e824
f2e824
		// At this stage we should have a filled data array, defined cookie u and k data.
f2e824
		// data array should contain recent session info if we're a real user and a recent
f2e824
		// session exists in which case session_id will also be set
f2e824
f2e824
		// Is user banned? Are they excluded? Won't return on ban, exists within method
f2e824
		if ($this->data['user_type'] != USER_FOUNDER)
f2e824
		{
f2e824
			if (!$config['forwarded_for_check'])
f2e824
			{
f2e824
				$this->check_ban($this->data['user_id'], $this->ip);
f2e824
			}
f2e824
			else
f2e824
			{
f2e824
				$ips = explode(', ', $this->forwarded_for);
f2e824
				$ips[] = $this->ip;
f2e824
				$this->check_ban($this->data['user_id'], $ips);
f2e824
			}
f2e824
		}
f2e824
f2e824
		$this->data['is_registered'] = (!$bot && $this->data['user_id'] != ANONYMOUS && ($this->data['user_type'] == USER_NORMAL || $this->data['user_type'] == USER_FOUNDER)) ? true : false;
f2e824
		$this->data['is_bot'] = ($bot) ? true : false;
f2e824
f2e824
		// If our friend is a bot, we re-assign a previously assigned session
f2e824
		if ($this->data['is_bot'] && $bot == $this->data['user_id'] && $this->data['session_id'])
f2e824
		{
f2e824
			// Only assign the current session if the ip, browser and forwarded_for match...
f2e824
			if (strpos($this->ip, ':') !== false && strpos($this->data['session_ip'], ':') !== false)
f2e824
			{
f2e824
				$s_ip = short_ipv6($this->data['session_ip'], $config['ip_check']);
f2e824
				$u_ip = short_ipv6($this->ip, $config['ip_check']);
f2e824
			}
f2e824
			else
f2e824
			{
f2e824
				$s_ip = implode('.', array_slice(explode('.', $this->data['session_ip']), 0, $config['ip_check']));
f2e824
				$u_ip = implode('.', array_slice(explode('.', $this->ip), 0, $config['ip_check']));
f2e824
			}
f2e824
f2e824
			$s_browser = ($config['browser_check']) ? trim(strtolower(substr($this->data['session_browser'], 0, 149))) : '';
f2e824
			$u_browser = ($config['browser_check']) ? trim(strtolower(substr($this->browser, 0, 149))) : '';
f2e824
f2e824
			$s_forwarded_for = ($config['forwarded_for_check']) ? substr($this->data['session_forwarded_for'], 0, 254) : '';
f2e824
			$u_forwarded_for = ($config['forwarded_for_check']) ? substr($this->forwarded_for, 0, 254) : '';
f2e824
f2e824
			if ($u_ip === $s_ip && $s_browser === $u_browser && $s_forwarded_for === $u_forwarded_for)
f2e824
			{
f2e824
				$this->session_id = $this->data['session_id'];
f2e824
f2e824
				// Only update session DB a minute or so after last update or if page changes
f2e824
				if ($this->time_now - $this->data['session_time'] > 60 || ($this->update_session_page && $this->data['session_page'] != $this->page['page']))
f2e824
				{
f2e824
					$this->data['session_time'] = $this->data['session_last_visit'] = $this->time_now;
f2e824
f2e824
					$sql_ary = array('session_time' => $this->time_now, 'session_last_visit' => $this->time_now, 'session_admin' => 0);
f2e824
f2e824
					if ($this->update_session_page)
f2e824
					{
f2e824
						$sql_ary['session_page'] = substr($this->page['page'], 0, 199);
f2e824
						$sql_ary['session_forum_id'] = $this->page['forum'];
f2e824
					}
f2e824
f2e824
					$sql = 'UPDATE ' . SESSIONS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . "
f2e824
						WHERE session_id = '" . $db->sql_escape($this->session_id) . "'";
f2e824
					$db->sql_query($sql);
f2e824
f2e824
					// Update the last visit time
f2e824
					$sql = 'UPDATE ' . USERS_TABLE . '
f2e824
						SET user_lastvisit = ' . (int) $this->data['session_time'] . '
f2e824
						WHERE user_id = ' . (int) $this->data['user_id'];
f2e824
					$db->sql_query($sql);
f2e824
				}
f2e824
f2e824
				$SID = '?sid=';
f2e824
				$_SID = '';
f2e824
				return true;
f2e824
			}
f2e824
			else
f2e824
			{
f2e824
				// If the ip and browser does not match make sure we only have one bot assigned to one session
f2e824
				$db->sql_query('DELETE FROM ' . SESSIONS_TABLE . ' WHERE session_user_id = ' . $this->data['user_id']);
f2e824
			}
f2e824
		}
f2e824
f2e824
		$session_autologin = (($this->cookie_data['k'] || $persist_login) && $this->data['is_registered']) ? true : false;
f2e824
		$set_admin = ($set_admin && $this->data['is_registered']) ? true : false;
f2e824
f2e824
		// Create or update the session
f2e824
		$sql_ary = array(
f2e824
			'session_user_id'		=> (int) $this->data['user_id'],
f2e824
			'session_start'			=> (int) $this->time_now,
f2e824
			'session_last_visit'	=> (int) $this->data['session_last_visit'],
f2e824
			'session_time'			=> (int) $this->time_now,
f2e824
			'session_browser'		=> (string) trim(substr($this->browser, 0, 149)),
f2e824
			'session_forwarded_for'	=> (string) $this->forwarded_for,
f2e824
			'session_ip'			=> (string) $this->ip,
f2e824
			'session_autologin'		=> ($session_autologin) ? 1 : 0,
f2e824
			'session_admin'			=> ($set_admin) ? 1 : 0,
f2e824
			'session_viewonline'	=> ($viewonline) ? 1 : 0,
f2e824
		);
f2e824
f2e824
		if ($this->update_session_page)
f2e824
		{
f2e824
			$sql_ary['session_page'] = (string) substr($this->page['page'], 0, 199);
f2e824
			$sql_ary['session_forum_id'] = $this->page['forum'];
f2e824
		}
f2e824
f2e824
		$db->sql_return_on_error(true);
f2e824
f2e824
		$sql = 'DELETE
f2e824
			FROM ' . SESSIONS_TABLE . '
f2e824
			WHERE session_id = \'' . $db->sql_escape($this->session_id) . '\'
f2e824
				AND session_user_id = ' . ANONYMOUS;
f2e824
f2e824
		if (!defined('IN_ERROR_HANDLER') && (!$this->session_id || !$db->sql_query($sql) || !$db->sql_affectedrows()))
f2e824
		{
f2e824
			// Limit new sessions in 1 minute period (if required)
f2e824
			if (empty($this->data['session_time']) && $config['active_sessions'])
f2e824
			{
f2e824
//				$db->sql_return_on_error(false);
f2e824
f2e824
				$sql = 'SELECT COUNT(session_id) AS sessions
f2e824
					FROM ' . SESSIONS_TABLE . '
f2e824
					WHERE session_time >= ' . ($this->time_now - 60);
f2e824
				$result = $db->sql_query($sql);
f2e824
				$row = $db->sql_fetchrow($result);
f2e824
				$db->sql_freeresult($result);
f2e824
f2e824
				if ((int) $row['sessions'] > (int) $config['active_sessions'])
f2e824
				{
f2e824
					header('HTTP/1.1 503 Service Unavailable');
f2e824
					trigger_error('BOARD_UNAVAILABLE');
f2e824
				}
f2e824
			}
f2e824
		}
f2e824
f2e824
		// Since we re-create the session id here, the inserted row must be unique. Therefore, we display potential errors.
f2e824
		// Commented out because it will not allow forums to update correctly
f2e824
//		$db->sql_return_on_error(false);
f2e824
f2e824
		$this->session_id = $this->data['session_id'] = md5(unique_id());
f2e824
f2e824
		$sql_ary['session_id'] = (string) $this->session_id;
f2e824
		$sql_ary['session_page'] = (string) substr($this->page['page'], 0, 199);
f2e824
		$sql_ary['session_forum_id'] = $this->page['forum'];
f2e824
f2e824
		$sql = 'INSERT INTO ' . SESSIONS_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary);
f2e824
		$db->sql_query($sql);
f2e824
f2e824
		$db->sql_return_on_error(false);
f2e824
f2e824
		// Regenerate autologin/persistent login key
f2e824
		if ($session_autologin)
f2e824
		{
f2e824
			$this->set_login_key();
f2e824
		}
f2e824
f2e824
		// refresh data
f2e824
		$SID = '?sid=' . $this->session_id;
f2e824
		$_SID = $this->session_id;
f2e824
		$this->data = array_merge($this->data, $sql_ary);
f2e824
f2e824
		if (!$bot)
f2e824
		{
f2e824
			$cookie_expire = $this->time_now + (($config['max_autologin_time']) ? 86400 * (int) $config['max_autologin_time'] : 31536000);
f2e824
f2e824
			$this->set_cookie('u', $this->cookie_data['u'], $cookie_expire);
f2e824
			$this->set_cookie('k', $this->cookie_data['k'], $cookie_expire);
f2e824
			$this->set_cookie('sid', $this->session_id, $cookie_expire);
f2e824
f2e824
			unset($cookie_expire);
f2e824
f2e824
			$sql = 'SELECT COUNT(session_id) AS sessions
f2e824
					FROM ' . SESSIONS_TABLE . '
f2e824
					WHERE session_user_id = ' . (int) $this->data['user_id'] . '
f2e824
					AND session_time >= ' . (int) ($this->time_now - (max($config['session_length'], $config['form_token_lifetime'])));
f2e824
			$result = $db->sql_query($sql);
f2e824
			$row = $db->sql_fetchrow($result);
f2e824
			$db->sql_freeresult($result);
f2e824
f2e824
			if ((int) $row['sessions'] <= 1 || empty($this->data['user_form_salt']))
f2e824
			{
f2e824
				$this->data['user_form_salt'] = unique_id();
f2e824
				// Update the form key
f2e824
				$sql = 'UPDATE ' . USERS_TABLE . '
f2e824
					SET user_form_salt = \'' . $db->sql_escape($this->data['user_form_salt']) . '\'
f2e824
					WHERE user_id = ' . (int) $this->data['user_id'];
f2e824
				$db->sql_query($sql);
f2e824
			}
f2e824
		}
f2e824
		else
f2e824
		{
f2e824
			$this->data['session_time'] = $this->data['session_last_visit'] = $this->time_now;
f2e824
f2e824
			// Update the last visit time
f2e824
			$sql = 'UPDATE ' . USERS_TABLE . '
f2e824
				SET user_lastvisit = ' . (int) $this->data['session_time'] . '
f2e824
				WHERE user_id = ' . (int) $this->data['user_id'];
f2e824
			$db->sql_query($sql);
f2e824
f2e824
			$SID = '?sid=';
f2e824
			$_SID = '';
f2e824
		}
f2e824
f2e824
		return true;
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Kills a session
f2e824
	*
f2e824
	* This method does what it says on the tin. It will delete a pre-existing session.
f2e824
	* It resets cookie information (destroying any autologin key within that cookie data)
f2e824
	* and update the users information from the relevant session data. It will then
f2e824
	* grab guest user information.
f2e824
	*/
f2e824
	function session_kill($new_session = true)
f2e824
	{
f2e824
		global $SID, $_SID, $db, $config, $phpbb_root_path, $phpEx;
f2e824
f2e824
		$sql = 'DELETE FROM ' . SESSIONS_TABLE . "
f2e824
			WHERE session_id = '" . $db->sql_escape($this->session_id) . "'
f2e824
				AND session_user_id = " . (int) $this->data['user_id'];
f2e824
		$db->sql_query($sql);
f2e824
f2e824
		// Allow connecting logout with external auth method logout
f2e824
		$method = basename(trim($config['auth_method']));
f2e824
		include_once($phpbb_root_path . 'includes/auth/auth_' . $method . '.' . $phpEx);
f2e824
f2e824
		$method = 'logout_' . $method;
f2e824
		if (function_exists($method))
f2e824
		{
f2e824
			$method($this->data, $new_session);
f2e824
		}
f2e824
f2e824
		if ($this->data['user_id'] != ANONYMOUS)
f2e824
		{
f2e824
			// Delete existing session, update last visit info first!
f2e824
			if (!isset($this->data['session_time']))
f2e824
			{
f2e824
				$this->data['session_time'] = time();
f2e824
			}
f2e824
f2e824
			$sql = 'UPDATE ' . USERS_TABLE . '
f2e824
				SET user_lastvisit = ' . (int) $this->data['session_time'] . '
f2e824
				WHERE user_id = ' . (int) $this->data['user_id'];
f2e824
			$db->sql_query($sql);
f2e824
f2e824
			if ($this->cookie_data['k'])
f2e824
			{
f2e824
				$sql = 'DELETE FROM ' . SESSIONS_KEYS_TABLE . '
f2e824
					WHERE user_id = ' . (int) $this->data['user_id'] . "
f2e824
						AND key_id = '" . $db->sql_escape(md5($this->cookie_data['k'])) . "'";
f2e824
				$db->sql_query($sql);
f2e824
			}
f2e824
f2e824
			// Reset the data array
f2e824
			$this->data = array();
f2e824
f2e824
			$sql = 'SELECT *
f2e824
				FROM ' . USERS_TABLE . '
f2e824
				WHERE user_id = ' . ANONYMOUS;
f2e824
			$result = $db->sql_query($sql);
f2e824
			$this->data = $db->sql_fetchrow($result);
f2e824
			$db->sql_freeresult($result);
f2e824
		}
f2e824
f2e824
		$cookie_expire = $this->time_now - 31536000;
f2e824
		$this->set_cookie('u', '', $cookie_expire);
f2e824
		$this->set_cookie('k', '', $cookie_expire);
f2e824
		$this->set_cookie('sid', '', $cookie_expire);
f2e824
		unset($cookie_expire);
f2e824
f2e824
		$SID = '?sid=';
f2e824
		$this->session_id = $_SID = '';
f2e824
f2e824
		// To make sure a valid session is created we create one for the anonymous user
f2e824
		if ($new_session)
f2e824
		{
f2e824
			$this->session_create(ANONYMOUS);
f2e824
		}
f2e824
f2e824
		return true;
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Session garbage collection
f2e824
	*
f2e824
	* This looks a lot more complex than it really is. Effectively we are
f2e824
	* deleting any sessions older than an admin definable limit. Due to the
f2e824
	* way in which we maintain session data we have to ensure we update user
f2e824
	* data before those sessions are destroyed. In addition this method
f2e824
	* removes autologin key information that is older than an admin defined
f2e824
	* limit.
f2e824
	*/
f2e824
	function session_gc()
f2e824
	{
f2e824
		global $db, $config;
f2e824
f2e824
		$batch_size = 10;
f2e824
f2e824
		if (!$this->time_now)
f2e824
		{
f2e824
			$this->time_now = time();
f2e824
		}
f2e824
f2e824
		// Firstly, delete guest sessions
f2e824
		$sql = 'DELETE FROM ' . SESSIONS_TABLE . '
f2e824
			WHERE session_user_id = ' . ANONYMOUS . '
f2e824
				AND session_time < ' . (int) ($this->time_now - $config['session_length']);
f2e824
		$db->sql_query($sql);
f2e824
f2e824
		// Get expired sessions, only most recent for each user
f2e824
		$sql = 'SELECT session_user_id, session_page, MAX(session_time) AS recent_time
f2e824
			FROM ' . SESSIONS_TABLE . '
f2e824
			WHERE session_time < ' . ($this->time_now - $config['session_length']) . '
f2e824
			GROUP BY session_user_id, session_page';
f2e824
		$result = $db->sql_query_limit($sql, $batch_size);
f2e824
f2e824
		$del_user_id = array();
f2e824
		$del_sessions = 0;
f2e824
f2e824
		while ($row = $db->sql_fetchrow($result))
f2e824
		{
f2e824
			$sql = 'UPDATE ' . USERS_TABLE . '
f2e824
				SET user_lastvisit = ' . (int) $row['recent_time'] . ", user_lastpage = '" . $db->sql_escape($row['session_page']) . "'
f2e824
				WHERE user_id = " . (int) $row['session_user_id'];
f2e824
			$db->sql_query($sql);
f2e824
f2e824
			$del_user_id[] = (int) $row['session_user_id'];
f2e824
			$del_sessions++;
f2e824
		}
f2e824
		$db->sql_freeresult($result);
f2e824
f2e824
		if (sizeof($del_user_id))
f2e824
		{
f2e824
			// Delete expired sessions
f2e824
			$sql = 'DELETE FROM ' . SESSIONS_TABLE . '
f2e824
				WHERE ' . $db->sql_in_set('session_user_id', $del_user_id) . '
f2e824
					AND session_time < ' . ($this->time_now - $config['session_length']);
f2e824
			$db->sql_query($sql);
f2e824
		}
f2e824
f2e824
		if ($del_sessions < $batch_size)
f2e824
		{
f2e824
			// Less than 10 users, update gc timer ... else we want gc
f2e824
			// called again to delete other sessions
f2e824
			set_config('session_last_gc', $this->time_now, true);
f2e824
f2e824
			if ($config['max_autologin_time'])
f2e824
			{
f2e824
				$sql = 'DELETE FROM ' . SESSIONS_KEYS_TABLE . '
f2e824
					WHERE last_login < ' . (time() - (86400 * (int) $config['max_autologin_time']));
f2e824
				$db->sql_query($sql);
f2e824
			}
f2e824
			$this->confirm_gc();
f2e824
		}
f2e824
f2e824
		return;
f2e824
	}
f2e824
f2e824
	function confirm_gc($type = 0)
f2e824
	{
f2e824
		global $db, $config;
f2e824
f2e824
		$sql = 'SELECT DISTINCT c.session_id
f2e824
				FROM ' . CONFIRM_TABLE . ' c
f2e824
				LEFT JOIN ' . SESSIONS_TABLE . ' s ON (c.session_id = s.session_id)
f2e824
				WHERE s.session_id IS NULL' .
f2e824
					((empty($type)) ? '' : ' AND c.confirm_type = ' . (int) $type);
f2e824
		$result = $db->sql_query($sql);
f2e824
f2e824
		if ($row = $db->sql_fetchrow($result))
f2e824
		{
f2e824
			$sql_in = array();
f2e824
			do
f2e824
			{
f2e824
				$sql_in[] = (string) $row['session_id'];
f2e824
			}
f2e824
			while ($row = $db->sql_fetchrow($result));
f2e824
f2e824
			if (sizeof($sql_in))
f2e824
			{
f2e824
				$sql = 'DELETE FROM ' . CONFIRM_TABLE . '
f2e824
					WHERE ' . $db->sql_in_set('session_id', $sql_in);
f2e824
				$db->sql_query($sql);
f2e824
			}
f2e824
		}
f2e824
		$db->sql_freeresult($result);
f2e824
	}
f2e824
f2e824
f2e824
	/**
f2e824
	* Sets a cookie
f2e824
	*
f2e824
	* Sets a cookie of the given name with the specified data for the given length of time. If no time is specified, a session cookie will be set.
f2e824
	*
f2e824
	* @param string $name		Name of the cookie, will be automatically prefixed with the phpBB cookie name. track becomes [cookie_name]_track then.
f2e824
	* @param string $cookiedata	The data to hold within the cookie
f2e824
	* @param int $cookietime	The expiration time as UNIX timestamp. If 0 is provided, a session cookie is set.
f2e824
	*/
f2e824
	function set_cookie($name, $cookiedata, $cookietime)
f2e824
	{
f2e824
		global $config;
f2e824
f2e824
		$name_data = rawurlencode($config['cookie_name'] . '_' . $name) . '=' . rawurlencode($cookiedata);
f2e824
		$expire = gmdate('D, d-M-Y H:i:s \\G\\M\\T', $cookietime);
f2e824
		$domain = (!$config['cookie_domain'] || $config['cookie_domain'] == 'localhost' || $config['cookie_domain'] == '127.0.0.1') ? '' : '; domain=' . $config['cookie_domain'];
f2e824
f2e824
		header('Set-Cookie: ' . $name_data . (($cookietime) ? '; expires=' . $expire : '') . '; path=' . $config['cookie_path'] . $domain . ((!$config['cookie_secure']) ? '' : '; secure') . '; HttpOnly', false);
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Check for banned user
f2e824
	*
f2e824
	* Checks whether the supplied user is banned by id, ip or email. If no parameters
f2e824
	* are passed to the method pre-existing session data is used. If $return is false
f2e824
	* this routine does not return on finding a banned user, it outputs a relevant
f2e824
	* message and stops execution.
f2e824
	*
f2e824
	* @param string|array	$user_ips	Can contain a string with one IP or an array of multiple IPs
f2e824
	*/
f2e824
	function check_ban($user_id = false, $user_ips = false, $user_email = false, $return = false)
f2e824
	{
f2e824
		global $config, $db;
f2e824
f2e824
		if (defined('IN_CHECK_BAN'))
f2e824
		{
f2e824
			return;
f2e824
		}
f2e824
f2e824
		$banned = false;
f2e824
		$cache_ttl = 3600;
f2e824
		$where_sql = array();
f2e824
f2e824
		$sql = 'SELECT ban_ip, ban_userid, ban_email, ban_exclude, ban_give_reason, ban_end
f2e824
			FROM ' . BANLIST_TABLE . '
f2e824
			WHERE ';
f2e824
f2e824
		// Determine which entries to check, only return those
f2e824
		if ($user_email === false)
f2e824
		{
f2e824
			$where_sql[] = "ban_email = ''";
f2e824
		}
f2e824
f2e824
		if ($user_ips === false)
f2e824
		{
f2e824
			$where_sql[] = "(ban_ip = '' OR ban_exclude = 1)";
f2e824
		}
f2e824
f2e824
		if ($user_id === false)
f2e824
		{
f2e824
			$where_sql[] = '(ban_userid = 0 OR ban_exclude = 1)';
f2e824
		}
f2e824
		else
f2e824
		{
f2e824
			$cache_ttl = ($user_id == ANONYMOUS) ? 3600 : 0;
f2e824
			$_sql = '(ban_userid = ' . $user_id;
f2e824
f2e824
			if ($user_email !== false)
f2e824
			{
f2e824
				$_sql .= " OR ban_email <> ''";
f2e824
			}
f2e824
f2e824
			if ($user_ips !== false)
f2e824
			{
f2e824
				$_sql .= " OR ban_ip <> ''";
f2e824
			}
f2e824
f2e824
			$_sql .= ')';
f2e824
f2e824
			$where_sql[] = $_sql;
f2e824
		}
f2e824
f2e824
		$sql .= (sizeof($where_sql)) ? implode(' AND ', $where_sql) : '';
f2e824
		$result = $db->sql_query($sql, $cache_ttl);
f2e824
f2e824
		$ban_triggered_by = 'user';
f2e824
		while ($row = $db->sql_fetchrow($result))
f2e824
		{
f2e824
			if ($row['ban_end'] && $row['ban_end'] < time())
f2e824
			{
f2e824
				continue;
f2e824
			}
f2e824
f2e824
			$ip_banned = false;
f2e824
			if (!empty($row['ban_ip']))
f2e824
			{
f2e824
				if (!is_array($user_ips))
f2e824
				{
f2e824
					$ip_banned = preg_match('#^' . str_replace('\*', '.*?', preg_quote($row['ban_ip'], '#')) . '$#i', $user_ips);
f2e824
				}
f2e824
				else
f2e824
				{
f2e824
					foreach ($user_ips as $user_ip)
f2e824
					{
f2e824
						if (preg_match('#^' . str_replace('\*', '.*?', preg_quote($row['ban_ip'], '#')) . '$#i', $user_ip))
f2e824
						{
f2e824
							$ip_banned = true;
f2e824
							break;
f2e824
						}
f2e824
					}
f2e824
				}
f2e824
			}
f2e824
f2e824
			if ((!empty($row['ban_userid']) && intval($row['ban_userid']) == $user_id) ||
f2e824
				$ip_banned ||
f2e824
				(!empty($row['ban_email']) && preg_match('#^' . str_replace('\*', '.*?', preg_quote($row['ban_email'], '#')) . '$#i', $user_email)))
f2e824
			{
f2e824
				if (!empty($row['ban_exclude']))
f2e824
				{
f2e824
					$banned = false;
f2e824
					break;
f2e824
				}
f2e824
				else
f2e824
				{
f2e824
					$banned = true;
f2e824
					$ban_row = $row;
f2e824
f2e824
					if (!empty($row['ban_userid']) && intval($row['ban_userid']) == $user_id)
f2e824
					{
f2e824
						$ban_triggered_by = 'user';
f2e824
					}
f2e824
					else if ($ip_banned)
f2e824
					{
f2e824
						$ban_triggered_by = 'ip';
f2e824
					}
f2e824
					else
f2e824
					{
f2e824
						$ban_triggered_by = 'email';
f2e824
					}
f2e824
f2e824
					// Don't break. Check if there is an exclude rule for this user
f2e824
				}
f2e824
			}
f2e824
		}
f2e824
		$db->sql_freeresult($result);
f2e824
f2e824
		if ($banned && !$return)
f2e824
		{
f2e824
			global $template;
f2e824
f2e824
			// If the session is empty we need to create a valid one...
f2e824
			if (empty($this->session_id))
f2e824
			{
f2e824
				// This seems to be no longer needed? - #14971
f2e824
//				$this->session_create(ANONYMOUS);
f2e824
			}
f2e824
f2e824
			// Initiate environment ... since it won't be set at this stage
f2e824
			$this->setup();
f2e824
f2e824
			// Logout the user, banned users are unable to use the normal 'logout' link
f2e824
			if ($this->data['user_id'] != ANONYMOUS)
f2e824
			{
f2e824
				$this->session_kill();
f2e824
			}
f2e824
f2e824
			// We show a login box here to allow founders accessing the board if banned by IP
f2e824
			if (defined('IN_LOGIN') && $this->data['user_id'] == ANONYMOUS)
f2e824
			{
f2e824
				global $phpEx;
f2e824
f2e824
				$this->setup('ucp');
f2e824
				$this->data['is_registered'] = $this->data['is_bot'] = false;
f2e824
f2e824
				// Set as a precaution to allow login_box() handling this case correctly as well as this function not being executed again.
f2e824
				define('IN_CHECK_BAN', 1);
f2e824
f2e824
				login_box("index.$phpEx");
f2e824
f2e824
				// The false here is needed, else the user is able to circumvent the ban.
f2e824
				$this->session_kill(false);
f2e824
			}
f2e824
f2e824
			// Ok, we catch the case of an empty session id for the anonymous user...
f2e824
			// This can happen if the user is logging in, banned by username and the login_box() being called "again".
f2e824
			if (empty($this->session_id) && defined('IN_CHECK_BAN'))
f2e824
			{
f2e824
				$this->session_create(ANONYMOUS);
f2e824
			}
f2e824
f2e824
f2e824
			// Determine which message to output
f2e824
			$till_date = ($ban_row['ban_end']) ? $this->format_date($ban_row['ban_end']) : '';
f2e824
			$message = ($ban_row['ban_end']) ? 'BOARD_BAN_TIME' : 'BOARD_BAN_PERM';
f2e824
f2e824
			$message = sprintf($this->lang[$message], $till_date, '', '');
f2e824
			$message .= ($ban_row['ban_give_reason']) ? '

' . sprintf($this->lang['BOARD_BAN_REASON'], $ban_row['ban_give_reason']) : '';
f2e824
			$message .= '

' . $this->lang['BAN_TRIGGERED_BY_' . strtoupper($ban_triggered_by)] . '';
f2e824
f2e824
			// To circumvent session_begin returning a valid value and the check_ban() not called on second page view, we kill the session again
f2e824
			$this->session_kill(false);
f2e824
f2e824
			// A very special case... we are within the cron script which is not supposed to print out the ban message... show blank page
f2e824
			if (defined('IN_CRON'))
f2e824
			{
f2e824
				garbage_collection();
f2e824
				exit_handler();
f2e824
				exit;
f2e824
			}
f2e824
f2e824
			trigger_error($message);
f2e824
		}
f2e824
f2e824
		return ($banned && $ban_row['ban_give_reason']) ? $ban_row['ban_give_reason'] : $banned;
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Check if ip is blacklisted
f2e824
	* This should be called only where absolutly necessary
f2e824
	*
f2e824
	* Only IPv4 (rbldns does not support AAAA records/IPv6 lookups)
f2e824
	*
f2e824
	* @author satmd (from the php manual)
f2e824
	* @param string $mode register/post - spamcop for example is ommitted for posting
f2e824
	* @return false if ip is not blacklisted, else an array([checked server], [lookup])
f2e824
	*/
f2e824
	function check_dnsbl($mode, $ip = false)
f2e824
	{
f2e824
		if ($ip === false)
f2e824
		{
f2e824
			$ip = $this->ip;
f2e824
		}
f2e824
f2e824
		$dnsbl_check = array(
f2e824
			'sbl-xbl.spamhaus.org'	=> 'http://www.spamhaus.org/query/bl?ip=',
f2e824
		);
f2e824
f2e824
		if ($mode == 'register')
f2e824
		{
f2e824
			$dnsbl_check['bl.spamcop.net'] = 'http://spamcop.net/bl.shtml?';
f2e824
		}
f2e824
f2e824
		if ($ip)
f2e824
		{
f2e824
			$quads = explode('.', $ip);
f2e824
			$reverse_ip = $quads[3] . '.' . $quads[2] . '.' . $quads[1] . '.' . $quads[0];
f2e824
f2e824
			// Need to be listed on all servers...
f2e824
			$listed = true;
f2e824
			$info = array();
f2e824
f2e824
			foreach ($dnsbl_check as $dnsbl => $lookup)
f2e824
			{
f2e824
				if (phpbb_checkdnsrr($reverse_ip . '.' . $dnsbl . '.', 'A') === true)
f2e824
				{
f2e824
					$info = array($dnsbl, $lookup . $ip);
f2e824
				}
f2e824
				else
f2e824
				{
f2e824
					$listed = false;
f2e824
				}
f2e824
			}
f2e824
f2e824
			if ($listed)
f2e824
			{
f2e824
				return $info;
f2e824
			}
f2e824
		}
f2e824
f2e824
		return false;
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Check if URI is blacklisted
f2e824
	* This should be called only where absolutly necessary, for example on the submitted website field
f2e824
	* This function is not in use at the moment and is only included for testing purposes, it may not work at all!
f2e824
	* This means it is untested at the moment and therefore commented out
f2e824
	*
f2e824
	* @param string $uri URI to check
f2e824
	* @return true if uri is on blacklist, else false. Only blacklist is checked (~zero FP), no grey lists
f2e824
	function check_uribl($uri)
f2e824
	{
f2e824
		// Normally parse_url() is not intended to parse uris
f2e824
		// We need to get the top-level domain name anyway... change.
f2e824
		$uri = parse_url($uri);
f2e824
f2e824
		if ($uri === false || empty($uri['host']))
f2e824
		{
f2e824
			return false;
f2e824
		}
f2e824
f2e824
		$uri = trim($uri['host']);
f2e824
f2e824
		if ($uri)
f2e824
		{
f2e824
			// One problem here... the return parameter for the "windows" method is different from what
f2e824
			// we expect... this may render this check useless...
f2e824
			if (phpbb_checkdnsrr($uri . '.multi.uribl.com.', 'A') === true)
f2e824
			{
f2e824
				return true;
f2e824
			}
f2e824
		}
f2e824
f2e824
		return false;
f2e824
	}
f2e824
	*/
f2e824
f2e824
	/**
f2e824
	* Set/Update a persistent login key
f2e824
	*
f2e824
	* This method creates or updates a persistent session key. When a user makes
f2e824
	* use of persistent (formerly auto-) logins a key is generated and stored in the
f2e824
	* DB. When they revisit with the same key it's automatically updated in both the
f2e824
	* DB and cookie. Multiple keys may exist for each user representing different
f2e824
	* browsers or locations. As with _any_ non-secure-socket no passphrase login this
f2e824
	* remains vulnerable to exploit.
f2e824
	*/
f2e824
	function set_login_key($user_id = false, $key = false, $user_ip = false)
f2e824
	{
f2e824
		global $config, $db;
f2e824
f2e824
		$user_id = ($user_id === false) ? $this->data['user_id'] : $user_id;
f2e824
		$user_ip = ($user_ip === false) ? $this->ip : $user_ip;
f2e824
		$key = ($key === false) ? (($this->cookie_data['k']) ? $this->cookie_data['k'] : false) : $key;
f2e824
f2e824
		$key_id = unique_id(hexdec(substr($this->session_id, 0, 8)));
f2e824
f2e824
		$sql_ary = array(
f2e824
			'key_id'		=> (string) md5($key_id),
f2e824
			'last_ip'		=> (string) $this->ip,
f2e824
			'last_login'	=> (int) time()
f2e824
		);
f2e824
f2e824
		if (!$key)
f2e824
		{
f2e824
			$sql_ary += array(
f2e824
				'user_id'	=> (int) $user_id
f2e824
			);
f2e824
		}
f2e824
f2e824
		if ($key)
f2e824
		{
f2e824
			$sql = 'UPDATE ' . SESSIONS_KEYS_TABLE . '
f2e824
				SET ' . $db->sql_build_array('UPDATE', $sql_ary) . '
f2e824
				WHERE user_id = ' . (int) $user_id . "
f2e824
					AND key_id = '" . $db->sql_escape(md5($key)) . "'";
f2e824
		}
f2e824
		else
f2e824
		{
f2e824
			$sql = 'INSERT INTO ' . SESSIONS_KEYS_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary);
f2e824
		}
f2e824
		$db->sql_query($sql);
f2e824
f2e824
		$this->cookie_data['k'] = $key_id;
f2e824
f2e824
		return false;
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Reset all login keys for the specified user
f2e824
	*
f2e824
	* This method removes all current login keys for a specified (or the current)
f2e824
	* user. It will be called on password change to render old keys unusable
f2e824
	*/
f2e824
	function reset_login_keys($user_id = false)
f2e824
	{
f2e824
		global $config, $db;
f2e824
f2e824
		$user_id = ($user_id === false) ? $this->data['user_id'] : $user_id;
f2e824
f2e824
		$sql = 'DELETE FROM ' . SESSIONS_KEYS_TABLE . '
f2e824
			WHERE user_id = ' . (int) $user_id;
f2e824
		$db->sql_query($sql);
f2e824
f2e824
		// Let's also clear any current sessions for the specified user_id
f2e824
		// If it's the current user then we'll leave this session intact
f2e824
		$sql_where = 'session_user_id = ' . (int) $user_id;
f2e824
		$sql_where .= ($user_id === $this->data['user_id']) ? " AND session_id <> '" . $db->sql_escape($this->session_id) . "'" : '';
f2e824
f2e824
		$sql = 'DELETE FROM ' . SESSIONS_TABLE . "
f2e824
			WHERE $sql_where";
f2e824
		$db->sql_query($sql);
f2e824
f2e824
		// We're changing the password of the current user and they have a key
f2e824
		// Lets regenerate it to be safe
f2e824
		if ($user_id === $this->data['user_id'] && $this->cookie_data['k'])
f2e824
		{
f2e824
			$this->set_login_key($user_id);
f2e824
		}
f2e824
	}
f2e824
f2e824
f2e824
	/**
f2e824
	* Check if the request originated from the same page.
f2e824
	* @param bool $check_script_path If true, the path will be checked as well
f2e824
	*/
f2e824
	function validate_referer($check_script_path = false)
f2e824
	{
f2e824
		// no referer - nothing to validate, user's fault for turning it off (we only check on POST; so meta can't be the reason)
f2e824
		if (empty($this->referer) || empty($this->host))
f2e824
		{
f2e824
			return true;
f2e824
		}
f2e824
f2e824
		$host = htmlspecialchars($this->host);
f2e824
		$ref = substr($this->referer, strpos($this->referer, '://') + 3);
f2e824
f2e824
		if (!(stripos($ref, $host) === 0))
f2e824
		{
f2e824
			return false;
f2e824
		}
f2e824
		else if ($check_script_path && rtrim($this->page['root_script_path'], '/') !== '')
f2e824
		{
f2e824
			$ref = substr($ref, strlen($host));
f2e824
			$server_port = (!empty($_SERVER['SERVER_PORT'])) ? (int) $_SERVER['SERVER_PORT'] : (int) getenv('SERVER_PORT');
f2e824
f2e824
			if ($server_port !== 80 && $server_port !== 443 && stripos($ref, ":$server_port") === 0)
f2e824
			{
f2e824
				$ref = substr($ref, strlen(":$server_port"));
f2e824
			}
f2e824
f2e824
			if (!(stripos(rtrim($ref, '/'), rtrim($this->page['root_script_path'], '/')) === 0))
f2e824
			{
f2e824
				return false;
f2e824
			}
f2e824
		}
f2e824
f2e824
		return true;
f2e824
	}
f2e824
f2e824
f2e824
	function unset_admin()
f2e824
	{
f2e824
		global $db;
f2e824
		$sql = 'UPDATE ' . SESSIONS_TABLE . '
f2e824
			SET session_admin = 0
f2e824
			WHERE session_id = \'' . $db->sql_escape($this->session_id) . '\'';
f2e824
		$db->sql_query($sql);
f2e824
	}
f2e824
}
f2e824
f2e824
f2e824
/**
f2e824
* Base user class
f2e824
*
f2e824
* This is the overarching class which contains (through session extend)
f2e824
* all methods utilised for user functionality during a session.
f2e824
*
f2e824
* @package phpBB3
f2e824
*/
f2e824
class user extends session
f2e824
{
f2e824
	var $lang = array();
f2e824
	var $help = array();
f2e824
	var $theme = array();
f2e824
	var $date_format;
f2e824
	var $timezone;
f2e824
	var $dst;
f2e824
f2e824
	var $lang_name = false;
f2e824
	var $lang_id = false;
f2e824
	var $lang_path;
f2e824
	var $img_lang;
f2e824
	var $img_array = array();
f2e824
f2e824
	// Able to add new option (id 7)
f2e824
	var $keyoptions = array('viewimg' => 0, 'viewflash' => 1, 'viewsmilies' => 2, 'viewsigs' => 3, 'viewavatars' => 4, 'viewcensors' => 5, 'attachsig' => 6, 'bbcode' => 8, 'smilies' => 9, 'popuppm' => 10);
f2e824
	var $keyvalues = array();
f2e824
f2e824
	/**
f2e824
	* Constructor to set the lang path
f2e824
	*/
f2e824
	function user()
f2e824
	{
f2e824
		global $phpbb_root_path;
f2e824
f2e824
		$this->lang_path = $phpbb_root_path . 'language/';
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Function to set custom language path (able to use directory outside of phpBB)
f2e824
	*
f2e824
	* @param string $lang_path New language path used.
f2e824
	* @access public
f2e824
	*/
f2e824
	function set_custom_lang_path($lang_path)
f2e824
	{
f2e824
		$this->lang_path = $lang_path;
f2e824
f2e824
		if (substr($this->lang_path, -1) != '/')
f2e824
		{
f2e824
			$this->lang_path .= '/';
f2e824
		}
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Setup basic user-specific items (style, language, ...)
f2e824
	*/
f2e824
	function setup($lang_set = false, $style = false)
f2e824
	{
f2e824
		global $db, $template, $config, $auth, $phpEx, $phpbb_root_path, $cache;
f2e824
f2e824
		if ($this->data['user_id'] != ANONYMOUS)
f2e824
		{
f2e824
			$this->lang_name = (file_exists($this->lang_path . $this->data['user_lang'] . "/common.$phpEx")) ? $this->data['user_lang'] : basename($config['default_lang']);
f2e824
f2e824
			$this->date_format = $this->data['user_dateformat'];
f2e824
			$this->timezone = $this->data['user_timezone'] * 3600;
f2e824
			$this->dst = $this->data['user_dst'] * 3600;
f2e824
		}
f2e824
		else
f2e824
		{
f2e824
			$this->lang_name = basename($config['default_lang']);
f2e824
			$this->date_format = $config['default_dateformat'];
f2e824
			$this->timezone = $config['board_timezone'] * 3600;
f2e824
			$this->dst = $config['board_dst'] * 3600;
f2e824
f2e824
			/**
f2e824
			* If a guest user is surfing, we try to guess his/her language first by obtaining the browser language
f2e824
			* If re-enabled we need to make sure only those languages installed are checked
f2e824
			* Commented out so we do not loose the code.
f2e824
f2e824
			if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE']))
f2e824
			{
f2e824
				$accept_lang_ary = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
f2e824
f2e824
				foreach ($accept_lang_ary as $accept_lang)
f2e824
				{
f2e824
					// Set correct format ... guess full xx_YY form
f2e824
					$accept_lang = substr($accept_lang, 0, 2) . '_' . strtoupper(substr($accept_lang, 3, 2));
f2e824
					$accept_lang = basename($accept_lang);
f2e824
f2e824
					if (file_exists($this->lang_path . $accept_lang . "/common.$phpEx"))
f2e824
					{
f2e824
						$this->lang_name = $config['default_lang'] = $accept_lang;
f2e824
						break;
f2e824
					}
f2e824
					else
f2e824
					{
f2e824
						// No match on xx_YY so try xx
f2e824
						$accept_lang = substr($accept_lang, 0, 2);
f2e824
						$accept_lang = basename($accept_lang);
f2e824
f2e824
						if (file_exists($this->lang_path . $accept_lang . "/common.$phpEx"))
f2e824
						{
f2e824
							$this->lang_name = $config['default_lang'] = $accept_lang;
f2e824
							break;
f2e824
						}
f2e824
					}
f2e824
				}
f2e824
			}
f2e824
			*/
f2e824
		}
f2e824
f2e824
		// We include common language file here to not load it every time a custom language file is included
f2e824
		$lang = &$this->lang;
f2e824
f2e824
		if ((@include $this->lang_path . $this->lang_name . "/common.$phpEx") === false)
f2e824
		{
f2e824
			die('Language file ' . $this->lang_path . $this->lang_name . "/common.$phpEx" . " couldn't be opened.");
f2e824
		}
f2e824
f2e824
		$this->add_lang($lang_set);
f2e824
		unset($lang_set);
f2e824
f2e824
		if (!empty($_GET['style']) && $auth->acl_get('a_styles'))
f2e824
		{
f2e824
			global $SID, $_EXTRA_URL;
f2e824
f2e824
			$style = request_var('style', 0);
f2e824
			$SID .= '&style=' . $style;
f2e824
			$_EXTRA_URL = array('style=' . $style);
f2e824
		}
f2e824
		else
f2e824
		{
f2e824
			// Set up style
f2e824
			$style = ($style) ? $style : ((!$config['override_user_style']) ? $this->data['user_style'] : $config['default_style']);
f2e824
		}
f2e824
f2e824
		$sql = 'SELECT s.style_id, t.template_storedb, t.template_path, t.template_id, t.bbcode_bitfield, t.template_inherits_id, t.template_inherit_path, c.theme_path, c.theme_name, c.theme_storedb, c.theme_id, i.imageset_path, i.imageset_id, i.imageset_name
f2e824
			FROM ' . STYLES_TABLE . ' s, ' . STYLES_TEMPLATE_TABLE . ' t, ' . STYLES_THEME_TABLE . ' c, ' . STYLES_IMAGESET_TABLE . " i
f2e824
			WHERE s.style_id = $style
f2e824
				AND t.template_id = s.template_id
f2e824
				AND c.theme_id = s.theme_id
f2e824
				AND i.imageset_id = s.imageset_id";
f2e824
		$result = $db->sql_query($sql, 3600);
f2e824
		$this->theme = $db->sql_fetchrow($result);
f2e824
		$db->sql_freeresult($result);
f2e824
f2e824
		// User has wrong style
f2e824
		if (!$this->theme && $style == $this->data['user_style'])
f2e824
		{
f2e824
			$style = $this->data['user_style'] = $config['default_style'];
f2e824
f2e824
			$sql = 'UPDATE ' . USERS_TABLE . "
f2e824
				SET user_style = $style
f2e824
				WHERE user_id = {$this->data['user_id']}";
f2e824
			$db->sql_query($sql);
f2e824
f2e824
			$sql = 'SELECT s.style_id, t.template_storedb, t.template_path, t.template_id, t.bbcode_bitfield, c.theme_path, c.theme_name, c.theme_storedb, c.theme_id, i.imageset_path, i.imageset_id, i.imageset_name
f2e824
				FROM ' . STYLES_TABLE . ' s, ' . STYLES_TEMPLATE_TABLE . ' t, ' . STYLES_THEME_TABLE . ' c, ' . STYLES_IMAGESET_TABLE . " i
f2e824
				WHERE s.style_id = $style
f2e824
					AND t.template_id = s.template_id
f2e824
					AND c.theme_id = s.theme_id
f2e824
					AND i.imageset_id = s.imageset_id";
f2e824
			$result = $db->sql_query($sql, 3600);
f2e824
			$this->theme = $db->sql_fetchrow($result);
f2e824
			$db->sql_freeresult($result);
f2e824
		}
f2e824
f2e824
		if (!$this->theme)
f2e824
		{
f2e824
			trigger_error('Could not get style data', E_USER_ERROR);
f2e824
		}
f2e824
f2e824
		// Now parse the cfg file and cache it
f2e824
		$parsed_items = $cache->obtain_cfg_items($this->theme);
f2e824
f2e824
		// We are only interested in the theme configuration for now
f2e824
		$parsed_items = $parsed_items['theme'];
f2e824
f2e824
		$check_for = array(
f2e824
			'parse_css_file'	=> (int) 0,
f2e824
			'pagination_sep'	=> (string) ', '
f2e824
		);
f2e824
f2e824
		foreach ($check_for as $key => $default_value)
f2e824
		{
f2e824
			$this->theme[$key] = (isset($parsed_items[$key])) ? $parsed_items[$key] : $default_value;
f2e824
			settype($this->theme[$key], gettype($default_value));
f2e824
f2e824
			if (is_string($default_value))
f2e824
			{
f2e824
				$this->theme[$key] = htmlspecialchars($this->theme[$key]);
f2e824
			}
f2e824
		}
f2e824
f2e824
		// If the style author specified the theme needs to be cached
f2e824
		// (because of the used paths and variables) than make sure it is the case.
f2e824
		// For example, if the theme uses language-specific images it needs to be stored in db.
f2e824
		if (!$this->theme['theme_storedb'] && $this->theme['parse_css_file'])
f2e824
		{
f2e824
			$this->theme['theme_storedb'] = 1;
f2e824
f2e824
			$stylesheet = file_get_contents("{$phpbb_root_path}styles/{$this->theme['theme_path']}/theme/stylesheet.css");
f2e824
			// Match CSS imports
f2e824
			$matches = array();
f2e824
			preg_match_all('/@import url\(["\'](.*)["\']\);/i', $stylesheet, $matches);
f2e824
f2e824
			if (sizeof($matches))
f2e824
			{
f2e824
				$content = '';
f2e824
				foreach ($matches[0] as $idx => $match)
f2e824
				{
f2e824
					if ($content = @file_get_contents("{$phpbb_root_path}styles/{$this->theme['theme_path']}/theme/" . $matches[1][$idx]))
f2e824
					{
f2e824
						$content = trim($content);
f2e824
					}
f2e824
					else
f2e824
					{
f2e824
						$content = '';
f2e824
					}
f2e824
					$stylesheet = str_replace($match, $content, $stylesheet);
f2e824
				}
f2e824
				unset($content);
f2e824
			}
f2e824
f2e824
			$stylesheet = str_replace('./', 'styles/' . $this->theme['theme_path'] . '/theme/', $stylesheet);
f2e824
f2e824
			$sql_ary = array(
f2e824
				'theme_data'	=> $stylesheet,
f2e824
				'theme_mtime'	=> time(),
f2e824
				'theme_storedb'	=> 1
f2e824
			);
f2e824
f2e824
			$sql = 'UPDATE ' . STYLES_THEME_TABLE . '
f2e824
				SET ' . $db->sql_build_array('UPDATE', $sql_ary) . '
f2e824
				WHERE theme_id = ' . $this->theme['theme_id'];
f2e824
			$db->sql_query($sql);
f2e824
f2e824
			unset($sql_ary);
f2e824
		}
f2e824
f2e824
		$template->set_template();
f2e824
f2e824
		$this->img_lang = (file_exists($phpbb_root_path . 'styles/' . $this->theme['imageset_path'] . '/imageset/' . $this->lang_name)) ? $this->lang_name : $config['default_lang'];
f2e824
f2e824
		$sql = 'SELECT image_name, image_filename, image_lang, image_height, image_width
f2e824
			FROM ' . STYLES_IMAGESET_DATA_TABLE . '
f2e824
			WHERE imageset_id = ' . $this->theme['imageset_id'] . "
f2e824
			AND image_filename <> ''
f2e824
			AND image_lang IN ('" . $db->sql_escape($this->img_lang) . "', '')";
f2e824
		$result = $db->sql_query($sql, 3600);
f2e824
f2e824
		$localised_images = false;
f2e824
		while ($row = $db->sql_fetchrow($result))
f2e824
		{
f2e824
			if ($row['image_lang'])
f2e824
			{
f2e824
				$localised_images = true;
f2e824
			}
f2e824
f2e824
			$row['image_filename'] = rawurlencode($row['image_filename']);
f2e824
			$this->img_array[$row['image_name']] = $row;
f2e824
		}
f2e824
		$db->sql_freeresult($result);
f2e824
f2e824
		// there were no localised images, try to refresh the localised imageset for the user's language
f2e824
		if (!$localised_images)
f2e824
		{
f2e824
			// Attention: this code ignores the image definition list from acp_styles and just takes everything
f2e824
			// that the config file contains
f2e824
			$sql_ary = array();
f2e824
f2e824
			$db->sql_transaction('begin');
f2e824
f2e824
			$sql = 'DELETE FROM ' . STYLES_IMAGESET_DATA_TABLE . '
f2e824
				WHERE imageset_id = ' . $this->theme['imageset_id'] . '
f2e824
					AND image_lang = \'' . $db->sql_escape($this->img_lang) . '\'';
f2e824
			$result = $db->sql_query($sql);
f2e824
f2e824
			if (@file_exists("{$phpbb_root_path}styles/{$this->theme['imageset_path']}/imageset/{$this->img_lang}/imageset.cfg"))
f2e824
			{
f2e824
				$cfg_data_imageset_data = parse_cfg_file("{$phpbb_root_path}styles/{$this->theme['imageset_path']}/imageset/{$this->img_lang}/imageset.cfg");
f2e824
				foreach ($cfg_data_imageset_data as $image_name => $value)
f2e824
				{
f2e824
					if (strpos($value, '*') !== false)
f2e824
					{
f2e824
						if (substr($value, -1, 1) === '*')
f2e824
						{
f2e824
							list($image_filename, $image_height) = explode('*', $value);
f2e824
							$image_width = 0;
f2e824
						}
f2e824
						else
f2e824
						{
f2e824
							list($image_filename, $image_height, $image_width) = explode('*', $value);
f2e824
						}
f2e824
					}
f2e824
					else
f2e824
					{
f2e824
						$image_filename = $value;
f2e824
						$image_height = $image_width = 0;
f2e824
					}
f2e824
f2e824
					if (strpos($image_name, 'img_') === 0 && $image_filename)
f2e824
					{
f2e824
						$image_name = substr($image_name, 4);
f2e824
						$sql_ary[] = array(
f2e824
							'image_name'		=> (string) $image_name,
f2e824
							'image_filename'	=> (string) $image_filename,
f2e824
							'image_height'		=> (int) $image_height,
f2e824
							'image_width'		=> (int) $image_width,
f2e824
							'imageset_id'		=> (int) $this->theme['imageset_id'],
f2e824
							'image_lang'		=> (string) $this->img_lang,
f2e824
						);
f2e824
					}
f2e824
				}
f2e824
			}
f2e824
f2e824
			if (sizeof($sql_ary))
f2e824
			{
f2e824
				$db->sql_multi_insert(STYLES_IMAGESET_DATA_TABLE, $sql_ary);
f2e824
				$db->sql_transaction('commit');
f2e824
				$cache->destroy('sql', STYLES_IMAGESET_DATA_TABLE);
f2e824
f2e824
				add_log('admin', 'LOG_IMAGESET_LANG_REFRESHED', $this->theme['imageset_name'], $this->img_lang);
f2e824
			}
f2e824
			else
f2e824
			{
f2e824
				$db->sql_transaction('commit');
f2e824
				add_log('admin', 'LOG_IMAGESET_LANG_MISSING', $this->theme['imageset_name'], $this->img_lang);
f2e824
			}
f2e824
		}
f2e824
f2e824
		// Call phpbb_user_session_handler() in case external application want to "bend" some variables or replace classes...
f2e824
		// After calling it we continue script execution...
f2e824
		phpbb_user_session_handler();
f2e824
f2e824
		// If this function got called from the error handler we are finished here.
f2e824
		if (defined('IN_ERROR_HANDLER'))
f2e824
		{
f2e824
			return;
f2e824
		}
f2e824
f2e824
		// Disable board if the install/ directory is still present
f2e824
		// For the brave development army we do not care about this, else we need to comment out this everytime we develop locally
f2e824
		if (!defined('DEBUG_EXTRA') && !defined('ADMIN_START') && !defined('IN_INSTALL') && !defined('IN_LOGIN') && file_exists($phpbb_root_path . 'install'))
f2e824
		{
f2e824
			// Adjust the message slightly according to the permissions
f2e824
			if ($auth->acl_gets('a_', 'm_') || $auth->acl_getf_global('m_'))
f2e824
			{
f2e824
				$message = 'REMOVE_INSTALL';
f2e824
			}
f2e824
			else
f2e824
			{
f2e824
				$message = (!empty($config['board_disable_msg'])) ? $config['board_disable_msg'] : 'BOARD_DISABLE';
f2e824
			}
f2e824
			trigger_error($message);
f2e824
		}
f2e824
f2e824
		// Is board disabled and user not an admin or moderator?
f2e824
		if ($config['board_disable'] && !defined('IN_LOGIN') && !$auth->acl_gets('a_', 'm_') && !$auth->acl_getf_global('m_'))
f2e824
		{
f2e824
			header('HTTP/1.1 503 Service Unavailable');
f2e824
f2e824
			$message = (!empty($config['board_disable_msg'])) ? $config['board_disable_msg'] : 'BOARD_DISABLE';
f2e824
			trigger_error($message);
f2e824
		}
f2e824
f2e824
		// Is load exceeded?
f2e824
		if ($config['limit_load'] && $this->load !== false)
f2e824
		{
f2e824
			if ($this->load > floatval($config['limit_load']) && !defined('IN_LOGIN'))
f2e824
			{
f2e824
				// Set board disabled to true to let the admins/mods get the proper notification
f2e824
				$config['board_disable'] = '1';
f2e824
f2e824
				if (!$auth->acl_gets('a_', 'm_') && !$auth->acl_getf_global('m_'))
f2e824
				{
f2e824
					header('HTTP/1.1 503 Service Unavailable');
f2e824
					trigger_error('BOARD_UNAVAILABLE');
f2e824
				}
f2e824
			}
f2e824
		}
f2e824
f2e824
		if (isset($this->data['session_viewonline']))
f2e824
		{
f2e824
			// Make sure the user is able to hide his session
f2e824
			if (!$this->data['session_viewonline'])
f2e824
			{
f2e824
				// Reset online status if not allowed to hide the session...
f2e824
				if (!$auth->acl_get('u_hideonline'))
f2e824
				{
f2e824
					$sql = 'UPDATE ' . SESSIONS_TABLE . '
f2e824
						SET session_viewonline = 1
f2e824
						WHERE session_user_id = ' . $this->data['user_id'];
f2e824
					$db->sql_query($sql);
f2e824
					$this->data['session_viewonline'] = 1;
f2e824
				}
f2e824
			}
f2e824
			else if (!$this->data['user_allow_viewonline'])
f2e824
			{
f2e824
				// the user wants to hide and is allowed to  -> cloaking device on.
f2e824
				if ($auth->acl_get('u_hideonline'))
f2e824
				{
f2e824
					$sql = 'UPDATE ' . SESSIONS_TABLE . '
f2e824
						SET session_viewonline = 0
f2e824
						WHERE session_user_id = ' . $this->data['user_id'];
f2e824
					$db->sql_query($sql);
f2e824
					$this->data['session_viewonline'] = 0;
f2e824
				}
f2e824
			}
f2e824
		}
f2e824
f2e824
f2e824
		// Does the user need to change their password? If so, redirect to the
f2e824
		// ucp profile reg_details page ... of course do not redirect if we're already in the ucp
f2e824
		if (!defined('IN_ADMIN') && !defined('ADMIN_START') && $config['chg_passforce'] && $this->data['is_registered'] && $auth->acl_get('u_chgpasswd') && $this->data['user_passchg'] < time() - ($config['chg_passforce'] * 86400))
f2e824
		{
f2e824
			if (strpos($this->page['query_string'], 'mode=reg_details') === false && $this->page['page_name'] != "ucp.$phpEx")
f2e824
			{
f2e824
				redirect(append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=profile&mode=reg_details'));
f2e824
			}
f2e824
		}
f2e824
f2e824
		return;
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* More advanced language substitution
f2e824
	* Function to mimic sprintf() with the possibility of using phpBB's language system to substitute nullar/singular/plural forms.
f2e824
	* Params are the language key and the parameters to be substituted.
f2e824
	* This function/functionality is inspired by SHS` and Ashe.
f2e824
	*
f2e824
	* Example call: <samp>$user->lang('NUM_POSTS_IN_QUEUE', 1);</samp>
f2e824
	*/
f2e824
	function lang()
f2e824
	{
f2e824
		$args = func_get_args();
f2e824
		$key = $args[0];
f2e824
f2e824
		if (is_array($key))
f2e824
		{
f2e824
			$lang = &$this->lang[array_shift($key)];
f2e824
f2e824
			foreach ($key as $_key)
f2e824
			{
f2e824
				$lang = &$lang[$_key];
f2e824
			}
f2e824
		}
f2e824
		else
f2e824
		{
f2e824
			$lang = &$this->lang[$key];
f2e824
		}
f2e824
f2e824
		// Return if language string does not exist
f2e824
		if (!isset($lang) || (!is_string($lang) && !is_array($lang)))
f2e824
		{
f2e824
			return $key;
f2e824
		}
f2e824
f2e824
		// If the language entry is a string, we simply mimic sprintf() behaviour
f2e824
		if (is_string($lang))
f2e824
		{
f2e824
			if (sizeof($args) == 1)
f2e824
			{
f2e824
				return $lang;
f2e824
			}
f2e824
f2e824
			// Replace key with language entry and simply pass along...
f2e824
			$args[0] = $lang;
f2e824
			return call_user_func_array('sprintf', $args);
f2e824
		}
f2e824
f2e824
		// It is an array... now handle different nullar/singular/plural forms
f2e824
		$key_found = false;
f2e824
f2e824
		// We now get the first number passed and will select the key based upon this number
f2e824
		for ($i = 1, $num_args = sizeof($args); $i < $num_args; $i++)
f2e824
		{
f2e824
			if (is_int($args[$i]))
f2e824
			{
f2e824
				$numbers = array_keys($lang);
f2e824
f2e824
				foreach ($numbers as $num)
f2e824
				{
f2e824
					if ($num > $args[$i])
f2e824
					{
f2e824
						break;
f2e824
					}
f2e824
f2e824
					$key_found = $num;
f2e824
				}
f2e824
			}
f2e824
		}
f2e824
f2e824
		// Ok, let's check if the key was found, else use the last entry (because it is mostly the plural form)
f2e824
		if ($key_found === false)
f2e824
		{
f2e824
			$numbers = array_keys($lang);
f2e824
			$key_found = end($numbers);
f2e824
		}
f2e824
f2e824
		// Use the language string we determined and pass it to sprintf()
f2e824
		$args[0] = $lang[$key_found];
f2e824
		return call_user_func_array('sprintf', $args);
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Add Language Items - use_db and use_help are assigned where needed (only use them to force inclusion)
f2e824
	*
f2e824
	* @param mixed $lang_set specifies the language entries to include
f2e824
	* @param bool $use_db internal variable for recursion, do not use
f2e824
	* @param bool $use_help internal variable for recursion, do not use
f2e824
	*
f2e824
	* Examples:
f2e824
	* 
f2e824
	* $lang_set = array('posting', 'help' => 'faq');
f2e824
	* $lang_set = array('posting', 'viewtopic', 'help' => array('bbcode', 'faq'))
f2e824
	* $lang_set = array(array('posting', 'viewtopic'), 'help' => array('bbcode', 'faq'))
f2e824
	* $lang_set = 'posting'
f2e824
	* $lang_set = array('help' => 'faq', 'db' => array('help:faq', 'posting'))
f2e824
	* 
f2e824
	*/
f2e824
	function add_lang($lang_set, $use_db = false, $use_help = false)
f2e824
	{
f2e824
		global $phpEx;
f2e824
f2e824
		if (is_array($lang_set))
f2e824
		{
f2e824
			foreach ($lang_set as $key => $lang_file)
f2e824
			{
f2e824
				// Please do not delete this line.
f2e824
				// We have to force the type here, else [array] language inclusion will not work
f2e824
				$key = (string) $key;
f2e824
f2e824
				if ($key == 'db')
f2e824
				{
f2e824
					$this->add_lang($lang_file, true, $use_help);
f2e824
				}
f2e824
				else if ($key == 'help')
f2e824
				{
f2e824
					$this->add_lang($lang_file, $use_db, true);
f2e824
				}
f2e824
				else if (!is_array($lang_file))
f2e824
				{
f2e824
					$this->set_lang($this->lang, $this->help, $lang_file, $use_db, $use_help);
f2e824
				}
f2e824
				else
f2e824
				{
f2e824
					$this->add_lang($lang_file, $use_db, $use_help);
f2e824
				}
f2e824
			}
f2e824
			unset($lang_set);
f2e824
		}
f2e824
		else if ($lang_set)
f2e824
		{
f2e824
			$this->set_lang($this->lang, $this->help, $lang_set, $use_db, $use_help);
f2e824
		}
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Set language entry (called by add_lang)
f2e824
	* @access private
f2e824
	*/
f2e824
	function set_lang(&$lang, &$help, $lang_file, $use_db = false, $use_help = false)
f2e824
	{
f2e824
		global $phpEx;
f2e824
f2e824
		// Make sure the language name is set (if the user setup did not happen it is not set)
f2e824
		if (!$this->lang_name)
f2e824
		{
f2e824
			global $config;
f2e824
			$this->lang_name = basename($config['default_lang']);
f2e824
		}
f2e824
f2e824
		// $lang == $this->lang
f2e824
		// $help == $this->help
f2e824
		// - add appropriate variables here, name them as they are used within the language file...
f2e824
		if (!$use_db)
f2e824
		{
f2e824
			if ($use_help && strpos($lang_file, '/') !== false)
f2e824
			{
f2e824
				$language_filename = $this->lang_path . $this->lang_name . '/' . substr($lang_file, 0, stripos($lang_file, '/') + 1) . 'help_' . substr($lang_file, stripos($lang_file, '/') + 1) . '.' . $phpEx;
f2e824
			}
f2e824
			else
f2e824
			{
f2e824
				$language_filename = $this->lang_path . $this->lang_name . '/' . (($use_help) ? 'help_' : '') . $lang_file . '.' . $phpEx;
f2e824
			}
f2e824
f2e824
			if ((@include $language_filename) === false)
f2e824
			{
f2e824
				trigger_error('Language file ' . $language_filename . ' couldn\'t be opened.', E_USER_ERROR);
f2e824
			}
f2e824
		}
f2e824
		else if ($use_db)
f2e824
		{
f2e824
			// Get Database Language Strings
f2e824
			// Put them into $lang if nothing is prefixed, put them into $help if help: is prefixed
f2e824
			// For example: help:faq, posting
f2e824
		}
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Format user date
f2e824
	*
f2e824
	* @param int $gmepoch unix timestamp
f2e824
	* @param string $format date format in date() notation. | used to indicate relative dates, for example |d m Y|, h:i is translated to Today, h:i.
f2e824
	* @param bool $forcedate force non-relative date format.
f2e824
	*
f2e824
	* @return mixed translated date
f2e824
	*/
f2e824
	function format_date($gmepoch, $format = false, $forcedate = false)
f2e824
	{
f2e824
		static $midnight;
f2e824
		static $date_cache;
f2e824
f2e824
		$format = (!$format) ? $this->date_format : $format;
f2e824
		$now = time();
f2e824
		$delta = $now - $gmepoch;
f2e824
f2e824
		if (!isset($date_cache[$format]))
f2e824
		{
f2e824
			// Is the user requesting a friendly date format (i.e. 'Today 12:42')?
f2e824
			$date_cache[$format] = array(
f2e824
				'is_short'		=> strpos($format, '|'),
f2e824
				'zone_offset'	=> $this->timezone + $this->dst,
f2e824
				'format_short'	=> substr($format, 0, strpos($format, '|')) . '||' . substr(strrchr($format, '|'), 1),
f2e824
				'format_long'	=> str_replace('|', '', $format),
f2e824
				'lang'			=> $this->lang['datetime'],
f2e824
			);
f2e824
f2e824
			// Short representation of month in format? Some languages use different terms for the long and short format of May
f2e824
			if ((strpos($format, '\M') === false && strpos($format, 'M') !== false) || (strpos($format, '\r') === false && strpos($format, 'r') !== false))
f2e824
			{
f2e824
				$date_cache[$format]['lang']['May'] = $this->lang['datetime']['May_short'];
f2e824
			}
f2e824
		}
f2e824
f2e824
		// Show date <= 1 hour ago as 'xx min ago'
f2e824
		// A small tolerence is given for times in the future and times in the future but in the same minute are displayed as '< than a minute ago'
f2e824
		if ($delta <= 3600 && ($delta >= -5 || (($now / 60) % 60) == (($gmepoch / 60) % 60)) && $date_cache[$format]['is_short'] !== false && !$forcedate && isset($this->lang['datetime']['AGO']))
f2e824
		{
f2e824
			return $this->lang(array('datetime', 'AGO'), max(0, (int) floor($delta / 60)));
f2e824
		}
f2e824
f2e824
		if (!$midnight)
f2e824
		{
f2e824
			list($d, $m, $y) = explode(' ', gmdate('j n Y', time() + $date_cache[$format]['zone_offset']));
f2e824
			$midnight = gmmktime(0, 0, 0, $m, $d, $y) - $date_cache[$format]['zone_offset'];
f2e824
		}
f2e824
f2e824
		if ($date_cache[$format]['is_short'] !== false && !$forcedate)
f2e824
		{
f2e824
			$day = false;
f2e824
f2e824
			if ($gmepoch > $midnight + 86400)
f2e824
			{
f2e824
				$day = 'TOMORROW';
f2e824
			}
f2e824
			else if ($gmepoch > $midnight)
f2e824
			{
f2e824
				$day = 'TODAY';
f2e824
			}
f2e824
			else if ($gmepoch > $midnight - 86400)
f2e824
			{
f2e824
				$day = 'YESTERDAY';
f2e824
			}
f2e824
f2e824
			if ($day !== false)
f2e824
			{
f2e824
				return str_replace('||', $this->lang['datetime'][$day], strtr(@gmdate($date_cache[$format]['format_short'], $gmepoch + $date_cache[$format]['zone_offset']), $date_cache[$format]['lang']));
f2e824
			}
f2e824
		}
f2e824
f2e824
		return strtr(@gmdate($date_cache[$format]['format_long'], $gmepoch + $date_cache[$format]['zone_offset']), $date_cache[$format]['lang']);
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Get language id currently used by the user
f2e824
	*/
f2e824
	function get_iso_lang_id()
f2e824
	{
f2e824
		global $config, $db;
f2e824
f2e824
		if (!empty($this->lang_id))
f2e824
		{
f2e824
			return $this->lang_id;
f2e824
		}
f2e824
f2e824
		if (!$this->lang_name)
f2e824
		{
f2e824
			$this->lang_name = $config['default_lang'];
f2e824
		}
f2e824
f2e824
		$sql = 'SELECT lang_id
f2e824
			FROM ' . LANG_TABLE . "
f2e824
			WHERE lang_iso = '" . $db->sql_escape($this->lang_name) . "'";
f2e824
		$result = $db->sql_query($sql);
f2e824
		$this->lang_id = (int) $db->sql_fetchfield('lang_id');
f2e824
		$db->sql_freeresult($result);
f2e824
f2e824
		return $this->lang_id;
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Get users profile fields
f2e824
	*/
f2e824
	function get_profile_fields($user_id)
f2e824
	{
f2e824
		global $db;
f2e824
f2e824
		if (isset($this->profile_fields))
f2e824
		{
f2e824
			return;
f2e824
		}
f2e824
f2e824
		$sql = 'SELECT *
f2e824
			FROM ' . PROFILE_FIELDS_DATA_TABLE . "
f2e824
			WHERE user_id = $user_id";
f2e824
		$result = $db->sql_query_limit($sql, 1);
f2e824
		$this->profile_fields = (!($row = $db->sql_fetchrow($result))) ? array() : $row;
f2e824
		$db->sql_freeresult($result);
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Specify/Get image
f2e824
	* $suffix is no longer used - we know it. ;) It is there for backward compatibility.
f2e824
	*/
f2e824
	function img($img, $alt = '', $width = false, $suffix = '', $type = 'full_tag')
f2e824
	{
f2e824
		static $imgs;
f2e824
		global $phpbb_root_path;
f2e824
f2e824
		$img_data = &$imgs[$img];
f2e824
f2e824
		if (empty($img_data))
f2e824
		{
f2e824
			if (!isset($this->img_array[$img]))
f2e824
			{
f2e824
				// Do not fill the image to let designers decide what to do if the image is empty
f2e824
				$img_data = '';
f2e824
				return $img_data;
f2e824
			}
f2e824
f2e824
			$img_data['src'] = $phpbb_root_path . 'styles/' . $this->theme['imageset_path'] . '/imageset/' . ($this->img_array[$img]['image_lang'] ? $this->img_array[$img]['image_lang'] .'/' : '') . $this->img_array[$img]['image_filename'];
f2e824
			$img_data['width'] = $this->img_array[$img]['image_width'];
f2e824
			$img_data['height'] = $this->img_array[$img]['image_height'];
f2e824
		}
f2e824
f2e824
		$alt = (!empty($this->lang[$alt])) ? $this->lang[$alt] : $alt;
f2e824
f2e824
		switch ($type)
f2e824
		{
f2e824
			case 'src':
f2e824
				return $img_data['src'];
f2e824
			break;
f2e824
f2e824
			case 'width':
f2e824
				return ($width === false) ? $img_data['width'] : $width;
f2e824
			break;
f2e824
f2e824
			case 'height':
f2e824
				return $img_data['height'];
f2e824
			break;
f2e824
f2e824
			default:
f2e824
				$use_width = ($width === false) ? $img_data['width'] : $width;
f2e824
f2e824
				return '' . $alt . '';
f2e824
			break;
f2e824
		}
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Get option bit field from user options
f2e824
	*/
f2e824
	function optionget($key, $data = false)
f2e824
	{
f2e824
		if (!isset($this->keyvalues[$key]))
f2e824
		{
f2e824
			$var = ($data) ? $data : $this->data['user_options'];
f2e824
			$this->keyvalues[$key] = ($var & 1 << $this->keyoptions[$key]) ? true : false;
f2e824
		}
f2e824
f2e824
		return $this->keyvalues[$key];
f2e824
	}
f2e824
f2e824
	/**
f2e824
	* Set option bit field for user options
f2e824
	*/
f2e824
	function optionset($key, $value, $data = false)
f2e824
	{
f2e824
		$var = ($data) ? $data : $this->data['user_options'];
f2e824
f2e824
		if ($value && !($var & 1 << $this->keyoptions[$key]))
f2e824
		{
f2e824
			$var += 1 << $this->keyoptions[$key];
f2e824
		}
f2e824
		else if (!$value && ($var & 1 << $this->keyoptions[$key]))
f2e824
		{
f2e824
			$var -= 1 << $this->keyoptions[$key];
f2e824
		}
f2e824
		else
f2e824
		{
f2e824
			return ($data) ? $var : false;
f2e824
		}
f2e824
f2e824
		if (!$data)
f2e824
		{
f2e824
			$this->data['user_options'] = $var;
f2e824
			return true;
f2e824
		}
f2e824
		else
f2e824
		{
f2e824
			return $var;
f2e824
		}
f2e824
	}
f2e824
}
f2e824
f2e824
?>