whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
laravel-notification-channels
/
onesignal
/
src
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/laravel-notification-channels/onesignal/src/OneSignalChannel.php
<?php namespace NotificationChannels\OneSignal; use Berkayk\OneSignal\OneSignalClient; use Illuminate\Notifications\Notification; use NotificationChannels\OneSignal\Exceptions\CouldNotSendNotification; use Psr\Http\Message\ResponseInterface; class OneSignalChannel { /** @var OneSignalClient */ protected $oneSignal; public function __construct(OneSignalClient $oneSignal) { $this->oneSignal = $oneSignal; } /** * Send the given notification. * * @param mixed $notifiable * @param \Illuminate\Notifications\Notification $notification * @return \Psr\Http\Message\ResponseInterface * * @throws \NotificationChannels\OneSignal\Exceptions\CouldNotSendNotification */ public function send($notifiable, Notification $notification) { if (! $userIds = $notifiable->routeNotificationFor('OneSignal', $notification)) { return; } /** @var ResponseInterface $response */ $response = $this->oneSignal->sendNotificationCustom( $this->payload($notifiable, $notification, $userIds) ); if ($response->getStatusCode() !== 200) { throw CouldNotSendNotification::serviceRespondedWithAnError($response); } return $response; } /** * @param mixed $notifiable * @param \Illuminate\Notifications\Notification $notification * @param mixed $targeting * @return array */ protected function payload($notifiable, $notification, $userIds) { return OneSignalPayloadFactory::make($notifiable, $notification, $userIds); } }
Copyright ©2021 || Defacer Indonesia