Skip to content
This repository has been archived by the owner on Nov 9, 2018. It is now read-only.

stephenmuss/django-ios-notifications

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-ios-notifications

Build Status

Django iOS Notifications makes it easy to send push notifications to iOS devices.

Installation

Minimum Requirements

  • Python 2.7
  • Django 1.6 or greater

Two hard dependencies:

  • pyOpenSSL >= 0.10
  • django-fields >= 0.2.2

  1. You can install with pip:
    • pip install django-ios-notifications to get the latest release version
    • pip install git+https://github.com/stephenmuss/django-ios-notifications.git#egg=django-ios-notifications to install the latest bleeding-edge/development version
  2. Add ios_notifications to INSTALLED_APPS in settings file.
  3. If you want to use the API for registering devices you will need to make the appropriate changes to your urls file.
    • url(r'^ios-notifications/', include('ios_notifications.urls'))
  4. Create required database tables.
    • ./manage.py syncdb
    • If using south ./manage.py migrate ios_notifications also see older django note below.

Django 1.6 or below

You must configure south by adding the following lines to your settings file.

    SOUTH_MIGRATION_MODULES = {
        'ios_notifications': 'ios_notifications.south_migrations',
    }

Notes on Upgrading to 0.2.0

If you are upgrading to 0.2.0 from an older verion and you use password protection in any of your APNServices you will need to renter the password and resave the model for each one. This is due to changes in more recent versions of django-fields.

Setting up the APN Services

Before you can add some devices and push notifications you'll need to set up an APN Service. An example of how to do this in a development environment follows.

Start up your development server: ./manage.py runserver and open up the following url in a web browser:

http://127.0.0.1:8000/admin/ios_notifications/apnservice/add/. You'll see a form to be able to create a new APN Service.

I am making the assumption that you have already created a private key and certificate. If not I suggest you follow one of the online guides to complete this step. One such example can be found here.

The name of the service can be any arbitrary string.

The hostname will need to be a valid hostname for one of the Apple APN Service hosts. Currently this is gateway.sandbox.push.apple.com for sandbox testing and gateway.push.apple.com for production use.

For the certificate and private key fields paste in your certificate and key including the lines with:

----BEGIN CERTIFICATE-----
-----END CERTIFICATE-----
-----BEGIN RSA PRIVATE KEY-----
-----END RSA PRIVATE KEY-----

If your private key requires a passphrase be sure to enter it in to the passphrase field. Otherwise this field can be left blank.

After this you are ready to save the APN Service.

Registering devices

There are a few different ways you can register a device. You can either create the device in the admin interface at http://127.0.0.1:8000/admin/ios_notifications/device/add/ or use the API provided by django-ios-notifications to do so.

If you want to add the device through the admin interface you will need to know the device's token represented by 64 hexadecimal characters (be sure to exclude any <, > and whitespace characters).

Otherwise the django-ios-notifications API provides a REST interface for you to be able to add the device; this would normally be done by sending a request from you iOS app.

To register your device you will need to make a POST request from your device and pass the appropriate POST parameters in the request body.

To create a new device you will need to call the API at http://127.0.0.1:8000/ios-notifications/device/

There are two required POST parameters required to complete this operation:

  • token: the device's 64 character hexadecimal token.
  • service: The id in integer format of the APNService instance to be used for this device.

If the device already exists, the device's is_active attribute will be updated to True. Otherwise the device will be created.

If successful the API will return the device in serialized JSON format with a status code of 201 if the device was created. If the device already existed the response code will be 200.

Getting device details

To fetch the details of an existing device using the REST API you should call the following URL in an HTTP GET request:

http://127.0.0.1:8000/ios-notifications/device/<device_token>/<device_service>/ where:

  • device_token in the device's 64 character hexadecimal token.
  • device_service is the id in integer format of the device's related APNService model.

For example: http://127.0.0.1:8000/ios-notifications/device/0fd12510cfe6b0a4a89dc7369d96df956f991e66131dab63398734e8000d0029/1/.

This will return an HTTP response with the device in JSON format in the response body.

Updating devices

The Django iOS Notifications REST interface also provides the means for you to be able to update a device via the API.

