Vergleich inc/class_session.php - 1.6.10 - 1.6.11

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 29Zeile 29

// Find out the user agent.
$this->useragent = $_SERVER['HTTP_USER_AGENT'];


// Find out the user agent.
$this->useragent = $_SERVER['HTTP_USER_AGENT'];

		if(my_strlen($this->useragent) > 100)
{
$this->useragent = my_substr($this->useragent, 0, 100);
}








		// Attempt to find a session id in the cookies.
if(isset($mybb->cookies['sid']))
{

		// Attempt to find a session id in the cookies.
if(isset($mybb->cookies['sid']))
{

Zeile 44Zeile 40
			if($session['sid'])
{
$this->sid = $session['sid'];

			if($session['sid'])
{
$this->sid = $session['sid'];

			}
}


			}
}


		// If we have a valid session id and user id, load that users session.
if(!empty($mybb->cookies['mybbuser']))
{
$logon = explode("_", $mybb->cookies['mybbuser'], 2);
$this->load_user($logon[0], $logon[1]);

		// If we have a valid session id and user id, load that users session.
if(!empty($mybb->cookies['mybbuser']))
{
$logon = explode("_", $mybb->cookies['mybbuser'], 2);
$this->load_user($logon[0], $logon[1]);

		}


		}


		// If no user still, then we have a guest.
