|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @package phpBB3
|
|
|
4c79b5 |
* @version $Id: session.php 9170 2008-12-04 12:56:12Z toonarmy $
|
|
|
4c79b5 |
* @copyright (c) 2005 phpBB Group
|
|
|
4c79b5 |
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* @ignore
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
if (!defined('IN_PHPBB'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
exit;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Session class
|
|
|
4c79b5 |
* @package phpBB3
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
class session
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
var $cookie_data = array();
|
|
|
4c79b5 |
var $page = array();
|
|
|
4c79b5 |
var $data = array();
|
|
|
4c79b5 |
var $browser = '';
|
|
|
4c79b5 |
var $forwarded_for = '';
|
|
|
4c79b5 |
var $host = '';
|
|
|
4c79b5 |
var $session_id = '';
|
|
|
4c79b5 |
var $ip = '';
|
|
|
4c79b5 |
var $load = 0;
|
|
|
4c79b5 |
var $time_now = 0;
|
|
|
4c79b5 |
var $update_session_page = true;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Extract current session page
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @param string $root_path current root path (phpbb_root_path)
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function extract_current_page($root_path)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$page_array = array();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// First of all, get the request uri...
|
|
|
4c79b5 |
$script_name = (!empty($_SERVER['PHP_SELF'])) ? $_SERVER['PHP_SELF'] : getenv('PHP_SELF');
|
|
|
4c79b5 |
$args = (!empty($_SERVER['QUERY_STRING'])) ? explode('&', $_SERVER['QUERY_STRING']) : explode('&', getenv('QUERY_STRING'));
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// 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...
|
|
|
4c79b5 |
if (!$script_name)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$script_name = (!empty($_SERVER['REQUEST_URI'])) ? $_SERVER['REQUEST_URI'] : getenv('REQUEST_URI');
|
|
|
4c79b5 |
$script_name = (($pos = strpos($script_name, '?')) !== false) ? substr($script_name, 0, $pos) : $script_name;
|
|
|
4c79b5 |
$page_array['failover'] = 1;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Replace backslashes and doubled slashes (could happen on some proxy setups)
|
|
|
4c79b5 |
$script_name = str_replace(array('\\', '//'), '/', $script_name);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Now, remove the sid and let us get a clean query string...
|
|
|
4c79b5 |
$use_args = array();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Since some browser do not encode correctly we need to do this with some "special" characters...
|
|
|
4c79b5 |
// " -> %22, ' => %27, < -> %3C, > -> %3E
|
|
|
4c79b5 |
$find = array('"', "'", '<', '>');
|
|
|
4c79b5 |
$replace = array('%22', '%27', '%3C', '%3E');
|
|
|
4c79b5 |
|
|
|
4c79b5 |
foreach ($args as $key => $argument)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (strpos($argument, 'sid=') === 0)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
continue;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$use_args[] = str_replace($find, $replace, $argument);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
unset($args);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// The following examples given are for an request uri of {path to the phpbb directory}/adm/index.php?i=10&b=2
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// The current query string
|
|
|
4c79b5 |
$query_string = trim(implode('&', $use_args));
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// basenamed page name (for example: index.php)
|
|
|
4c79b5 |
$page_name = basename($script_name);
|
|
|
4c79b5 |
$page_name = urlencode(htmlspecialchars($page_name));
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// current directory within the phpBB root (for example: adm)
|
|
|
4c79b5 |
$root_dirs = explode('/', str_replace('\\', '/', phpbb_realpath($root_path)));
|
|
|
4c79b5 |
$page_dirs = explode('/', str_replace('\\', '/', phpbb_realpath('./')));
|
|
|
4c79b5 |
$intersection = array_intersect_assoc($root_dirs, $page_dirs);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$root_dirs = array_diff_assoc($root_dirs, $intersection);
|
|
|
4c79b5 |
$page_dirs = array_diff_assoc($page_dirs, $intersection);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$page_dir = str_repeat('../', sizeof($root_dirs)) . implode('/', $page_dirs);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($page_dir && substr($page_dir, -1, 1) == '/')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$page_dir = substr($page_dir, 0, -1);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Current page from phpBB root (for example: adm/index.php?i=10&b=2)
|
|
|
4c79b5 |
$page = (($page_dir) ? $page_dir . '/' : '') . $page_name . (($query_string) ? "?$query_string" : '');
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// The script path from the webroot to the current directory (for example: /phpBB3/adm/) : always prefixed with / and ends in /
|
|
|
4c79b5 |
$script_path = trim(str_replace('\\', '/', dirname($script_name)));
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// The script path from the webroot to the phpBB root (for example: /phpBB3/)
|
|
|
4c79b5 |
$script_dirs = explode('/', $script_path);
|
|
|
4c79b5 |
array_splice($script_dirs, -sizeof($page_dirs));
|
|
|
4c79b5 |
$root_script_path = implode('/', $script_dirs) . (sizeof($root_dirs) ? '/' . implode('/', $root_dirs) : '');
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// We are on the base level (phpBB root == webroot), lets adjust the variables a bit...
|
|
|
4c79b5 |
if (!$root_script_path)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$root_script_path = ($page_dir) ? str_replace($page_dir, '', $script_path) : $script_path;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$script_path .= (substr($script_path, -1, 1) == '/') ? '' : '/';
|
|
|
4c79b5 |
$root_script_path .= (substr($root_script_path, -1, 1) == '/') ? '' : '/';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$page_array += array(
|
|
|
4c79b5 |
'page_name' => $page_name,
|
|
|
4c79b5 |
'page_dir' => $page_dir,
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'query_string' => $query_string,
|
|
|
4c79b5 |
'script_path' => str_replace(' ', '%20', htmlspecialchars($script_path)),
|
|
|
4c79b5 |
'root_script_path' => str_replace(' ', '%20', htmlspecialchars($root_script_path)),
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'page' => $page,
|
|
|
4c79b5 |
'forum' => (isset($_REQUEST['f']) && $_REQUEST['f'] > 0) ? (int) $_REQUEST['f'] : 0,
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return $page_array;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Get valid hostname/port. HTTP_HOST is used, SERVER_NAME if HTTP_HOST not present.
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function extract_current_hostname()
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $config;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Get hostname
|
|
|
4c79b5 |
$host = (!empty($_SERVER['HTTP_HOST'])) ? $_SERVER['HTTP_HOST'] : ((!empty($_SERVER['SERVER_NAME'])) ? $_SERVER['SERVER_NAME'] : getenv('SERVER_NAME'));
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Should be a string and lowered
|
|
|
4c79b5 |
$host = (string) strtolower($host);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// If host is equal the cookie domain or the server name (if config is set), then we assume it is valid
|
|
|
4c79b5 |
if ((isset($config['cookie_domain']) && $host === $config['cookie_domain']) || (isset($config['server_name']) && $host === $config['server_name']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return $host;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Is the host actually a IP? If so, we use the IP... (IPv4)
|
|
|
4c79b5 |
if (long2ip(ip2long($host)) === $host)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return $host;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// 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
|
|
|
4c79b5 |
$host = @parse_url('http://' . $host);
|
|
|
4c79b5 |
$host = (!empty($host['host'])) ? $host['host'] : '';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Remove any portions not removed by parse_url (#)
|
|
|
4c79b5 |
$host = str_replace('#', '', $host);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// If, by any means, the host is now empty, we will use a "best approach" way to guess one
|
|
|
4c79b5 |
if (empty($host))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (!empty($config['server_name']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$host = $config['server_name'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else if (!empty($config['cookie_domain']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$host = (strpos($config['cookie_domain'], '.') === 0) ? substr($config['cookie_domain'], 1) : $config['cookie_domain'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Set to OS hostname or localhost
|
|
|
4c79b5 |
$host = (function_exists('php_uname')) ? php_uname('n') : 'localhost';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// It may be still no valid host, but for sure only a hostname (we may further expand on the cookie domain... if set)
|
|
|
4c79b5 |
return $host;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Start session management
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* This is where all session activity begins. We gather various pieces of
|
|
|
4c79b5 |
* information from the client and server. We test to see if a session already
|
|
|
4c79b5 |
* exists. If it does, fine and dandy. If it doesn't we'll go on to create a
|
|
|
4c79b5 |
* new one ... pretty logical heh? We also examine the system load (if we're
|
|
|
4c79b5 |
* running on a system which makes such information readily available) and
|
|
|
4c79b5 |
* halt if it's above an admin definable limit.
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @param bool $update_session_page if true the session page gets updated.
|
|
|
4c79b5 |
* This can be set to circumvent certain scripts to update the users last visited page.
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function session_begin($update_session_page = true)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $phpEx, $SID, $_SID, $_EXTRA_URL, $db, $config, $phpbb_root_path;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Give us some basic information
|
|
|
4c79b5 |
$this->time_now = time();
|
|
|
4c79b5 |
$this->cookie_data = array('u' => 0, 'k' => '');
|
|
|
4c79b5 |
$this->update_session_page = $update_session_page;
|
|
|
4c79b5 |
$this->browser = (!empty($_SERVER['HTTP_USER_AGENT'])) ? htmlspecialchars((string) $_SERVER['HTTP_USER_AGENT']) : '';
|
|
|
4c79b5 |
$this->referer = (!empty($_SERVER['HTTP_REFERER'])) ? htmlspecialchars((string) $_SERVER['HTTP_REFERER']) : '';
|
|
|
4c79b5 |
$this->forwarded_for = (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) ? (string) $_SERVER['HTTP_X_FORWARDED_FOR'] : '';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$this->host = $this->extract_current_hostname();
|
|
|
4c79b5 |
$this->page = $this->extract_current_page($phpbb_root_path);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// if the forwarded for header shall be checked we have to validate its contents
|
|
|
4c79b5 |
if ($config['forwarded_for_check'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->forwarded_for = preg_replace('#, +#', ', ', $this->forwarded_for);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// split the list of IPs
|
|
|
4c79b5 |
$ips = explode(', ', $this->forwarded_for);
|
|
|
4c79b5 |
foreach ($ips as $ip)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// check IPv4 first, the IPv6 is hopefully only going to be used very seldomly
|
|
|
4c79b5 |
if (!empty($ip) && !preg_match(get_preg_expression('ipv4'), $ip) && !preg_match(get_preg_expression('ipv6'), $ip))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// contains invalid data, don't use the forwarded for header
|
|
|
4c79b5 |
$this->forwarded_for = '';
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->forwarded_for = '';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (isset($_COOKIE[$config['cookie_name'] . '_sid']) || isset($_COOKIE[$config['cookie_name'] . '_u']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->cookie_data['u'] = request_var($config['cookie_name'] . '_u', 0, false, true);
|
|
|
4c79b5 |
$this->cookie_data['k'] = request_var($config['cookie_name'] . '_k', '', false, true);
|
|
|
4c79b5 |
$this->session_id = request_var($config['cookie_name'] . '_sid', '', false, true);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$SID = (defined('NEED_SID')) ? '?sid=' . $this->session_id : '?sid=';
|
|
|
4c79b5 |
$_SID = (defined('NEED_SID')) ? $this->session_id : '';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (empty($this->session_id))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->session_id = $_SID = request_var('sid', '');
|
|
|
4c79b5 |
$SID = '?sid=' . $this->session_id;
|
|
|
4c79b5 |
$this->cookie_data = array('u' => 0, 'k' => '');
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->session_id = $_SID = request_var('sid', '');
|
|
|
4c79b5 |
$SID = '?sid=' . $this->session_id;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$_EXTRA_URL = array();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Why no forwarded_for et al? Well, too easily spoofed. With the results of my recent requests
|
|
|
4c79b5 |
// it's pretty clear that in the majority of cases you'll at least be left with a proxy/cache ip.
|
|
|
4c79b5 |
$this->ip = (!empty($_SERVER['REMOTE_ADDR'])) ? htmlspecialchars($_SERVER['REMOTE_ADDR']) : '';
|
|
|
4c79b5 |
$this->load = false;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Load limit check (if applicable)
|
|
|
4c79b5 |
if ($config['limit_load'] || $config['limit_search_load'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if ((function_exists('sys_getloadavg') && $load = sys_getloadavg()) || ($load = explode(' ', @file_get_contents('/proc/loadavg'))))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->load = array_slice($load, 0, 1);
|
|
|
4c79b5 |
$this->load = floatval($this->load[0]);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
set_config('limit_load', '0');
|
|
|
4c79b5 |
set_config('limit_search_load', '0');
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Is session_id is set or session_id is set and matches the url param if required
|
|
|
4c79b5 |
if (!empty($this->session_id) && (!defined('NEED_SID') || (isset($_GET['sid']) && $this->session_id === $_GET['sid'])))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql = 'SELECT u.*, s.*
|
|
|
4c79b5 |
FROM ' . SESSIONS_TABLE . ' s, ' . USERS_TABLE . " u
|
|
|
4c79b5 |
WHERE s.session_id = '" . $db->sql_escape($this->session_id) . "'
|
|
|
4c79b5 |
AND u.user_id = s.session_user_id";
|
|
|
4c79b5 |
$result = $db->sql_query($sql);
|
|
|
4c79b5 |
$this->data = $db->sql_fetchrow($result);
|
|
|
4c79b5 |
$db->sql_freeresult($result);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Did the session exist in the DB?
|
|
|
4c79b5 |
if (isset($this->data['user_id']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Validate IP length according to admin ... enforces an IP
|
|
|
4c79b5 |
// check on bots if admin requires this
|
|
|
4c79b5 |
// $quadcheck = ($config['ip_check_bot'] && $this->data['user_type'] & USER_BOT) ? 4 : $config['ip_check'];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (strpos($this->ip, ':') !== false && strpos($this->data['session_ip'], ':') !== false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$s_ip = short_ipv6($this->data['session_ip'], $config['ip_check']);
|
|
|
4c79b5 |
$u_ip = short_ipv6($this->ip, $config['ip_check']);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$s_ip = implode('.', array_slice(explode('.', $this->data['session_ip']), 0, $config['ip_check']));
|
|
|
4c79b5 |
$u_ip = implode('.', array_slice(explode('.', $this->ip), 0, $config['ip_check']));
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$s_browser = ($config['browser_check']) ? trim(strtolower(substr($this->data['session_browser'], 0, 149))) : '';
|
|
|
4c79b5 |
$u_browser = ($config['browser_check']) ? trim(strtolower(substr($this->browser, 0, 149))) : '';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$s_forwarded_for = ($config['forwarded_for_check']) ? substr($this->data['session_forwarded_for'], 0, 254) : '';
|
|
|
4c79b5 |
$u_forwarded_for = ($config['forwarded_for_check']) ? substr($this->forwarded_for, 0, 254) : '';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// referer checks
|
|
|
4c79b5 |
// The @ before $config['referer_validation'] suppresses notices present while running the updater
|
|
|
4c79b5 |
$check_referer_path = (@$config['referer_validation'] == REFERER_VALIDATE_PATH);
|
|
|
4c79b5 |
$referer_valid = true;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// we assume HEAD and TRACE to be foul play and thus only whitelist GET
|
|
|
4c79b5 |
if (@$config['referer_validation'] && isset($_SERVER['REQUEST_METHOD']) && strtolower($_SERVER['REQUEST_METHOD']) !== 'get')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$referer_valid = $this->validate_referer($check_referer_path);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($u_ip === $s_ip && $s_browser === $u_browser && $s_forwarded_for === $u_forwarded_for && $referer_valid)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$session_expired = false;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Check whether the session is still valid if we have one
|
|
|
4c79b5 |
$method = basename(trim($config['auth_method']));
|
|
|
4c79b5 |
include_once($phpbb_root_path . 'includes/auth/auth_' . $method . '.' . $phpEx);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$method = 'validate_session_' . $method;
|
|
|
4c79b5 |
if (function_exists($method))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (!$method($this->data))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$session_expired = true;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!$session_expired)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Check the session length timeframe if autologin is not enabled.
|
|
|
4c79b5 |
// Else check the autologin length... and also removing those having autologin enabled but no longer allowed board-wide.
|
|
|
4c79b5 |
if (!$this->data['session_autologin'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if ($this->data['session_time'] < $this->time_now - ($config['session_length'] + 60))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$session_expired = true;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else if (!$config['allow_autologin'] || ($config['max_autologin_time'] && $this->data['session_time'] < $this->time_now - (86400 * (int) $config['max_autologin_time']) + 60))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$session_expired = true;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!$session_expired)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Only update session DB a minute or so after last update or if page changes
|
|
|
4c79b5 |
if ($this->time_now - $this->data['session_time'] > 60 || ($this->update_session_page && $this->data['session_page'] != $this->page['page']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql_ary = array('session_time' => $this->time_now);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($this->update_session_page)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql_ary['session_page'] = substr($this->page['page'], 0, 199);
|
|
|
4c79b5 |
$sql_ary['session_forum_id'] = $this->page['forum'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$db->sql_return_on_error(true);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'UPDATE ' . SESSIONS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . "
|
|
|
4c79b5 |
WHERE session_id = '" . $db->sql_escape($this->session_id) . "'";
|
|
|
4c79b5 |
$result = $db->sql_query($sql);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$db->sql_return_on_error(false);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// If the database is not yet updated, there will be an error due to the session_forum_id
|
|
|
4c79b5 |
// @todo REMOVE for 3.0.2
|
|
|
4c79b5 |
if ($result === false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
unset($sql_ary['session_forum_id']);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'UPDATE ' . SESSIONS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . "
|
|
|
4c79b5 |
WHERE session_id = '" . $db->sql_escape($this->session_id) . "'";
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$this->data['is_registered'] = ($this->data['user_id'] != ANONYMOUS && ($this->data['user_type'] == USER_NORMAL || $this->data['user_type'] == USER_FOUNDER)) ? true : false;
|
|
|
4c79b5 |
$this->data['is_bot'] = (!$this->data['is_registered'] && $this->data['user_id'] != ANONYMOUS) ? true : false;
|
|
|
4c79b5 |
$this->data['user_lang'] = basename($this->data['user_lang']);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return true;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Added logging temporarly to help debug bugs...
|
|
|
4c79b5 |
if (defined('DEBUG_EXTRA') && $this->data['user_id'] != ANONYMOUS)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if ($referer_valid)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
add_log('critical', 'LOG_IP_BROWSER_FORWARDED_CHECK', $u_ip, $s_ip, $u_browser, $s_browser, htmlspecialchars($u_forwarded_for), htmlspecialchars($s_forwarded_for));
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
add_log('critical', 'LOG_REFERER_INVALID', $this->referer);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// If we reach here then no (valid) session exists. So we'll create a new one
|
|
|
4c79b5 |
return $this->session_create();
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Create a new session
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* If upon trying to start a session we discover there is nothing existing we
|
|
|
4c79b5 |
* jump here. Additionally this method is called directly during login to regenerate
|
|
|
4c79b5 |
* the session for the specific user. In this method we carry out a number of tasks;
|
|
|
4c79b5 |
* garbage collection, (search)bot checking, banned user comparison. Basically
|
|
|
4c79b5 |
* though this method will result in a new session for a specific user.
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function session_create($user_id = false, $set_admin = false, $persist_login = false, $viewonline = true)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $SID, $_SID, $db, $config, $cache, $phpbb_root_path, $phpEx;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$this->data = array();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/* Garbage collection ... remove old sessions updating user information
|
|
|
4c79b5 |
// if necessary. It means (potentially) 11 queries but only infrequently
|
|
|
4c79b5 |
if ($this->time_now > $config['session_last_gc'] + $config['session_gc'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->session_gc();
|
|
|
4c79b5 |
}*/
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Do we allow autologin on this board? No? Then override anything
|
|
|
4c79b5 |
// that may be requested here
|
|
|
4c79b5 |
if (!$config['allow_autologin'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->cookie_data['k'] = $persist_login = false;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Here we do a bot check, oh er saucy! No, not that kind of bot
|
|
|
4c79b5 |
* check. We loop through the list of bots defined by the admin and
|
|
|
4c79b5 |
* see if we have any useragent and/or IP matches. If we do, this is a
|
|
|
4c79b5 |
* bot, act accordingly
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
$bot = false;
|
|
|
4c79b5 |
$active_bots = $cache->obtain_bots();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
foreach ($active_bots as $row)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if ($row['bot_agent'] && preg_match('#' . str_replace('\*', '.*?', preg_quote($row['bot_agent'], '#')) . '#i', $this->browser))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$bot = $row['user_id'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// If ip is supplied, we will make sure the ip is matching too...
|
|
|
4c79b5 |
if ($row['bot_ip'] && ($bot || !$row['bot_agent']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Set bot to false, then we only have to set it to true if it is matching
|
|
|
4c79b5 |
$bot = false;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
foreach (explode(',', $row['bot_ip']) as $bot_ip)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (strpos($this->ip, $bot_ip) === 0)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$bot = (int) $row['user_id'];
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($bot)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$method = basename(trim($config['auth_method']));
|
|
|
4c79b5 |
include_once($phpbb_root_path . 'includes/auth/auth_' . $method . '.' . $phpEx);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$method = 'autologin_' . $method;
|
|
|
4c79b5 |
if (function_exists($method))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->data = $method();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (sizeof($this->data))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->cookie_data['k'] = '';
|
|
|
4c79b5 |
$this->cookie_data['u'] = $this->data['user_id'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// If we're presented with an autologin key we'll join against it.
|
|
|
4c79b5 |
// Else if we've been passed a user_id we'll grab data based on that
|
|
|
4c79b5 |
if (isset($this->cookie_data['k']) && $this->cookie_data['k'] && $this->cookie_data['u'] && !sizeof($this->data))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql = 'SELECT u.*
|
|
|
4c79b5 |
FROM ' . USERS_TABLE . ' u, ' . SESSIONS_KEYS_TABLE . ' k
|
|
|
4c79b5 |
WHERE u.user_id = ' . (int) $this->cookie_data['u'] . '
|
|
|
4c79b5 |
AND u.user_type IN (' . USER_NORMAL . ', ' . USER_FOUNDER . ")
|
|
|
4c79b5 |
AND k.user_id = u.user_id
|
|
|
4c79b5 |
AND k.key_id = '" . $db->sql_escape(md5($this->cookie_data['k'])) . "'";
|
|
|
4c79b5 |
$result = $db->sql_query($sql);
|
|
|
4c79b5 |
$this->data = $db->sql_fetchrow($result);
|
|
|
4c79b5 |
$db->sql_freeresult($result);
|
|
|
4c79b5 |
$bot = false;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else if ($user_id !== false && !sizeof($this->data))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->cookie_data['k'] = '';
|
|
|
4c79b5 |
$this->cookie_data['u'] = $user_id;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'SELECT *
|
|
|
4c79b5 |
FROM ' . USERS_TABLE . '
|
|
|
4c79b5 |
WHERE user_id = ' . (int) $this->cookie_data['u'] . '
|
|
|
4c79b5 |
AND user_type IN (' . USER_NORMAL . ', ' . USER_FOUNDER . ')';
|
|
|
4c79b5 |
$result = $db->sql_query($sql);
|
|
|
4c79b5 |
$this->data = $db->sql_fetchrow($result);
|
|
|
4c79b5 |
$db->sql_freeresult($result);
|
|
|
4c79b5 |
$bot = false;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// If no data was returned one or more of the following occurred:
|
|
|
4c79b5 |
// Key didn't match one in the DB
|
|
|
4c79b5 |
// User does not exist
|
|
|
4c79b5 |
// User is inactive
|
|
|
4c79b5 |
// User is bot
|
|
|
4c79b5 |
if (!sizeof($this->data) || !is_array($this->data))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->cookie_data['k'] = '';
|
|
|
4c79b5 |
$this->cookie_data['u'] = ($bot) ? $bot : ANONYMOUS;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!$bot)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql = 'SELECT *
|
|
|
4c79b5 |
FROM ' . USERS_TABLE . '
|
|
|
4c79b5 |
WHERE user_id = ' . (int) $this->cookie_data['u'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// We give bots always the same session if it is not yet expired.
|
|
|
4c79b5 |
$sql = 'SELECT u.*, s.*
|
|
|
4c79b5 |
FROM ' . USERS_TABLE . ' u
|
|
|
4c79b5 |
LEFT JOIN ' . SESSIONS_TABLE . ' s ON (s.session_user_id = u.user_id)
|
|
|
4c79b5 |
WHERE u.user_id = ' . (int) $bot;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$result = $db->sql_query($sql);
|
|
|
4c79b5 |
$this->data = $db->sql_fetchrow($result);
|
|
|
4c79b5 |
$db->sql_freeresult($result);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($this->data['user_id'] != ANONYMOUS && !$bot)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$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());
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->data['session_last_visit'] = $this->time_now;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Force user id to be integer...
|
|
|
4c79b5 |
$this->data['user_id'] = (int) $this->data['user_id'];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// At this stage we should have a filled data array, defined cookie u and k data.
|
|
|
4c79b5 |
// data array should contain recent session info if we're a real user and a recent
|
|
|
4c79b5 |
// session exists in which case session_id will also be set
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Is user banned? Are they excluded? Won't return on ban, exists within method
|
|
|
4c79b5 |
if ($this->data['user_type'] != USER_FOUNDER)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (!$config['forwarded_for_check'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->check_ban($this->data['user_id'], $this->ip);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$ips = explode(', ', $this->forwarded_for);
|
|
|
4c79b5 |
$ips[] = $this->ip;
|
|
|
4c79b5 |
$this->check_ban($this->data['user_id'], $ips);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$this->data['is_registered'] = (!$bot && $this->data['user_id'] != ANONYMOUS && ($this->data['user_type'] == USER_NORMAL || $this->data['user_type'] == USER_FOUNDER)) ? true : false;
|
|
|
4c79b5 |
$this->data['is_bot'] = ($bot) ? true : false;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// If our friend is a bot, we re-assign a previously assigned session
|
|
|
4c79b5 |
if ($this->data['is_bot'] && $bot == $this->data['user_id'] && $this->data['session_id'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Only assign the current session if the ip, browser and forwarded_for match...
|
|
|
4c79b5 |
if (strpos($this->ip, ':') !== false && strpos($this->data['session_ip'], ':') !== false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$s_ip = short_ipv6($this->data['session_ip'], $config['ip_check']);
|
|
|
4c79b5 |
$u_ip = short_ipv6($this->ip, $config['ip_check']);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$s_ip = implode('.', array_slice(explode('.', $this->data['session_ip']), 0, $config['ip_check']));
|
|
|
4c79b5 |
$u_ip = implode('.', array_slice(explode('.', $this->ip), 0, $config['ip_check']));
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$s_browser = ($config['browser_check']) ? trim(strtolower(substr($this->data['session_browser'], 0, 149))) : '';
|
|
|
4c79b5 |
$u_browser = ($config['browser_check']) ? trim(strtolower(substr($this->browser, 0, 149))) : '';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$s_forwarded_for = ($config['forwarded_for_check']) ? substr($this->data['session_forwarded_for'], 0, 254) : '';
|
|
|
4c79b5 |
$u_forwarded_for = ($config['forwarded_for_check']) ? substr($this->forwarded_for, 0, 254) : '';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($u_ip === $s_ip && $s_browser === $u_browser && $s_forwarded_for === $u_forwarded_for)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->session_id = $this->data['session_id'];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Only update session DB a minute or so after last update or if page changes
|
|
|
4c79b5 |
if ($this->time_now - $this->data['session_time'] > 60 || ($this->update_session_page && $this->data['session_page'] != $this->page['page']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->data['session_time'] = $this->data['session_last_visit'] = $this->time_now;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql_ary = array('session_time' => $this->time_now, 'session_last_visit' => $this->time_now, 'session_admin' => 0);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($this->update_session_page)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql_ary['session_page'] = substr($this->page['page'], 0, 199);
|
|
|
4c79b5 |
$sql_ary['session_forum_id'] = $this->page['forum'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'UPDATE ' . SESSIONS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . "
|
|
|
4c79b5 |
WHERE session_id = '" . $db->sql_escape($this->session_id) . "'";
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Update the last visit time
|
|
|
4c79b5 |
$sql = 'UPDATE ' . USERS_TABLE . '
|
|
|
4c79b5 |
SET user_lastvisit = ' . (int) $this->data['session_time'] . '
|
|
|
4c79b5 |
WHERE user_id = ' . (int) $this->data['user_id'];
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$SID = '?sid=';
|
|
|
4c79b5 |
$_SID = '';
|
|
|
4c79b5 |
return true;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// If the ip and browser does not match make sure we only have one bot assigned to one session
|
|
|
4c79b5 |
$db->sql_query('DELETE FROM ' . SESSIONS_TABLE . ' WHERE session_user_id = ' . $this->data['user_id']);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$session_autologin = (($this->cookie_data['k'] || $persist_login) && $this->data['is_registered']) ? true : false;
|
|
|
4c79b5 |
$set_admin = ($set_admin && $this->data['is_registered']) ? true : false;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Create or update the session
|
|
|
4c79b5 |
$sql_ary = array(
|
|
|
4c79b5 |
'session_user_id' => (int) $this->data['user_id'],
|
|
|
4c79b5 |
'session_start' => (int) $this->time_now,
|
|
|
4c79b5 |
'session_last_visit' => (int) $this->data['session_last_visit'],
|
|
|
4c79b5 |
'session_time' => (int) $this->time_now,
|
|
|
4c79b5 |
'session_browser' => (string) trim(substr($this->browser, 0, 149)),
|
|
|
4c79b5 |
'session_forwarded_for' => (string) $this->forwarded_for,
|
|
|
4c79b5 |
'session_ip' => (string) $this->ip,
|
|
|
4c79b5 |
'session_autologin' => ($session_autologin) ? 1 : 0,
|
|
|
4c79b5 |
'session_admin' => ($set_admin) ? 1 : 0,
|
|
|
4c79b5 |
'session_viewonline' => ($viewonline) ? 1 : 0,
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($this->update_session_page)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql_ary['session_page'] = (string) substr($this->page['page'], 0, 199);
|
|
|
4c79b5 |
$sql_ary['session_forum_id'] = $this->page['forum'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$db->sql_return_on_error(true);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'DELETE
|
|
|
4c79b5 |
FROM ' . SESSIONS_TABLE . '
|
|
|
4c79b5 |
WHERE session_id = \'' . $db->sql_escape($this->session_id) . '\'
|
|
|
4c79b5 |
AND session_user_id = ' . ANONYMOUS;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!defined('IN_ERROR_HANDLER') && (!$this->session_id || !$db->sql_query($sql) || !$db->sql_affectedrows()))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Limit new sessions in 1 minute period (if required)
|
|
|
4c79b5 |
if (empty($this->data['session_time']) && $config['active_sessions'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// $db->sql_return_on_error(false);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'SELECT COUNT(session_id) AS sessions
|
|
|
4c79b5 |
FROM ' . SESSIONS_TABLE . '
|
|
|
4c79b5 |
WHERE session_time >= ' . ($this->time_now - 60);
|
|
|
4c79b5 |
$result = $db->sql_query($sql);
|
|
|
4c79b5 |
$row = $db->sql_fetchrow($result);
|
|
|
4c79b5 |
$db->sql_freeresult($result);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ((int) $row['sessions'] > (int) $config['active_sessions'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
header('HTTP/1.1 503 Service Unavailable');
|
|
|
4c79b5 |
trigger_error('BOARD_UNAVAILABLE');
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Since we re-create the session id here, the inserted row must be unique. Therefore, we display potential errors.
|
|
|
4c79b5 |
// Commented out because it will not allow forums to update correctly
|
|
|
4c79b5 |
// $db->sql_return_on_error(false);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$this->session_id = $this->data['session_id'] = md5(unique_id());
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql_ary['session_id'] = (string) $this->session_id;
|
|
|
4c79b5 |
$sql_ary['session_page'] = (string) substr($this->page['page'], 0, 199);
|
|
|
4c79b5 |
$sql_ary['session_forum_id'] = $this->page['forum'];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'INSERT INTO ' . SESSIONS_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary);
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$db->sql_return_on_error(false);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Regenerate autologin/persistent login key
|
|
|
4c79b5 |
if ($session_autologin)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->set_login_key();
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// refresh data
|
|
|
4c79b5 |
$SID = '?sid=' . $this->session_id;
|
|
|
4c79b5 |
$_SID = $this->session_id;
|
|
|
4c79b5 |
$this->data = array_merge($this->data, $sql_ary);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!$bot)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$cookie_expire = $this->time_now + (($config['max_autologin_time']) ? 86400 * (int) $config['max_autologin_time'] : 31536000);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$this->set_cookie('u', $this->cookie_data['u'], $cookie_expire);
|
|
|
4c79b5 |
$this->set_cookie('k', $this->cookie_data['k'], $cookie_expire);
|
|
|
4c79b5 |
$this->set_cookie('sid', $this->session_id, $cookie_expire);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
unset($cookie_expire);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'SELECT COUNT(session_id) AS sessions
|
|
|
4c79b5 |
FROM ' . SESSIONS_TABLE . '
|
|
|
4c79b5 |
WHERE session_user_id = ' . (int) $this->data['user_id'] . '
|
|
|
4c79b5 |
AND session_time >= ' . (int) ($this->time_now - (max($config['session_length'], $config['form_token_lifetime'])));
|
|
|
4c79b5 |
$result = $db->sql_query($sql);
|
|
|
4c79b5 |
$row = $db->sql_fetchrow($result);
|
|
|
4c79b5 |
$db->sql_freeresult($result);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ((int) $row['sessions'] <= 1 || empty($this->data['user_form_salt']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->data['user_form_salt'] = unique_id();
|
|
|
4c79b5 |
// Update the form key
|
|
|
4c79b5 |
$sql = 'UPDATE ' . USERS_TABLE . '
|
|
|
4c79b5 |
SET user_form_salt = \'' . $db->sql_escape($this->data['user_form_salt']) . '\'
|
|
|
4c79b5 |
WHERE user_id = ' . (int) $this->data['user_id'];
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->data['session_time'] = $this->data['session_last_visit'] = $this->time_now;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Update the last visit time
|
|
|
4c79b5 |
$sql = 'UPDATE ' . USERS_TABLE . '
|
|
|
4c79b5 |
SET user_lastvisit = ' . (int) $this->data['session_time'] . '
|
|
|
4c79b5 |
WHERE user_id = ' . (int) $this->data['user_id'];
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$SID = '?sid=';
|
|
|
4c79b5 |
$_SID = '';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return true;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Kills a session
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* This method does what it says on the tin. It will delete a pre-existing session.
|
|
|
4c79b5 |
* It resets cookie information (destroying any autologin key within that cookie data)
|
|
|
4c79b5 |
* and update the users information from the relevant session data. It will then
|
|
|
4c79b5 |
* grab guest user information.
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function session_kill($new_session = true)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $SID, $_SID, $db, $config, $phpbb_root_path, $phpEx;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'DELETE FROM ' . SESSIONS_TABLE . "
|
|
|
4c79b5 |
WHERE session_id = '" . $db->sql_escape($this->session_id) . "'
|
|
|
4c79b5 |
AND session_user_id = " . (int) $this->data['user_id'];
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Allow connecting logout with external auth method logout
|
|
|
4c79b5 |
$method = basename(trim($config['auth_method']));
|
|
|
4c79b5 |
include_once($phpbb_root_path . 'includes/auth/auth_' . $method . '.' . $phpEx);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$method = 'logout_' . $method;
|
|
|
4c79b5 |
if (function_exists($method))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$method($this->data, $new_session);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($this->data['user_id'] != ANONYMOUS)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Delete existing session, update last visit info first!
|
|
|
4c79b5 |
if (!isset($this->data['session_time']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->data['session_time'] = time();
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'UPDATE ' . USERS_TABLE . '
|
|
|
4c79b5 |
SET user_lastvisit = ' . (int) $this->data['session_time'] . '
|
|
|
4c79b5 |
WHERE user_id = ' . (int) $this->data['user_id'];
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($this->cookie_data['k'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql = 'DELETE FROM ' . SESSIONS_KEYS_TABLE . '
|
|
|
4c79b5 |
WHERE user_id = ' . (int) $this->data['user_id'] . "
|
|
|
4c79b5 |
AND key_id = '" . $db->sql_escape(md5($this->cookie_data['k'])) . "'";
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Reset the data array
|
|
|
4c79b5 |
$this->data = array();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'SELECT *
|
|
|
4c79b5 |
FROM ' . USERS_TABLE . '
|
|
|
4c79b5 |
WHERE user_id = ' . ANONYMOUS;
|
|
|
4c79b5 |
$result = $db->sql_query($sql);
|
|
|
4c79b5 |
$this->data = $db->sql_fetchrow($result);
|
|
|
4c79b5 |
$db->sql_freeresult($result);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$cookie_expire = $this->time_now - 31536000;
|
|
|
4c79b5 |
$this->set_cookie('u', '', $cookie_expire);
|
|
|
4c79b5 |
$this->set_cookie('k', '', $cookie_expire);
|
|
|
4c79b5 |
$this->set_cookie('sid', '', $cookie_expire);
|
|
|
4c79b5 |
unset($cookie_expire);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$SID = '?sid=';
|
|
|
4c79b5 |
$this->session_id = $_SID = '';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// To make sure a valid session is created we create one for the anonymous user
|
|
|
4c79b5 |
if ($new_session)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->session_create(ANONYMOUS);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return true;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Session garbage collection
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* This looks a lot more complex than it really is. Effectively we are
|
|
|
4c79b5 |
* deleting any sessions older than an admin definable limit. Due to the
|
|
|
4c79b5 |
* way in which we maintain session data we have to ensure we update user
|
|
|
4c79b5 |
* data before those sessions are destroyed. In addition this method
|
|
|
4c79b5 |
* removes autologin key information that is older than an admin defined
|
|
|
4c79b5 |
* limit.
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function session_gc()
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $db, $config;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$batch_size = 10;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!$this->time_now)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->time_now = time();
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Firstly, delete guest sessions
|
|
|
4c79b5 |
$sql = 'DELETE FROM ' . SESSIONS_TABLE . '
|
|
|
4c79b5 |
WHERE session_user_id = ' . ANONYMOUS . '
|
|
|
4c79b5 |
AND session_time < ' . (int) ($this->time_now - $config['session_length']);
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Get expired sessions, only most recent for each user
|
|
|
4c79b5 |
$sql = 'SELECT session_user_id, session_page, MAX(session_time) AS recent_time
|
|
|
4c79b5 |
FROM ' . SESSIONS_TABLE . '
|
|
|
4c79b5 |
WHERE session_time < ' . ($this->time_now - $config['session_length']) . '
|
|
|
4c79b5 |
GROUP BY session_user_id, session_page';
|
|
|
4c79b5 |
$result = $db->sql_query_limit($sql, $batch_size);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$del_user_id = array();
|
|
|
4c79b5 |
$del_sessions = 0;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
while ($row = $db->sql_fetchrow($result))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql = 'UPDATE ' . USERS_TABLE . '
|
|
|
4c79b5 |
SET user_lastvisit = ' . (int) $row['recent_time'] . ", user_lastpage = '" . $db->sql_escape($row['session_page']) . "'
|
|
|
4c79b5 |
WHERE user_id = " . (int) $row['session_user_id'];
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$del_user_id[] = (int) $row['session_user_id'];
|
|
|
4c79b5 |
$del_sessions++;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
$db->sql_freeresult($result);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (sizeof($del_user_id))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Delete expired sessions
|
|
|
4c79b5 |
$sql = 'DELETE FROM ' . SESSIONS_TABLE . '
|
|
|
4c79b5 |
WHERE ' . $db->sql_in_set('session_user_id', $del_user_id) . '
|
|
|
4c79b5 |
AND session_time < ' . ($this->time_now - $config['session_length']);
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($del_sessions < $batch_size)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Less than 10 users, update gc timer ... else we want gc
|
|
|
4c79b5 |
// called again to delete other sessions
|
|
|
4c79b5 |
set_config('session_last_gc', $this->time_now, true);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($config['max_autologin_time'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql = 'DELETE FROM ' . SESSIONS_KEYS_TABLE . '
|
|
|
4c79b5 |
WHERE last_login < ' . (time() - (86400 * (int) $config['max_autologin_time']));
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
$this->confirm_gc();
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
function confirm_gc($type = 0)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $db, $config;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'SELECT DISTINCT c.session_id
|
|
|
4c79b5 |
FROM ' . CONFIRM_TABLE . ' c
|
|
|
4c79b5 |
LEFT JOIN ' . SESSIONS_TABLE . ' s ON (c.session_id = s.session_id)
|
|
|
4c79b5 |
WHERE s.session_id IS NULL' .
|
|
|
4c79b5 |
((empty($type)) ? '' : ' AND c.confirm_type = ' . (int) $type);
|
|
|
4c79b5 |
$result = $db->sql_query($sql);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($row = $db->sql_fetchrow($result))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql_in = array();
|
|
|
4c79b5 |
do
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql_in[] = (string) $row['session_id'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
while ($row = $db->sql_fetchrow($result));
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (sizeof($sql_in))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql = 'DELETE FROM ' . CONFIRM_TABLE . '
|
|
|
4c79b5 |
WHERE ' . $db->sql_in_set('session_id', $sql_in);
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
$db->sql_freeresult($result);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Sets a cookie
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* 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.
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @param string $name Name of the cookie, will be automatically prefixed with the phpBB cookie name. track becomes [cookie_name]_track then.
|
|
|
4c79b5 |
* @param string $cookiedata The data to hold within the cookie
|
|
|
4c79b5 |
* @param int $cookietime The expiration time as UNIX timestamp. If 0 is provided, a session cookie is set.
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function set_cookie($name, $cookiedata, $cookietime)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $config;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$name_data = rawurlencode($config['cookie_name'] . '_' . $name) . '=' . rawurlencode($cookiedata);
|
|
|
4c79b5 |
$expire = gmdate('D, d-M-Y H:i:s \\G\\M\\T', $cookietime);
|
|
|
4c79b5 |
$domain = (!$config['cookie_domain'] || $config['cookie_domain'] == 'localhost' || $config['cookie_domain'] == '127.0.0.1') ? '' : '; domain=' . $config['cookie_domain'];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
header('Set-Cookie: ' . $name_data . (($cookietime) ? '; expires=' . $expire : '') . '; path=' . $config['cookie_path'] . $domain . ((!$config['cookie_secure']) ? '' : '; secure') . '; HttpOnly', false);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Check for banned user
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* Checks whether the supplied user is banned by id, ip or email. If no parameters
|
|
|
4c79b5 |
* are passed to the method pre-existing session data is used. If $return is false
|
|
|
4c79b5 |
* this routine does not return on finding a banned user, it outputs a relevant
|
|
|
4c79b5 |
* message and stops execution.
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @param string|array $user_ips Can contain a string with one IP or an array of multiple IPs
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function check_ban($user_id = false, $user_ips = false, $user_email = false, $return = false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $config, $db;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (defined('IN_CHECK_BAN'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$banned = false;
|
|
|
4c79b5 |
$cache_ttl = 3600;
|
|
|
4c79b5 |
$where_sql = array();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'SELECT ban_ip, ban_userid, ban_email, ban_exclude, ban_give_reason, ban_end
|
|
|
4c79b5 |
FROM ' . BANLIST_TABLE . '
|
|
|
4c79b5 |
WHERE ';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Determine which entries to check, only return those
|
|
|
4c79b5 |
if ($user_email === false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$where_sql[] = "ban_email = ''";
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($user_ips === false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$where_sql[] = "(ban_ip = '' OR ban_exclude = 1)";
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($user_id === false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$where_sql[] = '(ban_userid = 0 OR ban_exclude = 1)';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$cache_ttl = ($user_id == ANONYMOUS) ? 3600 : 0;
|
|
|
4c79b5 |
$_sql = '(ban_userid = ' . $user_id;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($user_email !== false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$_sql .= " OR ban_email <> ''";
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($user_ips !== false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$_sql .= " OR ban_ip <> ''";
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$_sql .= ')';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$where_sql[] = $_sql;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql .= (sizeof($where_sql)) ? implode(' AND ', $where_sql) : '';
|
|
|
4c79b5 |
$result = $db->sql_query($sql, $cache_ttl);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$ban_triggered_by = 'user';
|
|
|
4c79b5 |
while ($row = $db->sql_fetchrow($result))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if ($row['ban_end'] && $row['ban_end'] < time())
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
continue;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$ip_banned = false;
|
|
|
4c79b5 |
if (!empty($row['ban_ip']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (!is_array($user_ips))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$ip_banned = preg_match('#^' . str_replace('\*', '.*?', preg_quote($row['ban_ip'], '#')) . '$#i', $user_ips);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
foreach ($user_ips as $user_ip)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (preg_match('#^' . str_replace('\*', '.*?', preg_quote($row['ban_ip'], '#')) . '$#i', $user_ip))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$ip_banned = true;
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ((!empty($row['ban_userid']) && intval($row['ban_userid']) == $user_id) ||
|
|
|
4c79b5 |
$ip_banned ||
|
|
|
4c79b5 |
(!empty($row['ban_email']) && preg_match('#^' . str_replace('\*', '.*?', preg_quote($row['ban_email'], '#')) . '$#i', $user_email)))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (!empty($row['ban_exclude']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$banned = false;
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$banned = true;
|
|
|
4c79b5 |
$ban_row = $row;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!empty($row['ban_userid']) && intval($row['ban_userid']) == $user_id)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$ban_triggered_by = 'user';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else if ($ip_banned)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$ban_triggered_by = 'ip';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$ban_triggered_by = 'email';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Don't break. Check if there is an exclude rule for this user
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
$db->sql_freeresult($result);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($banned && !$return)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $template;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// If the session is empty we need to create a valid one...
|
|
|
4c79b5 |
if (empty($this->session_id))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// This seems to be no longer needed? - #14971
|
|
|
4c79b5 |
// $this->session_create(ANONYMOUS);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Initiate environment ... since it won't be set at this stage
|
|
|
4c79b5 |
$this->setup();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Logout the user, banned users are unable to use the normal 'logout' link
|
|
|
4c79b5 |
if ($this->data['user_id'] != ANONYMOUS)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->session_kill();
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// We show a login box here to allow founders accessing the board if banned by IP
|
|
|
4c79b5 |
if (defined('IN_LOGIN') && $this->data['user_id'] == ANONYMOUS)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $phpEx;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$this->setup('ucp');
|
|
|
4c79b5 |
$this->data['is_registered'] = $this->data['is_bot'] = false;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Set as a precaution to allow login_box() handling this case correctly as well as this function not being executed again.
|
|
|
4c79b5 |
define('IN_CHECK_BAN', 1);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
login_box("index.$phpEx");
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// The false here is needed, else the user is able to circumvent the ban.
|
|
|
4c79b5 |
$this->session_kill(false);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Ok, we catch the case of an empty session id for the anonymous user...
|
|
|
4c79b5 |
// This can happen if the user is logging in, banned by username and the login_box() being called "again".
|
|
|
4c79b5 |
if (empty($this->session_id) && defined('IN_CHECK_BAN'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->session_create(ANONYMOUS);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Determine which message to output
|
|
|
4c79b5 |
$till_date = ($ban_row['ban_end']) ? $this->format_date($ban_row['ban_end']) : '';
|
|
|
4c79b5 |
$message = ($ban_row['ban_end']) ? 'BOARD_BAN_TIME' : 'BOARD_BAN_PERM';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$message = sprintf($this->lang[$message], $till_date, '', '');
|
|
|
4c79b5 |
$message .= ($ban_row['ban_give_reason']) ? '
' . sprintf($this->lang['BOARD_BAN_REASON'], $ban_row['ban_give_reason']) : '';
|
|
|
4c79b5 |
$message .= '
' . $this->lang['BAN_TRIGGERED_BY_' . strtoupper($ban_triggered_by)] . '';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// To circumvent session_begin returning a valid value and the check_ban() not called on second page view, we kill the session again
|
|
|
4c79b5 |
$this->session_kill(false);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// A very special case... we are within the cron script which is not supposed to print out the ban message... show blank page
|
|
|
4c79b5 |
if (defined('IN_CRON'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
garbage_collection();
|
|
|
4c79b5 |
exit_handler();
|
|
|
4c79b5 |
exit;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
trigger_error($message);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return ($banned && $ban_row['ban_give_reason']) ? $ban_row['ban_give_reason'] : $banned;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Check if ip is blacklisted
|
|
|
4c79b5 |
* This should be called only where absolutly necessary
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* Only IPv4 (rbldns does not support AAAA records/IPv6 lookups)
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @author satmd (from the php manual)
|
|
|
4c79b5 |
* @param string $mode register/post - spamcop for example is ommitted for posting
|
|
|
4c79b5 |
* @return false if ip is not blacklisted, else an array([checked server], [lookup])
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function check_dnsbl($mode, $ip = false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if ($ip === false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$ip = $this->ip;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$dnsbl_check = array(
|
|
|
4c79b5 |
'sbl-xbl.spamhaus.org' => 'http://www.spamhaus.org/query/bl?ip=',
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($mode == 'register')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$dnsbl_check['bl.spamcop.net'] = 'http://spamcop.net/bl.shtml?';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($ip)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$quads = explode('.', $ip);
|
|
|
4c79b5 |
$reverse_ip = $quads[3] . '.' . $quads[2] . '.' . $quads[1] . '.' . $quads[0];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Need to be listed on all servers...
|
|
|
4c79b5 |
$listed = true;
|
|
|
4c79b5 |
$info = array();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
foreach ($dnsbl_check as $dnsbl => $lookup)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (phpbb_checkdnsrr($reverse_ip . '.' . $dnsbl . '.', 'A') === true)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$info = array($dnsbl, $lookup . $ip);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$listed = false;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($listed)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return $info;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return false;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Check if URI is blacklisted
|
|
|
4c79b5 |
* This should be called only where absolutly necessary, for example on the submitted website field
|
|
|
4c79b5 |
* This function is not in use at the moment and is only included for testing purposes, it may not work at all!
|
|
|
4c79b5 |
* This means it is untested at the moment and therefore commented out
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @param string $uri URI to check
|
|
|
4c79b5 |
* @return true if uri is on blacklist, else false. Only blacklist is checked (~zero FP), no grey lists
|
|
|
4c79b5 |
function check_uribl($uri)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Normally parse_url() is not intended to parse uris
|
|
|
4c79b5 |
// We need to get the top-level domain name anyway... change.
|
|
|
4c79b5 |
$uri = parse_url($uri);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($uri === false || empty($uri['host']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return false;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$uri = trim($uri['host']);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($uri)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// One problem here... the return parameter for the "windows" method is different from what
|
|
|
4c79b5 |
// we expect... this may render this check useless...
|
|
|
4c79b5 |
if (phpbb_checkdnsrr($uri . '.multi.uribl.com.', 'A') === true)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return true;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return false;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Set/Update a persistent login key
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* This method creates or updates a persistent session key. When a user makes
|
|
|
4c79b5 |
* use of persistent (formerly auto-) logins a key is generated and stored in the
|
|
|
4c79b5 |
* DB. When they revisit with the same key it's automatically updated in both the
|
|
|
4c79b5 |
* DB and cookie. Multiple keys may exist for each user representing different
|
|
|
4c79b5 |
* browsers or locations. As with _any_ non-secure-socket no passphrase login this
|
|
|
4c79b5 |
* remains vulnerable to exploit.
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function set_login_key($user_id = false, $key = false, $user_ip = false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $config, $db;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$user_id = ($user_id === false) ? $this->data['user_id'] : $user_id;
|
|
|
4c79b5 |
$user_ip = ($user_ip === false) ? $this->ip : $user_ip;
|
|
|
4c79b5 |
$key = ($key === false) ? (($this->cookie_data['k']) ? $this->cookie_data['k'] : false) : $key;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$key_id = unique_id(hexdec(substr($this->session_id, 0, 8)));
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql_ary = array(
|
|
|
4c79b5 |
'key_id' => (string) md5($key_id),
|
|
|
4c79b5 |
'last_ip' => (string) $this->ip,
|
|
|
4c79b5 |
'last_login' => (int) time()
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!$key)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql_ary += array(
|
|
|
4c79b5 |
'user_id' => (int) $user_id
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($key)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql = 'UPDATE ' . SESSIONS_KEYS_TABLE . '
|
|
|
4c79b5 |
SET ' . $db->sql_build_array('UPDATE', $sql_ary) . '
|
|
|
4c79b5 |
WHERE user_id = ' . (int) $user_id . "
|
|
|
4c79b5 |
AND key_id = '" . $db->sql_escape(md5($key)) . "'";
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql = 'INSERT INTO ' . SESSIONS_KEYS_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$this->cookie_data['k'] = $key_id;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return false;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Reset all login keys for the specified user
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* This method removes all current login keys for a specified (or the current)
|
|
|
4c79b5 |
* user. It will be called on password change to render old keys unusable
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function reset_login_keys($user_id = false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $config, $db;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$user_id = ($user_id === false) ? $this->data['user_id'] : $user_id;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'DELETE FROM ' . SESSIONS_KEYS_TABLE . '
|
|
|
4c79b5 |
WHERE user_id = ' . (int) $user_id;
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Let's also clear any current sessions for the specified user_id
|
|
|
4c79b5 |
// If it's the current user then we'll leave this session intact
|
|
|
4c79b5 |
$sql_where = 'session_user_id = ' . (int) $user_id;
|
|
|
4c79b5 |
$sql_where .= ($user_id === $this->data['user_id']) ? " AND session_id <> '" . $db->sql_escape($this->session_id) . "'" : '';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'DELETE FROM ' . SESSIONS_TABLE . "
|
|
|
4c79b5 |
WHERE $sql_where";
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// We're changing the password of the current user and they have a key
|
|
|
4c79b5 |
// Lets regenerate it to be safe
|
|
|
4c79b5 |
if ($user_id === $this->data['user_id'] && $this->cookie_data['k'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->set_login_key($user_id);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Check if the request originated from the same page.
|
|
|
4c79b5 |
* @param bool $check_script_path If true, the path will be checked as well
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function validate_referer($check_script_path = false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// no referer - nothing to validate, user's fault for turning it off (we only check on POST; so meta can't be the reason)
|
|
|
4c79b5 |
if (empty($this->referer) || empty($this->host))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return true;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$host = htmlspecialchars($this->host);
|
|
|
4c79b5 |
$ref = substr($this->referer, strpos($this->referer, '://') + 3);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!(stripos($ref, $host) === 0))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return false;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else if ($check_script_path && rtrim($this->page['root_script_path'], '/') !== '')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$ref = substr($ref, strlen($host));
|
|
|
4c79b5 |
$server_port = (!empty($_SERVER['SERVER_PORT'])) ? (int) $_SERVER['SERVER_PORT'] : (int) getenv('SERVER_PORT');
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($server_port !== 80 && $server_port !== 443 && stripos($ref, ":$server_port") === 0)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$ref = substr($ref, strlen(":$server_port"));
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!(stripos(rtrim($ref, '/'), rtrim($this->page['root_script_path'], '/')) === 0))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return false;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return true;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
function unset_admin()
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $db;
|
|
|
4c79b5 |
$sql = 'UPDATE ' . SESSIONS_TABLE . '
|
|
|
4c79b5 |
SET session_admin = 0
|
|
|
4c79b5 |
WHERE session_id = \'' . $db->sql_escape($this->session_id) . '\'';
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Base user class
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* This is the overarching class which contains (through session extend)
|
|
|
4c79b5 |
* all methods utilised for user functionality during a session.
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @package phpBB3
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
class user extends session
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
var $lang = array();
|
|
|
4c79b5 |
var $help = array();
|
|
|
4c79b5 |
var $theme = array();
|
|
|
4c79b5 |
var $date_format;
|
|
|
4c79b5 |
var $timezone;
|
|
|
4c79b5 |
var $dst;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
var $lang_name = false;
|
|
|
4c79b5 |
var $lang_id = false;
|
|
|
4c79b5 |
var $lang_path;
|
|
|
4c79b5 |
var $img_lang;
|
|
|
4c79b5 |
var $img_array = array();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Able to add new option (id 7)
|
|
|
4c79b5 |
var $keyoptions = array('viewimg' => 0, 'viewflash' => 1, 'viewsmilies' => 2, 'viewsigs' => 3, 'viewavatars' => 4, 'viewcensors' => 5, 'attachsig' => 6, 'bbcode' => 8, 'smilies' => 9, 'popuppm' => 10);
|
|
|
4c79b5 |
var $keyvalues = array();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Constructor to set the lang path
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function user()
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $phpbb_root_path;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$this->lang_path = $phpbb_root_path . 'language/';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Function to set custom language path (able to use directory outside of phpBB)
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @param string $lang_path New language path used.
|
|
|
4c79b5 |
* @access public
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function set_custom_lang_path($lang_path)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->lang_path = $lang_path;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (substr($this->lang_path, -1) != '/')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->lang_path .= '/';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Setup basic user-specific items (style, language, ...)
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function setup($lang_set = false, $style = false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $db, $template, $config, $auth, $phpEx, $phpbb_root_path, $cache;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($this->data['user_id'] != ANONYMOUS)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->lang_name = (file_exists($this->lang_path . $this->data['user_lang'] . "/common.$phpEx")) ? $this->data['user_lang'] : basename($config['default_lang']);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$this->date_format = $this->data['user_dateformat'];
|
|
|
4c79b5 |
$this->timezone = $this->data['user_timezone'] * 3600;
|
|
|
4c79b5 |
$this->dst = $this->data['user_dst'] * 3600;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->lang_name = basename($config['default_lang']);
|
|
|
4c79b5 |
$this->date_format = $config['default_dateformat'];
|
|
|
4c79b5 |
$this->timezone = $config['board_timezone'] * 3600;
|
|
|
4c79b5 |
$this->dst = $config['board_dst'] * 3600;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* If a guest user is surfing, we try to guess his/her language first by obtaining the browser language
|
|
|
4c79b5 |
* If re-enabled we need to make sure only those languages installed are checked
|
|
|
4c79b5 |
* Commented out so we do not loose the code.
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$accept_lang_ary = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
foreach ($accept_lang_ary as $accept_lang)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Set correct format ... guess full xx_YY form
|
|
|
4c79b5 |
$accept_lang = substr($accept_lang, 0, 2) . '_' . strtoupper(substr($accept_lang, 3, 2));
|
|
|
4c79b5 |
$accept_lang = basename($accept_lang);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (file_exists($this->lang_path . $accept_lang . "/common.$phpEx"))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->lang_name = $config['default_lang'] = $accept_lang;
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// No match on xx_YY so try xx
|
|
|
4c79b5 |
$accept_lang = substr($accept_lang, 0, 2);
|
|
|
4c79b5 |
$accept_lang = basename($accept_lang);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (file_exists($this->lang_path . $accept_lang . "/common.$phpEx"))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->lang_name = $config['default_lang'] = $accept_lang;
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// We include common language file here to not load it every time a custom language file is included
|
|
|
4c79b5 |
$lang = &$this->lang;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ((@include $this->lang_path . $this->lang_name . "/common.$phpEx") === false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
die('Language file ' . $this->lang_path . $this->lang_name . "/common.$phpEx" . " couldn't be opened.");
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$this->add_lang($lang_set);
|
|
|
4c79b5 |
unset($lang_set);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!empty($_GET['style']) && $auth->acl_get('a_styles'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $SID, $_EXTRA_URL;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$style = request_var('style', 0);
|
|
|
4c79b5 |
$SID .= '&style=' . $style;
|
|
|
4c79b5 |
$_EXTRA_URL = array('style=' . $style);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Set up style
|
|
|
4c79b5 |
$style = ($style) ? $style : ((!$config['override_user_style']) ? $this->data['user_style'] : $config['default_style']);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$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
|
|
|
4c79b5 |
FROM ' . STYLES_TABLE . ' s, ' . STYLES_TEMPLATE_TABLE . ' t, ' . STYLES_THEME_TABLE . ' c, ' . STYLES_IMAGESET_TABLE . " i
|
|
|
4c79b5 |
WHERE s.style_id = $style
|
|
|
4c79b5 |
AND t.template_id = s.template_id
|
|
|
4c79b5 |
AND c.theme_id = s.theme_id
|
|
|
4c79b5 |
AND i.imageset_id = s.imageset_id";
|
|
|
4c79b5 |
$result = $db->sql_query($sql, 3600);
|
|
|
4c79b5 |
$this->theme = $db->sql_fetchrow($result);
|
|
|
4c79b5 |
$db->sql_freeresult($result);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// User has wrong style
|
|
|
4c79b5 |
if (!$this->theme && $style == $this->data['user_style'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$style = $this->data['user_style'] = $config['default_style'];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'UPDATE ' . USERS_TABLE . "
|
|
|
4c79b5 |
SET user_style = $style
|
|
|
4c79b5 |
WHERE user_id = {$this->data['user_id']}";
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$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
|
|
|
4c79b5 |
FROM ' . STYLES_TABLE . ' s, ' . STYLES_TEMPLATE_TABLE . ' t, ' . STYLES_THEME_TABLE . ' c, ' . STYLES_IMAGESET_TABLE . " i
|
|
|
4c79b5 |
WHERE s.style_id = $style
|
|
|
4c79b5 |
AND t.template_id = s.template_id
|
|
|
4c79b5 |
AND c.theme_id = s.theme_id
|
|
|
4c79b5 |
AND i.imageset_id = s.imageset_id";
|
|
|
4c79b5 |
$result = $db->sql_query($sql, 3600);
|
|
|
4c79b5 |
$this->theme = $db->sql_fetchrow($result);
|
|
|
4c79b5 |
$db->sql_freeresult($result);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!$this->theme)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
trigger_error('Could not get style data', E_USER_ERROR);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Now parse the cfg file and cache it
|
|
|
4c79b5 |
$parsed_items = $cache->obtain_cfg_items($this->theme);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// We are only interested in the theme configuration for now
|
|
|
4c79b5 |
$parsed_items = $parsed_items['theme'];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$check_for = array(
|
|
|
4c79b5 |
'parse_css_file' => (int) 0,
|
|
|
4c79b5 |
'pagination_sep' => (string) ', '
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
foreach ($check_for as $key => $default_value)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->theme[$key] = (isset($parsed_items[$key])) ? $parsed_items[$key] : $default_value;
|
|
|
4c79b5 |
settype($this->theme[$key], gettype($default_value));
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (is_string($default_value))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->theme[$key] = htmlspecialchars($this->theme[$key]);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// If the style author specified the theme needs to be cached
|
|
|
4c79b5 |
// (because of the used paths and variables) than make sure it is the case.
|
|
|
4c79b5 |
// For example, if the theme uses language-specific images it needs to be stored in db.
|
|
|
4c79b5 |
if (!$this->theme['theme_storedb'] && $this->theme['parse_css_file'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->theme['theme_storedb'] = 1;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$stylesheet = file_get_contents("{$phpbb_root_path}styles/{$this->theme['theme_path']}/theme/stylesheet.css");
|
|
|
4c79b5 |
// Match CSS imports
|
|
|
4c79b5 |
$matches = array();
|
|
|
4c79b5 |
preg_match_all('/@import url\(["\'](.*)["\']\);/i', $stylesheet, $matches);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (sizeof($matches))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$content = '';
|
|
|
4c79b5 |
foreach ($matches[0] as $idx => $match)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if ($content = @file_get_contents("{$phpbb_root_path}styles/{$this->theme['theme_path']}/theme/" . $matches[1][$idx]))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$content = trim($content);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$content = '';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
$stylesheet = str_replace($match, $content, $stylesheet);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
unset($content);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$stylesheet = str_replace('./', 'styles/' . $this->theme['theme_path'] . '/theme/', $stylesheet);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql_ary = array(
|
|
|
4c79b5 |
'theme_data' => $stylesheet,
|
|
|
4c79b5 |
'theme_mtime' => time(),
|
|
|
4c79b5 |
'theme_storedb' => 1
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'UPDATE ' . STYLES_THEME_TABLE . '
|
|
|
4c79b5 |
SET ' . $db->sql_build_array('UPDATE', $sql_ary) . '
|
|
|
4c79b5 |
WHERE theme_id = ' . $this->theme['theme_id'];
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
unset($sql_ary);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$template->set_template();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$this->img_lang = (file_exists($phpbb_root_path . 'styles/' . $this->theme['imageset_path'] . '/imageset/' . $this->lang_name)) ? $this->lang_name : $config['default_lang'];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'SELECT image_name, image_filename, image_lang, image_height, image_width
|
|
|
4c79b5 |
FROM ' . STYLES_IMAGESET_DATA_TABLE . '
|
|
|
4c79b5 |
WHERE imageset_id = ' . $this->theme['imageset_id'] . "
|
|
|
4c79b5 |
AND image_filename <> ''
|
|
|
4c79b5 |
AND image_lang IN ('" . $db->sql_escape($this->img_lang) . "', '')";
|
|
|
4c79b5 |
$result = $db->sql_query($sql, 3600);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$localised_images = false;
|
|
|
4c79b5 |
while ($row = $db->sql_fetchrow($result))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if ($row['image_lang'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$localised_images = true;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$row['image_filename'] = rawurlencode($row['image_filename']);
|
|
|
4c79b5 |
$this->img_array[$row['image_name']] = $row;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
$db->sql_freeresult($result);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// there were no localised images, try to refresh the localised imageset for the user's language
|
|
|
4c79b5 |
if (!$localised_images)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Attention: this code ignores the image definition list from acp_styles and just takes everything
|
|
|
4c79b5 |
// that the config file contains
|
|
|
4c79b5 |
$sql_ary = array();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$db->sql_transaction('begin');
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'DELETE FROM ' . STYLES_IMAGESET_DATA_TABLE . '
|
|
|
4c79b5 |
WHERE imageset_id = ' . $this->theme['imageset_id'] . '
|
|
|
4c79b5 |
AND image_lang = \'' . $db->sql_escape($this->img_lang) . '\'';
|
|
|
4c79b5 |
$result = $db->sql_query($sql);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (@file_exists("{$phpbb_root_path}styles/{$this->theme['imageset_path']}/imageset/{$this->img_lang}/imageset.cfg"))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$cfg_data_imageset_data = parse_cfg_file("{$phpbb_root_path}styles/{$this->theme['imageset_path']}/imageset/{$this->img_lang}/imageset.cfg");
|
|
|
4c79b5 |
foreach ($cfg_data_imageset_data as $image_name => $value)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (strpos($value, '*') !== false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (substr($value, -1, 1) === '*')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
list($image_filename, $image_height) = explode('*', $value);
|
|
|
4c79b5 |
$image_width = 0;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
list($image_filename, $image_height, $image_width) = explode('*', $value);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$image_filename = $value;
|
|
|
4c79b5 |
$image_height = $image_width = 0;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (strpos($image_name, 'img_') === 0 && $image_filename)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$image_name = substr($image_name, 4);
|
|
|
4c79b5 |
$sql_ary[] = array(
|
|
|
4c79b5 |
'image_name' => (string) $image_name,
|
|
|
4c79b5 |
'image_filename' => (string) $image_filename,
|
|
|
4c79b5 |
'image_height' => (int) $image_height,
|
|
|
4c79b5 |
'image_width' => (int) $image_width,
|
|
|
4c79b5 |
'imageset_id' => (int) $this->theme['imageset_id'],
|
|
|
4c79b5 |
'image_lang' => (string) $this->img_lang,
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (sizeof($sql_ary))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$db->sql_multi_insert(STYLES_IMAGESET_DATA_TABLE, $sql_ary);
|
|
|
4c79b5 |
$db->sql_transaction('commit');
|
|
|
4c79b5 |
$cache->destroy('sql', STYLES_IMAGESET_DATA_TABLE);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
add_log('admin', 'LOG_IMAGESET_LANG_REFRESHED', $this->theme['imageset_name'], $this->img_lang);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$db->sql_transaction('commit');
|
|
|
4c79b5 |
add_log('admin', 'LOG_IMAGESET_LANG_MISSING', $this->theme['imageset_name'], $this->img_lang);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Call phpbb_user_session_handler() in case external application want to "bend" some variables or replace classes...
|
|
|
4c79b5 |
// After calling it we continue script execution...
|
|
|
4c79b5 |
phpbb_user_session_handler();
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// If this function got called from the error handler we are finished here.
|
|
|
4c79b5 |
if (defined('IN_ERROR_HANDLER'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Disable board if the install/ directory is still present
|
|
|
4c79b5 |
// For the brave development army we do not care about this, else we need to comment out this everytime we develop locally
|
|
|
4c79b5 |
if (!defined('DEBUG_EXTRA') && !defined('ADMIN_START') && !defined('IN_INSTALL') && !defined('IN_LOGIN') && file_exists($phpbb_root_path . 'install'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Adjust the message slightly according to the permissions
|
|
|
4c79b5 |
if ($auth->acl_gets('a_', 'm_') || $auth->acl_getf_global('m_'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$message = 'REMOVE_INSTALL';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$message = (!empty($config['board_disable_msg'])) ? $config['board_disable_msg'] : 'BOARD_DISABLE';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
trigger_error($message);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Is board disabled and user not an admin or moderator?
|
|
|
4c79b5 |
if ($config['board_disable'] && !defined('IN_LOGIN') && !$auth->acl_gets('a_', 'm_') && !$auth->acl_getf_global('m_'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
header('HTTP/1.1 503 Service Unavailable');
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$message = (!empty($config['board_disable_msg'])) ? $config['board_disable_msg'] : 'BOARD_DISABLE';
|
|
|
4c79b5 |
trigger_error($message);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Is load exceeded?
|
|
|
4c79b5 |
if ($config['limit_load'] && $this->load !== false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if ($this->load > floatval($config['limit_load']) && !defined('IN_LOGIN'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Set board disabled to true to let the admins/mods get the proper notification
|
|
|
4c79b5 |
$config['board_disable'] = '1';
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!$auth->acl_gets('a_', 'm_') && !$auth->acl_getf_global('m_'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
header('HTTP/1.1 503 Service Unavailable');
|
|
|
4c79b5 |
trigger_error('BOARD_UNAVAILABLE');
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (isset($this->data['session_viewonline']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Make sure the user is able to hide his session
|
|
|
4c79b5 |
if (!$this->data['session_viewonline'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Reset online status if not allowed to hide the session...
|
|
|
4c79b5 |
if (!$auth->acl_get('u_hideonline'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql = 'UPDATE ' . SESSIONS_TABLE . '
|
|
|
4c79b5 |
SET session_viewonline = 1
|
|
|
4c79b5 |
WHERE session_user_id = ' . $this->data['user_id'];
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
$this->data['session_viewonline'] = 1;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else if (!$this->data['user_allow_viewonline'])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// the user wants to hide and is allowed to -> cloaking device on.
|
|
|
4c79b5 |
if ($auth->acl_get('u_hideonline'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$sql = 'UPDATE ' . SESSIONS_TABLE . '
|
|
|
4c79b5 |
SET session_viewonline = 0
|
|
|
4c79b5 |
WHERE session_user_id = ' . $this->data['user_id'];
|
|
|
4c79b5 |
$db->sql_query($sql);
|
|
|
4c79b5 |
$this->data['session_viewonline'] = 0;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Does the user need to change their password? If so, redirect to the
|
|
|
4c79b5 |
// ucp profile reg_details page ... of course do not redirect if we're already in the ucp
|
|
|
4c79b5 |
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))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (strpos($this->page['query_string'], 'mode=reg_details') === false && $this->page['page_name'] != "ucp.$phpEx")
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
redirect(append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=profile&mode=reg_details'));
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* More advanced language substitution
|
|
|
4c79b5 |
* Function to mimic sprintf() with the possibility of using phpBB's language system to substitute nullar/singular/plural forms.
|
|
|
4c79b5 |
* Params are the language key and the parameters to be substituted.
|
|
|
4c79b5 |
* This function/functionality is inspired by SHS` and Ashe.
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* Example call: <samp>$user->lang('NUM_POSTS_IN_QUEUE', 1);</samp>
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function lang()
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$args = func_get_args();
|
|
|
4c79b5 |
$key = $args[0];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (is_array($key))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$lang = &$this->lang[array_shift($key)];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
foreach ($key as $_key)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$lang = &$lang[$_key];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$lang = &$this->lang[$key];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Return if language string does not exist
|
|
|
4c79b5 |
if (!isset($lang) || (!is_string($lang) && !is_array($lang)))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return $key;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// If the language entry is a string, we simply mimic sprintf() behaviour
|
|
|
4c79b5 |
if (is_string($lang))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (sizeof($args) == 1)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return $lang;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Replace key with language entry and simply pass along...
|
|
|
4c79b5 |
$args[0] = $lang;
|
|
|
4c79b5 |
return call_user_func_array('sprintf', $args);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// It is an array... now handle different nullar/singular/plural forms
|
|
|
4c79b5 |
$key_found = false;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// We now get the first number passed and will select the key based upon this number
|
|
|
4c79b5 |
for ($i = 1, $num_args = sizeof($args); $i < $num_args; $i++)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (is_int($args[$i]))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$numbers = array_keys($lang);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
foreach ($numbers as $num)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if ($num > $args[$i])
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$key_found = $num;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Ok, let's check if the key was found, else use the last entry (because it is mostly the plural form)
|
|
|
4c79b5 |
if ($key_found === false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$numbers = array_keys($lang);
|
|
|
4c79b5 |
$key_found = end($numbers);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Use the language string we determined and pass it to sprintf()
|
|
|
4c79b5 |
$args[0] = $lang[$key_found];
|
|
|
4c79b5 |
return call_user_func_array('sprintf', $args);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Add Language Items - use_db and use_help are assigned where needed (only use them to force inclusion)
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @param mixed $lang_set specifies the language entries to include
|
|
|
4c79b5 |
* @param bool $use_db internal variable for recursion, do not use
|
|
|
4c79b5 |
* @param bool $use_help internal variable for recursion, do not use
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* Examples:
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* $lang_set = array('posting', 'help' => 'faq');
|
|
|
4c79b5 |
* $lang_set = array('posting', 'viewtopic', 'help' => array('bbcode', 'faq'))
|
|
|
4c79b5 |
* $lang_set = array(array('posting', 'viewtopic'), 'help' => array('bbcode', 'faq'))
|
|
|
4c79b5 |
* $lang_set = 'posting'
|
|
|
4c79b5 |
* $lang_set = array('help' => 'faq', 'db' => array('help:faq', 'posting'))
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function add_lang($lang_set, $use_db = false, $use_help = false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $phpEx;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (is_array($lang_set))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
foreach ($lang_set as $key => $lang_file)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Please do not delete this line.
|
|
|
4c79b5 |
// We have to force the type here, else [array] language inclusion will not work
|
|
|
4c79b5 |
$key = (string) $key;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($key == 'db')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->add_lang($lang_file, true, $use_help);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else if ($key == 'help')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->add_lang($lang_file, $use_db, true);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else if (!is_array($lang_file))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->set_lang($this->lang, $this->help, $lang_file, $use_db, $use_help);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->add_lang($lang_file, $use_db, $use_help);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
unset($lang_set);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else if ($lang_set)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->set_lang($this->lang, $this->help, $lang_set, $use_db, $use_help);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Set language entry (called by add_lang)
|
|
|
4c79b5 |
* @access private
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function set_lang(&$lang, &$help, $lang_file, $use_db = false, $use_help = false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $phpEx;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Make sure the language name is set (if the user setup did not happen it is not set)
|
|
|
4c79b5 |
if (!$this->lang_name)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $config;
|
|
|
4c79b5 |
$this->lang_name = basename($config['default_lang']);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// $lang == $this->lang
|
|
|
4c79b5 |
// $help == $this->help
|
|
|
4c79b5 |
// - add appropriate variables here, name them as they are used within the language file...
|
|
|
4c79b5 |
if (!$use_db)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if ($use_help && strpos($lang_file, '/') !== false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$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;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$language_filename = $this->lang_path . $this->lang_name . '/' . (($use_help) ? 'help_' : '') . $lang_file . '.' . $phpEx;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ((@include $language_filename) === false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
trigger_error('Language file ' . $language_filename . ' couldn\'t be opened.', E_USER_ERROR);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else if ($use_db)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Get Database Language Strings
|
|
|
4c79b5 |
// Put them into $lang if nothing is prefixed, put them into $help if help: is prefixed
|
|
|
4c79b5 |
// For example: help:faq, posting
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Format user date
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @param int $gmepoch unix timestamp
|
|
|
4c79b5 |
* @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.
|
|
|
4c79b5 |
* @param bool $forcedate force non-relative date format.
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @return mixed translated date
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function format_date($gmepoch, $format = false, $forcedate = false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
static $midnight;
|
|
|
4c79b5 |
static $date_cache;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$format = (!$format) ? $this->date_format : $format;
|
|
|
4c79b5 |
$now = time();
|
|
|
4c79b5 |
$delta = $now - $gmepoch;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!isset($date_cache[$format]))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Is the user requesting a friendly date format (i.e. 'Today 12:42')?
|
|
|
4c79b5 |
$date_cache[$format] = array(
|
|
|
4c79b5 |
'is_short' => strpos($format, '|'),
|
|
|
4c79b5 |
'zone_offset' => $this->timezone + $this->dst,
|
|
|
4c79b5 |
'format_short' => substr($format, 0, strpos($format, '|')) . '||' . substr(strrchr($format, '|'), 1),
|
|
|
4c79b5 |
'format_long' => str_replace('|', '', $format),
|
|
|
4c79b5 |
'lang' => $this->lang['datetime'],
|
|
|
4c79b5 |
);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Short representation of month in format? Some languages use different terms for the long and short format of May
|
|
|
4c79b5 |
if ((strpos($format, '\M') === false && strpos($format, 'M') !== false) || (strpos($format, '\r') === false && strpos($format, 'r') !== false))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$date_cache[$format]['lang']['May'] = $this->lang['datetime']['May_short'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// Show date <= 1 hour ago as 'xx min ago'
|
|
|
4c79b5 |
// 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'
|
|
|
4c79b5 |
if ($delta <= 3600 && ($delta >= -5 || (($now / 60) % 60) == (($gmepoch / 60) % 60)) && $date_cache[$format]['is_short'] !== false && !$forcedate && isset($this->lang['datetime']['AGO']))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return $this->lang(array('datetime', 'AGO'), max(0, (int) floor($delta / 60)));
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!$midnight)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
list($d, $m, $y) = explode(' ', gmdate('j n Y', time() + $date_cache[$format]['zone_offset']));
|
|
|
4c79b5 |
$midnight = gmmktime(0, 0, 0, $m, $d, $y) - $date_cache[$format]['zone_offset'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($date_cache[$format]['is_short'] !== false && !$forcedate)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$day = false;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($gmepoch > $midnight + 86400)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$day = 'TOMORROW';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else if ($gmepoch > $midnight)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$day = 'TODAY';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else if ($gmepoch > $midnight - 86400)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$day = 'YESTERDAY';
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($day !== false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return str_replace('||', $this->lang['datetime'][$day], strtr(@gmdate($date_cache[$format]['format_short'], $gmepoch + $date_cache[$format]['zone_offset']), $date_cache[$format]['lang']));
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return strtr(@gmdate($date_cache[$format]['format_long'], $gmepoch + $date_cache[$format]['zone_offset']), $date_cache[$format]['lang']);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Get language id currently used by the user
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function get_iso_lang_id()
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $config, $db;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!empty($this->lang_id))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return $this->lang_id;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!$this->lang_name)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->lang_name = $config['default_lang'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'SELECT lang_id
|
|
|
4c79b5 |
FROM ' . LANG_TABLE . "
|
|
|
4c79b5 |
WHERE lang_iso = '" . $db->sql_escape($this->lang_name) . "'";
|
|
|
4c79b5 |
$result = $db->sql_query($sql);
|
|
|
4c79b5 |
$this->lang_id = (int) $db->sql_fetchfield('lang_id');
|
|
|
4c79b5 |
$db->sql_freeresult($result);
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return $this->lang_id;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Get users profile fields
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function get_profile_fields($user_id)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
global $db;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (isset($this->profile_fields))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$sql = 'SELECT *
|
|
|
4c79b5 |
FROM ' . PROFILE_FIELDS_DATA_TABLE . "
|
|
|
4c79b5 |
WHERE user_id = $user_id";
|
|
|
4c79b5 |
$result = $db->sql_query_limit($sql, 1);
|
|
|
4c79b5 |
$this->profile_fields = (!($row = $db->sql_fetchrow($result))) ? array() : $row;
|
|
|
4c79b5 |
$db->sql_freeresult($result);
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Specify/Get image
|
|
|
4c79b5 |
* $suffix is no longer used - we know it. ;) It is there for backward compatibility.
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function img($img, $alt = '', $width = false, $suffix = '', $type = 'full_tag')
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
static $imgs;
|
|
|
4c79b5 |
global $phpbb_root_path;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$img_data = &$imgs[$img];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (empty($img_data))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (!isset($this->img_array[$img]))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
// Do not fill the image to let designers decide what to do if the image is empty
|
|
|
4c79b5 |
$img_data = '';
|
|
|
4c79b5 |
return $img_data;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$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'];
|
|
|
4c79b5 |
$img_data['width'] = $this->img_array[$img]['image_width'];
|
|
|
4c79b5 |
$img_data['height'] = $this->img_array[$img]['image_height'];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$alt = (!empty($this->lang[$alt])) ? $this->lang[$alt] : $alt;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
switch ($type)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
case 'src':
|
|
|
4c79b5 |
return $img_data['src'];
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
case 'width':
|
|
|
4c79b5 |
return ($width === false) ? $img_data['width'] : $width;
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
case 'height':
|
|
|
4c79b5 |
return $img_data['height'];
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
default:
|
|
|
4c79b5 |
$use_width = ($width === false) ? $img_data['width'] : $width;
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return '';
|
|
|
4c79b5 |
break;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Get option bit field from user options
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function optionget($key, $data = false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
if (!isset($this->keyvalues[$key]))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$var = ($data) ? $data : $this->data['user_options'];
|
|
|
4c79b5 |
$this->keyvalues[$key] = ($var & 1 << $this->keyoptions[$key]) ? true : false;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
return $this->keyvalues[$key];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* Set option bit field for user options
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
function optionset($key, $value, $data = false)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$var = ($data) ? $data : $this->data['user_options'];
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if ($value && !($var & 1 << $this->keyoptions[$key]))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$var += 1 << $this->keyoptions[$key];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else if (!$value && ($var & 1 << $this->keyoptions[$key]))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$var -= 1 << $this->keyoptions[$key];
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return ($data) ? $var : false;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (!$data)
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$this->data['user_options'] = $var;
|
|
|
4c79b5 |
return true;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
else
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
return $var;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
?>
|