2017 © Pedro Peláez
 

yii2-extension yii2-apnsgcm-through-rabbitmq

yii2 APNs-GCM through RabbitMQ extension

image

gbksoft/yii2-apnsgcm-through-rabbitmq

yii2 APNs-GCM through RabbitMQ extension

  • Friday, January 8, 2016
  • by gbksoft
  • Repository
  • 3 Watchers
  • 0 Stars
  • 127 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 7 Versions
  • 0 % Grown

The README.md

yii2 APNs-Gcm through RabbitMQ

yii2 APNs-Gcm through RabbitMQ extension, (*1)

Installation

The preferred way to install this extension is through composer., (*2)

Either run, (*3)

php composer.phar require --prefer-dist gbksoft/yii2-apnsgcm-through-rabbitmq "*"

or add, (*4)

"gbksoft/yii2-apnsgcm-through-rabbitmq": "*"

to the require section of your composer.json file., (*5)

Usage

First of all, you need to configure the following extensions to work with RebbitMQ: - https://github.com/webtoucher/yii2-amqp, (*6)

in your main.php your configuration would look like this, (*7)

'components' => [
    'apns' => [
        'class' => 'gbksoft\apnsGcm\Apns',
        'environment' => \gbksoft\apnsGcm\Apns::ENVIRONMENT_SANDBOX,
        'pemFile' => dirname(__FILE__).'/apnssert/apns-dev.pem',
        // 'retryTimes' => 3,
        'options' => [
            'sendRetryTimes' => 5
        ]
    ],
    'gcm' => [
        'class' => 'gbksoft\apnsGcm\Gcm',
        'apiKey' => 'your_api_key',
    ],
    // using both gcm and apns, make sure you have 'gcm' and 'apns' in your component
    'apnsGcm' => [
        'class' => 'gbksoft\apnsGcm\ApnsGcm',
        // custom name for the component, by default we will use 'gcm' and 'apns'
        //'gcm' => 'gcm',
        //'apns' => 'apns',
    ],
]

Online Tester

Please visit the link for online tester http://apns-gcm.bryantan.info, (*8)

Usage

Usage using APNS only, (*9)

/* @var $apnsGcm \gbksoft\apnsGcm\Apns */
$apns = Yii::$app->apns;
$apns->send($push_tokens, $message,
  [
    'customProperty_1' => 'Hello',
    'customProperty_2' => 'World'
  ],
  [
    'sound' => 'default',
    'badge' => 1
  ]
);

Usage using GCM only, (*10)

/* @var $apnsGcm \gbksoft\apnsGcm\Gcm */
$gcm = Yii::$app->gcm;
$gcm->send($push_tokens, $message,
  [
    'customerProperty' => 1,
  ],
  [
    'timeToLive' => 3
  ],
);

Usage using APNS and GCM Together

Send using Google Cloud Messaging, (*11)

/* @var $apnsGcm \gbksoft\apnsGcm\ApnsGcm */
$apnsGcm = Yii::$app->apnsGcm;
$apnsGcm->send(\gbksoft\apnsGcm\ApnsGcm::TYPE_GCM, $push_tokens, $message,
  [
    'customerProperty' => 1
  ],
  [
    'timeToLive' => 3
  ],
)

Send using Apple push notification service, (*12)

/* @var $apnsGcm \gbksoft\apnsGcm\ApnsGcm */
$apnsGcm = Yii::$app->apnsGcm;
$apnsGcm->send(\bryglen\apnsgcm\ApnsGcm::TYPE_APNS, $push_tokens, $message,
  [
    'customerProperty' => 1
  ],
  [
    'sound' => 'default',
    'badge' => 1
  ],
)

Add to RebbitMQ queue a push notification, (*13)

/* @var $apnsGcm \gbksoft\apnsGcm\ApnsGcm */
$apnsGcm = Yii::$app->apnsGcm;
$apnsGcm->addToQueue(\gbksoft\apnsGcm\ApnsGcm::TYPE_APNS, $push_tokens, $message,
  [
    'customerProperty' => 1
  ],
  [
    'sound' => 'default',
    'badge' => 1
  ],
)

You need to add console command to config like this, (*14)

'controllerMap' => [
    'apnsGcm' => [
        'class' => 'gbksoft\apnsGcm\console\ApnsGcmController',
    ],
],

This extension is fork of https://github.com/bryglen/yii2-apns-gcm, (*15)

The Versions

08/01 2016

dev-master

9999999-dev

yii2 APNs-GCM through RabbitMQ extension

  Sources   Download

GPL-3.0+

The Requires

 

by Avatar gbksoft

yii2 gcm apns gbksoft

08/01 2016

v1.0.5

1.0.5.0

yii2 APNs-GCM through RabbitMQ extension

  Sources   Download

GPL-3.0+

The Requires

 

by Avatar gbksoft

yii2 gcm apns gbksoft

09/10 2015

v1.0.4

1.0.4.0

yii2 APNs-GCM through RabbitMQ extension

  Sources   Download

GPL-3.0+

The Requires

 

by Avatar gbksoft

yii2 gcm apns gbksoft

09/10 2015

v1.0.3

1.0.3.0

yii2 APNs-GCM through RabbitMQ extension

  Sources   Download

GPL-3.0+

The Requires

 

by Avatar gbksoft

yii2 gcm apns gbksoft

09/10 2015

v1.0.2

1.0.2.0

yii2 APNs-GCM through RabbitMQ extension

  Sources   Download

GPL-3.0+

The Requires

 

by Avatar gbksoft

yii2 gcm apns gbksoft

09/10 2015

v1.0.1

1.0.1.0

yii2 APNs-GCM through RabbitMQ extension

  Sources   Download

GPL-3.0+

The Requires

 

by Avatar gbksoft

yii2 gcm apns gbksoft

09/10 2015

v1.0.0

1.0.0.0

yii2 APNs-GCM through RabbitMQ extension

  Sources   Download

GPL-3.0+

The Requires

 

by Avatar gbksoft

yii2 gcm apns gbksoft