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