2018-05-11 11:49:12 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::WebPushSubscriptionSerializer < ActiveModel::Serializer
|
2023-01-23 13:05:30 +01:00
|
|
|
attributes :id, :endpoint, :alerts, :server_key, :policy
|
2018-05-11 11:49:12 +02:00
|
|
|
|
|
|
|
def alerts
|
2019-07-21 18:10:07 +02:00
|
|
|
(object.data&.dig('alerts') || {}).each_with_object({}) { |(k, v), h| h[k] = ActiveModel::Type::Boolean.new.cast(v) }
|
2018-05-11 11:49:12 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def server_key
|
|
|
|
Rails.configuration.x.vapid_public_key
|
|
|
|
end
|
2023-01-23 13:05:30 +01:00
|
|
|
|
|
|
|
def policy
|
|
|
|
object.data&.dig('policy') || 'all'
|
|
|
|
end
|
2018-05-11 11:49:12 +02:00
|
|
|
end
|