cyaoz94 / laravel-huawei-push
Huawei Push For Laravel Notifications
3.0
2021-10-20 10:00 UTC
Requires
- php: >=5.6.4
- illuminate/cache: ^5.3|^6.0|^7|^8
- illuminate/contracts: ^5.3|^6.0|^7|^8
- illuminate/notifications: ^5.3|^6.0|^7|^8
- illuminate/support: ^5.3|^6.0|^7|^8
- opis/closure: ^3.1
This package is auto-updated.
Last update: 2024-11-20 17:10:27 UTC
README
Installing
# composer.json
"minimum-stability": "dev",
"prefer-stable": true,
$ composer require "cyaoz94/laravel-huawei-push" -vvv
Config
# optional if >= 5.5 # config/app.php <?php return [ 'providers' => [ Cyaoz94\LaravelHuaweiPush\ServiceProvider::class, ], ];
# config/services.php [ 'huawei_push' => [ 'appid' => '1234567890123456', 'secret' => 'abcdefghijklmn==', 'bundles' => [ // 多包名 'com.app.bundle_id' => [ 'appid' => '1234567890123456', 'secret' => 'abcdefghijklmn==', ], ], ], ];
Usage
<?php namespace App; use Illuminate\Database\Eloquent\Model; use Illuminate\Notifications\Notifiable; class User extends Model { use Notifiable; /** * 推送路由 */ public function routeNotificationForHuaweiPush() { return $this->huawei_push_token; } /** * 如果不同用户所属的APP包名可能不同,请添加此方法 */ public function getAppPackage() { return 'com.app.bundle_id'; } }
<?php use Illuminate\Support\Facades\Notification; use Cyaoz94\LaravelHuaweiPush\HuaweiNotification; use Cyaoz94\LaravelHuaweiPush\HuaweiMessage; $msg = (new HuaweiNotification) ->title('通知标题') ->body('通知内容') ->setHandler(function($msg,$notifiable,$cfg,$type = null) { if($msg instanceof HuaweiMessage) { $msg->ttl(86400); $msg->channel_id(8888); } return $msg; }); $user->notify($msg); Notification::send($users,$msg);
License
MIT