Giter Club home page Giter Club logo

awspushbundle's Introduction

Aws Push Bundle

A convenient bundle for registering devices and then pushing to them using amazons SNS service.

Latest Stable Version License Build Status SensioLabsInsight

Install

Composer

php composer.phar require mcfedr/awspushbundle

AppKernel

Include the bundle in your AppKernel

public function registerBundles()
{
    $bundles = array(
        ...
        new Mcfedr\AwsPushBundle\McfedrAwsPushBundle()

Config

Put something like this in your config. The arns in the platforms section should be the preconfigured app arns in SNS.

mcfedr_aws_push:
    platforms:
        ios: 'arn:aws:sns:....'
        android: 'arn:aws:sns:....'
    topic_arn: 'arn:aws:sns:...'
    aws:
        key: 'my key'
        secret: 'my secret'
        region: 'my region'

Usage

Basically have a look at how the ApiController does its stuff

  1. Register the device token

     $arn = $this->get('mcfedr_aws_push.devices')->registerDevice($token, $platform)
    
  2. Send message to one device

     $this->get('mcfedr_aws_push.messages')->send($message, $arn)
    
  3. Send message to all devices

     $this->get('mcfedr_aws_push.messages')->broadcast($message)
    

Alternative usage, using topics to send messages to lots of devices

  1. Register the device token

     $arn = $this->get('mcfedr_aws_push.devices')->registerDevice($token, $platform)
    
  2. Register the device on the topic

     $this->get('mcfedr_aws_push.topics')->registerDeviceOnTopic($arn, $topicArn)
    
  3. Send messages

     $this->get('mcfedr_aws_push.topics')->broadcast($message, $topicArn)
    

If you later add a topic_name to the configuration you can run the mcfedr:aws:subscribe command to add your existing devices to the topic.

Text in notifications

For GCM and ADM there is no 'standard' key for text data as there is for Apple pushes, so this bundle send text in a key called 'message'.

If localized text is sent the keys are

  • message-loc-key
  • message-loc-args

'Complicated' data on ADM

ADM only allows strings as values in the push data. This bundle lets you send 'complicated' values and will automatically json encode these values for ADM. When it does this the key has _json added so that its easy to handle this on the app side.

Example

Sending:

$message = new Message();
$message->setCustom(['simple' => 'Hello', 'complicated' => ['inner' => 'value']]);

ADM received data:

{"data": {"simple": "Hello", "complicated_json": "{\"inner\":\"value\"}"}}

To handle this data you should detect keys that end with _json and decode the values

The applies to message-loc-args as well, they will always come as message-loc-args_json via ADM

Commands

There are some commands to help manage the devices

  1. mcfedr:aws:enable

    This will reenable all the devices

  2. mcfedr:aws:remove

    This will remove any disabled devices. Its a good idea to do something like this regularly to remove old devices

  3. mcfedr:aws:subscribe

    This will subscribe all devices to a topic, useful when introducing a topic

Api Controller

There is a controller included which makes basic usage of the bundle very easy. You may or may not want to use it, you might find it most useful as an example.

Dont forget to install mcfedr/json-form and sensio/framework-extra-bundle if you want to use this

Routing

If you want to use the default controller you need to setup the routing

mcfedr_aws_push:
    resource: "@McfedrAwsPushBundle/Controller/"
    type:     annotation
    prefix:   /

Usage

The controller provides two urls, both expect a JSON POST body

  1. The first is a way to register a device

     POST /devices
     {
         "device": {
             "deviceId": "a push token",
             "platform": "the platform name in your config file"
         }
     }
    
  2. The second is a way to send a broadcast message. If you are using a topic for all devices then don't send the platform parameter.

     POST /broadcast
     {
         "broadcast": {
             "platform": "ios"
             "message": {
                 "text": "The plain text message to send",
                 "badge": 1
             }
         }
     }
    

API documentation

You can see the full API documentation on github pages.

awspushbundle's People

Contributors

mcfedr avatar ahonymous avatar ayoze avatar avtehnik avatar rmbl avatar etheriq 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.