v2board/app/Http/Controllers/Guest/TelegramController.php

81 lines
2.4 KiB
PHP
Raw Normal View History

2020-05-17 15:23:39 +08:00
<?php
namespace App\Http\Controllers\Guest;
2020-05-20 15:51:32 +08:00
use App\Services\TelegramService;
2020-05-17 15:23:39 +08:00
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
2020-05-20 15:58:27 +08:00
use App\Models\User;
2020-05-17 15:23:39 +08:00
class TelegramController extends Controller
{
2020-05-20 16:11:18 +08:00
protected $msg;
2020-05-17 15:23:39 +08:00
public function __construct(Request $request)
{
if ($request->input('access_token') !== md5(config('v2board.telegram_bot_token'))) {
abort(500, 'authentication failed');
}
}
public function webhook(Request $request)
{
2020-05-20 16:11:18 +08:00
$this->msg = $this->getMessage($request->input());
if (!$this->msg) return;
2020-05-20 15:51:32 +08:00
try {
2020-05-20 16:11:18 +08:00
switch($this->msg->command) {
case '/bind': $this->bind();
2020-05-20 15:51:32 +08:00
break;
2020-05-20 16:11:18 +08:00
default: $this->help();
2020-05-20 15:51:32 +08:00
}
} catch (\Exception $e) {
$telegramService = new TelegramService();
2020-05-20 16:11:18 +08:00
$telegramService->sendMessage($this->msg->chat_id, $e->getMessage());
2020-05-20 15:30:51 +08:00
}
}
private function getMessage(array $data)
{
if (!$data['message']) return false;
$obj = new \StdClass();
$obj->is_private = $data['message']['chat']['type'] === 'private' ? true : false;
$text = explode(' ', $data['message']['text']);
2020-05-20 15:53:23 +08:00
$obj->command = $text[0];
$obj->args = array_slice($text, 1);
$obj->chat_id = $data['message']['chat']['id'];
$obj->message_id = $data['message']['message_id'];
2020-05-20 15:30:51 +08:00
return $obj;
}
2020-05-20 16:11:18 +08:00
private function bind()
2020-05-20 15:30:51 +08:00
{
2020-05-20 16:11:18 +08:00
$msg = $this->msg;
2020-05-20 15:30:51 +08:00
if (!$msg->is_private) return;
$subscribeUrl = $msg->args[0];
$subscribeUrl = parse_url($subscribeUrl);
2020-05-20 15:57:38 +08:00
parse_str($subscribeUrl['query'], $query);
$token = $query['token'];
2020-05-20 15:51:32 +08:00
if (!$token) {
abort(500, '订阅地址无效');
}
$user = User::where('token', $token)->first();
if (!$user) {
abort(500, '用户不存在');
}
$user->telegram_id = $msg->chat_id;
if (!$user->save()) {
abort(500, '设置失败');
}
2020-05-20 15:53:23 +08:00
$telegramService = new TelegramService();
$telegramService->sendMessage($msg->chat_id, '绑定成功');
2020-05-17 15:23:39 +08:00
}
2020-05-20 16:11:18 +08:00
private function help()
{
$msg = $this->msg;
if (!$msg->is_private) return;
$telegramService = new TelegramService();
2020-05-20 16:15:37 +08:00
$telegramService->sendMessage($msg->chat_id, "你可以使用以下命令进行操作:\n\n/bind 订阅地址 - 绑定你的账号", 'markdown');
2020-05-20 16:11:18 +08:00
}
2020-05-17 15:23:39 +08:00
}