SendPremiumTgMessage.php 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?php
  2. namespace App\Task;
  3. use App\Model\Premium\PremiumWalletTradeList;
  4. use App\Library\Log;
  5. class SendPremiumTgMessage
  6. {
  7. public function execute()
  8. {
  9. try {
  10. $data = PremiumWalletTradeList::from('premium_wallet_trade_list as a')
  11. ->leftJoin('premium_platform as b','a.premium_platform_rid','b.rid')
  12. ->leftJoin('telegram_bot as c','b.bot_rid','c.rid')
  13. ->leftJoin('premium_platform_package as d','a.premium_package_rid','d.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','b.tg_notice_obj_receive','b.tg_notice_obj_send',
  17. 'c.bot_token','b.receive_wallet','d.package_name','c.bot_admin_username','c.bot_username')
  18. ->limit(5)
  19. ->get();
  20. if($data->count() > 0){
  21. foreach ($data as $k => $v) {
  22. if(empty($v->bot_token)){
  23. $save_data = [];
  24. $save_data['tg_notice_status_receive'] = 'Y';
  25. $save_data['tg_notice_status_send'] = 'Y';
  26. PremiumWalletTradeList::where('rid',$v->rid)->update($save_data);
  27. continue;
  28. }
  29. $notice_receive = 'N';
  30. $notice_send = 'N';
  31. if(empty($v->tg_notice_obj_receive) && $v->tg_notice_obj_receive == ''){
  32. $notice_receive = 'Y';
  33. }
  34. if(empty($v->tg_notice_obj_send) && $v->tg_notice_obj_send == ''){
  35. $notice_send = 'Y';
  36. }
  37. //['6' => '会员平台未启用','7' => '金额无对应订单','8' => '下单中','9' => '下单成功','1' => '待下单','5' => '会员平台未配置正确','4' => '下单失败','2' => '人工禁止'];
  38. //接收的通知,某些状态才通知
  39. if($v->tg_notice_status_receive == 'N' && in_array($v->process_status, [1,8,9]) && !empty($v->tg_notice_obj_receive) && $v->tg_notice_obj_receive != ''){
  40. $replytext = "👑有新的开通会员:\n"
  41. ."➖➖➖➖➖➖➖➖\n"
  42. ."转入交易哈希:<code>".$v->tx_hash."</code>\n"
  43. ."转入钱包地址:<code>".$v->transferfrom_address."</code>\n"
  44. ."转入币名:".$v->coin_name."\n"
  45. ."转入金额:".$v->amount;
  46. $url = 'https://tronscan.io/#/transaction/'.$v->tx_hash;
  47. //内联按钮
  48. $keyboard = [
  49. 'inline_keyboard' => [
  50. [
  51. ['text' => '查看转入交易', 'url' => $url]
  52. ]
  53. ]
  54. ];
  55. $encodedKeyboard = json_encode($keyboard);
  56. $receivelist = explode(',',$v->tg_notice_obj_receive);
  57. foreach ($receivelist as $x => $y) {
  58. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$y.'&text='.urlencode($replytext).'&parse_mode=HTML&reply_markup='.urlencode($encodedKeyboard);
  59. Get_Pay($sendmessageurl);
  60. }
  61. $notice_receive = 'Y';
  62. }
  63. //回款的通知,某些状态才通知
  64. if($v->tg_notice_status_send == 'N' && $v->process_status == 9 && !empty($v->tg_notice_obj_send) && $v->tg_notice_obj_send != ''){
  65. $replytext = "👑<b>新的会员订单成功</b> \n"
  66. ."认准24小时自动购买会员地址(点击复制):<code>".$v->receive_wallet."</code>\n"
  67. ."➖➖➖➖➖➖➖➖\n"
  68. ."<b>购买套餐</b>:".$v->package_name ."\n"
  69. ."<b>支付地址</b>:".mb_substr($v->transferfrom_address,0,8).'****'.mb_substr($v->transferfrom_address,-8,8) ."\n\n"
  70. ."<b>会员已经到账!</b>\n"
  71. ."私聊机器人可继续购买Telegram会员!\n"
  72. ."➖➖➖➖➖➖➖➖";
  73. //内联按钮
  74. $keyboard = [
  75. 'inline_keyboard' => [
  76. [
  77. ['text' => '👨联系客服', 'url' => 'https://t.me/'.mb_substr($v->bot_admin_username,1)],
  78. ['text' => '👑购买会员', 'url' => 'https://t.me/'.$v->bot_username]
  79. ]
  80. ]
  81. ];
  82. $encodedKeyboard = json_encode($keyboard);
  83. $sendlist = explode(',',$v->tg_notice_obj_send);
  84. foreach ($sendlist as $x => $y) {
  85. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$y.'&text='.urlencode($replytext).'&parse_mode=HTML&reply_markup='.urlencode($encodedKeyboard);
  86. Get_Pay($sendmessageurl);
  87. }
  88. $notice_send = 'Y';
  89. //['6' => '会员平台未启用','7' => '金额无对应订单','8' => '下单中','9' => '下单成功','1' => '待下单','5' => '会员平台未配置正确','4' => '下单失败','2' => '人工禁止'];
  90. //某些状态直接改为Y,其他状态不改,避免还没闪兑成功发不出去通知
  91. }elseif(in_array($v->process_status, [2,6,7,5,4])){
  92. $notice_send = 'Y';
  93. $notice_receive = 'Y';
  94. }
  95. if($notice_send == 'Y' || $notice_receive = 'Y'){
  96. $save_data = [];
  97. $save_data['tg_notice_status_receive'] = $notice_receive == 'Y' ? 'Y' : $v->tg_notice_status_receive;
  98. $save_data['tg_notice_status_send'] = $notice_send == 'Y' ? 'Y' : $v->tg_notice_status_send;
  99. PremiumWalletTradeList::where('rid',$v->rid)->update($save_data);
  100. }
  101. }
  102. }
  103. }catch (\Exception $e){
  104. // $this->log('sendtransittgmessage','----------任务执行报错,请联系管理员。报错原因:----------'.$e->getMessage());
  105. }
  106. }
  107. /**
  108. * 记入日志
  109. * @param $log_title [日志路径]
  110. * @param $message [内容,不支持数组]
  111. * @param $remarks [备注]
  112. */
  113. protected function log($log_title,$message,$remarks='info'){
  114. Log::get($remarks,$log_title)->info($message);
  115. }
  116. }