]> git.openstreetmap.org Git - rails.git/commitdiff
Include number of recent diary entries in spam scoring
authorTom Hughes <tom@compton.nu>
Thu, 20 Nov 2014 21:18:00 +0000 (21:18 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 20 Nov 2014 21:18:00 +0000 (21:18 +0000)
app/models/user.rb

index ed0813bee43a9ff14b47b33be7313147ab395b57..c845d4d0acd47b3064d98a4282bebdfaef4de9b9 100644 (file)
@@ -216,6 +216,7 @@ class User < ActiveRecord::Base
     diary_comment_score = self.diary_comments.inject(0) { |s,c| s += c.body.spam_score }
 
     score = self.description.spam_score / 4.0
     diary_comment_score = self.diary_comments.inject(0) { |s,c| s += c.body.spam_score }
 
     score = self.description.spam_score / 4.0
+    score += self.diary_entries.where("created_at > ?", 1.day.ago).count * 10
     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 += 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