]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/diary_comment.rb
Force coordinates into bounds when using the query tool
[rails.git] / app / models / diary_comment.rb
index aaf48be4fdcc8c9f200b41efceabfc74e8058f09..b38240db015cca987af8b12569fa9244cb3f143b 100644 (file)
@@ -4,4 +4,25 @@ class DiaryComment < ActiveRecord::Base
 
   validates_presence_of :body
   validates_associated :diary_entry
+
+  after_save :spam_check
+
+  def body
+    RichText.new(read_attribute(:body_format), read_attribute(:body))
+  end
+
+  def digest
+    md5 = Digest::MD5.new
+    md5 << diary_entry_id.to_s
+    md5 << user_id.to_s
+    md5 << created_at.xmlschema
+    md5 << body
+    md5.hexdigest
+  end
+
+  private
+
+  def spam_check
+    user.spam_check
+  end
 end