2017 © Pedro PelĂĄez
 

symfony-bundle push-notifications

Push notifications/messages for mobile devices

image

clevis/push-notifications

Push notifications/messages for mobile devices

  • Sunday, August 24, 2014
  • by Mikulas
  • Repository
  • 10 Watchers
  • 3 Stars
  • 22 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 146 Forks
  • 1 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Clevis/PushNotifications

A bundle to allow sending of push notifications to mobile devices. Currently supports Android (C2DM, GCM), Blackberry and iOS devices., (*1)

Installation

To use this bundle in your Nette project add the following to your composer.json:, (*2)

{
    "require": {
        "clevis/push-notifications": "~0.1-beta"
    }
}

and enable it in your config:, (*3)

extensions:
    pushNotifications: Clevis\PushNotifications\DI\PushNotificationsExtension

pushNotifications:
    android:
        c2dm:
            username:
            password:
            source:
        gcm:
            apiKey:
    apple:
        sandbox: # boolean
        pem: # path to certificate
        passphrase:

NOTE: If you are using Windows, you may need to set the Android GCM use_multi_curl flag to false for GCM messages to be sent correctly., (*4)

Usage

A little example of how to push your first message to an iOS device, we'll assume that you've set up the configuration correctly:, (*5)

use Clevis\PushNotifications\Message\iOSMessage;
use Clevis\PushNotifications\Notifications;

class Service
{

    /**
     * @var Notifications
     */
    protected $sender;

    public function __construct(Notifications $sender)
    {
        $this->sender = $sender;
    }

    public function sendPushNotificationExample()
    {
        $message = new iOSMessage();
        $message->setMessage('Oh my! A push notification!');
        $message->setDeviceIdentifier('test012fasdf482asdfd63f6d7bc6d4293aedd5fb448fe505eb4asdfef8595a7');

        $this->sender->send($message);
    }
}

The send method will detect the type of message so if you'll pass it an AndroidMessage it will automatically send it through the C2DM/GCM servers, and likewise for Mac and Blackberry., (*6)

Android messages

Since both C2DM and GCM are still available, the AndroidMessage class has a small flag on it to toggle which service to send it to. Use as follows:, (*7)

use Clevis\PushNotificationsBundle\Message\AndroidMessage;

$message = new AndroidMessage();
$message->setGCM(true);

to send as a GCM message rather than C2DM., (*8)

iOS Feedback service

The Apple Push Notification service also exposes a Feedback service where you can get information about failed push notifications - see here for further details., (*9)

This service is available within the bundle. The following code demonstrates how you can retrieve data from the service:, (*10)

$feedbackService = $container->get("rms_push_notifications.ios.feedback");
$uuids = $feedbackService->getDeviceUUIDs();

Here, $uuids contains an array of Feedback objects, with timestamp, token length and the device UUID all populated., (*11)

Apple recommend you poll this service daily., (*12)

The Versions

24/08 2014

dev-master

9999999-dev https://github.com/clevis/PushNotifications

Push notifications/messages for mobile devices

  Sources   Download

MIT

The Requires

 

by Mikuláơ Dítě

extension notification ios push gcm apns c2dm blackberry windowsphone nete

24/08 2014

v1.0.1

1.0.1.0 https://github.com/clevis/PushNotifications

Push notifications/messages for mobile devices

  Sources   Download

MIT

The Requires

 

by Mikuláơ Dítě

extension notification ios push gcm apns c2dm blackberry windowsphone nete

24/08 2014

v1.0

1.0.0.0 https://github.com/clevis/PushNotifications

Push notifications/messages for mobile devices

  Sources   Download

MIT

The Requires

 

by Mikuláơ Dítě

extension notification ios push gcm apns c2dm blackberry windowsphone nete

18/08 2014

v0.1-beta

0.1.0.0-beta https://github.com/clevis/PushNotifications

Push notifications/messages for mobile devices

  Sources   Download

MIT

The Requires

 

by Mikuláơ Dítě

extension notification ios push gcm apns c2dm blackberry windowsphone nete