Make spam scoring work with new rich text system

This commit is contained in:
Tom Hughes 2012-03-05 22:46:28 +00:00
parent 5e4357dd14
commit 8f4a9a4b87
3 changed files with 27 additions and 27 deletions

View file

@ -204,10 +204,10 @@ class User < ActiveRecord::Base
def spam_score
changeset_score = self.changesets.limit(10).length * 50
trace_score = self.traces.limit(10).length * 50
diary_entry_score = self.diary_entries.inject(0) { |s,e| s += OSM.spam_score(e.body) }
diary_comment_score = self.diary_comments.inject(0) { |s,e| s += OSM.spam_score(e.body) }
diary_entry_score = self.diary_entries.inject(0) { |s,e| s += e.body.spam_score }
diary_comment_score = self.diary_comments.inject(0) { |s,c| s += c.body.spam_score }
score = OSM.spam_score(self.description)
score = self.description.spam_score
score += diary_entry_score / self.diary_entries.length if self.diary_entries.length > 0
score += diary_comment_score / self.diary_comments.length if self.diary_comments.length > 0
score -= changeset_score