SendEnergyTgMessage.php 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. <?php
  2. namespace App\Task;
  3. use App\Model\Energy\EnergyWalletTradeList;
  4. use App\Model\Energy\EnergyAiTrusteeship;
  5. use App\Model\Energy\EnergyAiBishu;
  6. use App\Model\Energy\EnergyQuickOrder;
  7. use App\Model\Telegram\TelegramBotUser;
  8. use App\Library\Log;
  9. class SendEnergyTgMessage
  10. {
  11. public function execute()
  12. {
  13. //自助下单成功
  14. try {
  15. $data = EnergyWalletTradeList::from('energy_wallet_trade_list as a')
  16. ->leftJoin('energy_platform_bot as b','a.energy_platform_bot_rid','b.rid')
  17. ->leftJoin('telegram_bot as c','b.bot_rid','c.rid')
  18. ->leftJoin('energy_platform_package as d','a.energy_package_rid','d.rid')
  19. ->where('a.tg_notice_status_receive','N')
  20. ->orWhere('a.tg_notice_status_send','N')
  21. ->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','c.bot_token','b.receive_wallet','d.energy_amount','d.package_name','c.bot_username','c.bot_admin_username')
  22. ->limit(5)
  23. ->get();
  24. if($data->count() > 0){
  25. foreach ($data as $k => $v) {
  26. if(empty($v->bot_token)){
  27. $save_data = [];
  28. $save_data['tg_notice_status_receive'] = 'Y';
  29. $save_data['tg_notice_status_send'] = 'Y';
  30. EnergyWalletTradeList::where('rid',$v->rid)->update($save_data);
  31. continue;
  32. }
  33. $notice_receive = 'N';
  34. $notice_send = 'N';
  35. if(empty($v->tg_notice_obj_receive) && $v->tg_notice_obj_receive == ''){
  36. $notice_receive = 'Y';
  37. }
  38. if(empty($v->tg_notice_obj_send) && $v->tg_notice_obj_send == ''){
  39. $notice_send = 'Y';
  40. }
  41. //['6' => '能量钱包未启用','7' => '金额无对应套餐','8' => '下单中','9' => '下单成功','1' => '待下单','5' => '能量钱包未配置私钥','4' => '下单失败'];
  42. //接收的通知,某些状态才通知
  43. if($v->tg_notice_status_receive == 'N' && in_array($v->process_status, [1,4,8,9]) && !empty($v->tg_notice_obj_receive) && $v->tg_notice_obj_receive != ''){
  44. $replytext = "🔋有新的能量交易:\n"
  45. ."➖➖➖➖➖➖➖➖\n"
  46. ."转入交易哈希:<code>".$v->tx_hash."</code>\n"
  47. ."转入钱包地址:<code>".$v->transferfrom_address."</code>\n"
  48. ."转入币名:".$v->coin_name ."\n"
  49. ."转入金额:".$v->amount;
  50. $url = 'https://tronscan.io/#/transaction/'.$v->tx_hash;
  51. //内联按钮
  52. $keyboard = [
  53. 'inline_keyboard' => [
  54. [
  55. ['text' => '查看转入交易', 'url' => $url]
  56. ]
  57. ]
  58. ];
  59. $encodedKeyboard = json_encode($keyboard);
  60. $receivelist = explode(',',$v->tg_notice_obj_receive);
  61. foreach ($receivelist as $x => $y) {
  62. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$y.'&text='.urlencode($replytext).'&parse_mode=HTML&reply_markup='.urlencode($encodedKeyboard);
  63. Get_Pay($sendmessageurl);
  64. }
  65. $notice_receive = 'Y';
  66. }
  67. //回款的通知,某些状态才通知
  68. if($v->tg_notice_status_send == 'N' && $v->process_status == 9 && !empty($v->tg_notice_obj_send) && $v->tg_notice_obj_send != ''){
  69. $replytext = "🔋<b>新的能量订单成功</b> \n"
  70. ."认准24小时自动购买能量地址(点击复制):<code>".$v->receive_wallet."</code>\n"
  71. ."➖➖➖➖➖➖➖➖\n"
  72. ."<b>下单模式</b>:自助下单\n"
  73. ."<b>购买套餐</b>:".$v->package_name ."\n"
  74. ."<b>能量数量</b>:".$v->energy_amount ."\n"
  75. ."<b>支付金额</b>:".$v->amount ." TRX\n"
  76. ."<b>支付地址</b>:".mb_substr($v->transferfrom_address,0,8).'****'.mb_substr($v->transferfrom_address,-8,8) ."\n\n"
  77. ."<b>能量已经到账!请在时间范围内使用!</b>\n"
  78. ."发送 /buyenergy 继续购买能量!\n"
  79. ."➖➖➖➖➖➖➖➖";
  80. $url = 'https://tronscan.org/#/address/'.$v->transferfrom_address;
  81. //内联按钮
  82. $keyboard = [
  83. 'inline_keyboard' => [
  84. [
  85. ['text' => '笔数套餐', 'url' => 'https://t.me/'.$v->bot_username]
  86. ],
  87. [
  88. ['text' => '联系客服', 'url' => 'https://t.me/'.mb_substr($v->bot_admin_username,1)],
  89. ['text' => 'TRX闪兑', 'url' => 'https://t.me/'.$v->bot_username]
  90. ]
  91. ]
  92. ];
  93. $encodedKeyboard = json_encode($keyboard);
  94. $sendlist = explode(',',$v->tg_notice_obj_send);
  95. foreach ($sendlist as $x => $y) {
  96. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$y.'&text='.urlencode($replytext).'&parse_mode=HTML&reply_markup='.urlencode($encodedKeyboard);
  97. Get_Pay($sendmessageurl);
  98. }
  99. $notice_send = 'Y';
  100. //['6' => '能量钱包未启用','7' => '金额无对应套餐','8' => '下单中','9' => '下单成功','1' => '待下单','5' => '能量钱包未配置私钥','4' => '下单失败'];
  101. //某些状态直接改为Y,其他状态不改,避免还没闪兑成功发不出去通知
  102. }elseif(in_array($v->process_status, [6,7,5,4])){
  103. $notice_send = 'Y';
  104. $notice_receive = 'Y';
  105. }
  106. if($notice_send == 'Y' || $notice_receive = 'Y'){
  107. $save_data = [];
  108. $save_data['tg_notice_status_receive'] = $notice_receive == 'Y' ? 'Y' : $v->tg_notice_status_receive;
  109. $save_data['tg_notice_status_send'] = $notice_send == 'Y' ? 'Y' : $v->tg_notice_status_send;
  110. EnergyWalletTradeList::where('rid',$v->rid)->update($save_data);
  111. }
  112. }
  113. }
  114. }catch (\Exception $e){
  115. $this->log('sendtransittgmessage','----------任务执行报错,请联系管理员。报错原因:----------'.$e->getMessage());
  116. }
  117. //钱包余额支付下单通知
  118. try {
  119. $data = EnergyQuickOrder::from('energy_quick_order as a')
  120. ->leftJoin('energy_platform_bot as b','a.bot_rid','b.bot_rid')
  121. ->leftJoin('telegram_bot as c','a.bot_rid','c.rid')
  122. ->where('a.is_notice','Y')
  123. ->select('a.rid','a.tg_uid','a.wallet_addr','a.energy_amount','c.bot_token','a.is_notice','a.comments','c.bot_username','c.bot_admin_username','a.bot_rid','b.tg_notice_obj_send')
  124. ->limit(5)
  125. ->get();
  126. if($data->count() > 0){
  127. foreach ($data as $k => $v) {
  128. if(empty($v->bot_token)){
  129. $save_data = [];
  130. $save_data['is_notice'] = $v->is_notice == 'Y' ?'N':$v->is_notice;
  131. EnergyQuickOrder::where('rid',$v->rid)->update($save_data);
  132. continue;
  133. }
  134. //回款的通知
  135. if(!empty($v->tg_uid) && $v->tg_uid != '' && $v->is_notice == 'Y'){
  136. $replytextuid = "🔋<b>快捷能量订单成功</b> \n"
  137. ."➖➖➖➖➖➖➖➖\n"
  138. ."<b>下单模式</b>:钱包余额支付\n"
  139. ."<b>能量数量</b>:".$v->energy_amount ."\n"
  140. ."<b>能量地址</b>:".mb_substr($v->wallet_addr,0,8).'****'.mb_substr($v->wallet_addr,-8,8) ."\n\n"
  141. ."<b>能量已经到账!请在时间范围内使用!</b>\n"
  142. ."发送 /buyenergy 继续购买能量!\n"
  143. ."➖➖➖➖➖➖➖➖";
  144. $url = 'https://tronscan.org/#/address/'.$v->wallet_addr;
  145. //内联按钮
  146. $keyboard = [
  147. 'inline_keyboard' => [
  148. [
  149. ['text' => '笔数套餐', 'url' => 'https://t.me/'.$v->bot_username]
  150. ],
  151. [
  152. ['text' => '联系客服', 'url' => 'https://t.me/'.mb_substr($v->bot_admin_username,1)],
  153. ['text' => 'TRX闪兑', 'url' => 'https://t.me/'.$v->bot_username]
  154. ]
  155. ]
  156. ];
  157. $encodedKeyboard = json_encode($keyboard);
  158. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$v->tg_uid.'&text='.urlencode($replytextuid).'&parse_mode=HTML&reply_markup='.urlencode($encodedKeyboard);
  159. Get_Pay($sendmessageurl);
  160. //通知到群
  161. if(!empty($v->tg_notice_obj_send) && $v->tg_notice_obj_send != ''){
  162. $replytext = "🔋<b>快捷能量订单成功</b> \n"
  163. ."➖➖➖➖➖➖➖➖\n"
  164. ."<b>下单模式</b>:钱包余额支付\n"
  165. ."<b>能量数量</b>:".$v->energy_amount ."\n"
  166. ."<b>能量地址</b>:".mb_substr($v->wallet_addr,0,8).'****'.mb_substr($v->wallet_addr,-8,8) ."\n\n"
  167. ."<b>能量已经到账!请在时间范围内使用!</b>\n"
  168. ."发送 /buyenergy 继续购买能量!\n"
  169. ."➖➖➖➖➖➖➖➖";
  170. $sendlist = explode(',',$v->tg_notice_obj_send);
  171. foreach ($sendlist as $x => $y) {
  172. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$y.'&text='.urlencode($replytext).'&parse_mode=HTML&reply_markup='.urlencode($encodedKeyboard);
  173. Get_Pay($sendmessageurl);
  174. }
  175. }
  176. }
  177. $save_data = [];
  178. $save_data['is_notice'] = $v->is_notice == 'Y' ?'N':$v->is_notice;
  179. EnergyQuickOrder::where('rid',$v->rid)->update($save_data);
  180. }
  181. }
  182. }catch (\Exception $e){
  183. $this->log('sendtransittgmessage','----------任务执行报错,请联系管理员。报错原因:----------'.$e->getMessage());
  184. }
  185. //智能托管通知
  186. try {
  187. $data = EnergyAiTrusteeship::from('energy_ai_trusteeship as a')
  188. ->leftJoin('energy_platform_bot as b','a.bot_rid','b.bot_rid')
  189. ->leftJoin('telegram_bot as c','a.bot_rid','c.rid')
  190. ->where('a.is_notice','Y')
  191. ->orWhere('a.is_notice_admin','Y')
  192. ->select('a.rid','a.tg_uid','a.wallet_addr','a.per_buy_energy_quantity','c.bot_token','a.is_notice_admin','a.is_notice','b.tg_admin_uid','a.comments','b.tg_notice_obj_send','c.bot_username','c.bot_admin_username','a.bot_rid','a.max_buy_quantity','a.total_buy_quantity','b.trx_price_energy_32000','b.trx_price_energy_65000')
  193. ->limit(5)
  194. ->get();
  195. if($data->count() > 0){
  196. foreach ($data as $k => $v) {
  197. if(empty($v->bot_token)){
  198. $save_data = [];
  199. $save_data['is_notice'] = $v->is_notice == 'Y' ?'N':$v->is_notice;
  200. $save_data['is_notice_admin'] = $v->is_notice_admin == 'Y' ?'N':$v->is_notice_admin;
  201. EnergyAiTrusteeship::where('rid',$v->rid)->update($save_data);
  202. continue;
  203. }
  204. //回款的通知
  205. if(!empty($v->tg_uid) && $v->tg_uid != '' && $v->is_notice == 'Y'){
  206. if($v->max_buy_quantity > 0){
  207. $syCount = $v->max_buy_quantity - $v->total_buy_quantity." 次(地址设置最多 <b>".$v->max_buy_quantity."</b> 次),已使用 <b>".$v->total_buy_quantity." </b>次";
  208. }else{
  209. $botUser = TelegramBotUser::where("bot_rid",$v->bot_rid)->where("tg_uid",$v->tg_uid)->first();
  210. if($botUser){
  211. $perPrice = $v->per_buy_energy_quantity == 32000 ? $v->trx_price_energy_32000:$v->trx_price_energy_65000;
  212. $syCount = floor($botUser->cash_trx / $perPrice)." 次(每次消耗 <b>".$perPrice."</b> TRX. 余额剩余:<b>". $botUser->cash_trx."</b> TRX)";
  213. }else{
  214. $syCount = "未知!未查询到用户余额,联系客服!";
  215. }
  216. }
  217. $replytextuid = "🔋<b>新的能量订单成功</b> \n"
  218. ."➖➖➖➖➖➖➖➖\n"
  219. ."<b>下单模式</b>:智能托管\n"
  220. ."<b>能量数量</b>:".$v->per_buy_energy_quantity ."\n"
  221. ."<b>能量地址</b>:".mb_substr($v->wallet_addr,0,8).'****'.mb_substr($v->wallet_addr,-8,8) ."\n\n"
  222. ."<b>能量已经到账!请在时间范围内使用!</b>\n"
  223. ."发送 /buyenergy 继续购买能量!\n\n"
  224. ."⚠️<u>预计剩余:</u>".$syCount."\n"
  225. ."➖➖➖➖➖➖➖➖";
  226. $url = 'https://tronscan.org/#/address/'.$v->wallet_addr;
  227. //内联按钮
  228. $keyboard = [
  229. 'inline_keyboard' => [
  230. [
  231. ['text' => '笔数套餐', 'url' => 'https://t.me/'.$v->bot_username]
  232. ],
  233. [
  234. ['text' => '联系客服', 'url' => 'https://t.me/'.mb_substr($v->bot_admin_username,1)],
  235. ['text' => 'TRX闪兑', 'url' => 'https://t.me/'.$v->bot_username]
  236. ]
  237. ]
  238. ];
  239. $encodedKeyboard = json_encode($keyboard);
  240. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$v->tg_uid.'&text='.urlencode($replytextuid).'&parse_mode=HTML&reply_markup='.urlencode($encodedKeyboard);
  241. Get_Pay($sendmessageurl);
  242. //通知到群
  243. if(!empty($v->tg_notice_obj_send) && $v->tg_notice_obj_send != ''){
  244. $replytext = "🔋<b>新的能量订单成功</b> \n"
  245. ."➖➖➖➖➖➖➖➖\n"
  246. ."<b>下单模式</b>:智能托管\n"
  247. ."<b>能量数量</b>:".$v->per_buy_energy_quantity ."\n"
  248. ."<b>能量地址</b>:".mb_substr($v->wallet_addr,0,8).'****'.mb_substr($v->wallet_addr,-8,8) ."\n\n"
  249. ."<b>能量已经到账!请在时间范围内使用!</b>\n"
  250. ."发送 /buyenergy 继续购买能量!\n"
  251. ."➖➖➖➖➖➖➖➖";
  252. $sendlist = explode(',',$v->tg_notice_obj_send);
  253. foreach ($sendlist as $x => $y) {
  254. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$y.'&text='.urlencode($replytext).'&parse_mode=HTML&reply_markup='.urlencode($encodedKeyboard);
  255. Get_Pay($sendmessageurl);
  256. }
  257. }
  258. }
  259. //管理员通知
  260. if(!empty($v->tg_admin_uid) && $v->tg_admin_uid != '' && $v->is_notice_admin == 'Y'){
  261. $replytext = "❌<b>智能托管,能量代理失败!</b> \n"
  262. ."➖➖➖➖➖➖➖➖\n"
  263. ."<b>下单模式</b>:智能托管\n"
  264. ."<b>能量数量</b>:".$v->per_buy_energy_quantity ."\n"
  265. ."<b>能量地址</b>:<code>".$v->wallet_addr."</code>\n"
  266. ."<b>失败原因</b>:".$v->comments."\n\n"
  267. ."<b>请立即查看管理后台,如需要重新发起,在 能量管理->智能托管 刷新该地址即可!</b>"."\n"
  268. ."<b>如果不刷新该地址的智能托管,后续不会再智能托管!</b>"."\n"
  269. ."➖➖➖➖➖➖➖➖";
  270. $sendlist = explode(',',$v->tg_admin_uid);
  271. foreach ($sendlist as $x => $y) {
  272. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$y.'&text='.urlencode($replytext).'&parse_mode=HTML';
  273. Get_Pay($sendmessageurl);
  274. }
  275. }
  276. $save_data = [];
  277. $save_data['is_notice'] = $v->is_notice == 'Y' ?'N':$v->is_notice;
  278. $save_data['is_notice_admin'] = $v->is_notice_admin == 'Y' ?'N':$v->is_notice_admin;
  279. EnergyAiTrusteeship::where('rid',$v->rid)->update($save_data);
  280. }
  281. }
  282. }catch (\Exception $e){
  283. $this->log('sendtransittgmessage','----------任务执行报错,请联系管理员。报错原因:----------'.$e->getMessage());
  284. }
  285. //笔数套餐通知
  286. try {
  287. $data = EnergyAiBishu::from('energy_ai_bishu as a')
  288. ->leftJoin('energy_platform_bot as b','a.bot_rid','b.bot_rid')
  289. ->leftJoin('telegram_bot as c','a.bot_rid','c.rid')
  290. ->where('a.is_notice','Y')
  291. ->orWhere('a.is_notice_admin','Y')
  292. ->select('a.rid','a.tg_uid','a.wallet_addr','b.per_bishu_energy_quantity','c.bot_token','a.is_notice_admin','a.is_notice','b.tg_admin_uid','a.comments','b.tg_notice_obj_send','c.bot_username','c.bot_admin_username','a.bot_rid','a.max_buy_quantity','a.total_buy_quantity')
  293. ->limit(5)
  294. ->get();
  295. if($data->count() > 0){
  296. foreach ($data as $k => $v) {
  297. if(empty($v->bot_token)){
  298. $save_data = [];
  299. $save_data['is_notice'] = $v->is_notice == 'Y' ?'N':$v->is_notice;
  300. $save_data['is_notice_admin'] = $v->is_notice_admin == 'Y' ?'N':$v->is_notice_admin;
  301. EnergyAiBishu::where('rid',$v->rid)->update($save_data);
  302. continue;
  303. }
  304. //内联按钮
  305. $keyboard = [
  306. 'inline_keyboard' => [
  307. [
  308. ['text' => '笔数套餐', 'url' => 'https://t.me/'.$v->bot_username]
  309. ],
  310. [
  311. ['text' => '联系客服', 'url' => 'https://t.me/'.mb_substr($v->bot_admin_username,1)],
  312. ['text' => 'TRX闪兑', 'url' => 'https://t.me/'.$v->bot_username]
  313. ]
  314. ]
  315. ];
  316. $encodedKeyboard = json_encode($keyboard);
  317. //回款的通知
  318. if(!empty($v->tg_uid) && $v->tg_uid != '' && $v->is_notice == 'Y'){
  319. if($v->max_buy_quantity > 0){
  320. $syCount = $v->max_buy_quantity - $v->total_buy_quantity." 次(地址设置最多 <b>".$v->max_buy_quantity."</b> 次),已使用 <b>".$v->total_buy_quantity." </b>次";
  321. }else{
  322. $syCount = "0 次";
  323. }
  324. $replytextuid = "🖌<b>新的笔数能量订单成功</b> \n"
  325. ."➖➖➖➖➖➖➖➖\n"
  326. ."<b>下单模式</b>:笔数套餐\n"
  327. ."<b>能量数量</b>:".$v->per_bishu_energy_quantity ."\n"
  328. ."<b>能量地址</b>:".mb_substr($v->wallet_addr,0,8).'****'.mb_substr($v->wallet_addr,-8,8) ."\n\n"
  329. ."<b>能量已经到账!请在时间范围内使用!</b>\n"
  330. ."发送 /buyenergy 继续购买能量!\n\n"
  331. ."⚠️<u>预计剩余:</u>".$syCount."\n"
  332. ."➖➖➖➖➖➖➖➖";
  333. $sendlistuid = explode(',',$v->tg_uid);
  334. foreach ($sendlistuid as $x => $y) {
  335. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$y.'&text='.urlencode($replytextuid).'&parse_mode=HTML&reply_markup='.urlencode($encodedKeyboard);
  336. Get_Pay($sendmessageurl);
  337. }
  338. }
  339. //通知到群
  340. if(!empty($v->tg_notice_obj_send) && $v->tg_notice_obj_send != '' && $v->is_notice == 'Y'){
  341. $replytext = "🖌<b>新的笔数能量订单成功</b> \n"
  342. ."➖➖➖➖➖➖➖➖\n"
  343. ."<b>下单模式</b>:笔数套餐\n"
  344. ."<b>能量数量</b>:".$v->per_bishu_energy_quantity ."\n"
  345. ."<b>能量地址</b>:".mb_substr($v->wallet_addr,0,8).'****'.mb_substr($v->wallet_addr,-8,8) ."\n\n"
  346. ."<b>能量已经到账!请在时间范围内使用!</b>\n"
  347. ."发送 /buyenergy 继续购买能量!\n"
  348. ."➖➖➖➖➖➖➖➖";
  349. $sendlist = explode(',',$v->tg_notice_obj_send);
  350. foreach ($sendlist as $x => $y) {
  351. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$y.'&text='.urlencode($replytext).'&parse_mode=HTML&reply_markup='.urlencode($encodedKeyboard);
  352. Get_Pay($sendmessageurl);
  353. }
  354. }
  355. //管理员通知
  356. if(!empty($v->tg_admin_uid) && $v->tg_admin_uid != '' && $v->is_notice_admin == 'Y'){
  357. $replytext = "❌<b>智能托管,能量代理失败!</b> \n"
  358. ."➖➖➖➖➖➖➖➖\n"
  359. ."<b>下单模式</b>:笔数套餐\n"
  360. ."<b>能量数量</b>:".$v->per_bishu_energy_quantity ."\n"
  361. ."<b>能量地址</b>:<code>".$v->wallet_addr."</code>\n"
  362. ."<b>失败原因</b>:".$v->comments."\n\n"
  363. ."<b>请立即查看管理后台,如需要重新发起,在 能量管理->智能托管 刷新该地址即可!</b>"."\n"
  364. ."<b>如果不刷新该地址的智能托管,后续不会再智能托管!</b>"."\n"
  365. ."➖➖➖➖➖➖➖➖";
  366. $sendlist = explode(',',$v->tg_admin_uid);
  367. foreach ($sendlist as $x => $y) {
  368. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$y.'&text='.urlencode($replytext).'&parse_mode=HTML';
  369. Get_Pay($sendmessageurl);
  370. }
  371. }
  372. $save_data = [];
  373. $save_data['is_notice'] = $v->is_notice == 'Y' ?'N':$v->is_notice;
  374. $save_data['is_notice_admin'] = $v->is_notice_admin == 'Y' ?'N':$v->is_notice_admin;
  375. EnergyAiBishu::where('rid',$v->rid)->update($save_data);
  376. }
  377. }
  378. }catch (\Exception $e){
  379. $this->log('sendtransittgmessage','----------任务执行报错,请联系管理员。报错原因:----------'.$e->getMessage());
  380. }
  381. }
  382. /**
  383. * 记入日志
  384. * @param $log_title [日志路径]
  385. * @param $message [内容,不支持数组]
  386. * @param $remarks [备注]
  387. */
  388. protected function log($log_title,$message,$remarks='info'){
  389. Log::get($remarks,$log_title)->info($message);
  390. }
  391. }