GetAiTrusteeshipWalletResource.php 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. namespace App\Task;
  3. use App\Model\Energy\EnergyAiTrusteeship;
  4. use App\Library\Log;
  5. use Hyperf\Utils\Coroutine\Concurrent;
  6. class GetAiTrusteeshipWalletResource
  7. {
  8. public function execute()
  9. {
  10. try {
  11. $data = EnergyAiTrusteeship::from('energy_ai_trusteeship as a')
  12. ->Join('telegram_bot as b','a.bot_rid','b.rid')
  13. ->Join('energy_platform_bot as c','a.bot_rid','c.bot_rid')
  14. ->where('a.status',0)
  15. ->where('c.is_open_ai_trusteeship','Y')
  16. ->whereRaw('length(t_a.wallet_addr) = 34')
  17. ->select('a.*','b.bot_token')
  18. ->get();
  19. if($data->count() > 0){
  20. //协程数量
  21. $concurrent = new Concurrent(5);
  22. foreach ($data as $k => $v) {
  23. $concurrent->create(function () use ($v) {
  24. sleep(1); //不容易被api限制
  25. $url = 'https://apilist.tronscanapi.com/api/accountv2?address='.$v['wallet_addr'];
  26. $api_key = config('apikey.tronapikey');
  27. $apikeyrand = $api_key[array_rand($api_key)];
  28. $heders = [
  29. "TRON-PRO-API-KEY:".$apikeyrand
  30. ];
  31. $res = Get_Pay($url,null,$heders);
  32. if(empty($res)){
  33. //为空则什么都不处理
  34. }else{
  35. $res = json_decode($res,true);
  36. if(isset($res['bandwidth'])){
  37. //只处理激活的地址,未激活不能代理
  38. $active = $res['activated'] ?"Y":"N";
  39. if($active == 'Y'){
  40. $bandwidth = $res['bandwidth']['freeNetRemaining'] + $res['bandwidth']['netRemaining'];
  41. $energy = $res['bandwidth']['energyRemaining'];
  42. //低于最低值的时候,则需要下单
  43. if($energy < $v['min_energy_quantity'] && $v['is_buy'] == 'N'){
  44. $updatedata['is_buy'] = 'Y';
  45. }
  46. $updatedata['current_bandwidth_quantity'] = $bandwidth;
  47. $updatedata['current_energy_quantity'] = $energy;
  48. EnergyAiTrusteeship::where('rid',$v['rid'])->update($updatedata);
  49. }
  50. }
  51. }
  52. });
  53. }
  54. }
  55. }catch (\Exception $e){
  56. $this->log('energyplatformbalance','----------任务执行报错,请联系管理员。报错原因:----------'.$e->getMessage());
  57. }
  58. }
  59. /**
  60. * 记入日志
  61. * @param $log_title [日志路径]
  62. * @param $message [内容,不支持数组]
  63. * @param $remarks [备注]
  64. */
  65. protected function log($log_title,$message,$remarks='info'){
  66. Log::get($remarks,$log_title)->info($message);
  67. }
  68. }