Module: APNS

Defined in:
lib/apns/core.rb,
lib/apns/notification.rb

Defined Under Namespace

Classes: Notification

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.hostObject

Returns the value of attribute host.



13
14
15
# File 'lib/apns/core.rb', line 13

def host
  @host
end

.passObject

Returns the value of attribute pass.



13
14
15
# File 'lib/apns/core.rb', line 13

def pass
  @pass
end

.pemObject

Returns the value of attribute pem.



13
14
15
# File 'lib/apns/core.rb', line 13

def pem
  @pem
end

.portObject

Returns the value of attribute port.



13
14
15
# File 'lib/apns/core.rb', line 13

def port
  @port
end

Class Method Details

.feedbackObject



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/apns/core.rb', line 48

def self.feedback
  sock, ssl = self.feedback_connection

  apns_feedback = []

  while message = ssl.read(38)
    timestamp, token_size, token = message.unpack('N1n1H*')
    apns_feedback << [Time.at(timestamp), token]
  end

  ssl.close
  sock.close

  return apns_feedback
end

.packed_nofications(notifications) ⇒ Object



34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/apns/core.rb', line 34

def self.packed_nofications(notifications)
  bytes = ''

  notifications.each do |notification|
    # Each notification frame consists of
    # 1. (e.g. protocol version) 2 (unsigned char [1 byte]) 
    # 2. size of the full frame (unsigend int [4 byte], big endian)
    pn = notification.packaged_notification
    bytes << ([2, pn.bytesize].pack('CN') + pn)
  end

  bytes
end

.send_notification(device_token, message) ⇒ Object



16
17
18
19
# File 'lib/apns/core.rb', line 16

def self.send_notification(device_token, message)
  n = APNS::Notification.new(device_token, message)
  self.send_notifications([n])
end

.send_notifications(notifications) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/apns/core.rb', line 21

def self.send_notifications(notifications)
  sock, ssl = self.open_connection

  packed_nofications = self.packed_nofications(notifications)

  notifications.each do |n|
    ssl.write(packed_nofications)
  end

  ssl.close
  sock.close
end