mastodon/app/models/stream_entry.rb

53 lines
991 B
Ruby
Raw Normal View History

2016-08-17 17:56:23 +02:00
class StreamEntry < ApplicationRecord
include Paginable
2016-02-22 16:00:20 +01:00
belongs_to :account, inverse_of: :stream_entries
belongs_to :activity, polymorphic: true
2016-02-22 18:10:30 +01:00
validates :account, :activity, presence: true
scope :with_includes, -> { includes(:activity) }
2016-03-21 10:31:20 +01:00
2016-02-22 16:00:20 +01:00
def object_type
orphaned? ? :activity : (targeted? ? :activity : self.activity.object_type)
2016-02-22 16:00:20 +01:00
end
def verb
orphaned? ? :delete : self.activity.verb
2016-02-22 18:10:30 +01:00
end
def targeted?
[:follow, :share, :favorite].include? verb
2016-02-22 16:00:20 +01:00
end
def target
orphaned? ? nil : self.activity.target
2016-02-22 18:10:30 +01:00
end
def title
orphaned? ? nil : self.activity.title
2016-02-22 16:00:20 +01:00
end
def content
orphaned? ? nil : self.activity.content
2016-02-22 16:00:20 +01:00
end
def threaded?
2016-02-26 15:28:08 +01:00
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
2016-02-22 16:00:20 +01:00
end