chipolo / laravel-push-notifications
Send push notifications to Android and iOS
Installs: 1 920
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- ext-json: *
- google/apiclient: ^2.2.2
- laravel/framework: >=7.0
- stechstudio/backoff: ^1.0
- web-token/jwt-key-mgmt: ^2.0
- web-token/jwt-signature-algorithm-ecdsa: ^2.0
This package is auto-updated.
Last update: 2022-02-09 21:38:37 UTC
README
This is a helper that takes away the pain of setting specific calls for Android and iOS pushes. It works with Laravel 8.0.
Installation
You can install the package via composer:
composer require overthink/laravel-push-notifications
You can publish the config file with:
php artisan vendor:publish --provider="Overthink\Push\PushServiceProvider"
This is the contents of the published config file:
return [ 'general' => [ 'keep_alive' => true, ], 'ios' => [ 'certificate-path' => env('PUSH_IOS_AUTH_KEY_PATH'), 'secret' => env('PUSH_IOS_SECRET'), 'team-id' => env('PUSH_IOS_TEAM_ID'), ], 'android' => [ 'authorization-key' => env('PUSH_ANDROID_AUTH_KEY'), 'google_application_credentials' => env('GOOGLE_APPLICATION_CREDENTIALS'), 'project_id' => env('PUSH_ANDROID_PROJECT_ID'), ], ];
iOS
You have to setup certificate from Apple and link its path in PUSH_IOS_AUTH_KEY_PATH
. You can check the instructions here.
For the PUSH_IOS_SECRET
you can follow this stack overflow answer, you are looking for kid
value.
PUSH_IOS_TEAM_ID
can be found in Apple Developer account as a part of mobile developers data.
Android
PUSH_ANDROID_AUTH_KEY
is no longer used in this project, and will be removed in the next version.
GOOGLE_APPLICATION_CREDENTIALS
can be created if you follow instructions here.
PUSH_ANDROID_PROJECT_ID
is a unique identifier for your Firebase project, used in requests to the FCM v1 HTTP endpoint. This value is available in the Firebase console Settings pane.
Usage
We need a device object from where we get all the data that we use for sending a push. In most cases this can be Laravel model.
use Overthink\Push\Contracts\DeviceContract; class Device implements DeviceContract { public function getOperatingSystem(): string { return 'android'; // or 'ios' } public function getPushToken(): string { // Push token should be provided by mobile application return '8516cdd38e63170237df6e7eb6f22d875a5e07c10082...'; } public function isDevelopment(): bool { // With this value you can set development or production api when sending iOS push return false; } public function getTopic(): string { // Mobile applications unique identifier used when sending iOS push return 'com.example.test' } }
Here we combine all the parts to send push to either Android or iOS device.
$androidExamplePush = [ 'message' => [ 'android' => [ 'priority' => 'normal', 'data' => [ 'title' => 'Example Android title', 'body' => 'Example Android body', 'extra_data' => 'Some extra data that you want to pass to mobile app' ], ], ], ]; $iosExamplePush = [ 'aps' => [ 'sound' => 'short_sound.caf', // sound file needs to present in the app 'alert' => [ 'title' => 'Example iOS title', 'body' => 'Example iOS body' ], ], 'extra_data' => 'Some extra data that you want to pass to mobile app' ]; $pushPayload = (new PushPayload()) ->setAndroidPayload($androidExamplePush) ->setIosPayload($iosExamplePush); // We need collection of objects that implement Overthink\Push\Contracts\DeviceContract $devices = collect([new Device()]); $push = (new Overthink\Push\Push()) ->setPushPayload($pushPayload) ->setDevices($devices) ->send();
Credits
License
The MIT License (MIT). Please see License File for more information.