2016-11-15 17:56:29 +02:00
|
|
|
# frozen_string_literal: true
|
2017-05-02 03:14:47 +03:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: stream_entries
|
|
|
|
#
|
2017-11-18 01:16:48 +02:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# activity_id :integer
|
2017-05-02 03:14:47 +03:00
|
|
|
# activity_type :string
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# hidden :boolean default(FALSE), not null
|
2017-11-18 01:16:48 +02:00
|
|
|
# account_id :integer
|
2017-05-02 03:14:47 +03:00
|
|
|
#
|
2016-11-15 17:56:29 +02:00
|
|
|
|
2016-08-17 18:56:23 +03:00
|
|
|
class StreamEntry < ApplicationRecord
|
2016-03-24 14:21:53 +02:00
|
|
|
include Paginable
|
|
|
|
|
2016-02-22 17:00:20 +02:00
|
|
|
belongs_to :account, inverse_of: :stream_entries
|
|
|
|
belongs_to :activity, polymorphic: true
|
2017-02-12 01:48:53 +02:00
|
|
|
belongs_to :status, foreign_type: 'Status', foreign_key: 'activity_id', inverse_of: :stream_entry
|
2016-09-08 21:36:01 +03:00
|
|
|
|
2016-02-22 19:10:30 +02:00
|
|
|
validates :account, :activity, presence: true
|
|
|
|
|
2017-05-12 20:09:21 +03:00
|
|
|
STATUS_INCLUDES = [:account, :stream_entry, :conversation, :media_attachments, :tags, mentions: :account, reblog: [:stream_entry, :account, :conversation, :media_attachments, :tags, mentions: :account], thread: [:stream_entry, :account]].freeze
|
2016-09-08 21:36:01 +03:00
|
|
|
|
2017-04-07 06:56:56 +03:00
|
|
|
default_scope { where(activity_type: 'Status') }
|
2017-05-23 03:53:01 +03:00
|
|
|
scope :recent, -> { reorder(id: :desc) }
|
2017-02-12 01:48:53 +02:00
|
|
|
scope :with_includes, -> { includes(:account, status: STATUS_INCLUDES) }
|
2016-03-21 11:31:20 +02:00
|
|
|
|
2017-05-06 05:00:21 +03:00
|
|
|
delegate :target, :title, :content, :thread,
|
|
|
|
to: :status,
|
|
|
|
allow_nil: true
|
|
|
|
|
2016-02-22 17:00:20 +02:00
|
|
|
def object_type
|
2017-04-07 06:56:56 +03:00
|
|
|
orphaned? || targeted? ? :activity : status.object_type
|
2016-02-22 17:00:20 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def verb
|
2017-04-07 06:56:56 +03:00
|
|
|
orphaned? ? :delete : status.verb
|
2016-02-22 19:10:30 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def targeted?
|
2017-02-11 18:09:36 +02:00
|
|
|
[:follow, :request_friend, :authorize, :reject, :unfollow, :block, :unblock, :share, :favorite].include? verb
|
2016-02-22 17:00:20 +02:00
|
|
|
end
|
|
|
|
|
2016-02-23 20:17:37 +02:00
|
|
|
def threaded?
|
2016-10-10 03:55:30 +03:00
|
|
|
(verb == :favorite || object_type == :comment) && !thread.nil?
|
2016-02-23 20:17:37 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def mentions
|
2017-04-07 06:56:56 +03:00
|
|
|
orphaned? ? [] : status.mentions.map(&:account)
|
2016-09-08 21:36:01 +03:00
|
|
|
end
|
|
|
|
|
2016-03-16 11:58:58 +02:00
|
|
|
private
|
|
|
|
|
|
|
|
def orphaned?
|
2017-04-07 06:56:56 +03:00
|
|
|
status.nil?
|
2016-02-23 20:17:37 +02:00
|
|
|
end
|
2016-02-22 17:00:20 +02:00
|
|
|
end
|