]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/diary_comment.rb
Start to make turn-by-turn instructions clickable
[rails.git] / app / models / diary_comment.rb
index 0013606d06b55afa885306e38b7777f16518016b..9d29f52b78e9be2a00762df206a3e1824835e0af 100644 (file)
@@ -5,6 +5,13 @@ class DiaryComment < ActiveRecord::Base
   validates_presence_of :body
   validates_associated :diary_entry
 
+  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
@@ -13,4 +20,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