Sha256: f96e3cc29e4947a6396ba12e6fb1cf0950b2370aff5e7feab2345d8811601710

Contents?: true

Size: 1.06 KB

Versions: 2

Compression:

Stored size: 1.06 KB

Contents

module Rapnd
  class Notification
    attr_accessor :badge, :alert, :sound, :content_available, :custom_properties, :device_token
    
    def initialize(hash)
      [:badge, :alert, :sound, :device_token, :content_available, :custom_properties].each do |k|
        self.instance_variable_set("@#{k}".to_sym, hash[k]) if hash[k]
      end
      raise "Must provide device token: #{hash}" if self.device_token.nil?
      self.device_token = self.device_token.delete(' ')
    end
    
    def payload
      p = Hash.new
      [:badge, :alert, :sound, :content_available].each do |k|
        p[k.to_s.gsub('_','-').to_sym] = send(k) if send(k)
      end
      aps = {:aps => p}
      aps.merge!(custom_properties) if custom_properties
      aps
    end
    
    def json_payload
      j = ActiveSupport::JSON.encode(payload)
      raise "The payload #{j} is larger than allowed: #{j.length}" if j.size > 256
      j
    end
    
    def to_bytes
      j = json_payload
      [0, 0, 32, self.device_token, 0, j.bytesize, j].pack("cccH*cca*").force_encoding('ASCII-8BIT')
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rapnd-0.5.0 lib/rapnd/notification.rb
rapnd-0.4.1 lib/rapnd/notification.rb