From: Tom Hughes Date: Sat, 1 May 2010 10:22:37 +0000 (+0100) Subject: Include the user description in the spam score X-Git-Tag: live~6294^2~19 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/8b781bb18b406788e2d62dbef07ba1e00e371c78 Include the user description in the spam score --- diff --git a/app/models/user.rb b/app/models/user.rb index a76d45710..c6a9ad518 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -175,12 +175,12 @@ class User < ActiveRecord::Base 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) } - score = 0 + score = OSM.spam_score(self.description) * 2 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 score -= trace_score - return score + return score.to_i end end