diaspora/app/models/comment.rb
2012-02-09 18:29:52 -08:00

87 lines
1.9 KiB
Ruby

# Copyright (c) 2010-2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file.
class Comment < ActiveRecord::Base
include ROXML
include Diaspora::Webhooks
include Diaspora::Guid
include Diaspora::Relayable
include Diaspora::Taggable
include Diaspora::Likeable
acts_as_taggable_on :tags
extract_tags_from :text
before_create :build_tags
# NOTE API V1 to be extracted
acts_as_api
api_accessible :backbone do |t|
t.add :id
t.add :guid
t.add :text
t.add :author
t.add :created_at
end
xml_attr :text
xml_attr :diaspora_handle
belongs_to :commentable, :touch => true, :polymorphic => true
alias_attribute :post, :commentable
belongs_to :author, :class_name => 'Person'
validates :text, :presence => true, :length => {:maximum => 65535}
validates :parent, :presence => true #should be in relayable (pending on fixing Message)
scope :including_author, includes(:author => :profile)
scope :for_a_stream, including_author.merge(order('created_at ASC'))
before_save do
self.text.strip! unless self.text.nil?
end
after_save do
self.post.touch
end
after_create do
self.parent.update_comments_counter
end
after_destroy do
self.parent.update_comments_counter
end
def diaspora_handle
self.author.diaspora_handle
end
def diaspora_handle= nh
self.author = Webfinger.new(nh).fetch
end
def notification_type(user, person)
if self.post.author == user.person
return Notifications::CommentOnPost
elsif self.post.comments.where(:author_id => user.person.id) != [] && self.author_id != user.person.id
return Notifications::AlsoCommented
else
return false
end
end
def parent_class
Post
end
def parent
self.post
end
def parent= parent
self.post = parent
end
end