asanbarco / notifier
Requires
- php: >=7.1.0
- guzzlehttp/guzzle: ^6.3
- laravel/framework: ^5.0
- nesbot/carbon: ~1.0
- predis/predis: ^1.1
- dev-master
- 3.3.2
- 3.3.1
- 3.3.0
- 3.2.3
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.1
- 3.1.0
- 3.0.2
- 3.0.1
- 2.2.4
- 2.2.3
- 2.2.2
- 2.2.1
- 2.2.0
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0
- v1.2.1
- v1.2
- v1.1
- 1.0.13
- v1.0.12
- v1.0.11
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-Fix
- dev-fixbug
- dev-Add_Read_All
- dev-develop
- dev-Notification-Receiver
- dev-Refactor
This package is not auto-updated.
Last update: 2025-04-01 13:11:19 UTC
README
Notifier is a notifications service package which handles the process of sending various push, SMS, email, and other notifications types. It's based on Laravel 5.5 and send all your notifications asynchronously through Laravel Queue Manager on Redis broker.
Installation
Install the package via Packagist:
composer require asanbarco/notifier
Configuration
Publish the Notifier config file to your application and fill out configurations of the services you want to use:
php artisan vendor:publish
Run the migration command to create notifiers schemas:
php artisan migrate
Add the following environments to your application .env
in comma-separated order in order to set the priority of providers in notify job:
SMS_PROVIDERS_PRIORITY=sms0098,smsir
SMS0098_FROM=YOUR-NUMBER
SMS0098_USERNAME=YOUR-USERNAME
SMS0098_PASSWORD=YOUR-PASSWORD
SMSIR_URI=http://restfulsms.com/api/MessageSend
SMSIR_TOKEN=http://restfulsms.com/api/Token
SMSIR_API_KEY=YOUR-API-KEY
SMSIR_SECRET_KEY=YOUR-SECRET-KEY
SMSIR_LINE_NUMBER=YOUR-NUMBER
PUSH_PROVIDERS_PRIORITY=chabok,onesignal
CHABOK_URI_DEV=https://sandbox.push.adpdigital.com/api/
CHABOK_APP_ID_DEV=YOUR-ID
CHABOK_ACCESS_TOKEN_DEV=YOUR-TOKEN
CHABOK_URI=https://YOUR-ID.push.adpdigital.com/api/
CHABOK_APP_ID=YOUR-ID
CHABOK_ACCESS_TOKEN=YOUR-TOKEN
Remember to have the queue artisan command running on the server:
php artisan queue:work
Set your application .env
key QUEUE_DRIVER
to redis
to run jobs asynchronously
How to use
use the Asanbar\Notifier\Notifier
interface in your application, following methods are available:
sendPush
, sendSms
public function sendSMS(array $numbers, string $txt) { Notifier::onQueue('sms'); //if you do not set queue name it run send immediately and return result return Notifier::sendSMS($txt, $numbers); } public function sendPush(array $tokens, string $title, string $txt, ?array $data = []) { Notifier::onQueue('push'); return Notifier::sendPush($title, $txt, $tokens, $data); }
Set that a notification read by user
Notifier::read($id);
Read data
You can use counts of notfications base on status and type
Notifier::getCounts(); Notifier::getCounts($userId); // with user iddentifier (id or mobile ...)
get reads or unreads notifications
Notifier::getUnReads(); // or getReads() Notifier::getUnReads($identifier, $type, $limit); // all parameters are optional. If set limit it make paginator
Developer
refactor by: Mehrdad Dadkhah