Vergleich inc/class_datacache.php - 1.8.25 - 1.8.34

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 51Zeile 51
	 * @var string
*/
public $cache_debug;

	 * @var string
*/
public $cache_debug;

 

/**
* @var array
*/
public $moderators;

/**
* @var array
*/
public $built_moderators;

/**
* @var array
*/
public $moderators_forum_cache;


/**
* Build cache data.


/**
* Build cache data.

Zeile 118Zeile 133
			// Database cache
$query = $db->simple_select("datacache", "title,cache");
while($data = $db->fetch_array($query))

			// Database cache
$query = $db->simple_select("datacache", "title,cache");
while($data = $db->fetch_array($query))

			{
$this->cache[$data['title']] = unserialize($data['cache']);
}


			{
// use PHP's own unserialize() for performance reasons
$this->cache[$data['title']] = unserialize($data['cache'], array('allowed_classes' => false));
}

		}
}

		}
}





	/**
* Read cache from files or db.
*

	/**
* Read cache from files or db.
*

Zeile 137Zeile 153

// Already have this cache and we're not doing a hard refresh? Return cached copy
if(isset($this->cache[$name]) && $hard == false)


// Already have this cache and we're not doing a hard refresh? Return cached copy
if(isset($this->cache[$name]) && $hard == false)

		{

		{

			return $this->cache[$name];
}
// If we're not hard refreshing, and this cache doesn't exist, return false

			return $this->cache[$name];
}
// If we're not hard refreshing, and this cache doesn't exist, return false

Zeile 173Zeile 189
				// Fetch from database
$query = $db->simple_select("datacache", "title,cache", "title='".$db->escape_string($name)."'");
$cache_data = $db->fetch_array($query);

				// Fetch from database
$query = $db->simple_select("datacache", "title,cache", "title='".$db->escape_string($name)."'");
$cache_data = $db->fetch_array($query);

				$data = my_unserialize($cache_data['cache']);




// use PHP's own unserialize() for performance reasons
$data = unserialize($cache_data['cache'], array('allowed_classes' => false));


// Update cache for handler
get_execution_time();

$hit = $this->handler->put($name, $data);


// Update cache for handler
get_execution_time();

$hit = $this->handler->put($name, $data);





				$call_time = get_execution_time();
$this->call_time += $call_time;
$this->call_count++;

				$call_time = get_execution_time();
$this->call_time += $call_time;
$this->call_count++;

Zeile 187Zeile 205
				if($mybb->debug_mode)
{
$this->debug_call('set:'.$name, $call_time, $hit);

				if($mybb->debug_mode)
{
$this->debug_call('set:'.$name, $call_time, $hit);

				}

				}

			}
}
// Else, using internal database cache

			}
}
// Else, using internal database cache

Zeile 196Zeile 214
			$query = $db->simple_select("datacache", "title,cache", "title='$name'");
$cache_data = $db->fetch_array($query);


			$query = $db->simple_select("datacache", "title,cache", "title='$name'");
$cache_data = $db->fetch_array($query);


			if(!$cache_data['title'])

			if(empty($cache_data['title']))

			{
$data = false;
}
else
{

			{
$data = false;
}
else
{

				$data = unserialize($cache_data['cache']);


				// use PHP's own unserialize() for performance reasons
$data = unserialize($cache_data['cache'], array('allowed_classes' => false));

			}
}


			}
}


Zeile 239Zeile 258
			"cache" => $dbcontents
);
$db->replace_query("datacache", $replace_array, "", false);

			"cache" => $dbcontents
);
$db->replace_query("datacache", $replace_array, "", false);





		// Do we have a cache handler we're using?
if($this->handler instanceof CacheHandlerInterface)
{
get_execution_time();

		// Do we have a cache handler we're using?
if($this->handler instanceof CacheHandlerInterface)
{
get_execution_time();





			$hit = $this->handler->put($name, $contents);

			$hit = $this->handler->put($name, $contents);





			$call_time = get_execution_time();
$this->call_time += $call_time;
$this->call_count++;

			$call_time = get_execution_time();
$this->call_time += $call_time;
$this->call_count++;

Zeile 254Zeile 273
			if($mybb->debug_mode)
{
$this->debug_call('update:'.$name, $call_time, $hit);

			if($mybb->debug_mode)
{
$this->debug_call('update:'.$name, $call_time, $hit);

			}
}

			}
}

	}

/**

	}

/**

Zeile 288Zeile 307
			if($mybb->debug_mode)
{
$this->debug_call('delete:'.$name, $call_time, $hit);

			if($mybb->debug_mode)
{
$this->debug_call('delete:'.$name, $call_time, $hit);

			}

			}

		}

// Greedy?

		}

// Greedy?

Zeile 305Zeile 324
					$names[$key] = 0;
}
}

					$names[$key] = 0;
}
}





			$ldbname = strtr($dbname,
array(
'%' => '=%',

			$ldbname = strtr($dbname,
array(
'%' => '=%',

Zeile 314Zeile 333
				)
);


				)
);


			$where .= " OR title LIKE '{$ldbname}=_%' ESCAPE '='";


			$where .= " OR title LIKE '{$ldbname}=_%' ESCAPE '='";


			if($this->handler instanceof CacheHandlerInterface)
{
$query = $db->simple_select("datacache", "title", $where);

while($row = $db->fetch_array($query))

			if($this->handler instanceof CacheHandlerInterface)
{
$query = $db->simple_select("datacache", "title", $where);

while($row = $db->fetch_array($query))

				{

				{

					$names[$row['title']] = 0;

					$names[$row['title']] = 0;

				}

				}


// ...from the filesystem...
$start = strlen(MYBB_ROOT."cache/");


// ...from the filesystem...
$start = strlen(MYBB_ROOT."cache/");

Zeile 337Zeile 356
				}

foreach($names as $key => $val)

				}

foreach($names as $key => $val)

				{

				{

					get_execution_time();

$hit = $this->handler->delete($key);

					get_execution_time();

$hit = $this->handler->delete($key);





					$call_time = get_execution_time();
$this->call_time += $call_time;
$this->call_count++;

					$call_time = get_execution_time();
$this->call_time += $call_time;
$this->call_count++;





					if($mybb->debug_mode)
{
$this->debug_call('delete:'.$name, $call_time, $hit);
}

					if($mybb->debug_mode)
{
$this->debug_call('delete:'.$name, $call_time, $hit);
}

				}
}
}


				}
}
}


		// Delete database cache
$db->delete_query("datacache", $where);
}

		// Delete database cache
$db->delete_query("datacache", $where);
}

Zeile 419Zeile 438
		{
$size = $this->handler->size_of($name);
if(!$size)

		{
$size = $this->handler->size_of($name);
if(!$size)

			{

			{

				if($name)
{
$query = $db->simple_select("datacache", "cache", "title='{$name}'");

				if($name)
{
$query = $db->simple_select("datacache", "cache", "title='{$name}'");

Zeile 452Zeile 471

/**
* Update the MyBB version in the cache.


/**
* Update the MyBB version in the cache.

	 *
*/

	 *
