1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace NotificationChannels\PusherPushNotifications; |
4
|
|
|
|
5
|
|
|
use NotificationChannels\PusherPushNotifications\Exceptions\CouldNotSendNotification; |
6
|
|
|
use NotificationChannels\PusherPushNotifications\Events\MessageWasSent; |
7
|
|
|
use NotificationChannels\PusherPushNotifications\Events\SendingMessage; |
8
|
|
|
use Illuminate\Notifications\Notification; |
9
|
|
|
use Pusher; |
10
|
|
|
|
11
|
|
|
class Channel |
12
|
|
|
{ |
13
|
|
|
/** |
14
|
|
|
* @var Pusher |
15
|
|
|
*/ |
16
|
|
|
protected $pusher; |
17
|
|
|
|
18
|
|
|
public function __construct($pusher) |
19
|
|
|
{ |
20
|
|
|
$this->pusher = $pusher; |
21
|
|
|
} |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* Send the given notification. |
25
|
|
|
* |
26
|
|
|
* @param mixed $notifiable |
27
|
|
|
* @param \Illuminate\Notifications\Notification $notification |
28
|
|
|
* |
29
|
|
|
* @return void |
30
|
|
|
* @throws \NotificationChannels\PusherPushNotifications\Exceptions\CouldNotSendNotification |
31
|
|
|
*/ |
32
|
|
|
public function send($notifiable, Notification $notification) |
33
|
|
|
{ |
34
|
|
|
$interest = $notifiable->routeNotificationFor('PusherPushNotifications') |
35
|
|
|
?: $this->interestName($notifiable); |
36
|
|
|
|
37
|
|
|
if (! $this->shouldSendMessage($notifiable, $notification)) { |
38
|
|
|
return; |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
$response = $this->pusher->notify( |
42
|
|
|
$interest, |
43
|
|
|
$notification->toPushNotification($notifiable)->toArray(), |
44
|
|
|
true |
45
|
|
|
); |
46
|
|
|
|
47
|
|
|
if (! in_array($response['status'], [200, 202])) { |
48
|
|
|
throw CouldNotSendNotification::pusherRespondedWithAnError($response); |
|
|
|
|
49
|
|
|
} |
50
|
|
|
|
51
|
|
|
event(new MessageWasSent($notifiable, $notification)); |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
/** |
55
|
|
|
* Get the interest name for the notifiable. |
56
|
|
|
* |
57
|
|
|
* @param $notifiable |
58
|
|
|
* |
59
|
|
|
* @return string |
60
|
|
|
*/ |
61
|
|
|
protected function interestName($notifiable) |
62
|
|
|
{ |
63
|
|
|
$class = str_replace('\\', '.', get_class($notifiable)); |
64
|
|
|
|
65
|
|
|
return $class.'.'.$notifiable->getKey(); |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
/** |
69
|
|
|
* Check if we can send the notification. |
70
|
|
|
* |
71
|
|
|
* @return bool |
72
|
|
|
*/ |
73
|
|
|
private function shouldSendMessage($notifiable, $notification) |
74
|
|
|
{ |
75
|
|
|
return event(new SendingMessage($notifiable, $notification), [], true) !== false; |
76
|
|
|
} |
77
|
|
|
} |
78
|
|
|
|
If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:
If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.