2024-03-07 14:53:37 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: notification_requests
|
|
|
|
#
|
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# account_id :bigint(8) not null
|
|
|
|
# from_account_id :bigint(8) not null
|
2024-03-20 16:48:24 +00:00
|
|
|
# last_status_id :bigint(8)
|
2024-03-07 14:53:37 +00:00
|
|
|
# notifications_count :bigint(8) default(0), not null
|
|
|
|
# dismissed :boolean default(FALSE), not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class NotificationRequest < ApplicationRecord
|
|
|
|
include Paginable
|
|
|
|
|
|
|
|
MAX_MEANINGFUL_COUNT = 100
|
|
|
|
|
|
|
|
belongs_to :account
|
|
|
|
belongs_to :from_account, class_name: 'Account'
|
|
|
|
belongs_to :last_status, class_name: 'Status'
|
|
|
|
|
|
|
|
before_save :prepare_notifications_count
|
|
|
|
|
|
|
|
def self.preload_cache_collection(requests)
|
|
|
|
cached_statuses_by_id = yield(requests.filter_map(&:last_status)).index_by(&:id) # Call cache_collection in block
|
|
|
|
|
|
|
|
requests.each do |request|
|
|
|
|
request.last_status = cached_statuses_by_id[request.last_status_id] unless request.last_status_id.nil?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def reconsider_existence!
|
|
|
|
return if dismissed?
|
|
|
|
|
|
|
|
prepare_notifications_count
|
|
|
|
|
|
|
|
if notifications_count.positive?
|
|
|
|
save
|
|
|
|
else
|
|
|
|
destroy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def prepare_notifications_count
|
2024-03-11 15:02:21 +00:00
|
|
|
self.notifications_count = Notification.where(account: account, from_account: from_account, filtered: true).limit(MAX_MEANINGFUL_COUNT).count
|
2024-03-07 14:53:37 +00:00
|
|
|
end
|
|
|
|
end
|