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.
25 lines
789 B
25 lines
789 B
# frozen_string_literal: true |
|
|
|
class WebPushNotificationWorker |
|
include Sidekiq::Worker |
|
|
|
sidekiq_options backtrace: true |
|
|
|
def perform(session_activation_id, notification_id) |
|
session_activation = SessionActivation.find(session_activation_id) |
|
notification = Notification.find(notification_id) |
|
|
|
return if session_activation.web_push_subscription.nil? || notification.activity.nil? |
|
|
|
session_activation.web_push_subscription.push(notification) |
|
rescue Webpush::InvalidSubscription, Webpush::ExpiredSubscription |
|
# Subscription expiration is not currently implemented in any browser |
|
|
|
session_activation.web_push_subscription.destroy! |
|
session_activation.update!(web_push_subscription: nil) |
|
|
|
true |
|
rescue ActiveRecord::RecordNotFound |
|
true |
|
end |
|
end
|
|
|