Sha256: ea0b6e97748d08ec0878a9977479ed9c1a1bb5ed32cbf0d11a948f2416f6e149
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
module Rapnd class Notification attr_accessor :badge, :alert, :sound, :custom, :device_token def initialize(hash) [:badge, :alert, :sound, :device_token, :custom].each do |k| self.instance_variable_set("@#{k}".to_sym, hash[k]) if hash[k] end raise 'Must provide device token' if self.device_token.nil? self.device_token = self.device_token.delete(' ') end def payload if badge.nil? && sound.nil? p = alert else p = Hash.new [:badge, :alert, :sound].each do |k| p[k] = send(k) if send(k) end end aps = {:aps => p} aps.merge!(custom) if custom aps end def json_payload j = ActiveSupport::JSON.encode(payload) raise PayloadInvalid.new("The payload 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rapnd-0.1.10 | lib/rapnd/notification.rb |