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