*/

	function update_version()
{
global $mybb;

	function update_version()
{
global $mybb;

Zeile 571Zeile 590
	{
global $forum_cache, $db;


	{
global $forum_cache, $db;


		$this->built_forum_permissions = array(0);

		$this->forum_permissions = $this->built_forum_permissions = array(0);


// Get our forum list
cache_forums(true);


// Get our forum list
cache_forums(true);

Zeile 619Zeile 638
	private function build_forum_permissions($permissions=array(), $pid=0)
{
$usergroups = array_keys($this->read("usergroups", true));

	private function build_forum_permissions($permissions=array(), $pid=0)
{
$usergroups = array_keys($this->read("usergroups", true));

		if($this->forum_permissions_forum_cache[$pid])

		if(!empty($this->forum_permissions_forum_cache[$pid]))

		{
foreach($this->forum_permissions_forum_cache[$pid] as $main)
{

		{
foreach($this->forum_permissions_forum_cache[$pid] as $main)
{

Zeile 628Zeile 647
					$perms = $permissions;
foreach($usergroups as $gid)
{

					$perms = $permissions;
foreach($usergroups as $gid)
{

						if($this->forum_permissions[$forum['fid']][$gid])

						if(isset($this->forum_permissions[$forum['fid']][$gid]) && $this->forum_permissions[$forum['fid']][$gid])

						{
$perms[$gid] = $this->forum_permissions[$forum['fid']][$gid];
}

						{
$perms[$gid] = $this->forum_permissions[$forum['fid']][$gid];
}

						if($perms[$gid])

						if(!empty($perms[$gid]))

						{
$perms[$gid]['fid'] = $forum['fid'];
$this->built_forum_permissions[$forum['fid']][$gid] = $perms[$gid];

						{
$perms[$gid]['fid'] = $forum['fid'];
$this->built_forum_permissions[$forum['fid']][$gid] = $perms[$gid];

Zeile 666Zeile 685
		$topreferrer = $db->fetch_array($query);

$timesearch = TIME_NOW - 86400;

		$topreferrer = $db->fetch_array($query);

$timesearch = TIME_NOW - 86400;

		switch($db->type)
{
case 'pgsql':
$group_by = $db->build_fields_string('users', 'u.');
break;
default:
$group_by = 'p.uid';
break;
}

 

$query = $db->query("
SELECT u.uid, u.username, COUNT(*) AS poststoday
FROM {$db->table_prefix}posts p
LEFT JOIN {$db->table_prefix}users u ON (p.uid=u.uid)
WHERE p.dateline > {$timesearch} AND p.visible=1


$query = $db->query("
SELECT u.uid, u.username, COUNT(*) AS poststoday
FROM {$db->table_prefix}posts p
LEFT JOIN {$db->table_prefix}users u ON (p.uid=u.uid)
WHERE p.dateline > {$timesearch} AND p.visible=1

			GROUP BY {$group_by}

			GROUP BY u.uid, u.username

			ORDER BY poststoday DESC
");

$most_posts = 0;

			ORDER BY poststoday DESC
");

$most_posts = 0;

 
		$topposter = array();

		while($user = $db->fetch_array($query))
{
if($user['poststoday'] > $most_posts)

		while($user = $db->fetch_array($query))
{
if($user['poststoday'] > $most_posts)

Zeile 778Zeile 789
			$this->moderators[$moderator['fid']]['usergroups'][$moderator['id']] = $moderator;
}


			$this->moderators[$moderator['fid']]['usergroups'][$moderator['id']] = $moderator;
}


		if(is_array($this->moderators))

		foreach(array_keys($this->moderators) as $fid)

		{

		{

			foreach(array_keys($this->moderators) as $fid)

			if(isset($this->moderators[$fid]['users']))

			{

			{

				uasort($this->moderators[$fid], 'sort_moderators_by_usernames');

				uasort($this->moderators[$fid]['users'], 'sort_moderators_by_usernames');

			}
}


			}
}


Zeile 904Zeile 915
	 */
function update_reportedcontent()
{

	 */
function update_reportedcontent()
{

		global $db, $mybb;


		global $db;


		$query = $db->simple_select("reportedcontent", "COUNT(rid) AS unreadcount", "reportstatus='0'");

		$query = $db->simple_select("reportedcontent", "COUNT(rid) AS unreadcount", "reportstatus='0'");

		$num = $db->fetch_array($query);


		$unreadcount = $db->fetch_field($query, 'unreadcount');


		$query = $db->simple_select("reportedcontent", "COUNT(rid) AS reportcount");

		$query = $db->simple_select("reportedcontent", "COUNT(rid) AS reportcount");

		$total = $db->fetch_array($query);

$query = $db->simple_select("reportedcontent", "dateline", "reportstatus='0'", array('order_by' => 'dateline', 'order_dir' => 'DESC'));
$latest = $db->fetch_array($query);

		$reportcount = $db->fetch_field($query, 'reportcount');

$query = $db->simple_select("reportedcontent", "dateline", "reportstatus='0'", array('order_by' => 'dateline', 'order_dir' => 'DESC', 'limit' => 1));
$dateline = $db->fetch_field($query, 'dateline');


$reports = array(


$reports = array(

			"unread" => $num['unreadcount'],
"total" => $total['reportcount'],
"lastdateline" => $latest['dateline']

			'unread' => $unreadcount,
'total' => $reportcount,
'lastdateline' => $dateline,

		);

$this->update("reportedcontent", $reports);

		);

$this->update("reportedcontent", $reports);

Zeile 1129Zeile 1140

if($bday['birthdayprivacy'] != 'all')
{


if($bday['birthdayprivacy'] != 'all')
{

				++$birthdays[$bday['bday']]['hiddencount'];








				if(isset($birthdays[$bday['bday']]['hiddencount']))
{
++$birthdays[$bday['bday']]['hiddencount'];
}
else
{
$birthdays[$bday['bday']]['hiddencount'] = 1;
}

				continue;

				continue;

			}


			}


			// We don't need any excess caleries in the cache
unset($bday['birthdayprivacy']);

			// We don't need any excess caleries in the cache
unset($bday['birthdayprivacy']);

 

if(!isset($birthdays[$bday['bday']]['users']))
{
$birthdays[$bday['bday']]['users'] = array();
}


$birthdays[$bday['bday']]['users'][] = $bday;
}


$birthdays[$bday['bday']]['users'][] = $bday;
}

Zeile 1292Zeile 1315
		global $db;

$query = $db->simple_select("datacache", "title,cache", "title='mostonline'");

		global $db;

$query = $db->simple_select("datacache", "title,cache", "title='mostonline'");

		$this->update("mostonline", unserialize($db->fetch_field($query, "cache")));

		$this->update("mostonline", my_unserialize($db->fetch_field($query, "cache")));

	}

function reload_plugins()

	}

function reload_plugins()

Zeile 1300Zeile 1323
		global $db;

$query = $db->simple_select("datacache", "title,cache", "title='plugins'");

		global $db;

$query = $db->simple_select("datacache", "title,cache", "title='plugins'");

		$this->update("plugins", unserialize($db->fetch_field($query, "cache")));

		$this->update("plugins", my_unserialize($db->fetch_field($query, "cache")));

	}

function reload_last_backup()

	}

function reload_last_backup()

Zeile 1308Zeile 1331
		global $db;

$query = $db->simple_select("datacache", "title,cache", "title='last_backup'");

		global $db;

$query = $db->simple_select("datacache", "title,cache", "title='last_backup'");

		$this->update("last_backup", unserialize($db->fetch_field($query, "cache")));

		$this->update("last_backup", my_unserialize($db->fetch_field($query, "cache")));

	}

function reload_internal_settings()

	}

function reload_internal_settings()

Zeile 1316Zeile 1339
		global $db;

$query = $db->simple_select("datacache", "title,cache", "title='internal_settings'");

		global $db;

$query = $db->simple_select("datacache", "title,cache", "title='internal_settings'");

		$this->update("internal_settings", unserialize($db->fetch_field($query, "cache")));

		$this->update("internal_settings", my_unserialize($db->fetch_field($query, "cache")));

	}

function reload_version_history()

	}

function reload_version_history()

Zeile 1324Zeile 1347
		global $db;

$query = $db->simple_select("datacache", "title,cache", "title='version_history'");

		global $db;

$query = $db->simple_select("datacache", "title,cache", "title='version_history'");

		$this->update("version_history", unserialize($db->fetch_field($query, "cache")));

		$this->update("version_history", my_unserialize($db->fetch_field($query, "cache")));

	}

function reload_modnotes()

	}

function reload_modnotes()

Zeile 1332Zeile 1355
		global $db;

$query = $db->simple_select("datacache", "title,cache", "title='modnotes'");

		global $db;

$query = $db->simple_select("datacache", "title,cache", "title='modnotes'");

		$this->update("modnotes", unserialize($db->fetch_field($query, "cache")));

		$this->update("modnotes", my_unserialize($db->fetch_field($query, "cache")));

	}

function reload_adminnotes()

	}

function reload_adminnotes()

Zeile 1340Zeile 1363
		global $db;

$query = $db->simple_select("datacache", "title,cache", "title='adminnotes'");

		global $db;

$query = $db->simple_select("datacache", "title,cache", "title='adminnotes'");

		$this->update("adminnotes", unserialize($db->fetch_field($query, "cache")));

		$this->update("adminnotes", my_unserialize($db->fetch_field($query, "cache")));

	}
}

	}
}