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