AutoStockTRX.php 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <?php
  2. namespace App\Task;
  3. use App\Model\Transit\TransitWallet;
  4. use App\Service\RsaServices;
  5. use App\Library\Log;
  6. class AutoStockTRX
  7. {
  8. public function execute()
  9. {
  10. try {
  11. $data = TransitWallet::from('transit_wallet as a')
  12. ->Join('telegram_bot as b','a.bot_rid','b.rid')
  13. ->where('a.status',0)
  14. ->where('a.auto_stock_min_trx','>',0)
  15. ->where('a.auto_stock_per_usdt','>',0)
  16. ->whereNotNull('a.send_wallet')
  17. ->whereRaw('length(t_a.send_wallet) = 34')
  18. ->select('a.rid','a.send_wallet','a.send_wallet_privatekey','a.auto_stock_min_trx','a.auto_stock_per_usdt','a.tg_notice_obj_receive','b.bot_token')
  19. ->get();
  20. if($data->count() > 0){
  21. foreach ($data as $k => $v) {
  22. $tronsuccess = 1;
  23. $trxbalance = 0;
  24. $usdtbalance = 0;
  25. sleep(1); //不容易被api限制
  26. #查钱包余额
  27. if(!empty($v->send_wallet) && $v->send_wallet != ''){
  28. $tronurl = 'https://apilist.tronscanapi.com/api/account/tokens?address='.$v->send_wallet.'&start=0&limit=200&hidden=0&show=0&sortType=0&sortBy=0&token='; //查波场地址余额,通过http接口查询
  29. $api_key = config('apikey.tronapikey');
  30. $apikeyrand = $api_key[array_rand($api_key)];
  31. $heders = [
  32. "TRON-PRO-API-KEY:".$apikeyrand
  33. ];
  34. $tronres = Get_Pay($tronurl,null,$heders);
  35. if(empty($tronres)){
  36. $this->log('autostocktrx','自动进货余额获取错误1:'.$v->rid);
  37. }else{
  38. $tronres = json_decode($tronres,true);
  39. if(empty($tronres['data'])){
  40. $this->log('autostocktrx','自动进货余额获取错误2:'.$v->rid);
  41. }else{
  42. $tronsuccess = 2;
  43. for($i = 0; $i < $tronres['total']; $i++) {
  44. $tokeninfo = $tronres['data'][$i];
  45. if($tokeninfo['tokenId'] == '_' && $tokeninfo['tokenAbbr'] == 'trx'){
  46. $trxbalance = $tokeninfo['quantity'] == '0.000000' ? 0 : $tokeninfo['quantity'];
  47. }elseif($tokeninfo['tokenId'] == 'TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t'){
  48. $usdtbalance = $tokeninfo['quantity'];
  49. break; //找到usdt就跳出
  50. }
  51. }
  52. $this->log('autostocktrx',$v->send_wallet.' 自动进货余额获取成功1,USDT余额:'.$usdtbalance.' TRX余额:'.$trxbalance);
  53. }
  54. }
  55. //如果查询失败,则查trongrid接口
  56. if($tronsuccess == 1){
  57. #查usdt或者余额是否足够
  58. $balance_url = 'https://api.trongrid.io/v1/accounts/'.$v->send_wallet; //查地址
  59. $tronapikey = config('apikey.gridapikey');
  60. $apikeyrand = $tronapikey[array_rand($tronapikey)];
  61. $heders = [
  62. "TRON-PRO-API-KEY:".$apikeyrand
  63. ];
  64. $res = Get_Pay($balance_url,null,$heders);
  65. if(empty($res)){
  66. $this->log('autostocktrx','自动进货余额获取错误3:'.$v->rid);
  67. }else{
  68. $res = json_decode($res,true);
  69. if(isset($res['success']) && $res['success']){
  70. if(empty($res['data'])){
  71. $this->log('autostocktrx','自动进货余额获取错误4:'.$v->rid);
  72. }else{
  73. $tronsuccess = 2;
  74. $trxbalance = empty($res['data'][0]['balance']) ? 0 : bcdiv($res['data'][0]['balance'],1000000,6) + 0;
  75. $usdtbalance = 0;
  76. if(!empty($res['data'][0]['trc20'])){
  77. for($i=1; $i<=count($res['data'][0]['trc20']); $i++){
  78. if(!empty($res['data'][0]['trc20'][$i-1]['TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t'])){
  79. $usdtbalance = bcdiv($res['data'][0]['trc20'][$i-1]['TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t'],1000000,6) + 0;
  80. break;
  81. }
  82. }
  83. }
  84. $this->log('autostocktrx',$v->send_wallet.' 自动进货余额获取成功2,USDT余额:'.$usdtbalance.' TRX余额:'.$trxbalance);
  85. }
  86. }else{
  87. $this->log('autostocktrx','自动进货余额获取错误5:'.$v->rid);
  88. }
  89. }
  90. }
  91. }
  92. //余额请求成功,trx余额小于trx自动进货金额,trx余额大于等于50(闪兑需要的手续费),usdt大于每次闪兑的数量
  93. if($tronsuccess == 2 && $usdtbalance >= $v->auto_stock_per_usdt && $trxbalance < $v->auto_stock_min_trx && $trxbalance >= 50){
  94. #余额足够则闪兑
  95. $rsa_services = new RsaServices();
  96. $send_wallet_privatekey = $rsa_services->privateDecrypt($v->send_wallet_privatekey);
  97. $swapurl = 'aHR0cHM6Ly90cm9uaHR0cC53YWxsZXRpbS52aXAvc3dhcA=='; //swap api
  98. $swapparams = [
  99. 'address' => $v->send_wallet,
  100. 'swapamount' => $v->auto_stock_per_usdt,
  101. 'swapplatform' => 'sunswap',
  102. 'pri1' => $send_wallet_privatekey,
  103. 'pri2' => '',
  104. 'pri3' => '',
  105. 'pri4' => '',
  106. 'pri5' => ''
  107. ];
  108. $swapres = Get_Pay(base64_decode($swapurl),$swapparams);
  109. if(empty($swapres)){
  110. $this->log('autostocktrx','闪兑错误1:'.$v->rid);
  111. }else{
  112. $swapres = json_decode($swapres,true);
  113. if(empty($swapres['code'])){
  114. $this->log('autostocktrx','闪兑错误2:'.$v->rid);
  115. }else{
  116. if($swapres['code'] == 200){
  117. $this->log('autostocktrx',$v->send_wallet.' 闪兑成功');
  118. //发送tg通知
  119. if(!empty($v->tg_notice_obj_receive)){
  120. $replytext = "✅自动进货成功\n"
  121. ."---------------------------------------\n"
  122. ."进货钱包:<code>".$v->send_wallet ."</code>\n"
  123. ."进货USDT金额:".$v->auto_stock_per_usdt ."\n"
  124. ."---------------------------------------";
  125. $receivelist = explode(',',$v->tg_notice_obj_receive);
  126. foreach ($receivelist as $x => $y) {
  127. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$y.'&text='.urlencode($replytext).'&parse_mode=HTML';
  128. Get_Pay($sendmessageurl);
  129. }
  130. }
  131. }else{
  132. $this->log('autostocktrx','闪兑错误3:'.$v->rid.'。错误:'.$swapres['msg']);
  133. }
  134. }
  135. }
  136. }
  137. }
  138. }
  139. }catch (\Exception $e){
  140. $this->log('autostocktrx','----------任务执行报错,请联系管理员。报错原因:----------'.$e->getMessage());
  141. }
  142. }
  143. /**
  144. * 记入日志
  145. * @param $log_title [日志路径]
  146. * @param $message [内容,不支持数组]
  147. * @param $remarks [备注]
  148. */
  149. protected function log($log_title,$message,$remarks='info'){
  150. Log::get($remarks,$log_title)->info($message);
  151. }
  152. }