Zeile 34 | Zeile 34 |
---|
* @var bool */ public $is_spider = false;
|
* @var bool */ public $is_spider = false;
|
| /** * Request parameters that are to be ignored for location storage * * @var array */ public $ignore_parameters = array( 'my_post_key', 'logoutkey', );
|
/** * Initialize a session */ function init() {
|
/** * Initialize a session */ function init() {
|
global $db, $mybb, $cache;
| global $db, $mybb, $cache, $plugins;
|
// Get our visitor's IP. $this->ipaddress = get_ip(); $this->packedip = my_inet_pton($this->ipaddress);
|
// Get our visitor's IP. $this->ipaddress = get_ip(); $this->packedip = my_inet_pton($this->ipaddress);
|
|
|
// Find out the user agent. $this->useragent = $_SERVER['HTTP_USER_AGENT'];
|
// Find out the user agent. $this->useragent = $_SERVER['HTTP_USER_AGENT'];
|
|
|
// Attempt to find a session id in the cookies. if(isset($mybb->cookies['sid']) && !defined('IN_UPGRADE')) { $sid = $db->escape_string($mybb->cookies['sid']);
|
// Attempt to find a session id in the cookies. if(isset($mybb->cookies['sid']) && !defined('IN_UPGRADE')) { $sid = $db->escape_string($mybb->cookies['sid']);
|
// Load the session $query = $db->simple_select("sessions", "*", "sid='{$sid}' AND ip=".$db->escape_binary($this->packedip)); $session = $db->fetch_array($query); if($session['sid'])
| // Load the session if not using a bot sid if(substr($sid, 3, 1) !== '=')
|
{
|
{
|
$this->sid = $session['sid'];
| $query = $db->simple_select("sessions", "*", "sid='{$sid}'"); $session = $db->fetch_array($query); if($session['sid']) { $this->sid = $session['sid']; }
|
}
|
}
|
| }
if(isset($plugins)) { $plugins->run_hooks('pre_session_load', $this);
|
}
// If we have a valid session id and user id, load that users session.
| }
// If we have a valid session id and user id, load that users session.
|
Zeile 112 | Zeile 131 |
---|
function load_user($uid, $loginkey='') { global $mybb, $db, $time, $lang, $mybbgroups, $cache;
|
function load_user($uid, $loginkey='') { global $mybb, $db, $time, $lang, $mybbgroups, $cache;
|
// Read the banned cache $bannedcache = $cache->read("banned");
// If the banned cache doesn't exist, update it and re-read it if(!is_array($bannedcache)) { $cache->update_banned(); $bannedcache = $cache->read("banned"); }
| |
$uid = (int)$uid; $query = $db->query("
| $uid = (int)$uid; $query = $db->query("
|
Zeile 132 | Zeile 141 |
---|
LIMIT 1 "); $mybb->user = $db->fetch_array($query);
|
LIMIT 1 "); $mybb->user = $db->fetch_array($query);
|
if(!empty($bannedcache[$uid])) { $banned_user = $bannedcache[$uid]; $mybb->user['bandate'] = $banned_user['dateline']; $mybb->user['banlifted'] = $banned_user['lifted']; $mybb->user['banoldgroup'] = $banned_user['oldgroup']; $mybb->user['banolddisplaygroup'] = $banned_user['olddisplaygroup']; $mybb->user['banoldadditionalgroups'] = $banned_user['oldadditionalgroups']; }
| |
// Check the password if we're not using a session
|
// Check the password if we're not using a session
|
if(empty($loginkey) || $loginkey != $mybb->user['loginkey'] || !$mybb->user['uid'])
| if(empty($loginkey) || $loginkey !== $mybb->user['loginkey'] || !$mybb->user['uid'])
|
{ unset($mybb->user); $this->uid = 0;
| { unset($mybb->user); $this->uid = 0;
|
Zeile 223 | Zeile 222 |
---|
if($time_formats[$mybb->user['timeformat']]) { $mybb->settings['timeformat'] = $time_formats[$mybb->user['timeformat']];
|
if($time_formats[$mybb->user['timeformat']]) { $mybb->settings['timeformat'] = $time_formats[$mybb->user['timeformat']];
|
} }
| } }
|
// Find out the threads per page preference. if($mybb->user['tpp'])
|
// Find out the threads per page preference. if($mybb->user['tpp'])
|
{
| {
|
$mybb->settings['threadsperpage'] = $mybb->user['tpp'];
|
$mybb->settings['threadsperpage'] = $mybb->user['tpp'];
|
}
| }
|
// Find out the posts per page preference. if($mybb->user['ppp'])
| // Find out the posts per page preference. if($mybb->user['ppp'])
|
Zeile 240 | Zeile 239 |
---|
// Does this user prefer posts in classic mode? if($mybb->user['classicpostbit'])
|
// Does this user prefer posts in classic mode? if($mybb->user['classicpostbit'])
|
{
| {
|
$mybb->settings['postlayout'] = 'classic'; } else { $mybb->settings['postlayout'] = 'horizontal';
|
$mybb->settings['postlayout'] = 'classic'; } else { $mybb->settings['postlayout'] = 'horizontal';
|
| }
$usergroups = $cache->read('usergroups');
if(!empty($usergroups[$mybb->user['usergroup']]) && $usergroups[$mybb->user['usergroup']]['isbannedgroup'] == 1) { $ban = $db->fetch_array( $db->simple_select('banned', '*', 'uid='.(int)$mybb->user['uid'], array('limit' => 1)) );
if($ban) { $mybb->user['banned'] = 1; $mybb->user['bandate'] = $ban['dateline']; $mybb->user['banlifted'] = $ban['lifted']; $mybb->user['banoldgroup'] = $ban['oldgroup']; $mybb->user['banolddisplaygroup'] = $ban['olddisplaygroup']; $mybb->user['banoldadditionalgroups'] = $ban['oldadditionalgroups']; $mybb->user['banreason'] = $ban['reason']; } else { $mybb->user['banned'] = 0; }
|
}
// Check if this user is currently banned and if we have to lift it.
| }
// Check if this user is currently banned and if we have to lift it.
|
Zeile 258 | Zeile 281 |
---|
$mybb->user['usergroup'] = $mybb->user['banoldgroup']; $mybb->user['displaygroup'] = $mybb->user['banolddisplaygroup']; $mybb->user['additionalgroups'] = $mybb->user['banoldadditionalgroups'];
|
$mybb->user['usergroup'] = $mybb->user['banoldgroup']; $mybb->user['displaygroup'] = $mybb->user['banolddisplaygroup']; $mybb->user['additionalgroups'] = $mybb->user['banoldadditionalgroups'];
|
$cache->update_banned();
| |
$mybbgroups = $mybb->user['usergroup']; if($mybb->user['additionalgroups'])
| $mybbgroups = $mybb->user['usergroup']; if($mybb->user['additionalgroups'])
|
Zeile 323 | Zeile 345 |
---|
// Set up some defaults $time = TIME_NOW; $mybb->user['usergroup'] = 1;
|
// Set up some defaults $time = TIME_NOW; $mybb->user['usergroup'] = 1;
|
| $mybb->user['additionalgroups'] = '';
|
$mybb->user['username'] = ''; $mybb->user['uid'] = 0; $mybbgroups = 1;
| $mybb->user['username'] = ''; $mybb->user['uid'] = 0; $mybbgroups = 1;
|
Zeile 364 | Zeile 387 |
---|
// Gather a full permission set for this guest $mybb->usergroup = usergroup_permissions($mybbgroups); $mydisplaygroup = usergroup_displaygroup($mybb->user['displaygroup']);
|
// Gather a full permission set for this guest $mybb->usergroup = usergroup_permissions($mybbgroups); $mydisplaygroup = usergroup_displaygroup($mybb->user['displaygroup']);
|
$mybb->usergroup = array_merge($mybb->usergroup, $mydisplaygroup);
| if(is_array($mydisplaygroup)) { $mybb->usergroup = array_merge($mybb->usergroup, $mydisplaygroup); }
|
// Update the online data. if(!defined("NO_ONLINE") && !defined('IN_UPGRADE'))
| // Update the online data. if(!defined("NO_ONLINE") && !defined('IN_UPGRADE'))
|
Zeile 424 | Zeile 449 |
---|
// Gather a full permission set for this spider. $mybb->usergroup = usergroup_permissions($mybb->user['usergroup']); $mydisplaygroup = usergroup_displaygroup($mybb->user['displaygroup']);
|
// Gather a full permission set for this spider. $mybb->usergroup = usergroup_permissions($mybb->user['usergroup']); $mydisplaygroup = usergroup_displaygroup($mybb->user['displaygroup']);
|
$mybb->usergroup = array_merge($mybb->usergroup, $mydisplaygroup);
| if(is_array($mydisplaygroup)) { $mybb->usergroup = array_merge($mybb->usergroup, $mydisplaygroup); }
|
// Update spider last minute (only do so on two minute intervals - decrease load for quick spiders) if($spider['lastvisit'] < TIME_NOW-120)
|
// Update spider last minute (only do so on two minute intervals - decrease load for quick spiders) if($spider['lastvisit'] < TIME_NOW-120)
|
{
| {
|
$updated_spider = array( "lastvisit" => TIME_NOW );
| $updated_spider = array( "lastvisit" => TIME_NOW );
|
Zeile 455 | Zeile 483 |
---|
global $db;
// Find out what the special locations are.
|
global $db;
// Find out what the special locations are.
|
$speciallocs = $this->get_special_locations();
| $speciallocs = $this->get_special_locations();
|
if($uid)
|
if($uid)
|
{ $onlinedata['uid'] = $uid; } else { $onlinedata['uid'] = 0;
| { $onlinedata['uid'] = $uid; } else { $onlinedata['uid'] = 0;
|
} $onlinedata['time'] = TIME_NOW;
|
} $onlinedata['time'] = TIME_NOW;
|
$onlinedata['location'] = $db->escape_string(substr(get_current_location(), 0, 150)); $onlinedata['useragent'] = $db->escape_string(my_substr($this->useragent, 0, 100));
| $onlinedata['location'] = $db->escape_string(substr(get_current_location(false, $this->ignore_parameters), 0, 150)); $onlinedata['useragent'] = $db->escape_string(my_substr($this->useragent, 0, 200));
|
$onlinedata['location1'] = (int)$speciallocs['1']; $onlinedata['location2'] = (int)$speciallocs['2'];
| $onlinedata['location1'] = (int)$speciallocs['1']; $onlinedata['location2'] = (int)$speciallocs['2'];
|
Zeile 492 | Zeile 520 |
---|
{ $db->delete_query("sessions", "uid='{$uid}'"); $onlinedata['uid'] = $uid;
|
{ $db->delete_query("sessions", "uid='{$uid}'"); $onlinedata['uid'] = $uid;
|
}
| }
|
// Is a spider - delete all other spider references else if($this->is_spider == true)
|
// Is a spider - delete all other spider references else if($this->is_spider == true)
|
{
| {
|
$db->delete_query("sessions", "sid='{$this->sid}'");
|
$db->delete_query("sessions", "sid='{$this->sid}'");
|
} // Else delete by ip. else { $db->delete_query("sessions", "ip=".$db->escape_binary($this->packedip));
| } else {
|
$onlinedata['uid'] = 0; }
| $onlinedata['uid'] = 0; }
|
Zeile 512 | Zeile 538 |
---|
} else {
|
} else {
|
$onlinedata['sid'] = md5(uniqid(microtime(true), true));
| $onlinedata['sid'] = md5(random_str(50));
|
} $onlinedata['time'] = TIME_NOW; $onlinedata['ip'] = $db->escape_binary($this->packedip);
|
} $onlinedata['time'] = TIME_NOW; $onlinedata['ip'] = $db->escape_binary($this->packedip);
|
$onlinedata['location'] = $db->escape_string(substr(get_current_location(), 0, 150)); $onlinedata['useragent'] = $db->escape_string(my_substr($this->useragent, 0, 100));
| $onlinedata['location'] = $db->escape_string(substr(get_current_location(false, $this->ignore_parameters), 0, 150)); $onlinedata['useragent'] = $db->escape_string(my_substr($this->useragent, 0, 200));
|
$onlinedata['location1'] = (int)$speciallocs['1']; $onlinedata['location2'] = (int)$speciallocs['2'];
| $onlinedata['location1'] = (int)$speciallocs['1']; $onlinedata['location2'] = (int)$speciallocs['2'];
|
Zeile 537 | Zeile 563 |
---|
{ global $mybb; $array = array('1' => '', '2' => '');
|
{ global $mybb; $array = array('1' => '', '2' => '');
|
if(preg_match("#forumdisplay.php#", $_SERVER['PHP_SELF']) && $mybb->get_input('fid', MyBB::INPUT_INT) > 0)
| if(preg_match("#forumdisplay.php#", $_SERVER['PHP_SELF']) && $mybb->get_input('fid', MyBB::INPUT_INT) > 0 && $mybb->get_input('fid', MyBB::INPUT_INT) < 4294967296)
|
{ $array[1] = $mybb->get_input('fid', MyBB::INPUT_INT); $array[2] = '';
| { $array[1] = $mybb->get_input('fid', MyBB::INPUT_INT); $array[2] = '';
|
Zeile 546 | Zeile 572 |
---|
{ global $db;
|
{ global $db;
|
if($mybb->get_input('tid', MyBB::INPUT_INT) > 0)
| if($mybb->get_input('tid', MyBB::INPUT_INT) > 0 && $mybb->get_input('tid', MyBB::INPUT_INT) < 4294967296)
|
{ $array[2] = $mybb->get_input('tid', MyBB::INPUT_INT); }
| { $array[2] = $mybb->get_input('tid', MyBB::INPUT_INT); }
|