mirror of
https://github.com/v2board/v2board.git
synced 2025-06-12 20:47:56 +08:00
update telegram
This commit is contained in:
50
app/Services/TelegramService.php
Normal file
50
app/Services/TelegramService.php
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
namespace App\Services;
|
||||
|
||||
use \Curl\Curl;
|
||||
|
||||
class TelegramService {
|
||||
protected $api;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->api = 'https://api.telegram.org/bot' . config('v2board.telegram_bot_token') . '/';
|
||||
}
|
||||
|
||||
public function sendMessage(int $chatId, string $text, string $parseMode = '')
|
||||
{
|
||||
$this->request('sendMessage', [
|
||||
'chat_id' => $chatId,
|
||||
'text' => $text,
|
||||
'parse_mode' => $parseMode
|
||||
]);
|
||||
}
|
||||
|
||||
public function getMe()
|
||||
{
|
||||
$response = $this->request('getMe');
|
||||
if (!$response->ok) {
|
||||
return false;
|
||||
}
|
||||
return $response;
|
||||
}
|
||||
|
||||
public function setWebhook(string $url)
|
||||
{
|
||||
$response = $this->request('setWebhook', [
|
||||
'url' => $url
|
||||
]);
|
||||
if (!$response->ok) {
|
||||
return false;
|
||||
}
|
||||
return $response;
|
||||
}
|
||||
|
||||
private function request(string $method, array $params = [])
|
||||
{
|
||||
$curl = new Curl();
|
||||
$curl->get($this->api . $method, http_build_query($params));
|
||||
$curl->close();
|
||||
return $curl->response;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user