This package makes it easy to send Pusher push notifications with Laravel (should work with other non-laravel PHP projects). It's based off this package by Mohamed Said.
You can install the package via composer:
composer require neo/pusher-beams
...
...
Update your .env
file with the following keys:
PUSHER_BEAMS_SECRET_KEY="PUSHER_BEAMS_SECRET_KEY"
PUSHER_BEAMS_INSTANCE_ID="PUSHER_BEAMS_INSTANCE_ID"
💡 You need to replace the PUSHER_BEAMS_SECRET_KEY and PUSHER_BEAMS_INSTANCE_ID keys with the keys gotten from your Pusher dashboard.
Open the broadcasting.php file in the config directory and add the following keys to the pusher connection array:
'connections' => [
'pusher' => [
// [...]
'beams' => [
'secret_key' => env('PUSHER_BEAMS_SECRET_KEY'),
'instance_id' => env('PUSHER_BEAMS_INSTANCE_ID'),
],
// [...]
],
],
Next, create a new notification class where we will add our push notification. In your terminal run the command below to create the class:
$ php artisan make:notification UserCommented
This will create a new UserCommented
class in the app/Notifications
directory. Open the file and you can do something similar to this sample class:
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Neo\PusherBeams\PusherBeams;
use Neo\PusherBeams\PusherMessage;
use App\User;
use App\PhotoComment;
use App\Photo;
class UserCommented extends Notification
{
use Queueable;
public $user;
public $comment;
public $photo;
public function __construct(User $user, Photo $photo, PhotoComment $comment)
{
$this->user = $user;
$this->comment = $comment;
$this->photo = $photo;
}
public function via($notifiable)
{
return [PusherBeams::class];
}
public function toPushNotification($notifiable)
{
return PusherMessage::create()
->iOS()
->sound('success')
->title('New Comment')
->body("{$this->user->name} commented on your photo: {$this->comment->comment}")
->setOption('apns.aps.mutable-content', 1)
->setOption('apns.data.attachment-url', $this->photo->image);
}
public function pushNotificationInterest()
{
$id = $this->photo->id;
$audience = strtolower($this->user->settings->notification_comments);
return "photo_{$id}-comment_{$audience}";
}
}
In the class above we are extending a Notification class and we have implemented the toPushNotification method, which will be used to send the push notification when required. In the via method, we specify what channels we want to send the notification through and in the pushNotificationInterest we specify the interest we want to publish the push notification to.
...
...
Please see CHANGELOG for more information what has changed recently.
$ composer test
If you discover any security related issues, please email neo@creativitykills.co instead of using the issue tracker.
Please see CONTRIBUTING for details.
- Neo Ighodaro
- Mohamed Said
- All Contributors
The MIT License (MIT). Please see License File for more information.