]> git.openstreetmap.org Git - rails.git/commitdiff
Adjust spam scoring to try and reduce false positives
authorTom Hughes <tom@compton.nu>
Tue, 20 Mar 2012 13:28:57 +0000 (13:28 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 20 Mar 2012 13:28:57 +0000 (13:28 +0000)
app/models/user.rb
lib/rich_text.rb

index cebea94685711f8b972db57191444498a6a60717..636f8342439f3eb74e393e7716fe9e62fb35c5d0 100644 (file)
@@ -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
index 2b7e310094058cd7f22670743b2681510057ccd3..87ea58933579e93c043d1ed28adf5f9ac7a0f094 100644 (file)
@@ -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