2016-11-20 00:33:02 +01:00
|
|
|
# frozen_string_literal: true
|
2017-05-02 02:14:47 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: notifications
|
|
|
|
#
|
2018-04-23 11:29:17 +02:00
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# activity_id :bigint(8) not null
|
2018-03-24 12:51:28 +01:00
|
|
|
# activity_type :string not null
|
2017-05-02 02:14:47 +02:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2018-04-23 11:29:17 +02:00
|
|
|
# account_id :bigint(8) not null
|
|
|
|
# from_account_id :bigint(8) not null
|
2020-09-18 17:26:45 +02:00
|
|
|
# type :string
|
2017-05-02 02:14:47 +02:00
|
|
|
#
|
2016-11-20 00:33:02 +01:00
|
|
|
|
|
|
|
class Notification < ApplicationRecord
|
2020-09-18 17:26:45 +02:00
|
|
|
self.inheritance_column = nil
|
|
|
|
|
2016-11-20 00:33:02 +01:00
|
|
|
include Paginable
|
|
|
|
|
2020-09-18 17:26:45 +02:00
|
|
|
LEGACY_TYPE_CLASS_MAP = {
|
|
|
|
'Mention' => :mention,
|
|
|
|
'Status' => :reblog,
|
|
|
|
'Follow' => :follow,
|
|
|
|
'FollowRequest' => :follow_request,
|
|
|
|
'Favourite' => :favourite,
|
|
|
|
'Poll' => :poll,
|
2017-05-06 21:55:40 +02:00
|
|
|
}.freeze
|
|
|
|
|
2020-09-18 17:26:45 +02:00
|
|
|
TYPES = %i(
|
|
|
|
mention
|
|
|
|
status
|
|
|
|
reblog
|
|
|
|
follow
|
|
|
|
follow_request
|
|
|
|
favourite
|
|
|
|
poll
|
|
|
|
).freeze
|
|
|
|
|
2021-01-31 21:24:57 +01:00
|
|
|
TARGET_STATUS_INCLUDES_BY_TYPE = {
|
|
|
|
status: :status,
|
|
|
|
reblog: [status: :reblog],
|
|
|
|
mention: [mention: :status],
|
|
|
|
favourite: [favourite: :status],
|
|
|
|
poll: [poll: :status],
|
|
|
|
}.freeze
|
2017-05-06 21:55:40 +02:00
|
|
|
|
2018-01-19 20:56:47 +01:00
|
|
|
belongs_to :account, optional: true
|
|
|
|
belongs_to :from_account, class_name: 'Account', optional: true
|
|
|
|
belongs_to :activity, polymorphic: true, optional: true
|
|
|
|
|
2021-03-17 10:09:55 +01:00
|
|
|
belongs_to :mention, foreign_key: 'activity_id', optional: true
|
|
|
|
belongs_to :status, foreign_key: 'activity_id', optional: true
|
|
|
|
belongs_to :follow, foreign_key: 'activity_id', optional: true
|
|
|
|
belongs_to :follow_request, foreign_key: 'activity_id', optional: true
|
|
|
|
belongs_to :favourite, foreign_key: 'activity_id', optional: true
|
|
|
|
belongs_to :poll, foreign_key: 'activity_id', optional: true
|
2016-11-20 00:33:02 +01:00
|
|
|
|
2020-09-18 17:26:45 +02:00
|
|
|
validates :type, inclusion: { in: TYPES }
|
2016-11-20 00:33:02 +01:00
|
|
|
|
2020-09-11 15:16:29 +02:00
|
|
|
scope :without_suspended, -> { joins(:from_account).merge(Account.without_suspended) }
|
|
|
|
|
2019-05-21 13:28:49 +02:00
|
|
|
scope :browserable, ->(exclude_types = [], account_id = nil) {
|
2020-09-18 17:26:45 +02:00
|
|
|
types = TYPES - exclude_types.map(&:to_sym)
|
2020-09-11 15:16:29 +02:00
|
|
|
|
2019-05-21 13:28:49 +02:00
|
|
|
if account_id.nil?
|
2020-09-18 17:26:45 +02:00
|
|
|
where(type: types)
|
2019-05-21 13:28:49 +02:00
|
|
|
else
|
2020-09-18 17:26:45 +02:00
|
|
|
where(type: types, from_account_id: account_id)
|
2019-05-21 13:28:49 +02:00
|
|
|
end
|
2017-05-06 21:55:40 +02:00
|
|
|
}
|
|
|
|
|
2016-11-20 00:33:02 +01:00
|
|
|
def type
|
2020-09-18 17:26:45 +02:00
|
|
|
@type ||= (super || LEGACY_TYPE_CLASS_MAP[activity_type]).to_sym
|
2016-11-20 00:33:02 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def target_status
|
|
|
|
case type
|
2020-09-18 17:26:45 +02:00
|
|
|
when :status
|
|
|
|
status
|
2016-11-20 00:33:02 +01:00
|
|
|
when :reblog
|
2017-11-19 15:32:48 +01:00
|
|
|
status&.reblog
|
|
|
|
when :favourite
|
|
|
|
favourite&.status
|
|
|
|
when :mention
|
|
|
|
mention&.status
|
2019-03-11 00:49:31 +01:00
|
|
|
when :poll
|
|
|
|
poll&.status
|
2016-11-20 00:33:02 +01:00
|
|
|
end
|
|
|
|
end
|
2016-12-03 18:21:26 +01:00
|
|
|
|
|
|
|
class << self
|
2021-01-31 21:24:57 +01:00
|
|
|
def preload_cache_collection_target_statuses(notifications, &_block)
|
|
|
|
notifications.group_by(&:type).each do |type, grouped_notifications|
|
|
|
|
associations = TARGET_STATUS_INCLUDES_BY_TYPE[type]
|
|
|
|
next unless associations
|
|
|
|
|
|
|
|
# Instead of using the usual `includes`, manually preload each type.
|
|
|
|
# If polymorphic associations are loaded with the usual `includes`, other types of associations will be loaded more.
|
|
|
|
ActiveRecord::Associations::Preloader.new.preload(grouped_notifications, associations)
|
|
|
|
end
|
2016-12-03 18:21:26 +01:00
|
|
|
|
2021-01-31 21:24:57 +01:00
|
|
|
unique_target_statuses = notifications.map(&:target_status).compact.uniq
|
|
|
|
# Call cache_collection in block
|
|
|
|
cached_statuses_by_id = yield(unique_target_statuses).index_by(&:id)
|
|
|
|
|
|
|
|
notifications.each do |notification|
|
|
|
|
next if notification.target_status.nil?
|
|
|
|
|
|
|
|
cached_status = cached_statuses_by_id[notification.target_status.id]
|
|
|
|
|
|
|
|
case notification.type
|
|
|
|
when :status
|
|
|
|
notification.status = cached_status
|
|
|
|
when :reblog
|
|
|
|
notification.status.reblog = cached_status
|
|
|
|
when :favourite
|
|
|
|
notification.favourite.status = cached_status
|
|
|
|
when :mention
|
|
|
|
notification.mention.status = cached_status
|
|
|
|
when :poll
|
|
|
|
notification.poll.status = cached_status
|
|
|
|
end
|
2016-12-03 18:21:26 +01:00
|
|
|
end
|
2021-01-31 21:24:57 +01:00
|
|
|
|
|
|
|
notifications
|
2016-12-03 18:21:26 +01:00
|
|
|
end
|
|
|
|
end
|
2016-12-03 20:04:19 +01:00
|
|
|
|
|
|
|
after_initialize :set_from_account
|
|
|
|
before_validation :set_from_account
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_from_account
|
2017-01-26 14:52:07 +01:00
|
|
|
return unless new_record?
|
|
|
|
|
2016-12-03 20:04:19 +01:00
|
|
|
case activity_type
|
2019-03-11 00:49:31 +01:00
|
|
|
when 'Status', 'Follow', 'Favourite', 'FollowRequest', 'Poll'
|
2017-06-01 20:53:37 +02:00
|
|
|
self.from_account_id = activity&.account_id
|
2016-12-03 20:04:19 +01:00
|
|
|
when 'Mention'
|
2017-06-01 20:53:37 +02:00
|
|
|
self.from_account_id = activity&.status&.account_id
|
2016-12-03 20:04:19 +01:00
|
|
|
end
|
|
|
|
end
|
2016-11-20 00:33:02 +01:00
|
|
|
end
|