SendTransitTgMessage.php 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <?php
  2. namespace App\Task;
  3. use App\Model\Transit\TransitWalletCoin;
  4. use App\Model\Transit\TransitWalletTradeList;
  5. use App\Library\Log;
  6. class SendTransitTgMessage
  7. {
  8. public function execute()
  9. {
  10. try {
  11. $data = TransitWalletTradeList::from('transit_wallet_trade_list as a')
  12. ->leftJoin('transit_wallet as b','a.transferto_address','b.receive_wallet')
  13. ->leftJoin('telegram_bot as c','b.bot_rid','c.rid')
  14. ->where('a.tg_notice_status_receive','N')
  15. ->orWhere('a.tg_notice_status_send','N')
  16. ->select('a.rid','a.tx_hash','a.transferfrom_address','a.coin_name','a.amount','a.process_status','a.tg_notice_status_receive','a.tg_notice_status_send','a.sendback_coin_name','a.sendback_tx_hash','a.sendback_amount','b.tg_notice_obj_receive','b.tg_notice_obj_send','c.bot_token','b.receive_wallet','a.current_huan_yuzhi_amount','a.sendback_time','c.bot_admin_username')
  17. ->limit(5)
  18. ->get();
  19. if($data->count() > 0){
  20. foreach ($data as $k => $v) {
  21. if(empty($v->bot_token)){
  22. $save_data = [];
  23. $save_data['tg_notice_status_receive'] = 'Y';
  24. $save_data['tg_notice_status_send'] = 'Y';
  25. TransitWalletTradeList::where('rid',$v->rid)->update($save_data);
  26. continue;
  27. }
  28. $notice_receive = 'N';
  29. $notice_send = 'N';
  30. if(empty($v->tg_notice_obj_receive) && $v->tg_notice_obj_receive == ''){
  31. $notice_receive = 'Y';
  32. }
  33. if(empty($v->tg_notice_obj_send) && $v->tg_notice_obj_send == ''){
  34. $notice_send = 'Y';
  35. }
  36. //['6' => '黑钱包','7' => '转入金额不符','8' => '转帐中','9' => '转账成功','1' => '待兑换','10' => '余额不足','5' => '币种无效','2' => '交易失败','0' => '待确认'];
  37. //接收的通知,某些状态才通知
  38. if($v->tg_notice_status_receive == 'N' && in_array($v->process_status, [1,8,9,10]) && !empty($v->tg_notice_obj_receive) && $v->tg_notice_obj_receive != ''){
  39. $replytext = "有新的闪兑交易:\n"
  40. ."➖➖➖➖➖➖➖➖\n"
  41. ."转入交易哈希:<code>".$v->tx_hash."</code>\n"
  42. ."转入钱包地址:<code>".$v->transferfrom_address."</code>\n"
  43. ."转入币名:".$v->coin_name ."\n"
  44. ."转入金额:".$v->amount;
  45. $url = 'https://tronscan.io/#/transaction/'.$v->tx_hash;
  46. //内联按钮
  47. $keyboard = [
  48. 'inline_keyboard' => [
  49. [
  50. ['text' => '查看转入交易', 'url' => $url]
  51. ]
  52. ]
  53. ];
  54. $encodedKeyboard = json_encode($keyboard);
  55. $receivelist = explode(',',$v->tg_notice_obj_receive);
  56. foreach ($receivelist as $x => $y) {
  57. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$y.'&text='.urlencode($replytext).'&parse_mode=HTML&reply_markup='.urlencode($encodedKeyboard);
  58. Get_Pay($sendmessageurl);
  59. }
  60. $notice_receive = 'Y';
  61. }
  62. //回款的通知,某些状态才通知
  63. if($v->tg_notice_status_send == 'N' && $v->process_status == 9 && !empty($v->tg_notice_obj_send) && $v->tg_notice_obj_send != ''){
  64. if($v->current_huan_yuzhi_amount > 0){
  65. $replytext = "✅<b>USDT 兑换 TRX成功</b> \n"
  66. ."认准24小时自动回TRX地址(点击复制):<code>".$v->receive_wallet."</code>\n"
  67. ."➖➖➖➖➖➖➖➖\n"
  68. ."<b>兑换金额</b>:".$v->amount ." USDT\n"
  69. ."<b>TRX数量</b>:".$v->sendback_amount ." TRX\n"
  70. ."<b>归还预支TRX数量</b>:".$v->current_huan_yuzhi_amount ." TRX\n"
  71. ."<b>兑换地址</b>:".mb_substr($v->transferfrom_address,0,8).'****'.mb_substr($v->transferfrom_address,-8,8) ."\n"
  72. ."<b>兑换时间</b>:".$v->sendback_time ."\n"
  73. // ."<b>交易HASH</b>:".$v->sendback_tx_hash ."\n"
  74. ."➖➖➖➖➖➖➖➖";
  75. }else{
  76. $replytext = "✅<b>USDT 兑换 TRX成功</b> \n"
  77. ."认准24小时自动回TRX地址(点击复制):<code>".$v->receive_wallet."</code>\n"
  78. ."➖➖➖➖➖➖➖➖\n"
  79. ."<b>兑换金额</b>:".$v->amount ." USDT\n"
  80. ."<b>TRX数量</b>:".$v->sendback_amount ." TRX\n"
  81. ."<b>兑换地址</b>:".mb_substr($v->transferfrom_address,0,8).'****'.mb_substr($v->transferfrom_address,-8,8) ."\n"
  82. ."<b>兑换时间</b>:".$v->sendback_time ."\n"
  83. // ."<b>交易HASH</b>:".$v->sendback_tx_hash ."\n"
  84. ."➖➖➖➖➖➖➖➖";
  85. }
  86. // $url = 'https://tronscan.io/#/transaction/'.$v->sendback_tx_hash;
  87. // //内联按钮
  88. // $keyboard = [
  89. // 'inline_keyboard' => [
  90. // [
  91. // ['text' => '查看回款交易', 'url' => $url]
  92. // ]
  93. // ]
  94. // ];
  95. $keyboard = [
  96. 'inline_keyboard' => [
  97. [
  98. ['text' => '👨联系客服', 'url' => 'https://t.me/'.mb_substr($v->bot_admin_username,1)]
  99. ]
  100. ]
  101. ];
  102. $encodedKeyboard = json_encode($keyboard);
  103. $sendlist = explode(',',$v->tg_notice_obj_send);
  104. foreach ($sendlist as $x => $y) {
  105. // $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$y.'&text='.urlencode($replytext).'&parse_mode=HTML';
  106. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$y.'&text='.urlencode($replytext).'&parse_mode=HTML&reply_markup='.urlencode($encodedKeyboard);
  107. Get_Pay($sendmessageurl);
  108. }
  109. $notice_send = 'Y';
  110. //['6' => '黑钱包','7' => '转入金额不符','8' => '转帐中','9' => '转账成功','1' => '待兑换','10' => '余额不足','5' => '币种无效','2' => '交易失败','0' => '待确认'];
  111. //某些状态直接改为Y,其他状态不改,避免还没闪兑成功发不出去通知
  112. }elseif(in_array($v->process_status, [6,7,10,5,2])){
  113. $notice_send = 'Y';
  114. $notice_receive = 'Y';
  115. }
  116. if($notice_send == 'Y' || $notice_receive = 'Y'){
  117. $save_data = [];
  118. $save_data['tg_notice_status_receive'] = $notice_receive == 'Y' ? 'Y' : $v->tg_notice_status_receive;
  119. $save_data['tg_notice_status_send'] = $notice_send == 'Y' ? 'Y' : $v->tg_notice_status_send;
  120. TransitWalletTradeList::where('rid',$v->rid)->update($save_data);
  121. }
  122. }
  123. }
  124. }catch (\Exception $e){
  125. $this->log('sendtransittgmessage','----------任务执行报错,请联系管理员。报错原因:----------'.$e->getMessage());
  126. }
  127. }
  128. /**
  129. * 记入日志
  130. * @param $log_title [日志路径]
  131. * @param $message [内容,不支持数组]
  132. * @param $remarks [备注]
  133. */
  134. protected function log($log_title,$message,$remarks='info'){
  135. Log::get($remarks,$log_title)->info($message);
  136. }
  137. }