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 129 | Zeile 139 |
---|
if(isset($this->cache[$name]) && $hard == false) { return $this->cache[$name];
|
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 // 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();
|
|
|
$hit = $this->handler->put($name, $data);
$call_time = get_execution_time();
| $hit = $this->handler->put($name, $data);
$call_time = get_execution_time();
|
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 * github.com/frostschutz
| * Delete cache contents. * Originally from frostschutz's PluginLibrary * github.com/frostschutz
|
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 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.' 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; 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 699 | Zeile 718 |
---|
global $forum_cache, $db;
$this->built_moderators = array(0);
|
global $forum_cache, $db;
$this->built_moderators = array(0);
|
|
|
// Get our forum list cache_forums(true); if(!is_array($forum_cache))
| // Get our forum list cache_forums(true); if(!is_array($forum_cache))
|
Zeile 714 | Zeile 733 |
---|
foreach($forum_cache as $fid => $forum) { $this->moderators_forum_cache[$forum['pid']][$forum['disporder']][$forum['fid']] = $forum;
|
foreach($forum_cache as $fid => $forum) { $this->moderators_forum_cache[$forum['pid']][$forum['disporder']][$forum['fid']] = $forum;
|
}
| }
|
// Sort children foreach($fcache as $pid => $value)
| // Sort children foreach($fcache as $pid => $value)
|
Zeile 732 | Zeile 751 |
---|
LEFT JOIN ".TABLE_PREFIX."users u ON (m.id=u.uid) WHERE m.isgroup = '0' ORDER BY u.username
|
LEFT JOIN ".TABLE_PREFIX."users u ON (m.id=u.uid) WHERE m.isgroup = '0' ORDER BY u.username
|
");
| ");
|
while($moderator = $db->fetch_array($query)) { $this->moderators[$moderator['fid']]['users'][$moderator['id']] = $moderator;
| while($moderator = $db->fetch_array($query)) { $this->moderators[$moderator['fid']]['users'][$moderator['id']] = $moderator;
|
Zeile 770 | Zeile 789 |
---|
$this->build_moderators();
$this->update("moderators", $this->built_moderators);
|
$this->build_moderators();
$this->update("moderators", $this->built_moderators);
|
|
|
return true; }
| return true; }
|
Zeile 781 | Zeile 800 |
---|
function update_awaitingactivation() { global $db;
|
function update_awaitingactivation() { global $db;
|
|
|
$query = $db->simple_select('users', 'COUNT(uid) AS awaitingusers', 'usergroup=\'5\''); $awaitingusers = (int)$db->fetch_field($query, 'awaitingusers');
|
$query = $db->simple_select('users', 'COUNT(uid) AS awaitingusers', 'usergroup=\'5\''); $awaitingusers = (int)$db->fetch_field($query, 'awaitingusers');
|
|
|
$data = array( 'users' => $awaitingusers, 'time' => TIME_NOW );
|
$data = array( 'users' => $awaitingusers, 'time' => TIME_NOW );
|
|
|
$this->update('awaitingactivation', $data); }
| $this->update('awaitingactivation', $data); }
|
Zeile 808 | Zeile 827 |
---|
{ foreach($main as $forum) {
|
{ foreach($main as $forum) {
|
$forum_mods = '';
| $forum_mods = array();
|
if(count($moderators)) { $forum_mods = $moderators;
| if(count($moderators)) { $forum_mods = $moderators;
|
Zeile 827 | Zeile 846 |
---|
} $this->built_moderators[$forum['fid']] = $forum_mods; $this->build_moderators($forum_mods, $forum['fid']);
|
} $this->built_moderators[$forum['fid']] = $forum_mods; $this->build_moderators($forum_mods, $forum['fid']);
|
} }
| } }
|
} }
| } }
|
Zeile 866 | Zeile 885 |
---|
* */ 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 961 | Zeile 980 |
---|
);
$this->update("update_check", $update_cache);
|
);
$this->update("update_check", $update_cache);
|
}
/**
| }
/**
|
* Update default_theme cache */ function update_default_theme()
| * Update default_theme cache */ function update_default_theme()
|
Zeile 1020 | Zeile 1039 |
---|
* Updates the banned emails cache */ function update_bannedemails()
|
* Updates the banned emails cache */ function update_bannedemails()
|
{
| {
|
global $db;
$banned_emails = array(); $query = $db->simple_select("banfilters", "fid, filter", "type = '3'");
|
global $db;
$banned_emails = array(); $query = $db->simple_select("banfilters", "fid, filter", "type = '3'");
|
|
|
while($banned_email = $db->fetch_array($query)) { $banned_emails[$banned_email['fid']] = $banned_email;
| while($banned_email = $db->fetch_array($query)) { $banned_emails[$banned_email['fid']] = $banned_email;
|
Zeile 1038 | Zeile 1057 |
---|
* Updates the search engine spiders cache */ function update_spiders()
|
* Updates the search engine spiders cache */ function update_spiders()
|
{
| {
|
global $db;
$spiders = array();
| global $db;
$spiders = array();
|
Zeile 1049 | Zeile 1068 |
---|
} $this->update("spiders", $spiders); }
|
} $this->update("spiders", $spiders); }
|
|
|
function update_most_replied_threads()
|
function update_most_replied_threads()
|
{ global $db, $mybb;
$threads = array();
$query = $db->simple_select("threads", "tid, subject, replies, fid", "visible='1'", array('order_by' => 'replies', 'order_dir' => 'DESC', 'limit_start' => 0, 'limit' => $mybb->settings['statslimit'])); while($thread = $db->fetch_array($query))
| { global $db, $mybb;
$threads = array();
$query = $db->simple_select("threads", "tid, subject, replies, fid, uid", "visible='1'", array('order_by' => 'replies', 'order_dir' => 'DESC', 'limit_start' => 0, 'limit' => $mybb->settings['statslimit'])); while($thread = $db->fetch_array($query))
|
{ $threads[] = $thread; }
$this->update("most_replied_threads", $threads); }
|
{ $threads[] = $thread; }
$this->update("most_replied_threads", $threads); }
|
|
|
function update_most_viewed_threads() { global $db, $mybb;
$threads = array();
|
function update_most_viewed_threads() { global $db, $mybb;
$threads = array();
|
$query = $db->simple_select("threads", "tid, subject, views, fid", "visible='1'", array('order_by' => 'views', 'order_dir' => 'DESC', 'limit_start' => 0, 'limit' => $mybb->settings['statslimit']));
| $query = $db->simple_select("threads", "tid, subject, views, fid, uid", "visible='1'", array('order_by' => 'views', 'order_dir' => 'DESC', 'limit_start' => 0, 'limit' => $mybb->settings['statslimit']));
|
while($thread = $db->fetch_array($query)) { $threads[] = $thread;
|
while($thread = $db->fetch_array($query)) { $threads[] = $thread;
|
}
| }
|
$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 1176 | Zeile 1188 |
---|
if(!isset($fd_statistics[$forum['fid']]['announcements'])) { $fd_statistics[$forum['fid']]['announcements'] = 1;
|
if(!isset($fd_statistics[$forum['fid']]['announcements'])) { $fd_statistics[$forum['fid']]['announcements'] = 1;
|
} } }
| } } }
|
// Do we have any mod tools to use in our forums? $query = $db->simple_select("modtools", "forums, tid", '', array("order_by" => "tid"));
| // Do we have any mod tools to use in our forums? $query = $db->simple_select("modtools", "forums, tid", '', array("order_by" => "tid"));
|
Zeile 1236 | Zeile 1248 |
---|
$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 1261 |
---|
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 1292 | Zeile 1304 |
---|
}
function reload_last_backup()
|
}
function reload_last_backup()
|
{ global $db;
| { global $db;
|
$query = $db->simple_select("datacache", "title,cache", "title='last_backup'"); $this->update("last_backup", unserialize($db->fetch_field($query, "cache")));
| $query = $db->simple_select("datacache", "title,cache", "title='last_backup'"); $this->update("last_backup", unserialize($db->fetch_field($query, "cache")));
|
Zeile 1329 | Zeile 1341 |
---|
$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');
| |
} }
| } }
|