discourse/app/jobs/scheduled/process_shelved_notifications.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
837 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Jobs
class ProcessShelvedNotifications < ::Jobs::Scheduled
every 5.minutes
def execute(args)
sql = <<~SQL
SELECT n.id FROM notifications AS n
INNER JOIN do_not_disturb_timings AS dndt ON n.user_id = dndt.user_id
WHERE n.processed = false
AND dndt.ends_at <= :now
SQL
now = Time.zone.now
notification_ids = DB.query_single(sql, now: now)
Notification.where(id: notification_ids).each do |notification|
begin
NotificationEmailer.process_notification(notification, no_delay: true)
rescue
Rails.logger.warn("Failed to process notification with ID #{notification.id}")
end
end
DB.exec("DELETE FROM do_not_disturb_timings WHERE ends_at < :now", now: now)
end
end
end