Don't always make spam_score writeable

This commit is contained in:
Evan Prodromou 2012-04-26 11:59:54 -04:00
parent fb31ff1af7
commit ab053fe2ca
1 changed files with 1 additions and 32 deletions

View File

@ -180,7 +180,7 @@ class ActivitySpamPlugin extends Plugin
if (!empty($notice)) {
$score = $this->getScore($notice);
$score = Spam_score::staticGet('notice_id', $notice->id);
if (empty($score)) {
$this->debug("No score for notice " . $notice->id);
@ -252,37 +252,6 @@ class ActivitySpamPlugin extends Plugin
return true;
}
function getScore($notice)
{
$score = Spam_score::staticGet('notice_id', $notice->id);
if (!empty($score)) {
return $score;
}
try {
$result = $this->filter->test($notice);
$score = Spam_score::saveNew($notice, $result);
$this->log(LOG_INFO, "Notice " . $notice->id . " has spam score " . $score->score);
} catch (Exception $e) {
// Log but continue
$this->log(LOG_ERR, $e->getMessage());
$score = null;
}
return $score;
}
function onStartReadWriteTables(&$alwaysRW, &$rwdb) {
$alwaysRW[] = 'spam_score';
return true;
}
function onEndNoticeInScope($notice, $profile, &$bResult)
{
if ($this->hideSpam) {