Sha256: 3dff7183e77bccae5abd4b3059c12c17d93e9f2de40edaae428fd1878428eab4
Contents?: true
Size: 1.16 KB
Versions: 1
Compression:
Stored size: 1.16 KB
Contents
require 'openssl' require 'socket' module ApnServer class Client attr_accessor :pem, :host, :port, :password def initialize(pem, host = 'gateway.push.apple.com', port = 2195, pass = nil) @pem, @host, @port, @password = pem, host, port, pass end def connect! raise "The path to your pem file is not set." unless self.pem raise "The path to your pem file does not exist!" unless File.exist?(self.pem) @context = OpenSSL::SSL::SSLContext.new @context.cert = OpenSSL::X509::Certificate.new(File.read(self.pem)) @context.key = OpenSSL::PKey::RSA.new(File.read(self.pem), self.password) @sock = TCPSocket.new(self.host, self.port.to_i) @ssl = OpenSSL::SSL::SSLSocket.new(@sock, @context) @ssl.connect return @sock, @ssl end def disconnect! @ssl.close @sock.close end def write(notification) $logger.info "[#{host}:#{port}] Device: #{notification.device_token.unpack('H*')} sending #{notification.json_payload}" @ssl.write(notification.to_bytes) end def connected? @ssl end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bpoweski-apnserver-0.0.14 | lib/apnserver/client.rb |