Git Product home page Git Product logo

nodejs-apns-secure's Introduction

nodejs-apns-secure

New reliable nodejs module for sending notifications via apns. Main advantages :

  • obtaining quick delivery reports after last notification sent
  • a more streamlined sending process plus the ability to send bulk messaging
  • sending robustness
  • simplicity of use

Because of current modules that are slow and unreliable I needed to make a new one. After testing and putting this module in production I wanted to share it.

Download

From github or from npm : npm install nodejs-apns-secure

Using the module is very simple:

1) Create new object with certificates (mandatory) and passphrase (optionally)

var certData = "-----BEGIN CERTIFICATE...END CERTIFICATE-----";
var keyData =  "-----BEGIN RSAPRIVATE KEY...END RSA PRIVATE KEY-----";  
var objectCert = {
    certData : certData,
    keyData : keyData,
    passphrase : "passphrase"
};   
var sender = new (require('./index')).SenderApns(objectCert, true);

Enter certificate in “certData”, private key in “keyData” and “passphrase” if it was set while creating certificates. If using development mode use “false” as second argument.

2) Create notifications and tokens

var apnsMessage1 = {
         expiry : 0,
         _id : "1asd1231"
};
var apnsMessage2 = {
         expiry : 0,
         _id : "1asd1231"
};
apnsMessage1.payload = apnsMessage2.payload = {
         'aps': {"badge" : "123", "alert" : "Test it bulk", "sound" : "default"}
};
var tokens = ["32 length token", "32 length token"];
var apnsMessages = [apnsMessage1, apnsMessage1];

3) Send notifications and receive result status report

sender.sendThroughApns(apnsMessages, tokens,
         function Success (resultStatusArray) { console.log(resultStatusArray); },
         function Failed  (error) { console.log(error); }
);

Enter the tokens in the tokens array. Messages for sending are a JSON array containing:

* _id -> notification id
* expiry -> set 0 to disable or UNIX epoch date expressed in seconds
* payload -> data for sending

iOS phone will use these fields from payload:

* aps.alert -> notification text; if not set the notification will not be shown
* aps.sound -> prior to use, set to 'default'
* aps.badge -> number

Result status report

[ { token: '1.token',
    status: 0,
    _id: '1asd1231' },   
  { token: '2.token',
    status: 8,
    _id: '1asd1231' }]

The status report contains:

* _id -> notification id
* token
* status -> 0 for success, 7 for too long payload, 8 for invalid token, 9 for invalid notification

The magic

This module doesn't use timeouts or q or anything similar. It uses the apns error report for finding the last notification sent and thus confirming the reception of all prior notifications. It also filters all notifications and tokens prior to sending, speeding up the sending processs.

Feedback

When having a large list of tokens that aren't filtered (with many invalid ones that will result in delay when sending), feedback can help filtering valid tokens from database.

var certData = "-----BEGIN CERTIFICATE...END CERTIFICATE-----";
var keyData =  "-----BEGIN RSAPRIVATE KEY...END RSA PRIVATE KEY-----";
var objectCert = {
    certData : certData,
    keyData : keyData
};
var feedback = new (require('./feedback')).FeedBackApns(objectCert, true);
feedback.checkTokensWithFeedback(function (resultStatusArray) {
    console.log(resultStatusArray);
}, function (error) {
    console.log(error);
});

This function will return an array of objects :

[ { token: '1.token',
    timeStamp: 1231232},
  { token: '2.token',
    timeStamp: 1231232}]

TimeStamp is the date when the application had unregistered in UNIX epoch date format.

nodejs-apns-secure's People

Contributors

lblazecki avatar jblebrun avatar

Watchers

edwardt 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.