]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/diary_comment.rb
Fix search
[rails.git] / app / models / diary_comment.rb
index b915e027a9e1f49d62b2443b4f7b2b46f3630224..bea1c7f0d5b83bac5e31b0761a0027694144d588 100644 (file)
@@ -7,6 +7,13 @@ class DiaryComment < ActiveRecord::Base
 
   attr_accessible :body
 
+  after_initialize :set_defaults
+  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
@@ -15,4 +22,14 @@ class DiaryComment < ActiveRecord::Base
     md5 << body
     md5.hexdigest
   end
+
+private
+
+  def set_defaults
+    self.body_format = "markdown" unless self.attribute_present?(:body_format)
+  end
+
+  def spam_check
+    user.spam_check
+  end
 end