if(!isset($mybb->user['uid']))
{

		// If no user still, then we have a guest.
if(!isset($mybb->user['uid']))
{

Zeile 82Zeile 78


// As a token of our appreciation for getting this far (and they aren't a spider), give the user a cookie



// As a token of our appreciation for getting this far (and they aren't a spider), give the user a cookie

		if($this->sid && (isset($mybb->cookies['sid'] ) && $mybb->cookies['sid'] != $this->sid) && $this->is_spider != true)

		if($this->sid && (!isset($mybb->cookies['sid']) || $mybb->cookies['sid'] != $this->sid) && $this->is_spider != true)

		{
my_setcookie("sid", $this->sid, -1, true);
}

		{
my_setcookie("sid", $this->sid, -1, true);
}

Zeile 90Zeile 86

/**
* Load a user via the user credentials.


/**
* Load a user via the user credentials.

	 *
* @param int The user id.
* @param string The user's password.
*/
function load_user($uid, $password='')

	 *
* @param int The user id.
* @param string The user's loginkey.
*/
function load_user($uid, $loginkey='')

	{
global $mybb, $db, $time, $lang, $mybbgroups, $session, $cache;

	{
global $mybb, $db, $time, $lang, $mybbgroups, $session, $cache;

		



		// Read the banned cache

		// Read the banned cache

		$bannedcache = $cache->read("banned");	


		$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");
}

		// 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 = intval($uid);
$query = $db->query("
SELECT u.*, f.*

		$uid = intval($uid);
$query = $db->query("
SELECT u.*, f.*

			FROM ".TABLE_PREFIX."users u 
LEFT JOIN ".TABLE_PREFIX."userfields f ON (f.ufid=u.uid)

			FROM ".TABLE_PREFIX."users u
LEFT JOIN ".TABLE_PREFIX."userfields f ON (f.ufid=u.uid)

			WHERE u.uid='$uid'
LIMIT 1
");
$mybb->user = $db->fetch_array($query);

			WHERE u.uid='$uid'
LIMIT 1
");
$mybb->user = $db->fetch_array($query);

		



		if(!empty($bannedcache[$uid]))
{
$banned_user = $bannedcache[$uid];

		if(!empty($bannedcache[$uid]))
{
$banned_user = $bannedcache[$uid];

Zeile 129Zeile 125
		}

// Check the password if we're not using a session

		}

// Check the password if we're not using a session

		if($password != $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 147Zeile 143
			if($mybb->user['totalpms'] == -1)
{
$update += 1;

			if($mybb->user['totalpms'] == -1)
{
$update += 1;

			}

			}

			if($mybb->user['unreadpms'] == -1)
{
$update += 2;

			if($mybb->user['unreadpms'] == -1)
{
$update += 2;

Zeile 162Zeile 158
		}
$mybb->user['pms_total'] = $mybb->user['totalpms'];
$mybb->user['pms_unread'] = $mybb->user['unreadpms'];

		}
$mybb->user['pms_total'] = $mybb->user['totalpms'];
$mybb->user['pms_unread'] = $mybb->user['unreadpms'];





		if($mybb->user['lastip'] != $this->ipaddress && array_key_exists('lastip', $mybb->user))

		if($mybb->user['lastip'] != $this->ipaddress && array_key_exists('lastip', $mybb->user))

		{

		{

			$lastip_add = ", lastip='".$db->escape_string($this->ipaddress)."', longlastip='".intval(my_ip2long($this->ipaddress))."'";
}
else
{
$lastip_add = '';

			$lastip_add = ", lastip='".$db->escape_string($this->ipaddress)."', longlastip='".intval(my_ip2long($this->ipaddress))."'";
}
else
{
$lastip_add = '';

		}

		}


// If the last visit was over 900 seconds (session time out) ago then update lastvisit.
$time = TIME_NOW;


// If the last visit was over 900 seconds (session time out) ago then update lastvisit.
$time = TIME_NOW;

Zeile 185Zeile 181
		{
$timespent = TIME_NOW - $mybb->user['lastactive'];
$db->shutdown_query("UPDATE ".TABLE_PREFIX."users SET lastactive='$time', timeonline=timeonline+$timespent{$lastip_add} WHERE uid='{$mybb->user['uid']}'");

		{
$timespent = TIME_NOW - $mybb->user['lastactive'];
$db->shutdown_query("UPDATE ".TABLE_PREFIX."users SET lastactive='$time', timeonline=timeonline+$timespent{$lastip_add} WHERE uid='{$mybb->user['uid']}'");

		}

		}


// Sort out the language and forum preferences.
if($mybb->user['language'] && $lang->language_exists($mybb->user['language']))


// Sort out the language and forum preferences.
if($mybb->user['language'] && $lang->language_exists($mybb->user['language']))

Zeile 198Zeile 194
			if($date_formats[$mybb->user['dateformat']])
{
$mybb->settings['dateformat'] = $date_formats[$mybb->user['dateformat']];

			if($date_formats[$mybb->user['dateformat']])
{
$mybb->settings['dateformat'] = $date_formats[$mybb->user['dateformat']];

			}
}

			}
}


// Choose time format.
if($mybb->user['timeformat'] != 0 && $mybb->user['timeformat'] != '')


// Choose time format.
if($mybb->user['timeformat'] != 0 && $mybb->user['timeformat'] != '')

Zeile 221Zeile 217
		if($mybb->user['ppp'])
{
$mybb->settings['postsperpage'] = $mybb->user['ppp'];

		if($mybb->user['ppp'])
{
$mybb->settings['postsperpage'] = $mybb->user['ppp'];

		}


		}


		// Does this user prefer posts in classic mode?
if($mybb->user['classicpostbit'])
{

		// Does this user prefer posts in classic mode?
if($mybb->user['classicpostbit'])
{

Zeile 244Zeile 240
			$mybb->user['displaygroup'] = $mybb->user['banolddisplaygroup'];
$mybb->user['additionalgroups'] = $mybb->user['banoldadditionalgroups'];
$cache->update_banned();

			$mybb->user['displaygroup'] = $mybb->user['banolddisplaygroup'];
$mybb->user['additionalgroups'] = $mybb->user['banoldadditionalgroups'];
$cache->update_banned();


$mybbgroups = $mybb->user['usergroup'];


$mybbgroups = $mybb->user['usergroup'];

			if($mybb->user['additionalgroups'])
{
$mybbgroups .= ','.$mybb->user['additionalgroups'];
}
}
else if(!empty($mybb->user['bandate']) && (empty($mybb->user['banlifted']) || !empty($mybb->user['banlifted']) && $mybb->user['banlifted'] > $time))

			if($mybb->user['additionalgroups'])
{
$mybbgroups .= ','.$mybb->user['additionalgroups'];
}
}
else if(!empty($mybb->user['bandate']) && (empty($mybb->user['banlifted']) || !empty($mybb->user['banlifted']) && $mybb->user['banlifted'] > $time))

        {

        {

            $mybbgroups = $mybb->user['usergroup'];
}
else

            $mybbgroups = $mybb->user['usergroup'];
}
else

Zeile 267Zeile 263

$mybb->usergroup = usergroup_permissions($mybbgroups);
if(!$mybb->user['displaygroup'])


$mybb->usergroup = usergroup_permissions($mybbgroups);
if(!$mybb->user['displaygroup'])

		{

		{

			$mybb->user['displaygroup'] = $mybb->user['usergroup'];
}


			$mybb->user['displaygroup'] = $mybb->user['usergroup'];
}


Zeile 275Zeile 271
		if(is_array($mydisplaygroup))
{
$mybb->usergroup = array_merge($mybb->usergroup, $mydisplaygroup);

		if(is_array($mydisplaygroup))
{
$mybb->usergroup = array_merge($mybb->usergroup, $mydisplaygroup);

		}


		}


		if(!$mybb->user['usertitle'])
{
$mybb->user['usertitle'] = $mybb->usergroup['usertitle'];
}

// Update or create the session.

		if(!$mybb->user['usertitle'])
{
$mybb->user['usertitle'] = $mybb->usergroup['usertitle'];
}

// Update or create the session.

		if(!defined("NO_ONLINE"))

		if(!defined("NO_ONLINE"))

		{
if(!empty($this->sid))
{

		{
if(!empty($this->sid))
{

Zeile 349Zeile 345
		// 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);

// Update the online data.

		$mybb->usergroup = array_merge($mybb->usergroup, $mydisplaygroup);

// Update the online data.

Zeile 451Zeile 447
		}
$onlinedata['time'] = TIME_NOW;
$onlinedata['location'] = $db->escape_string(get_current_location());

		}
$onlinedata['time'] = TIME_NOW;
$onlinedata['location'] = $db->escape_string(get_current_location());

		$onlinedata['useragent'] = $db->escape_string($this->useragent);






		$useragent = $this->useragent;
if(my_strlen($useragent) > 100)
{
$useragent = my_substr($useragent, 0, 100);
}
$onlinedata['useragent'] = $db->escape_string($useragent);

		$onlinedata['location1'] = intval($speciallocs['1']);
$onlinedata['location2'] = intval($speciallocs['2']);
$onlinedata['nopermission'] = 0;
$sid = $db->escape_string($sid);

		$onlinedata['location1'] = intval($speciallocs['1']);
$onlinedata['location2'] = intval($speciallocs['2']);
$onlinedata['nopermission'] = 0;
$sid = $db->escape_string($sid);





		$db->update_query("sessions", $onlinedata, "sid='{$sid}'", 1);
}


		$db->update_query("sessions", $onlinedata, "sid='{$sid}'", 1);
}


Zeile 464Zeile 465
	 * Create a new session.
*
* @param int The user id to bind the session to.

	 * Create a new session.
*
* @param int The user id to bind the session to.

	 */

	 */

	function create_session($uid=0)
{
global $db;

	function create_session($uid=0)
{
global $db;

Zeile 472Zeile 473

// If there is a proper uid, delete by uid.
if($uid > 0)


// If there is a proper uid, delete by uid.
if($uid > 0)

		{

		{

			$db->delete_query("sessions", "uid='{$uid}'");
$onlinedata['uid'] = $uid;
}

			$db->delete_query("sessions", "uid='{$uid}'");
$onlinedata['uid'] = $uid;
}

Zeile 486Zeile 487
		{
$db->delete_query("sessions", "ip='".$db->escape_string($this->ipaddress)."'");
$onlinedata['uid'] = 0;

		{
$db->delete_query("sessions", "ip='".$db->escape_string($this->ipaddress)."'");
$onlinedata['uid'] = 0;

		}


		}


		// If the user is a search enginge spider, ...
if($this->is_spider == true)
{
$onlinedata['sid'] = $this->sid;
}
else

		// If the user is a search enginge spider, ...
if($this->is_spider == true)
{
$onlinedata['sid'] = $this->sid;
}
else

		{

		{

			$onlinedata['sid'] = md5(uniqid(microtime(true)));

			$onlinedata['sid'] = md5(uniqid(microtime(true)));

		}

		}

		$onlinedata['time'] = TIME_NOW;
$onlinedata['ip'] = $db->escape_string($this->ipaddress);
$onlinedata['location'] = $db->escape_string(get_current_location());

		$onlinedata['time'] = TIME_NOW;
$onlinedata['ip'] = $db->escape_string($this->ipaddress);
$onlinedata['location'] = $db->escape_string(get_current_location());

		$onlinedata['useragent'] = $db->escape_string($this->useragent);






		$useragent = $this->useragent;
if(my_strlen($useragent) > 100)
{
$useragent = my_substr($useragent, 0, 100);
}
$onlinedata['useragent'] = $db->escape_string($useragent);

		$onlinedata['location1'] = intval($speciallocs['1']);
$onlinedata['location2'] = intval($speciallocs['2']);
$onlinedata['nopermission'] = 0;

		$onlinedata['location1'] = intval($speciallocs['1']);
$onlinedata['location2'] = intval($speciallocs['2']);
$onlinedata['nopermission'] = 0;

Zeile 523Zeile 529
			$array[1] = intval($mybb->input['fid']);
$array[2] = '';
}

			$array[1] = intval($mybb->input['fid']);
$array[2] = '';
}

		elseif(preg_match("#showthread.php#", $_SERVER['PHP_SELF']) && intval($mybb->input['tid']) > 0)

		elseif(preg_match("#showthread.php#", $_SERVER['PHP_SELF']))

		{
global $db;

		{
global $db;

			$array[2] = intval($mybb->input['tid']);
$thread = get_thread(intval($array[2]));






















if($mybb->input['tid'] && intval($mybb->input['tid']) > 0)
{
$array[2] = intval($mybb->input['tid']);
}
elseif($mybb->input['pid'] && intval($mybb->input['pid']) > 0)
{
$array[2] = intval($mybb->input['pid']);
}

// If there is no tid but a pid, trick the system into thinking there was a tid anyway.
if(!empty($mybb->input['pid']) && !isset($mybb->input['tid']))
{
$options = array(
"limit" => 1
);
$query = $db->simple_select("posts", "tid", "pid=".$mybb->input['pid'], $options);
$post = $db->fetch_array($query);
$mybb->input['tid'] = $post['tid'];
}

$thread = get_thread(intval($mybb->input['tid']));

			$array[1] = $thread['fid'];
}
return $array;

			$array[1] = $thread['fid'];
}
return $array;