GithubHelp home page GithubHelp logo

tlbrack / apn_sender Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pctj101/apn_sender

0.0 2.0 0.0 224 KB

Resque-based background worker to send Apple Push Notifications over a persistent TCP socket.

License: MIT License

Ruby 97.41% Shell 2.59%

apn_sender's Introduction

Synopsis

Need to send background notifications to an iPhone application over a persistent connection in Ruby? Keep reading…

The Story

So you’re building the server component of an iPhone application in Ruby. And you want to send background notifications through the Apple Push Notification servers, which doesn’t seem too bad at first. But then you read in the Apple Documentation that Apple’s servers may treat non-persistent connections as a Denial of Service attack, and you realize that Rails has no easy way to maintain a persistent connection internally, and things start looking more complicated.

The apn_sender gem includes a background daemon which processes background messages from your application and sends them along to Apple over a single, persistent socket. It also includes the ability to query the Feedback service, helper methods for enqueueing your jobs, and a sample monit config to make sure the background worker is around when you need it.

Yet another ApplePushNotification interface?

Yup. There’s some great code out there already, but we didn’t like the idea of getting banned from the APN gateway for establishing a new connection each time we needed to send a batch of messages, and none of the libraries I found handled maintaining a persistent connection.

Current Status

This is updated to be able to run multiple queues of Apple Push Notifications each with a different name, on the same system. Check the -a option

I didn’t check if the certificate passwords work yet

As far as I can tell, seriously, the rails environment is barely even necessary other than to find a place to put the logs, and a place to get the certificates. I wonder if we can reduce memory usage by nuking the entire rails reference and throwing in more command line switches or config files.

To keep things small for me, I just make a “blank” rails project and throw all my certs and apn scripts in there. APN doesn’t access your rails models by default anyways, nor does it use your DB, as it runs everything through redis

Older Status

This gem has been in production use since early May, 2010. There are no guarantees of complete functionality, of course, but it’s working for us. :) ** UPDATE: our site is now defunct (for completely-unrelated reasons), but the many forks and watchers make me think something’s going right. **

Usage

1. Queueing Messages From Your Application

To queue a message for sending through Apple’s Push Notification service from your Rails application:

APN.notify(token, "<bundle_id>.<environment>", opts_hash)
APN.notify(token, "com.example.appname.development", opts_hash)
APN.notify(token, "com.example.appname.production", opts_hash)

where token is the unique identifier of the iPhone to receive the notification and opts_hash can have any of the following keys:

# :alert  #=> The alert to send
# :badge  #=> The badge number to send
# :sound  #=> The sound file to play on receipt, or true to play the default sound installed with your app

where bundle_id is the unique identifier of your iPhone Application.

If any other keys are present they’ll be be passed along as custom data to your application.

2. Sending Queued Messages

Put your apn_development.pem and apn_production.pem certificates from Apple in your Rails.root/config/certs/[bundle_id] directory.

Once this is done, you can fire off a background worker with

$ rake apn:sender

For production, you’re probably better off running a dedicated daemon and setting up monit to watch over it for you. Luckily, that’s pretty easy:

# To generate daemon (Sorry, I didn't update this, but look in the contrib directory for my script named apn_sender)
./script/generate apn_sender

# To run daemon. Pass --help to print all options (Sorry, I didn't update this, but look in the contrib directory for my script named start_apn_daemon_dev.sh)
./script/apn_sender --environment=production --verbose start

Check Rails.root/logs/apn_sender.log for debugging output. In addition to logging any major errors there, apn_sender hooks into the Resque::Worker logging to display any verbose or very_verbose worker output in apn_sender.log file as well.

3. Checking Apple’s Feedback Service

Since push notifications are a fire-and-forget sorta deal, where you get no indication if your message was received (or if the specified recipient even exists), Apple needed to come up with some other way to ensure their network isn’t clogged with thousands of bogus messages (e.g. from developers sending messages to phones where their application used to be installed, but where the user has since removed it). Hence, the Feedback Service.

It’s actually really simple - you connect to them periodically and they give you a big dump of tokens you shouldn’t send to anymore. The gem wraps this up nicely – just call:

# APN::Feedback accepts the same optional :environment and :cert_path / :full_cert_path options as APN::Sender
feedback = APN::Feedback.new()

tokens = feedback.tokens # => Array of device tokens
tokens.each do |token|
  # ... custom logic here to stop you app from
  # sending further notifications to this token
end

If you’re interested in knowing exactly when Apple determined each token was expired (which can be useful in determining if the application re-registered with your service since it first appeared in the expired queue):

items = feedback.data # => Array of APN::FeedbackItem elements
items.each do |item|
  item.token
  item.timestamp
  # ... custom logic here
end

The Feedback Service works as a big queue. When you connect it pops off all its data and sends it over the wire at once, which means connecting a second time will return an empty array, so for ease of use a call to either tokens or data will connect once and cache the data. If you call either one again it’ll continue to use its cached version (rather than connecting to Apple a second time to retrieve an empty array, which is probably not what you want).

Forcing a reconnect is as easy as calling either method with the single parameter true, but be sure you’ve already used the existing data because you’ll never get it back.

Warning: No really, check Apple’s Feedback Service occasionally

If you’re sending notifications, you should definitely call one of the receive methods periodically, as Apple’s policies require it and they apparently monitor providers for compliance. I’d definitely recommend throwing together a quick rake task to take care of this for you (the whenever library provides a nice wrapper around scheduling tasks to run at certain times (for systems with cron enabled)).

Just for the record, this is essentially what you want to have whenever run periodically for you:

def self.clear_uninstalled_applications
  feedback_data = APN::Feedback.new(:environment => :production).data

  feedback_data.each do |item|
    user = User.find_by_iphone_token( item.token )

    if user.iphone_token_updated_at && user.iphone_token_updated_at > item.timestamp
      return true # App has been reregistered since Apple determined it'd been uninstalled
    else
      user.update_attributes(:iphone_token => nil, :iphone_token_updated_at => Time.now) 
    end
  end
end

Keeping Your Workers Working

There’s also an included sample apn_sender.monitrc file in the contrib/ folder to help monit handle server restarts and unexpected disasters.

Installation

APN is built on top of Resque (an awesome {Redis}[http://code.google.com/p/redis/]-based background runner similar to delayed_job). Read through the Resque README to get a feel for what’s going on, follow the installation instructions there, and then run:

$ gem install apn_sender

In your Rails app, add (2.3.x):

config.gem 'apn_sender', :lib => 'apn'

or (3.x) to your Gemfile:

gem 'apn_sender', :require => 'apn'

To add a few useful rake tasks for running workers, add the following line to your Rakefile:

require 'apn/tasks'

Copyright © 2010 Kali Donovan. See LICENSE for details.

apn_sender's People

Contributors

kdonovan avatar pctj101 avatar marceldegraaf avatar tlbrack avatar hiroprot avatar hackedunit avatar huo-ju avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.