TelegramController.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. namespace App\Http\Controllers\Guest;
  3. use App\Services\UserService;
  4. use Illuminate\Http\Request;
  5. use App\Http\Controllers\Controller;
  6. class TelegramController extends Controller
  7. {
  8. public function __construct(Request $request)
  9. {
  10. if ($request->input('access_token') !== md5(config('v2board.telegram_bot_token'))) {
  11. abort(500, 'authentication failed');
  12. }
  13. }
  14. public function webhook(Request $request)
  15. {
  16. $msg = $this->getMessage($request->input());
  17. if (!$msg) return;
  18. switch($msg->command) {
  19. case '/bind': $this->bind($msg);
  20. break;
  21. }
  22. }
  23. private function getMessage(array $data)
  24. {
  25. if (!$data['message']) return false;
  26. $obj = new \StdClass();
  27. $obj->is_private = $data['message']['chat']['type'] === 'private' ? true : false;
  28. $text = explode(' ', $data['message']['text']);
  29. $obj->command = $text[0] || '';
  30. $obj->args = array_slice($text, 1) || [];
  31. $obj->chat_id = $data['message']['chat']['id'] || '';
  32. return $obj;
  33. }
  34. private function bind(object $msg)
  35. {
  36. if (!$msg->is_private) return;
  37. $userService = new UserService();
  38. $subscribeUrl = $msg->args[0];
  39. $subscribeUrl = parse_url($subscribeUrl);
  40. info($subscribeUrl);
  41. }
  42. }