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; } }
|
Zeile 108 | Zeile 118 |
---|
// 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']); } }
| $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);
| { 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++;
| $call_time = get_execution_time(); $this->call_time += $call_time; $this->call_count++;
|
Zeile 158 | Zeile 168 |
---|
}
// No data returned - cache gone bad?
|
}
// No data returned - cache gone bad?
|
if($data === false) {
| if($data === false) {
|
// 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 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 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 231 | Zeile 241 |
---|
$db->replace_query("datacache", $replace_array, "", false);
// Do we have a cache handler we're using?
|
$db->replace_query("datacache", $replace_array, "", false);
// Do we have a cache handler we're using?
|
if($this->handler instanceof CacheHandlerInterface) { get_execution_time();
$hit = $this->handler->put($name, $contents);
$call_time = get_execution_time(); $this->call_time += $call_time; $this->call_count++;
if($mybb->debug_mode) {
| if($this->handler instanceof CacheHandlerInterface) { get_execution_time();
$hit = $this->handler->put($name, $contents);
$call_time = get_execution_time(); $this->call_time += $call_time; $this->call_count++;
if($mybb->debug_mode) {
|
$this->debug_call('update:'.$name, $call_time, $hit); } }
| $this->debug_call('update:'.$name, $call_time, $hit); } }
|
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 278 | Zeile 288 |
---|
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? if($greedy) {
| // Greedy? if($greedy) {
|
Zeile 335 | Zeile 345 |
---|
$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);
|
Zeile 390 | Zeile 400 |
---|
</tr> </table> <br />\n";
|
</tr> </table> <br />\n";
|
|
|
$this->calllist[$this->call_count]['key'] = $string; $this->calllist[$this->call_count]['time'] = $qtime; }
| $this->calllist[$this->call_count]['key'] = $string; $this->calllist[$this->call_count]['time'] = $qtime; }
|
Zeile 409 | Zeile 419 |
---|
{ $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}'"); return strlen($db->fetch_field($query, "cache"));
|
if($name) { $query = $db->simple_select("datacache", "cache", "title='{$name}'"); return strlen($db->fetch_field($query, "cache"));
|
}
| }
|
else { return $db->fetch_size("datacache");
| else { return $db->fetch_size("datacache");
|
Zeile 427 | Zeile 437 |
---|
} // Using MySQL as cache else
|
} // Using MySQL as cache else
|
{
| {
|
if($name) { $query = $db->simple_select("datacache", "cache", "title='{$name}'");
| if($name) { $query = $db->simple_select("datacache", "cache", "title='{$name}'");
|
Zeile 461 | Zeile 471 |
---|
* */ function update_attachtypes()
|
* */ function update_attachtypes()
|
{ global $db;
$types = array();
| { global $db;
$types = array();
|
|
|
$query = $db->simple_select("attachtypes", "*");
| $query = $db->simple_select('attachtypes', '*', 'enabled=1');
|
while($type = $db->fetch_array($query)) { $type['extension'] = my_strtolower($type['extension']); $types[$type['extension']] = $type; }
|
while($type = $db->fetch_array($query)) { $type['extension'] = my_strtolower($type['extension']); $types[$type['extension']] = $type; }
|
|
|
$this->update("attachtypes", $types); }
| $this->update("attachtypes", $types); }
|
Zeile 481 | Zeile 491 |
---|
* */ function update_smilies()
|
* */ function update_smilies()
|
{ global $db;
| { global $db;
|
$smilies = array();
$query = $db->simple_select("smilies", "*", "", array('order_by' => 'disporder', 'order_dir' => 'ASC'));
| $smilies = array();
$query = $db->simple_select("smilies", "*", "", array('order_by' => 'disporder', 'order_dir' => 'ASC'));
|
Zeile 491 | Zeile 501 |
---|
{ $smilies[$smilie['sid']] = $smilie; }
|
{ $smilies[$smilie['sid']] = $smilie; }
|
|
|
$this->update("smilies", $smilies); }
| $this->update("smilies", $smilies); }
|
Zeile 500 | Zeile 510 |
---|
* */ function update_posticons()
|
* */ function update_posticons()
|
{ global $db;
| { global $db;
|
$icons = array();
$query = $db->simple_select("icons", "iid, name, path");
| $icons = array();
$query = $db->simple_select("icons", "iid, name, path");
|
Zeile 538 | Zeile 548 |
---|
* */ function update_usergroups()
|
* */ function update_usergroups()
|
{
| {
|
global $db;
|
global $db;
|
$query = $db->simple_select("usergroups");
| $query = $db->simple_select("usergroups");
|
$gs = array(); while($g = $db->fetch_array($query)) { $gs[$g['gid']] = $g; }
|
$gs = array(); while($g = $db->fetch_array($query)) { $gs[$g['gid']] = $g; }
|
|
|
$this->update("usergroups", $gs); }
/** * Update the forum permissions cache.
|
$this->update("usergroups", $gs); }
/** * Update the forum permissions cache.
|
*
| *
|
* @return bool When failed, returns false. */ function update_forumpermissions()
| * @return bool When failed, returns false. */ function update_forumpermissions()
|
Zeile 630 | Zeile 640 |
---|
} $this->build_forum_permissions($perms, $forum['fid']); }
|
} $this->build_forum_permissions($perms, $forum['fid']); }
|
} } }
/**
| } } }
/**
|
* Update the stats cache (kept for the sake of being able to rebuild this cache via the cache interface) * */
| * Update the stats cache (kept for the sake of being able to rebuild this cache via the cache interface) * */
|
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 787 | Zeile 806 |
---|
$data = array( 'users' => $awaitingusers,
|
$data = array( 'users' => $awaitingusers,
|
'time' => TIME_NOW
| '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 895 | Zeile 914 |
---|
$query = $db->simple_select("reportedcontent", "dateline", "reportstatus='0'", array('order_by' => 'dateline', 'order_dir' => 'DESC')); $latest = $db->fetch_array($query);
|
$query = $db->simple_select("reportedcontent", "dateline", "reportstatus='0'", array('order_by' => 'dateline', 'order_dir' => 'DESC')); $latest = $db->fetch_array($query);
|
$reasons = array();
if(!empty($mybb->settings['reportreasons'])) { $options = $mybb->settings['reportreasons']; $options = explode("\n", $options);
foreach($options as $option) { $option = explode("=", $option); $reasons[$option[0]] = $option[1]; } }
| |
$reports = array( "unread" => $num['unreadcount'], "total" => $total['reportcount'],
|
$reports = array( "unread" => $num['unreadcount'], "total" => $total['reportcount'],
|
"lastdateline" => $latest['dateline'], "reasons" => $reasons
| "lastdateline" => $latest['dateline']
|
);
|
);
|
|
|
$this->update("reportedcontent", $reports); }
/** * Update mycode cache.
|
$this->update("reportedcontent", $reports); }
/** * Update mycode cache.
|
*
| *
|
*/ function update_mycode() {
| */ function update_mycode() {
|
Zeile 933 | Zeile 937 |
---|
while($mycode = $db->fetch_array($query)) { $mycodes[] = $mycode;
|
while($mycode = $db->fetch_array($query)) { $mycodes[] = $mycode;
|
}
| }
|
$this->update("mycode", $mycodes); }
| $this->update("mycode", $mycodes); }
|
Zeile 964 | Zeile 968 |
---|
$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) */
|
Zeile 976 | Zeile 980 |
---|
);
$this->update("update_check", $update_cache);
|
);
$this->update("update_check", $update_cache);
|
}
| }
|
/** * Update default_theme cache
| /** * Update default_theme cache
|
Zeile 998 | Zeile 1002 |
---|
global $db;
$query = $db->simple_select("tasks", "nextrun", "enabled=1", array("order_by" => "nextrun", "order_dir" => "asc", "limit" => 1));
|
global $db;
$query = $db->simple_select("tasks", "nextrun", "enabled=1", array("order_by" => "nextrun", "order_dir" => "asc", "limit" => 1));
|
$next_task = $db->fetch_array($query);
| $next_task = $db->fetch_array($query);
|
$task_cache = $this->read("tasks"); if(!is_array($task_cache)) { $task_cache = array();
|
$task_cache = $this->read("tasks"); if(!is_array($task_cache)) { $task_cache = array();
|
}
| }
|
$task_cache['nextrun'] = $next_task['nextrun'];
if(!$task_cache['nextrun']) { $task_cache['nextrun'] = TIME_NOW+3600;
|
$task_cache['nextrun'] = $next_task['nextrun'];
if(!$task_cache['nextrun']) { $task_cache['nextrun'] = TIME_NOW+3600;
|
}
| }
|
$this->update("tasks", $task_cache); }
| $this->update("tasks", $task_cache); }
|
Zeile 1035 | Zeile 1039 |
---|
* Updates the banned emails cache */ function update_bannedemails()
|
* Updates the banned emails cache */ function update_bannedemails()
|
{
| {
|
global $db;
|
global $db;
|
|
|
$banned_emails = array(); $query = $db->simple_select("banfilters", "fid, filter", "type = '3'");
|
$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; }
$this->update("bannedemails", $banned_emails);
|
while($banned_email = $db->fetch_array($query)) { $banned_emails[$banned_email['fid']] = $banned_email; }
$this->update("bannedemails", $banned_emails);
|
}
| }
|
/** * Updates the search engine spiders cache */
| /** * Updates the search engine spiders cache */
|
Zeile 1059 | Zeile 1063 |
---|
$spiders = array(); $query = $db->simple_select("spiders", "sid, name, useragent, usergroup", "", array("order_by" => "LENGTH(useragent)", "order_dir" => "DESC")); while($spider = $db->fetch_array($query))
|
$spiders = array(); $query = $db->simple_select("spiders", "sid, name, useragent, usergroup", "", array("order_by" => "LENGTH(useragent)", "order_dir" => "DESC")); while($spider = $db->fetch_array($query))
|
{
| {
|
$spiders[$spider['sid']] = $spider; } $this->update("spiders", $spiders); }
|
$spiders[$spider['sid']] = $spider; } $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; }
|
$threads[] = $thread; }
|
|
|
$this->update("most_replied_threads", $threads); }
function update_most_viewed_threads() { global $db, $mybb;
|
$this->update("most_replied_threads", $threads); }
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']));
| $threads = array();
$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))
|
while($thread = $db->fetch_array($query))
|
{
| {
|
$threads[] = $thread;
|
$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 1239 | Zeile 1236 |
---|
}
$this->update("profilefields", $fields);
|
}
$this->update("profilefields", $fields);
|
| }
/** * Update the report reasons cache. * */ function update_reportreasons($no_plugins = false) { global $db;
$content_types = array('post', 'profile', 'reputation'); if(!$no_plugins) { global $plugins; $content_types = $plugins->run_hooks("report_content_types", $content_types); }
$reasons = array();
$query = $db->simple_select("reportreasons", "*", "", array('order_by' => 'disporder')); while($reason = $db->fetch_array($query)) { if($reason['appliesto'] == 'all') { foreach($content_types as $content) { $reasons[$content][] = array( 'rid' => $reason['rid'], 'title' => $reason['title'], 'extra' => $reason['extra'], ); } } elseif($reason['appliesto'] != '') { $appliesto = explode(",", $reason['appliesto']); foreach($appliesto as $content) { $reasons[$content][] = array( 'rid' => $reason['rid'], 'title' => $reason['title'], 'extra' => $reason['extra'], ); } } }
$this->update("reportreasons", $reasons);
|
}
/* Other, extra functions for reloading caches if we just changed to another cache extension (i.e. from db -> xcache) */
| }
/* Other, extra functions for reloading caches if we just changed to another cache extension (i.e. from db -> xcache) */
|
Zeile 1248 | Zeile 1293 |
---|
$query = $db->simple_select("datacache", "title,cache", "title='mostonline'"); $this->update("mostonline", unserialize($db->fetch_field($query, "cache")));
|
$query = $db->simple_select("datacache", "title,cache", "title='mostonline'"); $this->update("mostonline", unserialize($db->fetch_field($query, "cache")));
|
}
| }
|
function reload_plugins() {
| function reload_plugins() {
|
Zeile 1267 | Zeile 1312 |
---|
}
function reload_internal_settings()
|
}
function reload_internal_settings()
|
{ global $db;
| { global $db;
|
$query = $db->simple_select("datacache", "title,cache", "title='internal_settings'"); $this->update("internal_settings", unserialize($db->fetch_field($query, "cache"))); }
function reload_version_history()
|
$query = $db->simple_select("datacache", "title,cache", "title='internal_settings'"); $this->update("internal_settings", unserialize($db->fetch_field($query, "cache"))); }
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"))); }
function reload_modnotes()
|
$query = $db->simple_select("datacache", "title,cache", "title='version_history'"); $this->update("version_history", unserialize($db->fetch_field($query, "cache"))); }
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")));
|
Zeile 1296 | 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');
| |
} }
| } }
|