chinwagsocial/app/models/stream_entry.rb
Eugen Rochko a08e724476 Fix subscriptions:clear task, refactor feeds, refactor streamable activites
and atom feed generation to some extent, as well as the way mentions are
stored
2016-03-25 02:13:30 +01:00

53 lines
992 B
Ruby

class StreamEntry < ActiveRecord::Base
include Paginable
belongs_to :account, inverse_of: :stream_entries
belongs_to :activity, polymorphic: true
validates :account, :activity, presence: true
scope :with_includes, -> { includes(:activity) }
def object_type
orphaned? ? :activity : (targeted? ? :activity : self.activity.object_type)
end
def verb
orphaned? ? :delete : self.activity.verb
end
def targeted?
[:follow, :share, :favorite].include? verb
end
def target
orphaned? ? nil : self.activity.target
end
def title
orphaned? ? nil : self.activity.title
end
def content
orphaned? ? nil : self.activity.content
end
def threaded?
verb == :favorite || object_type == :comment
end
def thread
orphaned? ? nil : self.activity.thread
end
def mentions
self.activity.respond_to?(:mentions) ? self.activity.mentions.map { |x| x.account } : []
end
private
def orphaned?
self.activity.nil?
end
end