1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace NotificationChannels\Apn; |
4
|
|
|
|
5
|
|
|
use Illuminate\Contracts\Events\Dispatcher; |
6
|
|
|
use Illuminate\Notifications\Events\NotificationFailed; |
7
|
|
|
use Illuminate\Notifications\Notification; |
8
|
|
|
use Pushok\Client; |
9
|
|
|
use Pushok\Response; |
10
|
|
|
|
11
|
|
|
class ApnChannel |
12
|
|
|
{ |
13
|
|
|
/** |
14
|
|
|
* The sandbox environment identifier. |
15
|
|
|
* |
16
|
|
|
* @var int |
17
|
|
|
*/ |
18
|
|
|
const SANDBOX = 0; |
19
|
|
|
|
20
|
|
|
/** |
21
|
|
|
* The production environment identifier. |
22
|
|
|
* |
23
|
|
|
* @var int |
24
|
|
|
*/ |
25
|
|
|
const PRODUCTION = 1; |
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* The APNS client. |
29
|
|
|
* |
30
|
|
|
* @var \Pushok\Client |
31
|
|
|
*/ |
32
|
|
|
protected $client; |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* The event dispatcher. |
36
|
|
|
* |
37
|
|
|
* @var \Illuminate\Contracts\Events\Dispatcher |
38
|
|
|
*/ |
39
|
|
|
protected $events; |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* Create a new channel instance. |
43
|
|
|
* |
44
|
|
|
* @param \Pushok\Client $client |
45
|
|
|
* @param \Illuminate\Contracts\Events\Dispatcher $events |
46
|
|
|
*/ |
47
|
1 |
|
public function __construct(Client $client, Dispatcher $events) |
48
|
|
|
{ |
49
|
1 |
|
$this->client = $client; |
50
|
1 |
|
$this->events = $events; |
51
|
1 |
|
} |
52
|
|
|
|
53
|
|
|
/** |
54
|
|
|
* Send the notification to Apple Push Notification Service. |
55
|
|
|
* |
56
|
|
|
* @param mixed $notifiable |
57
|
|
|
* @param \Illuminate\Notifications\Notification $notification |
58
|
|
|
* @return array|void |
59
|
|
|
*/ |
60
|
1 |
|
public function send($notifiable, Notification $notification) |
61
|
|
|
{ |
62
|
1 |
|
$tokens = (array) $notifiable->routeNotificationFor('apn', $notification); |
63
|
|
|
|
64
|
1 |
|
if (empty($tokens)) { |
65
|
|
|
return; |
66
|
|
|
} |
67
|
|
|
|
68
|
1 |
|
$responses = $this->sendNotifications( |
69
|
1 |
|
$message->client ?? $this->client, |
70
|
1 |
|
$notification->toApn($notifiable), |
|
|
|
|
71
|
|
|
$tokens |
72
|
|
|
); |
73
|
|
|
|
74
|
1 |
|
$this->dispatchEvents($responses); |
75
|
|
|
|
76
|
1 |
|
return $responses; |
77
|
|
|
} |
78
|
|
|
|
79
|
|
|
/** |
80
|
|
|
* Send the message to the given tokens through the given client. |
81
|
|
|
* |
82
|
|
|
* @param \Pushok\Client $client |
83
|
|
|
* @param \NotificationChannels\Apn\ApnMessage $message |
84
|
|
|
* @param array $tokens |
85
|
|
|
* @return array |
86
|
|
|
*/ |
87
|
1 |
|
protected function sendNotifications(Client $client, ApnMessage $message, array $tokens) |
88
|
|
|
{ |
89
|
1 |
|
foreach ($tokens as $token) { |
90
|
1 |
|
$client->addNotification((new ApnAdapter)->adapt($message, $token)); |
91
|
|
|
} |
92
|
|
|
|
93
|
1 |
|
return $client->push(); |
94
|
|
|
} |
95
|
|
|
|
96
|
|
|
/** |
97
|
|
|
* Dispatch failed events for notifications that weren't delivered. |
98
|
|
|
* |
99
|
|
|
* @param array $responses |
100
|
|
|
* @return void |
101
|
|
|
*/ |
102
|
1 |
|
protected function dispatchEvents(array $responses) |
103
|
|
|
{ |
104
|
1 |
|
foreach ($responses as $response) { |
105
|
|
|
if ($response->getStatusCode() === Response::APNS_SUCCESS) { |
106
|
|
|
continue; |
107
|
|
|
} |
108
|
|
|
|
109
|
|
|
$event = new NotificationFailed($notifiable, $notification, $this, [ |
|
|
|
|
110
|
|
|
'id' => $response->getApnsId(), |
111
|
|
|
'token' => $response->getDeviceToken(), |
112
|
|
|
'error' => $response->getErrorReason(), |
113
|
|
|
]); |
114
|
|
|
|
115
|
|
|
$this->events->dispatch($event); |
116
|
|
|
} |
117
|
1 |
|
} |
118
|
|
|
} |
119
|
|
|
|
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.