2016-11-19 23:33:02 +00:00
|
|
|
# frozen_string_literal: true
|
2023-02-20 05:58:28 +00:00
|
|
|
|
2017-05-02 00:14:47 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: notifications
|
|
|
|
#
|
2018-04-23 09:29:17 +00:00
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# activity_id :bigint(8) not null
|
2018-03-24 11:51:28 +00:00
|
|
|
# activity_type :string not null
|
2017-05-02 00:14:47 +00:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2018-04-23 09:29:17 +00:00
|
|
|
# account_id :bigint(8) not null
|
|
|
|
# from_account_id :bigint(8) not null
|
2020-09-18 15:26:45 +00:00
|
|
|
# type :string
|
2024-03-07 14:53:37 +00:00
|
|
|
# filtered :boolean default(FALSE), not null
|
2024-06-03 08:35:59 +00:00
|
|
|
# group_key :string
|
2017-05-02 00:14:47 +00:00
|
|
|
#
|
2016-11-19 23:33:02 +00:00
|
|
|
|
|
|
|
class Notification < ApplicationRecord
|
2020-09-18 15:26:45 +00:00
|
|
|
self.inheritance_column = nil
|
|
|
|
|
2016-11-19 23:33:02 +00:00
|
|
|
include Paginable
|
|
|
|
|
2020-09-18 15:26:45 +00:00
|
|
|
LEGACY_TYPE_CLASS_MAP = {
|
2023-02-20 05:58:28 +00:00
|
|
|
'Mention' => :mention,
|
|
|
|
'Status' => :reblog,
|
|
|
|
'Follow' => :follow,
|
2020-09-18 15:26:45 +00:00
|
|
|
'FollowRequest' => :follow_request,
|
2023-02-20 05:58:28 +00:00
|
|
|
'Favourite' => :favourite,
|
|
|
|
'Poll' => :poll,
|
2017-05-06 19:55:40 +00:00
|
|
|
}.freeze
|
|
|
|
|
2024-08-29 12:39:07 +00:00
|
|
|
GROUPABLE_NOTIFICATION_TYPES = %i(favourite reblog).freeze
|
|
|
|
|
2024-07-18 14:36:09 +00:00
|
|
|
# Please update app/javascript/api_types/notification.ts if you change this
|
2024-03-13 10:35:49 +00:00
|
|
|
PROPERTIES = {
|
|
|
|
mention: {
|
|
|
|
filterable: true,
|
|
|
|
}.freeze,
|
|
|
|
status: {
|
|
|
|
filterable: false,
|
|
|
|
}.freeze,
|
|
|
|
reblog: {
|
|
|
|
filterable: true,
|
|
|
|
}.freeze,
|
|
|
|
follow: {
|
|
|
|
filterable: true,
|
|
|
|
}.freeze,
|
|
|
|
follow_request: {
|
|
|
|
filterable: true,
|
|
|
|
}.freeze,
|
|
|
|
favourite: {
|
|
|
|
filterable: true,
|
|
|
|
}.freeze,
|
|
|
|
poll: {
|
|
|
|
filterable: false,
|
|
|
|
}.freeze,
|
|
|
|
update: {
|
|
|
|
filterable: false,
|
|
|
|
}.freeze,
|
2024-03-20 15:37:21 +00:00
|
|
|
severed_relationships: {
|
|
|
|
filterable: false,
|
|
|
|
}.freeze,
|
2024-04-25 17:26:05 +00:00
|
|
|
moderation_warning: {
|
|
|
|
filterable: false,
|
|
|
|
}.freeze,
|
2024-03-13 10:35:49 +00:00
|
|
|
'admin.sign_up': {
|
|
|
|
filterable: false,
|
|
|
|
}.freeze,
|
|
|
|
'admin.report': {
|
|
|
|
filterable: false,
|
|
|
|
}.freeze,
|
|
|
|
}.freeze
|
|
|
|
|
|
|
|
TYPES = PROPERTIES.keys.freeze
|
2020-09-18 15:26:45 +00:00
|
|
|
|
2021-01-31 20:24:57 +00:00
|
|
|
TARGET_STATUS_INCLUDES_BY_TYPE = {
|
|
|
|
status: :status,
|
|
|
|
reblog: [status: :reblog],
|
|
|
|
mention: [mention: :status],
|
|
|
|
favourite: [favourite: :status],
|
|
|
|
poll: [poll: :status],
|
2022-02-11 21:20:19 +00:00
|
|
|
update: :status,
|
2022-06-27 07:30:15 +00:00
|
|
|
'admin.report': [report: :target_account],
|
2021-01-31 20:24:57 +00:00
|
|
|
}.freeze
|
2017-05-06 19:55:40 +00:00
|
|
|
|
2018-01-19 19:56:47 +00:00
|
|
|
belongs_to :account, optional: true
|
|
|
|
belongs_to :from_account, class_name: 'Account', optional: true
|
|
|
|
belongs_to :activity, polymorphic: true, optional: true
|
|
|
|
|
2023-04-30 12:06:53 +00:00
|
|
|
with_options foreign_key: 'activity_id', optional: true do
|
|
|
|
belongs_to :mention, inverse_of: :notification
|
|
|
|
belongs_to :status, inverse_of: :notification
|
|
|
|
belongs_to :follow, inverse_of: :notification
|
|
|
|
belongs_to :follow_request, inverse_of: :notification
|
|
|
|
belongs_to :favourite, inverse_of: :notification
|
|
|
|
belongs_to :poll, inverse_of: false
|
|
|
|
belongs_to :report, inverse_of: false
|
2024-03-20 17:02:09 +00:00
|
|
|
belongs_to :account_relationship_severance_event, inverse_of: false
|
2024-04-25 17:26:05 +00:00
|
|
|
belongs_to :account_warning, inverse_of: false
|
2023-04-30 12:06:53 +00:00
|
|
|
end
|
2016-11-19 23:33:02 +00:00
|
|
|
|
2020-09-18 15:26:45 +00:00
|
|
|
validates :type, inclusion: { in: TYPES }
|
2016-11-19 23:33:02 +00:00
|
|
|
|
2020-09-11 13:16:29 +00:00
|
|
|
scope :without_suspended, -> { joins(:from_account).merge(Account.without_suspended) }
|
|
|
|
|
2016-11-19 23:33:02 +00:00
|
|
|
def type
|
2020-09-18 15:26:45 +00:00
|
|
|
@type ||= (super || LEGACY_TYPE_CLASS_MAP[activity_type]).to_sym
|
2016-11-19 23:33:02 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def target_status
|
|
|
|
case type
|
2022-02-11 21:20:19 +00:00
|
|
|
when :status, :update
|
2020-09-18 15:26:45 +00:00
|
|
|
status
|
2016-11-19 23:33:02 +00:00
|
|
|
when :reblog
|
2017-11-19 14:32:48 +00:00
|
|
|
status&.reblog
|
|
|
|
when :favourite
|
|
|
|
favourite&.status
|
|
|
|
when :mention
|
|
|
|
mention&.status
|
2019-03-10 23:49:31 +00:00
|
|
|
when :poll
|
|
|
|
poll&.status
|
2016-11-19 23:33:02 +00:00
|
|
|
end
|
|
|
|
end
|
2016-12-03 17:21:26 +00:00
|
|
|
|
|
|
|
class << self
|
2024-03-07 14:53:37 +00:00
|
|
|
def browserable(types: [], exclude_types: [], from_account_id: nil, include_filtered: false)
|
2023-02-18 22:09:40 +00:00
|
|
|
requested_types = if types.empty?
|
|
|
|
TYPES
|
|
|
|
else
|
|
|
|
types.map(&:to_sym) & TYPES
|
|
|
|
end
|
2022-03-15 03:11:29 +00:00
|
|
|
|
|
|
|
requested_types -= exclude_types.map(&:to_sym)
|
|
|
|
|
|
|
|
all.tap do |scope|
|
2024-03-07 14:53:37 +00:00
|
|
|
scope.merge!(where(filtered: false)) unless include_filtered || from_account_id.present?
|
2022-03-15 03:11:29 +00:00
|
|
|
scope.merge!(where(from_account_id: from_account_id)) if from_account_id.present?
|
|
|
|
scope.merge!(where(type: requested_types)) unless requested_types.size == TYPES.size
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-08-29 12:39:07 +00:00
|
|
|
def paginate_groups(limit, pagination_order, grouped_types: nil)
|
2024-07-24 18:59:15 +00:00
|
|
|
raise ArgumentError unless %i(asc desc).include?(pagination_order)
|
|
|
|
|
|
|
|
query = reorder(id: pagination_order)
|
2024-06-03 08:35:59 +00:00
|
|
|
|
2024-08-29 12:39:07 +00:00
|
|
|
# Ideally `:types` would be a bind rather than part of the SQL itself, but that does not
|
|
|
|
# seem to be possible to do with Rails, considering that the expression would occur in
|
|
|
|
# multiple places, including in a `select`
|
|
|
|
group_key_sql = begin
|
|
|
|
if grouped_types.present?
|
|
|
|
# Normalize `grouped_types` so the number of different SQL query shapes remains small, and
|
|
|
|
# the queries can be analyzed in monitoring/telemetry tools
|
|
|
|
grouped_types = (grouped_types.map(&:to_sym) & GROUPABLE_NOTIFICATION_TYPES).sort
|
|
|
|
|
|
|
|
sanitize_sql_array([<<~SQL.squish, { types: grouped_types }])
|
|
|
|
COALESCE(
|
|
|
|
CASE
|
|
|
|
WHEN notifications.type IN (:types) THEN notifications.group_key
|
|
|
|
ELSE NULL
|
|
|
|
END,
|
|
|
|
'ungrouped-' || notifications.id
|
|
|
|
)
|
|
|
|
SQL
|
|
|
|
else
|
|
|
|
"COALESCE(notifications.group_key, 'ungrouped-' || notifications.id)"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-06-03 08:35:59 +00:00
|
|
|
unscoped
|
|
|
|
.with_recursive(
|
|
|
|
grouped_notifications: [
|
2024-07-24 18:59:15 +00:00
|
|
|
# Base case: fetching one notification and annotating it with visited groups
|
2024-06-03 08:35:59 +00:00
|
|
|
query
|
2024-08-29 12:39:07 +00:00
|
|
|
.select('notifications.*', "ARRAY[#{group_key_sql}] AS groups")
|
2024-06-03 08:35:59 +00:00
|
|
|
.limit(1),
|
2024-07-24 18:59:15 +00:00
|
|
|
# Recursive case, always yielding at most one annotated notification
|
|
|
|
unscoped
|
|
|
|
.from(
|
|
|
|
[
|
|
|
|
# Expose the working table as `wt`, but quit early if we've reached the limit
|
|
|
|
unscoped
|
|
|
|
.select('id', 'groups')
|
|
|
|
.from('grouped_notifications')
|
|
|
|
.where('array_length(grouped_notifications.groups, 1) < :limit', limit: limit)
|
|
|
|
.arel.as('wt'),
|
|
|
|
# Recursive query, using `LATERAL` so we can refer to `wt`
|
|
|
|
query
|
|
|
|
.where(pagination_order == :desc ? 'notifications.id < wt.id' : 'notifications.id > wt.id')
|
2024-08-29 12:39:07 +00:00
|
|
|
.where.not("#{group_key_sql} = ANY(wt.groups)")
|
2024-07-24 18:59:15 +00:00
|
|
|
.limit(1)
|
|
|
|
.arel.lateral('notifications'),
|
|
|
|
]
|
|
|
|
)
|
2024-08-29 12:39:07 +00:00
|
|
|
.select('notifications.*', "array_append(wt.groups, #{group_key_sql}) AS groups"),
|
2024-06-03 08:35:59 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
.from('grouped_notifications AS notifications')
|
2024-07-24 18:59:15 +00:00
|
|
|
.order(id: pagination_order)
|
2024-06-03 08:35:59 +00:00
|
|
|
.limit(limit)
|
|
|
|
end
|
|
|
|
|
2024-07-24 18:59:15 +00:00
|
|
|
# This returns notifications from the request page, but with at most one notification per group.
|
|
|
|
# Notifications that have no `group_key` each count as a separate group.
|
2024-08-29 12:39:07 +00:00
|
|
|
def paginate_groups_by_max_id(limit, max_id: nil, since_id: nil, grouped_types: nil)
|
2024-07-24 18:59:15 +00:00
|
|
|
query = reorder(id: :desc)
|
2024-08-20 13:54:08 +00:00
|
|
|
query = query.where(id: ...(max_id.to_i)) if max_id.present?
|
|
|
|
query = query.where(id: (since_id.to_i + 1)...) if since_id.present?
|
2024-08-29 12:39:07 +00:00
|
|
|
query.paginate_groups(limit, :desc, grouped_types: grouped_types)
|
2024-07-24 18:59:15 +00:00
|
|
|
end
|
|
|
|
|
2024-06-03 08:35:59 +00:00
|
|
|
# Differs from :paginate_groups_by_max_id in that it gives the results immediately following min_id,
|
|
|
|
# whereas since_id gives the items with largest id, but with since_id as a cutoff.
|
|
|
|
# Results will be in ascending order by id.
|
2024-08-29 12:39:07 +00:00
|
|
|
def paginate_groups_by_min_id(limit, max_id: nil, min_id: nil, grouped_types: nil)
|
2024-06-03 08:35:59 +00:00
|
|
|
query = reorder(id: :asc)
|
2024-08-20 13:54:08 +00:00
|
|
|
query = query.where(id: (min_id.to_i + 1)...) if min_id.present?
|
|
|
|
query = query.where(id: ...(max_id.to_i)) if max_id.present?
|
2024-08-29 12:39:07 +00:00
|
|
|
query.paginate_groups(limit, :asc, grouped_types: grouped_types)
|
2024-06-03 08:35:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def to_a_grouped_paginated_by_id(limit, options = {})
|
|
|
|
if options[:min_id].present?
|
2024-08-29 12:39:07 +00:00
|
|
|
paginate_groups_by_min_id(limit, min_id: options[:min_id], max_id: options[:max_id], grouped_types: options[:grouped_types]).reverse
|
2024-06-03 08:35:59 +00:00
|
|
|
else
|
2024-08-29 12:39:07 +00:00
|
|
|
paginate_groups_by_max_id(limit, max_id: options[:max_id], since_id: options[:since_id], grouped_types: options[:grouped_types]).to_a
|
2024-06-03 08:35:59 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-01-31 20:24:57 +00: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.
|
2023-12-13 07:47:32 +00:00
|
|
|
ActiveRecord::Associations::Preloader.new(records: grouped_notifications, associations: associations).call
|
2021-01-31 20:24:57 +00:00
|
|
|
end
|
2016-12-03 17:21:26 +00:00
|
|
|
|
2023-05-23 08:49:12 +00:00
|
|
|
unique_target_statuses = notifications.filter_map(&:target_status).uniq
|
2021-01-31 20:24:57 +00:00
|
|
|
# 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
|
2022-02-11 21:20:19 +00:00
|
|
|
when :status, :update
|
2021-01-31 20:24:57 +00:00
|
|
|
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 17:21:26 +00:00
|
|
|
end
|
2021-01-31 20:24:57 +00:00
|
|
|
|
|
|
|
notifications
|
2016-12-03 17:21:26 +00:00
|
|
|
end
|
|
|
|
end
|
2016-12-03 19:04:19 +00:00
|
|
|
|
|
|
|
after_initialize :set_from_account
|
|
|
|
before_validation :set_from_account
|
|
|
|
|
2024-03-07 14:53:37 +00:00
|
|
|
after_destroy :remove_from_notification_request
|
|
|
|
|
2016-12-03 19:04:19 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_from_account
|
2017-01-26 13:52:07 +00:00
|
|
|
return unless new_record?
|
|
|
|
|
2016-12-03 19:04:19 +00:00
|
|
|
case activity_type
|
2024-04-26 12:42:06 +00:00
|
|
|
when 'Status', 'Follow', 'Favourite', 'FollowRequest', 'Poll', 'Report'
|
2017-06-01 18:53:37 +00:00
|
|
|
self.from_account_id = activity&.account_id
|
2016-12-03 19:04:19 +00:00
|
|
|
when 'Mention'
|
2017-06-01 18:53:37 +00:00
|
|
|
self.from_account_id = activity&.status&.account_id
|
2022-02-23 15:45:22 +00:00
|
|
|
when 'Account'
|
|
|
|
self.from_account_id = activity&.id
|
2024-04-26 12:42:06 +00:00
|
|
|
when 'AccountRelationshipSeveranceEvent', 'AccountWarning'
|
2024-03-20 15:37:21 +00:00
|
|
|
# These do not really have an originating account, but this is mandatory
|
|
|
|
# in the data model, and the recipient's account will by definition
|
|
|
|
# always exist
|
|
|
|
self.from_account_id = account_id
|
2016-12-03 19:04:19 +00:00
|
|
|
end
|
|
|
|
end
|
2024-03-07 14:53:37 +00:00
|
|
|
|
|
|
|
def remove_from_notification_request
|
|
|
|
notification_request = NotificationRequest.find_by(account_id: account_id, from_account_id: from_account_id)
|
|
|
|
notification_request&.reconsider_existence!
|
|
|
|
end
|
2016-11-19 23:33:02 +00:00
|
|
|
end
|