|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace App\Events; |
|
4
|
|
|
|
|
5
|
|
|
use App\Contracts\Event\CanSendTelegramNotification; |
|
6
|
|
|
use App\Models\Contracts\HasTelegramChatId; |
|
7
|
|
|
use App\Models\Order; |
|
8
|
|
|
use App\Support\Events\HandleRecipient; |
|
9
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets; |
|
10
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue; |
|
11
|
|
|
use Illuminate\Foundation\Events\Dispatchable; |
|
12
|
|
|
use Illuminate\Queue\InteractsWithQueue; |
|
13
|
|
|
use Illuminate\Queue\SerializesModels; |
|
14
|
|
|
|
|
15
|
|
|
class OrderCreated implements CanSendTelegramNotification, ShouldQueue |
|
16
|
|
|
{ |
|
17
|
|
|
use Dispatchable, InteractsWithSockets, SerializesModels, InteractsWithQueue, |
|
|
|
|
|
|
18
|
|
|
HandleRecipient; |
|
19
|
|
|
|
|
20
|
|
|
/** |
|
21
|
|
|
* The order instance data. |
|
22
|
|
|
* |
|
23
|
|
|
* @var \App\Models\Order |
|
24
|
|
|
*/ |
|
25
|
|
|
protected Order $order; |
|
26
|
|
|
|
|
27
|
|
|
/** |
|
28
|
|
|
* The recipient data that will receive the notification. |
|
29
|
|
|
* |
|
30
|
|
|
* @var \App\Models\Contracts\HasTelegramChatId |
|
31
|
|
|
*/ |
|
32
|
|
|
protected HasTelegramChatId $recipient; |
|
33
|
|
|
|
|
34
|
|
|
/** |
|
35
|
|
|
* Create a new event instance. |
|
36
|
|
|
* |
|
37
|
|
|
* @param \App\Models\Order $order |
|
38
|
|
|
* @param \App\Models\Contracts\HasTelegramChatId|null $recipient |
|
39
|
|
|
* @return void |
|
40
|
|
|
*/ |
|
41
|
|
|
public function __construct(Order $order, HasTelegramChatId $recipient = null) |
|
42
|
|
|
{ |
|
43
|
|
|
$this->order = $order; |
|
44
|
|
|
$this->recipient = $this->findRecipientFromUser($recipient); |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
/** |
|
48
|
|
|
* Return telegram chat id value. |
|
49
|
|
|
* |
|
50
|
|
|
* @return string|array |
|
51
|
|
|
*/ |
|
52
|
|
|
public function getTelegramChatId() |
|
53
|
|
|
{ |
|
54
|
|
|
return $this->recipient->getTelegramChatId(); |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
|
/** |
|
58
|
|
|
* Return telegram chat message content. |
|
59
|
|
|
* |
|
60
|
|
|
* @return string |
|
61
|
|
|
*/ |
|
62
|
|
|
public function getTelegramMessage(): string |
|
63
|
|
|
{ |
|
64
|
|
|
return view('notifications.order-created', [ |
|
|
|
|
|
|
65
|
|
|
'order' => $this->order, |
|
66
|
|
|
])->render(); |
|
67
|
|
|
} |
|
68
|
|
|
} |
|
69
|
|
|
|