File tree 3 files changed +21
-5
lines changed
3 files changed +21
-5
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ private function notificationToTelegram($exception)
39
39
// Send notification to Telegram
40
40
try {
41
41
TelegramMessage::create ()
42
- ->toNotGiven ()
43
42
->to (config ('services.telegram-bot-api.chat_id ' ))
44
43
->line ('*⚠️ Ой-ой-ой!* Возникла неприятность в нашем коде. Пользователь столкнулся с неожиданной ошибкой на сайте. ' )
45
44
->line ('` ' )
Original file line number Diff line number Diff line change 11
11
use Illuminate \Database \Eloquent \Model ;
12
12
use Illuminate \Support \Str ;
13
13
use Laravel \Scout \Searchable ;
14
+ use NotificationChannels \Telegram \TelegramMessage ;
14
15
use Orchid \Filters \Filterable ;
15
16
use Orchid \Filters \Types \Like ;
16
17
use Orchid \Metrics \Chartable ;
@@ -85,6 +86,22 @@ public static function boot()
85
86
86
87
$ post ->slug = $ slug ;
87
88
});
89
+
90
+ static ::created (function (Post $ post ){
91
+ try {
92
+ if (config ('app.env ' ) == 'local ' ) {
93
+ return ;
94
+ }
95
+
96
+ TelegramMessage::create ()
97
+ ->to (config ('services.telegram-bot-api.channel_id ' ))
98
+ ->escapedLine ($ post ->title )
99
+ ->content (route ('post.show ' , $ post ))
100
+ ->send ();
101
+ } catch (\Throwable $ e ) {
102
+ report ($ e );
103
+ }
104
+ });
88
105
}
89
106
90
107
/**
Original file line number Diff line number Diff line change 44
44
],
45
45
46
46
'telegram-bot-api ' => [
47
- 'bot_name ' => env ('TELEGRAM_BOT_NAME ' ),
48
- 'token ' => env ('TELEGRAM_BOT_TOKEN ' ),
49
- 'chat_id ' => env ('TELEGRAM_CHAT_ID ' ),
50
- 'report_chat_id ' => env ('TELEGRAM_REPORT_CHAT_ID ' ),
47
+ 'bot_name ' => env ('TELEGRAM_BOT_NAME ' ),
48
+ 'token ' => env ('TELEGRAM_BOT_TOKEN ' ),
49
+ 'chat_id ' => env ('TELEGRAM_CHAT_ID ' ),
50
+ 'channel_id ' => env ('TELEGRAM_CHANNEL_ID ' ),
51
51
],
52
52
];
You can’t perform that action at this time.
0 commit comments