Apple Push Notification Server Toolkit

  • http://github.com/jnak/apnmachine

Description

I want: - persistent connection to APN Servers (as Apple recommends) - real-time notifications (no regular polling a la Resque) - super easy to use in Ruby and any languages (as easy as enqueuing a serialized JSON hash in Redis) - persist and queue messages when server is down - horizontal scalability and out-of-the-box load-balancing - fast daemons

So I built ApnMachine. We’re running it in production at zapkast.com and find it very reliable.

Remaining Tasks

  • Implement feedback service mechanism
  • Write real tests

APN Server Daemon

To start ApnMachine, tell it where is your redis server and the complete path to your PEM file. That’s it.


Usage: apnmachined [options] --pem /path/to/pem
  --address bind address (defaults to 127.0.0.1)
    address of your redis server

  --port port
    the port of your redis server (defaults to)

  --apn-address server
    APN Server (defaults to gateway.push.apple.com)
		Use 'sandbox' to connect to gateway.sandbox.push.apple.com

  --apn-port port of the APN Server
    APN server port (defaults to 2195)

  --pem pem file path
    The PEM encoded private key and certificate.
    To export a PEM ecoded file execute
    # openssl pkcs12 -in cert.p12 -out cert.pem -nodes -clcerts

  --pem-passphrase passphrase
    The PEM passphrase to decode key.
		Default to nil

  --help
    usage message

  --daemon or -d
    Runs process as daemon, not available on Windows
  

Sending Notifications from Ruby

To send a notification, you just need a working Redis client that responds to rpush. It doesn’t matter if you’re in an EventMachine program or a plain vanilla Rails app.


  ApnMachine::Config.port = @a_redis_client
  ApnMachine::Config.logger = Rails.logger

Finally:


  notification = ApnMachine::Notification.new
  notification.device_token = apns_token 
  notification.alert = message
  notification.badge = 1
  notification.sound = 'default'
  notification.push

Installation

Apnserver is hosted on rubygems


  $ gem install apnmachine

Adding apnmachine to your Rails application


  gem 'apnmachine'

License

Widely Inspired from groupme/em-apn and bpoweski/apnserver

(The MIT License)

Copyright © 2012 Julien Nakache

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.