To update a device you should call the same URL as you would above in Getting device details. The HTTP request method should be PUT. You can provide any of the following PUT parameters to update the device:

  • users: A list of user (django.contrib.auth.models.User) ids in integer formate associated with the device.
  • platform: A string describing the device's platform. Allowed options are 'iPhone', 'iPad' and 'iPod'.
  • display: A string describing the device's display (max 30 characters). e.g. '480x320'.
  • os_version: A string describing the device's OS Version (max 20 characters). e.g. 'iPhone OS 5.1.1' which would be the resulting string from [NSString stringWithFormat:@"%@ %@", [[UIDevice currentDevice] systemName], [[UIDevice currentDevice] systemVersion]].

Although technically permitted, updating any of the device's other attributes through the API is not recommended.

This will return an HTTP response with the device with its updated attributes in JSON format in the response body.

Creating and sending notifications

As with devices, there are a few different ways you can create notifications.

You can create a notification in the admin interface by going to http://127.0.0.1:8000/admin/ios_notifications/notification/add/

If you create a notification and save it by hitting Save and continue editing you will notice that you are now able to push this notification by clicking the Push now button which has appeared. Clicking this button will send the notification to all active devices registered with the appropriate APN Server, so make sure that you are really ready to send it before clicking the button.

Another options is to use the built in management command provided by django-ios-notifications. You can do this by calling ./manage.py push_ios_notification from the command line. You will need to provide some arguments to the command in order to create and send a notification.

There is only one required argument:

  • --service is the id of the APN Service you wish to use. e.g. --service=123.

The optional arguments you may pass are:

  • --message is a string containing the main message of your notification. e.g. --message='This is a push notification from Django iOS Notifications!'
  • --badge is an integer value to represent the badge value that will appear over your app's springboard icon after receiving the notification. e.g. --badge=2.
  • --sound is the sound to be played when the device receives your application. This can either be one of the built in sounds or one that you have included in your app. e.g. --sound=default.
  • --extra is for specifying any extra custom payload values you want to send with your notification. This should be in the form of a valid JSON dictionary. e.g. --extra='{"foo": "bar", "baz": [1, 2, 3], "qux": 1}'.
  • --persist is for forcing persistence of notifications in the database.
  • --no-persist will not save the notification to the database.

Note that in order to play a sound the --sound parameter must be supplied. Likewise, to display a badge number on the app icon the --badge parameter should be supplied.

A full example:

./manage.py push_ios_notification \
    --message='This is a push notification from Django iOS Notifications!' \
    --service=123 \
    --badge=1 \
    --sound=default \
    --extra='{"foo": "bar", "baz": [1, 2, 3], "qux": 1}' \
    --persist

Sending a notification to a subset of devices.

If you wish to send a notification to just a subset of devices you can use the django-ios-notifications API to easily do so. The main assumption here is that you will have some way of knowing to which devices you wish to push a notification.

Below follows a simple example of how to push a notification to a subset of devices based of their unique push tokens.

Note that the notification is sent to devices in chunks. The chunk size can be specified in APNService.push_notification_to_devices. The default chunk size is 100. There is some debate on the ideal chunk size, but using chunks larger than a few hundred at a time is not recommended.

device_tokens = ('97bc2e598e1a11e2bacfb8f6b113c99597bd77428e1a11e2ae36b8f6b113c995',
                 '9c97e3d78e1a11e28470b8f6b113c9959c97e5a38e1a11e28fd6b8f6b113c995',
                 'ba32393d8e1a11e28035b8f6b113c995ba323b0a8e1a11e28254b8f6b113c995',
                 'c71667578e1a11e2a5cfb8f6b113c995c716692e8e1a11e29c74b8f6b113c995')

apns = APNService.objects.get(hostname='gateway.push.apple.com', name='production')
devices = Device.objects.filter(token__in=device_tokens, service=apns)
notification = Notification.objects.create(message='Some message', service=apns)
apns.push_notification_to_devices(notification, devices, chunk_size=200)  # Override the default chunk size to 200 (instead of 100)

Note, you simply need to use the APNService.push_notification_to_devices method to push a notification to the devices.

