Sha256: c0a2c65210a6011807cceca77cd8e4bc94f5575ac52557bc5a1f98f2115f62e9

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 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
      @ssl = nil
      @sock = nil
    end

    def write(notification)
      Config.logger.debug "#{Time.now} [#{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

2 entries across 2 versions & 1 rubygems

Version Path
apnserver-0.2.2 lib/apnserver/client.rb
apnserver-0.2.1 lib/apnserver/client.rb