TelegrambotController.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <?php
  2. namespace App\Http\Controllers\Admin\Telegram;
  3. use Illuminate\Http\Request;
  4. use App\Services\AipHttpClient;
  5. use App\Http\Controllers\Controller;
  6. use Illuminate\Support\Facades\DB;
  7. use App\Models\Telegram\TelegramBot;
  8. use App\Models\Telegram\TelegramBotKeyreply;
  9. use App\Models\Premium\PremiumPlatform;
  10. use App\Models\Energy\EnergyPlatformBot;
  11. use App\Models\Transit\TransitWallet;
  12. use Telegram\Bot\Api;
  13. class TelegrambotController extends Controller
  14. {
  15. public function index(Request $request)
  16. {
  17. return view('admin.telegram.telegrambot.index');
  18. }
  19. //列表
  20. public function getData(Request $request)
  21. {
  22. $model = TelegramBot::where(function($query) use ($request){
  23. if ($request->bot_username != '') {
  24. $query->where('bot_username', 'like' ,"%" . $request->bot_username ."%");
  25. }
  26. });
  27. $count = $model->count();
  28. $limit = $request->limit ?? 15;
  29. $offset = $request->page ? ($request->page - 1) * $limit : 0;
  30. $data = $model->limit($limit)->offset($offset)->orderBy('rid','desc')->get();
  31. return ['code' => '0', 'data' => $data, 'count' => $count];
  32. }
  33. //添加
  34. public function add(Request $request)
  35. {
  36. $data = TelegramBot::where('bot_token', $request->bot_token)->first();
  37. if(!empty($data)){
  38. return $this->responseData(400, '机器人已存在');
  39. }
  40. $res = TelegramBot::create([
  41. 'bot_token' => $request->bot_token,
  42. 'bot_admin_username' => $request->bot_admin_username,
  43. 'comments' => $request->comments,
  44. 'create_time' => nowDate()
  45. ]);
  46. return $res ? $this->responseData(200, '添加成功') : $this->responseData(400, '添加失败');
  47. }
  48. //删除
  49. public function delete(Request $request)
  50. {
  51. $data = TelegramBotKeyreply::where('bot_rid', $request->rid);
  52. if($data->count() > 0){
  53. return $this->responseData(400, '请先删除关键字');
  54. }
  55. $res = TelegramBot::where('rid', $request->rid)->delete();
  56. return $res ? $this->responseData(200, '删除成功') : $this->responseData(400, '删除失败');
  57. }
  58. //编辑
  59. public function update(Request $request)
  60. {
  61. $data = TelegramBot::where('bot_token', $request->bot_token)->where('rid','<>',$request->rid)->first();
  62. if(!empty($data)){
  63. return $this->responseData(400, '机器人已存在');
  64. }
  65. DB::beginTransaction();
  66. try {
  67. $data = TelegramBot::where('rid', $request->rid)->first();
  68. $data->bot_token = $request->bot_token;
  69. $data->bot_admin_username = $request->bot_admin_username;
  70. $data->comments = $request->comments;
  71. $data->save();
  72. DB::commit();
  73. return $this->responseData(200, '更新成功');
  74. } catch (\Exception $e) {
  75. DB::rollBack();
  76. return $this->responseData(400, '更新失败'.$e->getMessage());
  77. }
  78. }
  79. //注册webhook
  80. public function regwebhook(Request $request)
  81. {
  82. $data = TelegramBot::where('rid', $request->rid)->first();
  83. if(empty($data)){
  84. return $this->responseData(400, '数据不存在');
  85. }
  86. $domain = 'https://'. $_SERVER['HTTP_HOST'] .'/api/telegram/getdata?rid='. $request->rid;
  87. $url = 'https://api.telegram.org/bot'. $data->bot_token .'/setWebhook?url='. $domain;
  88. $http = new AipHttpClient();
  89. $result = $http->get($url);
  90. // llog($result,'single');
  91. if($result['code'] != 200){
  92. return $this->responseData(400, '请求失败,需要外网权限');
  93. }
  94. $res = json_decode($result['content'],true);
  95. if($res['ok'] && $res['result']){
  96. $desc = $res['description'];
  97. return $this->responseData(200, $desc);
  98. }
  99. return $this->responseData(400, 'webhook设置失败');
  100. }
  101. //更新机器人信息
  102. public function gengxin(Request $request)
  103. {
  104. $data = TelegramBot::where('rid', $request->rid)->first();
  105. if(empty($data)){
  106. return $this->responseData(400, '数据不存在');
  107. }
  108. $telegram = new Api($data->bot_token);
  109. $response = $telegram->getMe();
  110. // $botId = $response->getId();
  111. $firstName = $response->getFirstName();
  112. $username = $response->getUsername();
  113. $res = TelegramBot::where('rid', $request->rid)->update([
  114. 'bot_firstname' => $firstName,
  115. 'bot_username' => $username,
  116. 'update_time' => nowDate()
  117. ]);
  118. return $res ? $this->responseData(200, '更新成功') : $this->responseData(400, '更新失败');
  119. }
  120. //编辑充值
  121. public function recharge(Request $request)
  122. {
  123. $data = TelegramBot::where('recharge_wallet_addr', $request->recharge_wallet_addr)->where('rid','<>',$request->rid)->first();
  124. if(!empty($data)){
  125. return $this->responseData(400, '充值钱包地址已存在');
  126. }
  127. $energydata = EnergyPlatformBot::where('receive_wallet', $request->recharge_wallet_addr)->first();
  128. if(!empty($energydata)){
  129. return $this->responseData(400, '不能和能量钱包地址一致');
  130. }
  131. $premiumdata = PremiumPlatform::where('receive_wallet', $request->recharge_wallet_addr)->first();
  132. if(!empty($premiumdata)){
  133. return $this->responseData(400, '不能和会员钱包地址一致');
  134. }
  135. $transitdata = TransitWallet::where('receive_wallet', $request->recharge_wallet_addr)->first();
  136. if(!empty($transitdata)){
  137. return $this->responseData(400, '不能和闪兑钱包地址一致');
  138. }
  139. DB::beginTransaction();
  140. try {
  141. $data = TelegramBot::where('rid', $request->rid)->first();
  142. $data->recharge_wallet_addr = $request->recharge_wallet_addr;
  143. $data->get_tx_time = $request->get_tx_time;
  144. $data->save();
  145. DB::commit();
  146. return $this->responseData(200, '更新成功');
  147. } catch (\Exception $e) {
  148. DB::rollBack();
  149. return $this->responseData(400, '更新失败'.$e->getMessage());
  150. }
  151. }
  152. }