You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
622 B
24 lines
622 B
# frozen_string_literal: true |
|
|
|
class Web::PushNotificationWorker |
|
include Sidekiq::Worker |
|
|
|
sidekiq_options backtrace: true, retry: 5 |
|
|
|
def perform(subscription_id, notification_id) |
|
subscription = ::Web::PushSubscription.find(subscription_id) |
|
notification = Notification.find(notification_id) |
|
|
|
subscription.push(notification) unless notification.activity.nil? |
|
rescue Webpush::ResponseError => e |
|
code = e.response.code.to_i |
|
|
|
if (400..499).cover?(code) && ![408, 429].include?(code) |
|
subscription.destroy! |
|
else |
|
raise e |
|
end |
|
rescue ActiveRecord::RecordNotFound |
|
true |
|
end |
|
end
|
|
|