-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathTelegramChannel.php
75 lines (60 loc) · 2.03 KB
/
TelegramChannel.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
namespace NotificationChannels\Telegram;
use GuzzleHttp\Psr7\Response;
use Illuminate\Contracts\Events\Dispatcher;
use Illuminate\Notifications\Events\NotificationFailed;
use Illuminate\Notifications\Notification;
use NotificationChannels\Telegram\Exceptions\CouldNotSendNotification;
/**
* Class TelegramChannel.
*/
class TelegramChannel
{
public function __construct(
private readonly Dispatcher $dispatcher
) {}
/**
* Send the given notification.
*
*
* @throws CouldNotSendNotification|\JsonException
*/
public function send(mixed $notifiable, Notification $notification): ?array
{
// @phpstan-ignore-next-line
$message = $notification->toTelegram($notifiable);
if (is_string($message)) {
$message = TelegramMessage::create($message);
}
if (! $message->canSend()) {
return null;
}
$to = $message->getPayloadValue('chat_id') ?:
($notifiable->routeNotificationFor('telegram', $notification) ?:
$notifiable->routeNotificationFor(self::class, $notification));
if (! $to) {
return null;
}
$message->to($to);
if ($message->hasToken()) {
$message->telegram->setToken($message->token);
}
try {
$response = $message->send();
} catch (CouldNotSendNotification $exception) {
$data = [
'to' => $message->getPayloadValue('chat_id'),
'request' => $message->toArray(),
'exception' => $exception,
];
if ($message->exceptionHandler) {
($message->exceptionHandler)($data);
}
$this->dispatcher->dispatch(new NotificationFailed($notifiable, $notification, 'telegram', $data));
throw $exception;
}
return $response instanceof Response
? json_decode($response->getBody()->getContents(), true, 512, JSON_THROW_ON_ERROR)
: $response;
}
}