GetAiEnergyWalletResource.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <?php
  2. namespace App\Task;
  3. use App\Model\Energy\EnergyAiTrusteeship;
  4. use App\Model\Energy\EnergyAiBishu;
  5. use App\Model\Telegram\TelegramBotUser;
  6. use App\Library\Log;
  7. use Hyperf\Utils\Coroutine\Concurrent;
  8. class GetAiEnergyWalletResource
  9. {
  10. public function execute()
  11. {
  12. //智能托管
  13. try {
  14. $data = EnergyAiTrusteeship::from('energy_ai_trusteeship as a')
  15. ->Join('telegram_bot as b','a.bot_rid','b.rid')
  16. ->Join('energy_platform_bot as c','a.bot_rid','c.bot_rid')
  17. ->Join('telegram_bot_user as d', function ($join) {
  18. $join->on('a.bot_rid', '=','d.bot_rid')->on('a.tg_uid', '=','d.tg_uid');
  19. })
  20. ->where('a.status',0)
  21. ->where('c.is_open_ai_trusteeship','Y')
  22. ->whereRaw('length(t_a.wallet_addr) = 34')
  23. ->whereRaw('t_d.cash_trx > t_c.trx_price_energy_32000 and (t_a.max_buy_quantity = 0 or (t_a.max_buy_quantity > 0 and t_a.total_buy_quantity < t_a.max_buy_quantity))')
  24. ->select('a.*','b.bot_token')
  25. ->get();
  26. if($data->count() > 0){
  27. //协程数量
  28. $concurrent = new Concurrent(5);
  29. foreach ($data as $k => $v) {
  30. $concurrent->create(function () use ($v) {
  31. sleep(1); //不容易被api限制
  32. $isSuccess = 'N'; //是否成功,调用trongrid
  33. $url = 'https://apilist.tronscanapi.com/api/accountv2?address='.$v['wallet_addr'];
  34. $api_key = config('apikey.tronapikey');
  35. $apikeyrand = $api_key[array_rand($api_key)];
  36. $heders = [
  37. "TRON-PRO-API-KEY:".$apikeyrand
  38. ];
  39. $res = Get_Pay($url,null,$heders);
  40. if(empty($res)){
  41. //为空则什么都不处理
  42. }else{
  43. $res = json_decode($res,true);
  44. if(isset($res['bandwidth'])){
  45. //只处理激活的地址,未激活不能代理
  46. $active = $res['activated'] ?"Y":"N";
  47. if($active == 'Y'){
  48. $isSuccess = 'Y';
  49. $bandwidth = $res['bandwidth']['freeNetRemaining'] + $res['bandwidth']['netRemaining'];
  50. $energy = $res['bandwidth']['energyRemaining'];
  51. //低于最低值的时候,则需要下单,这里改为-100,代理的能量有波动,减100也可以转成功
  52. if($energy < ($v['min_energy_quantity'] - 100) && $v['is_buy'] == 'N'){
  53. $updatedata['is_buy'] = 'Y';
  54. }
  55. $updatedata['current_bandwidth_quantity'] = $bandwidth;
  56. $updatedata['current_energy_quantity'] = $energy;
  57. EnergyAiTrusteeship::where('rid',$v['rid'])->update($updatedata);
  58. }
  59. }
  60. }
  61. //上面接口查询失败,则查询trongrid
  62. if($isSuccess == 'N'){
  63. $balance_url = 'https://api.trongrid.io/wallet/getaccountresource';
  64. $tronapikey = config('apikey.gridapikey');
  65. $apikeyrand = $tronapikey[array_rand($tronapikey)];
  66. $heders = [
  67. "TRON-PRO-API-KEY:".$apikeyrand
  68. ];
  69. $param = [
  70. "address" => $v['wallet_addr'],
  71. "visible" => true
  72. ];
  73. $res2 = curl_post_https($balance_url,json_encode($param),$heders);
  74. if(empty($res2)){
  75. //为空则什么都不处理
  76. }else{
  77. $res2 = json_decode($res2,true);
  78. if(isset($res2['freeNetLimit'])){
  79. $bandwidth = ($res2['NetLimit'] ?? 0) + ($res2['freeNetLimit'] ?? 0) - ($res2['NetUsed'] ?? 0) ;
  80. $energy = ($res2['EnergyLimit'] ?? 0) - ($res2['EnergyUsed'] ?? 0);
  81. //低于最低值的时候,则需要下单,这里改为-100,代理的能量有波动,减100也可以转成功
  82. if($energy < ($v['min_energy_quantity'] - 100) && $v['is_buy'] == 'N'){
  83. $updatedata['is_buy'] = 'Y';
  84. }
  85. $updatedata['current_bandwidth_quantity'] = $bandwidth;
  86. $updatedata['current_energy_quantity'] = $energy;
  87. EnergyAiTrusteeship::where('rid',$v['rid'])->update($updatedata);
  88. }
  89. }
  90. }
  91. });
  92. }
  93. }
  94. }catch (\Exception $e){
  95. $this->log('energyplatformbalance','----------任务执行报错,请联系管理员。报错原因:----------'.$e->getMessage());
  96. }
  97. //笔数套餐
  98. try {
  99. $data = EnergyAiBishu::from('energy_ai_bishu as a')
  100. ->Join('telegram_bot as b','a.bot_rid','b.rid')
  101. ->Join('energy_platform_bot as c','a.bot_rid','c.bot_rid')
  102. ->where('a.status',0)
  103. ->where('c.is_open_bishu','Y')
  104. ->whereRaw('length(t_a.wallet_addr) = 34 and t_a.max_buy_quantity > t_a.total_buy_quantity')
  105. ->select('a.*','b.bot_token','c.per_bishu_energy_quantity')
  106. ->get();
  107. if($data->count() > 0){
  108. //协程数量
  109. $concurrent = new Concurrent(5);
  110. foreach ($data as $k => $v) {
  111. $concurrent->create(function () use ($v) {
  112. sleep(1); //不容易被api限制
  113. $isSuccess = 'N'; //是否成功,调用trongrid
  114. $url = 'https://apilist.tronscanapi.com/api/accountv2?address='.$v['wallet_addr'];
  115. $api_key = config('apikey.tronapikey');
  116. $apikeyrand = $api_key[array_rand($api_key)];
  117. $heders = [
  118. "TRON-PRO-API-KEY:".$apikeyrand
  119. ];
  120. $res = Get_Pay($url,null,$heders);
  121. if(empty($res)){
  122. //为空则什么都不处理
  123. }else{
  124. $res = json_decode($res,true);
  125. if(isset($res['bandwidth'])){
  126. //只处理激活的地址,未激活不能代理
  127. $active = $res['activated'] ?"Y":"N";
  128. if($active == 'Y'){
  129. $isSuccess = 'Y';
  130. $bandwidth = $res['bandwidth']['freeNetRemaining'] + $res['bandwidth']['netRemaining'];
  131. $energy = $res['bandwidth']['energyRemaining'];
  132. //低于最低值的时候,则需要下单,这里改为-100,代理的能量有波动,减100也可以转成功
  133. if($energy < ($v['per_bishu_energy_quantity'] - 100) && $v['is_buy'] == 'N'){
  134. $updatedata['is_buy'] = 'Y';
  135. }
  136. $updatedata['current_bandwidth_quantity'] = $bandwidth;
  137. $updatedata['current_energy_quantity'] = $energy;
  138. EnergyAiBishu::where('rid',$v['rid'])->update($updatedata);
  139. }
  140. }
  141. }
  142. //上面接口查询失败,则查询trongrid
  143. if($isSuccess == 'N'){
  144. $balance_url = 'https://api.trongrid.io/wallet/getaccountresource';
  145. $tronapikey = config('apikey.gridapikey');
  146. $apikeyrand = $tronapikey[array_rand($tronapikey)];
  147. $heders = [
  148. "TRON-PRO-API-KEY:".$apikeyrand
  149. ];
  150. $param = [
  151. "address" => $v['wallet_addr'],
  152. "visible" => true
  153. ];
  154. $res2 = curl_post_https($balance_url,json_encode($param),$heders);
  155. if(empty($res2)){
  156. //为空则什么都不处理
  157. }else{
  158. $res2 = json_decode($res2,true);
  159. if(isset($res2['freeNetLimit'])){
  160. $bandwidth = ($res2['NetLimit'] ?? 0) + ($res2['freeNetLimit'] ?? 0) - ($res2['NetUsed'] ?? 0) ;
  161. $energy = ($res2['EnergyLimit'] ?? 0) - ($res2['EnergyUsed'] ?? 0);
  162. //低于最低值的时候,则需要下单,这里改为-100,代理的能量有波动,减100也可以转成功
  163. if($energy < ($v['per_bishu_energy_quantity'] - 100) && $v['is_buy'] == 'N'){
  164. $updatedata['is_buy'] = 'Y';
  165. }
  166. $updatedata['current_bandwidth_quantity'] = $bandwidth;
  167. $updatedata['current_energy_quantity'] = $energy;
  168. EnergyAiBishu::where('rid',$v['rid'])->update($updatedata);
  169. }
  170. }
  171. }
  172. });
  173. }
  174. }
  175. }catch (\Exception $e){
  176. $this->log('energyplatformbalance','----------任务执行报错,请联系管理员。报错原因:----------'.$e->getMessage());
  177. }
  178. }
  179. /**
  180. * 记入日志
  181. * @param $log_title [日志路径]
  182. * @param $message [内容,不支持数组]
  183. * @param $remarks [备注]
  184. */
  185. protected function log($log_title,$message,$remarks='info'){
  186. Log::get($remarks,$log_title)->info($message);
  187. }
  188. }