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