2016-08-17 15:56:23 +00:00
|
|
|
class StreamEntry < ApplicationRecord
|
2016-03-24 12:21:53 +00:00
|
|
|
include Paginable
|
|
|
|
|
2016-02-22 15:00:20 +00:00
|
|
|
belongs_to :account, inverse_of: :stream_entries
|
|
|
|
belongs_to :activity, polymorphic: true
|
|
|
|
|
2016-02-22 17:10:30 +00:00
|
|
|
validates :account, :activity, presence: true
|
|
|
|
|
2016-03-24 12:21:53 +00:00
|
|
|
scope :with_includes, -> { includes(:activity) }
|
2016-03-21 09:31:20 +00:00
|
|
|
|
2016-02-22 15:00:20 +00:00
|
|
|
def object_type
|
2016-03-16 09:58:58 +00:00
|
|
|
orphaned? ? :activity : (targeted? ? :activity : self.activity.object_type)
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def verb
|
2016-03-16 09:58:58 +00:00
|
|
|
orphaned? ? :delete : self.activity.verb
|
2016-02-22 17:10:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def targeted?
|
2016-02-23 18:17:37 +00:00
|
|
|
[:follow, :share, :favorite].include? verb
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def target
|
2016-03-16 09:58:58 +00:00
|
|
|
orphaned? ? nil : self.activity.target
|
2016-02-22 17:10:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def title
|
2016-03-16 09:58:58 +00:00
|
|
|
orphaned? ? nil : self.activity.title
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def content
|
2016-03-16 09:58:58 +00:00
|
|
|
orphaned? ? nil : self.activity.content
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|
2016-02-23 18:17:37 +00:00
|
|
|
|
|
|
|
def threaded?
|
2016-02-26 14:28:08 +00:00
|
|
|
verb == :favorite || object_type == :comment
|
2016-02-23 18:17:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def thread
|
2016-03-16 09:58:58 +00:00
|
|
|
orphaned? ? nil : self.activity.thread
|
2016-02-23 18:17:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def mentions
|
2016-03-25 01:13:30 +00:00
|
|
|
self.activity.respond_to?(:mentions) ? self.activity.mentions.map { |x| x.account } : []
|
2016-03-16 09:58:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def orphaned?
|
|
|
|
self.activity.nil?
|
2016-02-23 18:17:37 +00:00
|
|
|
end
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|