From: Tom Hughes Date: Tue, 20 Mar 2012 13:28:57 +0000 (+0000) Subject: Adjust spam scoring to try and reduce false positives X-Git-Tag: live~5684 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/f3c9f4edb40aa03fbf7458904e3774d2e11ff3a5?hp=9492d20a8752763c06952f600d3f5703be4fdc8a Adjust spam scoring to try and reduce false positives --- diff --git a/app/models/user.rb b/app/models/user.rb index cebea9468..636f83424 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -207,7 +207,7 @@ class User < ActiveRecord::Base 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 = self.description.spam_score + score = self.description.spam_score / 4.0 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 diff --git a/lib/rich_text.rb b/lib/rich_text.rb index 2b7e31009..87ea58933 100644 --- a/lib/rich_text.rb +++ b/lib/rich_text.rb @@ -36,7 +36,7 @@ module RichText link_proportion = 0 end - return [link_proportion - 0.2, 0.0].max * 200 + link_count * 20 + return [link_proportion - 0.2, 0.0].max * 200 + link_count * 40 end protected