2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-17 08:56:23 -07:00
|
|
|
class StreamEntry < ApplicationRecord
|
2016-03-24 05:21:53 -07:00
|
|
|
include Paginable
|
|
|
|
|
2016-02-22 07:00:20 -08:00
|
|
|
belongs_to :account, inverse_of: :stream_entries
|
|
|
|
belongs_to :activity, polymorphic: true
|
2017-02-11 15:48:53 -08:00
|
|
|
belongs_to :status, foreign_type: 'Status', foreign_key: 'activity_id', inverse_of: :stream_entry
|
2016-09-08 11:36:01 -07:00
|
|
|
|
2016-02-22 09:10:30 -08:00
|
|
|
validates :account, :activity, presence: true
|
|
|
|
|
2017-04-06 20:56:56 -07:00
|
|
|
STATUS_INCLUDES = [:account, :stream_entry, :media_attachments, :tags, mentions: :account, reblog: [:stream_entry, :account, :media_attachments, :tags, mentions: :account], thread: [:stream_entry, :account]].freeze
|
2016-09-08 11:36:01 -07:00
|
|
|
|
2017-04-06 20:56:56 -07:00
|
|
|
default_scope { where(activity_type: 'Status') }
|
2017-02-11 15:48:53 -08:00
|
|
|
scope :with_includes, -> { includes(:account, status: STATUS_INCLUDES) }
|
2016-03-21 02:31:20 -07:00
|
|
|
|
2016-02-22 07:00:20 -08:00
|
|
|
def object_type
|
2017-04-06 20:56:56 -07:00
|
|
|
orphaned? || targeted? ? :activity : status.object_type
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def verb
|
2017-04-06 20:56:56 -07:00
|
|
|
orphaned? ? :delete : status.verb
|
2016-02-22 09:10:30 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def targeted?
|
2017-02-11 08:09:36 -08:00
|
|
|
[:follow, :request_friend, :authorize, :reject, :unfollow, :block, :unblock, :share, :favorite].include? verb
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def target
|
2017-04-06 20:56:56 -07:00
|
|
|
orphaned? ? nil : status.target
|
2016-02-22 09:10:30 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def title
|
2017-04-06 20:56:56 -07:00
|
|
|
orphaned? ? nil : status.title
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def content
|
2017-04-06 20:56:56 -07:00
|
|
|
orphaned? ? nil : status.content
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|
2016-02-23 10:17:37 -08:00
|
|
|
|
|
|
|
def threaded?
|
2016-10-09 17:55:30 -07:00
|
|
|
(verb == :favorite || object_type == :comment) && !thread.nil?
|
2016-02-23 10:17:37 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def thread
|
2017-04-06 20:56:56 -07:00
|
|
|
orphaned? ? nil : status.thread
|
2016-02-23 10:17:37 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def mentions
|
2017-04-06 20:56:56 -07:00
|
|
|
orphaned? ? [] : status.mentions.map(&:account)
|
2016-09-08 11:36:01 -07:00
|
|
|
end
|
|
|
|
|
2016-03-16 02:58:58 -07:00
|
|
|
private
|
|
|
|
|
|
|
|
def orphaned?
|
2017-04-06 20:56:56 -07:00
|
|
|
status.nil?
|
2016-02-23 10:17:37 -08:00
|
|
|
end
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|