about summary refs log tree commit diff
path: root/app/workers/web_push_notification_worker.rb
blob: 51b8daae7c192969fff3cad044d4d2ed638ba2b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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.nil? || notification.nil?

    begin
      session_activation.web_push_subscription.push(notification)
    rescue Webpush::InvalidSubscription, Webpush::ExpiredSubscription => e
      # Subscription expiration is not currently implemented in any browser
      session_activation.web_push_subscription.destroy!
      session_activation.update!(web_push_subscription: nil)

      raise e
    end
  end
end