Zeile 93 | Zeile 93 |
---|
case "apc": require_once MYBB_ROOT."/inc/cachehandlers/apc.php"; $this->handler = new apcCacheHandler();
|
case "apc": require_once MYBB_ROOT."/inc/cachehandlers/apc.php"; $this->handler = new apcCacheHandler();
|
| break; // APCu cache case "apcu": require_once MYBB_ROOT."/inc/cachehandlers/apcu.php"; $this->handler = new apcuCacheHandler(); break; // Redis cache case "redis": require_once MYBB_ROOT."/inc/cachehandlers/redis.php"; $this->handler = new redisCacheHandler();
|
break; }
if($this->handler instanceof CacheHandlerInterface)
|
break; }
if($this->handler instanceof CacheHandlerInterface)
|
{
| {
|
if(!$this->handler->connect())
|
if(!$this->handler->connect())
|
{
| {
|
$this->handler = null;
|
$this->handler = null;
|
}
| }
|
} else {
| } else {
|
Zeile 110 | Zeile 120 |
---|
while($data = $db->fetch_array($query)) { $this->cache[$data['title']] = unserialize($data['cache']);
|
while($data = $db->fetch_array($query)) { $this->cache[$data['title']] = unserialize($data['cache']);
|
}
| }
|
} }
| } }
|
Zeile 133 | Zeile 143 |
---|
// If we're not hard refreshing, and this cache doesn't exist, return false // It would have been loaded pre-global if it did exist anyway... else if($hard == false && !($this->handler instanceof CacheHandlerInterface))
|
// If we're not hard refreshing, and this cache doesn't exist, return false // It would have been loaded pre-global if it did exist anyway... else if($hard == false && !($this->handler instanceof CacheHandlerInterface))
|
{ return false; }
if($this->handler instanceof CacheHandlerInterface) { get_execution_time();
$data = $this->handler->fetch($name);
$call_time = get_execution_time(); $this->call_time += $call_time; $this->call_count++;
if($mybb->debug_mode)
| { return false; }
if($this->handler instanceof CacheHandlerInterface) { get_execution_time();
$data = $this->handler->fetch($name);
$call_time = get_execution_time(); $this->call_time += $call_time; $this->call_count++;
if($mybb->debug_mode)
|
{ $hit = true; if($data === false)
| { $hit = true; if($data === false)
|
Zeile 163 | Zeile 173 |
---|
// 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 = unserialize($cache_data['cache']);
| $data = my_unserialize($cache_data['cache']);
|
// Update cache for handler get_execution_time();
| // Update cache for handler get_execution_time();
|
Zeile 185 | Zeile 195 |
---|
{ $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; }
| { $data = false; }
|
Zeile 194 | Zeile 204 |
---|
{ $data = unserialize($cache_data['cache']); }
|
{ $data = unserialize($cache_data['cache']); }
|
}
| }
|
// Cache locally $this->cache[$name] = $data;
| // Cache locally $this->cache[$name] = $data;
|
Zeile 204 | Zeile 214 |
---|
return $data; } else
|
return $data; } else
|
{
| {
|
return false; } }
| return false; } }
|
Zeile 213 | Zeile 223 |
---|
* Update cache contents. * * @param string $name The cache content identifier.
|
* Update cache contents. * * @param string $name The cache content identifier.
|
* @param string $contents The cache content.
| * @param mixed $contents The cache content.
|
*/ function update($name, $contents) {
| */ function update($name, $contents) {
|
Zeile 222 | Zeile 232 |
---|
$this->cache[$name] = $contents;
// We ALWAYS keep a running copy in the db just incase we need it
|
$this->cache[$name] = $contents;
// We ALWAYS keep a running copy in the db just incase we need it
|
$dbcontents = $db->escape_string(serialize($contents));
| $dbcontents = $db->escape_string(my_serialize($contents));
|
$replace_array = array( "title" => $db->escape_string($name),
| $replace_array = array( "title" => $db->escape_string($name),
|
Zeile 244 | Zeile 254 |
---|
if($mybb->debug_mode) { $this->debug_call('update:'.$name, $call_time, $hit);
|
if($mybb->debug_mode) { $this->debug_call('update:'.$name, $call_time, $hit);
|
} } }
| } } }
|
/** * Delete cache contents. * Originally from frostschutz's PluginLibrary
| /** * Delete cache contents. * Originally from frostschutz's PluginLibrary
|
Zeile 258 | Zeile 268 |
---|
*/ function delete($name, $greedy = false) {
|
*/ function delete($name, $greedy = false) {
|
global $db, $mybb, $cache;
| global $db, $mybb, $cache;
|
// Prepare for database query. $dbname = $db->escape_string($name);
| // Prepare for database query. $dbname = $db->escape_string($name);
|
Zeile 561 | Zeile 571 |
---|
{ 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 609 | Zeile 619 |
---|
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 618 | Zeile 628 |
---|
$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 666 | Zeile 676 |
---|
break; }
|
break; }
|
$query = $db->query(' SELECT u.uid, u.username, COUNT(pid) AS poststoday FROM '.TABLE_PREFIX.'posts p LEFT JOIN '.TABLE_PREFIX.'users u ON (p.uid=u.uid) WHERE p.dateline>'.$timesearch.' AND p.visible=1 GROUP BY '.$group_by.' ORDER BY poststoday DESC LIMIT 1 '); $topposter = $db->fetch_array($query);
| $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} ORDER BY poststoday DESC ");
$most_posts = 0; $topposter = array(); while($user = $db->fetch_array($query)) { if($user['poststoday'] > $most_posts) { $most_posts = $user['poststoday']; $topposter = $user; } }
|
$query = $db->simple_select('users', 'COUNT(uid) AS posters', 'postnum>0'); $posters = $db->fetch_field($query, 'posters');
| $query = $db->simple_select('users', 'COUNT(uid) AS posters', 'postnum>0'); $posters = $db->fetch_field($query, 'posters');
|
Zeile 759 | Zeile 779 |
---|
$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 866 | Zeile 886 |
---|
* */ function update_usertitles()
|
* */ function update_usertitles()
|
{ global $db;
| { global $db;
|
$usertitles = array(); $query = $db->simple_select("usertitles", "utid, posts, title, stars, starimage", "", array('order_by' => 'posts', 'order_dir' => 'DESC')); while($usertitle = $db->fetch_array($query))
| $usertitles = array(); $query = $db->simple_select("usertitles", "utid, posts, title, stars, starimage", "", array('order_by' => 'posts', 'order_dir' => 'DESC')); while($usertitle = $db->fetch_array($query))
|
Zeile 884 | Zeile 904 |
---|
* */ function update_reportedcontent()
|
* */ function update_reportedcontent()
|
{ global $db, $mybb;
$query = $db->simple_select("reportedcontent", "COUNT(rid) AS unreadcount", "reportstatus='0'"); $num = $db->fetch_array($query);
$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);
| { global $db;
$query = $db->simple_select("reportedcontent", "COUNT(rid) AS unreadcount", "reportstatus='0'"); $unreadcount = $db->fetch_field($query, 'unreadcount');
$query = $db->simple_select("reportedcontent", "COUNT(rid) AS reportcount"); $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 910 | Zeile 930 |
---|
* */ function update_mycode()
|
* */ function update_mycode()
|
{ global $db;
| { global $db;
|
$mycodes = array(); $query = $db->simple_select("mycode", "regex, replacement", "active=1", array('order_by' => 'parseorder')); while($mycode = $db->fetch_array($query))
| $mycodes = array(); $query = $db->simple_select("mycode", "regex, replacement", "active=1", array('order_by' => 'parseorder')); while($mycode = $db->fetch_array($query))
|
Zeile 930 | Zeile 950 |
---|
* @param int $lock_time */ function update_mailqueue($last_run=0, $lock_time=0)
|
* @param int $lock_time */ function update_mailqueue($last_run=0, $lock_time=0)
|
{ global $db;
| { global $db;
|
$query = $db->simple_select("mailqueue", "COUNT(*) AS queue_size"); $queue_size = $db->fetch_field($query, "queue_size");
$mailqueue = $this->read("mailqueue"); if(!is_array($mailqueue))
|
$query = $db->simple_select("mailqueue", "COUNT(*) AS queue_size"); $queue_size = $db->fetch_field($query, "queue_size");
$mailqueue = $this->read("mailqueue"); if(!is_array($mailqueue))
|
{
| {
|
$mailqueue = array();
|
$mailqueue = array();
|
}
| }
|
$mailqueue['queue_size'] = $queue_size; if($last_run > 0) {
| $mailqueue['queue_size'] = $queue_size; if($last_run > 0) {
|
Zeile 949 | Zeile 969 |
---|
$mailqueue['locked'] = $lock_time;
$this->update("mailqueue", $mailqueue);
|
$mailqueue['locked'] = $lock_time;
$this->update("mailqueue", $mailqueue);
|
}
/**
| }
/**
|
* Update update_check cache (dummy function used by upgrade/install scripts)
|
* Update update_check cache (dummy function used by upgrade/install scripts)
|
*/
| */
|
function update_update_check()
|
function update_update_check()
|
{
| {
|
$update_cache = array( "dateline" => TIME_NOW );
| $update_cache = array( "dateline" => TIME_NOW );
|
Zeile 967 | Zeile 987 |
---|
* Update default_theme cache */ function update_default_theme()
|
* Update default_theme cache */ function update_default_theme()
|
{ global $db;
| { global $db;
|
$query = $db->simple_select("themes", "name, tid, properties, stylesheets", "def='1'", array('limit' => 1)); $theme = $db->fetch_array($query);
| $query = $db->simple_select("themes", "name, tid, properties, stylesheets", "def='1'", array('limit' => 1)); $theme = $db->fetch_array($query);
|
Zeile 987 | Zeile 1007 |
---|
$task_cache = $this->read("tasks"); if(!is_array($task_cache))
|
$task_cache = $this->read("tasks"); if(!is_array($task_cache))
|
{
| {
|
$task_cache = array();
|
$task_cache = array();
|
}
| }
|
$task_cache['nextrun'] = $next_task['nextrun'];
|
$task_cache['nextrun'] = $next_task['nextrun'];
|
|
|
if(!$task_cache['nextrun']) { $task_cache['nextrun'] = TIME_NOW+3600;
| if(!$task_cache['nextrun']) { $task_cache['nextrun'] = TIME_NOW+3600;
|
Zeile 999 | Zeile 1019 |
---|
$this->update("tasks", $task_cache); }
|
$this->update("tasks", $task_cache); }
|
|
|
/** * Updates the banned IPs cache */ function update_bannedips()
|
/** * Updates the banned IPs cache */ function update_bannedips()
|
{ global $db;
| { global $db;
|
$banned_ips = array(); $query = $db->simple_select("banfilters", "fid,filter", "type=1"); while($banned_ip = $db->fetch_array($query))
| $banned_ips = array(); $query = $db->simple_select("banfilters", "fid,filter", "type=1"); while($banned_ip = $db->fetch_array($query))
|
Zeile 1015 | Zeile 1035 |
---|
} $this->update("bannedips", $banned_ips); }
|
} $this->update("bannedips", $banned_ips); }
|
|
|
/** * Updates the banned emails cache */
| /** * Updates the banned emails cache */
|
Zeile 1024 | Zeile 1044 |
---|
global $db;
$banned_emails = array();
|
global $db;
$banned_emails = array();
|
$query = $db->simple_select("banfilters", "fid, filter", "type = '3'");
| $query = $db->simple_select("banfilters", "fid, filter", "type = '3'");
|
while($banned_email = $db->fetch_array($query)) {
| while($banned_email = $db->fetch_array($query)) {
|
Zeile 1080 | Zeile 1100 |
---|
$this->update("most_viewed_threads", $threads); }
|
$this->update("most_viewed_threads", $threads); }
|
| /** * @deprecated */
|
function update_banned()
|
function update_banned()
|
{ global $db;
$bans = array();
$query = $db->simple_select("banned"); while($ban = $db->fetch_array($query)) { $bans[$ban['uid']] = $ban; }
$this->update("banned", $bans);
| { // "banned" cache removed
|
}
function update_birthdays()
| }
function update_birthdays()
|
Zeile 1117 | Zeile 1130 |
---|
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;
|
}
| }
|
$this->update("birthdays", $birthdays);
|
$this->update("birthdays", $birthdays);
|
}
| }
|
function update_groupleaders() { global $db;
|
function update_groupleaders() { global $db;
|
|
|
$groupleaders = array();
$query = $db->simple_select("groupleaders");
| $groupleaders = array();
$query = $db->simple_select("groupleaders");
|
Zeile 1143 | Zeile 1168 |
---|
}
$this->update("groupleaders", $groupleaders);
|
}
$this->update("groupleaders", $groupleaders);
|
}
| }
|
function update_threadprefixes()
|
function update_threadprefixes()
|
{ global $db;
| { global $db;
|
$prefixes = array(); $query = $db->simple_select("threadprefixes", "*", "", array('order_by' => 'prefix', 'order_dir' => 'ASC'));
| $prefixes = array(); $query = $db->simple_select("threadprefixes", "*", "", array('order_by' => 'prefix', 'order_dir' => 'ASC'));
|
Zeile 1156 | Zeile 1181 |
---|
{ $prefixes[$prefix['pid']] = $prefix; }
|
{ $prefixes[$prefix['pid']] = $prefix; }
|
|
|
$this->update("threadprefixes", $prefixes); }
function update_forumsdisplay() { global $db;
|
$this->update("threadprefixes", $prefixes); }
function update_forumsdisplay() { global $db;
|
|
|
$fd_statistics = array();
$time = TIME_NOW; // Look for announcements that don't end, or that are ending some time in the future $query = $db->simple_select("announcements", "fid", "enddate = '0' OR enddate > '{$time}'", array("order_by" => "aid"));
|
$fd_statistics = array();
$time = TIME_NOW; // Look for announcements that don't end, or that are ending some time in the future $query = $db->simple_select("announcements", "fid", "enddate = '0' OR enddate > '{$time}'", array("order_by" => "aid"));
|
|
|
if($db->num_rows($query)) { while($forum = $db->fetch_array($query))
| if($db->num_rows($query)) { while($forum = $db->fetch_array($query))
|
Zeile 1181 | Zeile 1206 |
---|
}
// Do we have any mod tools to use in our forums?
|
}
// Do we have any mod tools to use in our forums?
|
$query = $db->simple_select("modtools", "forums, tid", '', array("order_by" => "tid"));
| $query = $db->simple_select("modtools", "forums, tid", '', array("order_by" => "tid"));
|
if($db->num_rows($query)) {
| if($db->num_rows($query)) {
|
Zeile 1236 | Zeile 1261 |
---|
$content_types = array('post', 'profile', 'reputation'); if(!$no_plugins)
|
$content_types = array('post', 'profile', 'reputation'); if(!$no_plugins)
|
{
| {
|
global $plugins; $content_types = $plugins->run_hooks("report_content_types", $content_types); }
|
global $plugins; $content_types = $plugins->run_hooks("report_content_types", $content_types); }
|
|
|
$reasons = array();
$query = $db->simple_select("reportreasons", "*", "", array('order_by' => 'disporder'));
| $reasons = array();
$query = $db->simple_select("reportreasons", "*", "", array('order_by' => 'disporder'));
|
Zeile 1249 | Zeile 1274 |
---|
if($reason['appliesto'] == 'all') { foreach($content_types as $content)
|
if($reason['appliesto'] == 'all') { foreach($content_types as $content)
|
{ $reasons[$content][] = array( 'rid' => $reason['rid'], 'title' => $reason['title'], 'extra' => $reason['extra'], );
| { $reasons[$content][] = array( 'rid' => $reason['rid'], 'title' => $reason['title'], 'extra' => $reason['extra'], );
|
} } elseif($reason['appliesto'] != '')
| } } elseif($reason['appliesto'] != '')
|
Zeile 1272 | Zeile 1297 |
---|
}
$this->update("reportreasons", $reasons);
|
}
$this->update("reportreasons", $reasons);
|
}
| }
|
/* Other, extra functions for reloading caches if we just changed to another cache extension (i.e. from db -> xcache) */ function reload_mostonline() {
| /* Other, extra functions for reloading caches if we just changed to another cache extension (i.e. from db -> xcache) */ function reload_mostonline() {
|
Zeile 1308 | Zeile 1333 |
---|
}
function reload_version_history()
|
}
function reload_version_history()
|
{ global $db;
| { global $db;
|
$query = $db->simple_select("datacache", "title,cache", "title='version_history'"); $this->update("version_history", unserialize($db->fetch_field($query, "cache")));
|
$query = $db->simple_select("datacache", "title,cache", "title='version_history'"); $this->update("version_history", unserialize($db->fetch_field($query, "cache")));
|
}
| }
|
function reload_modnotes()
|
function reload_modnotes()
|
{ global $db;
| { global $db;
|
$query = $db->simple_select("datacache", "title,cache", "title='modnotes'"); $this->update("modnotes", unserialize($db->fetch_field($query, "cache")));
|
$query = $db->simple_select("datacache", "title,cache", "title='modnotes'"); $this->update("modnotes", unserialize($db->fetch_field($query, "cache")));
|
}
| }
|
function reload_adminnotes()
|
function reload_adminnotes()
|
{
| {
|
global $db;
|
global $db;
|
|
|
$query = $db->simple_select("datacache", "title,cache", "title='adminnotes'"); $this->update("adminnotes", unserialize($db->fetch_field($query, "cache")));
|
$query = $db->simple_select("datacache", "title,cache", "title='adminnotes'"); $this->update("adminnotes", unserialize($db->fetch_field($query, "cache")));
|
}
function reload_mybb_credits() { admin_redirect('index.php?module=home-credits&fetch_new=-2');
| |
} }
| } }
|