]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/diary_comment.rb
Altered old_way stuff to be Railsy like old_node is now
[rails.git] / app / models / diary_comment.rb
index aaf48be4fdcc8c9f200b41efceabfc74e8058f09..075d288edb8e0b644970b7b515a4f6967506abbe 100644 (file)
@@ -4,4 +4,27 @@ class DiaryComment < ActiveRecord::Base
 
   validates_presence_of :body
   validates_associated :diary_entry
+
+  attr_accessible :body
+
+  after_initialize :set_defaults
+
+  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 set_defaults
+    self.body_format = "markdown" unless self.attribute_present?(:body_format)
+  end
 end