Connecting to the APNService.

When you push a notification, a connection to the APNService is opened. It should be noted that this can raise an exception if a problem occurred when attempting to make the connection.

See the pyOpenSSL documentation for more information.

Notification persistence

By default notification objects are saved to the database. If you do not require this behaviour it is possible to disable notification persistence.

In your settings.py file include the following:

IOS_NOTIFICATIONS_PERSIST_NOTIFICATIONS = False

API Authentication

At present the REST API supports a few different modes of authentication.

If you plan to use the API then you need to specify IOS_NOTIFICATIONS_AUTHENTICATION in your settings.py file.

The value of IOS_NOTIFICATIONS_AUTHENTICATION must be one of the following strings AuthBasic, AuthBasicIsStaff or AuthNone.

AuthNone

This is the setting to use if you don't care about protecting the API. Any request will be allowed to be processed by the API. This is the easiest to get started with but not really recommended.

AuthBasic

This will secure your API with basic access authentication. This means any request to the API will need to include an Authorization header. This will do a check to see whether a user exists in your database with the supplied credentials. The user should be an instance of django.contrib.auth.models.User. The value of the header will be the word Basic followed by a base64 encoded string of the user's username and password joined by a colon :. For example, if you have a user with the username Aladdin and password open sesame you would need to base64 encode the string Aladdin:open sesame. The resulting header should looks as follows Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==. It is highly recommended that you only send requests over SSL. Otherwise the user credentials will be sent unencrypted in plain text.

See Basic access authentication for more details

AuthBasicIsStaff

This is the same as AuthBasic except that the request will only be allowed if the user is a staff user.

The Feedback Service and deactivating devices

The Feedback Service is used to determine to which devices you should no longer push notifications. This is normally the case once a user has uninstalled your app from his or her device.

According to Apple:

APNs monitors providers for their diligence in checking the feedback service and refraining from sending push notifications to nonexistent applications on devices.

So it is good practice to ensure that you don't push notifications to devices which no longer have your app installed.

Django iOS Notifications provides a FeedbackService class for you to discover to which devices you should no longer send notifications.

You can add a FeedbackService in the admin via http://127.0.0.1:8000/admin/ios_notifications/feedbackservice/add/. Hopefully by now it should be self-explanatory what the fields are for this class.

As with the APNService you will need to provide a hostname for any instances of FeedbackService. For sandbox environments you can currently use feedback.sandbox.push.apple.com and in production you should use feedback.push.apple.com.

You should set the APNService relationship for FeedbackService according to your environment.

Once you have created your FeedbackService instance you can call it to deactivate any devices it informs you of.

To do this you can run the call_feedback_service management command. This will call the feedback service and deactivating any devices it is informed of by the service (by setting is_active to False).

The call_feedback_service command takes one required argument:

  • --feedback-service: The id of the FeedbackService to call. e.g. --feedback-service=123.

A full example: ./manage.py call_feedback_service --feedback-service=123

NOTE: You may experience some issues testing the feedback service in a sandbox enviroment. This occurs when an app was the last push enabled app for that particular APN Service on the device Once the app is removed it tears down the persistent connection to the APN service. If you want to test a feedback service, ensure that you have at least one other app on the device installed which receives notifications from the same APN service.

In the case that you want to test an app using the sandbox APN service, I suggest you create another dummy app in XCode and in the iOS provisioning portal with push notifications enabled. Install this app on any devices you are testing as well as the current app. Now you should be able to uninstall your app from the device and try pushing a notification. So long as the dummy app is still installed on your device the next time you attempt to call the feedback service all should go according to plan and you will notice the device in question has now been deactivated when you view it in the admin interface at http://127.0.0.1:8000/admin/ios_notifications/device/

See [Issues with Using the Feedback Service](http://developer.apple.com/library/ios/#technotes/tn2265/_index.html for more details)

Contributors

Stephen Muss

Maxime Bargiel


This source code is released under a New BSD License. See the LICENSE file for full details.

About

Django iOS Notifications makes it easy to send push notifications to iOS devices

Resources

License

Stars

Watchers

Forks

Packages

No packages published