EnergyWalletTradeTrxServices.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <?php
  2. namespace App\Service\Energy;
  3. use App\Model\Energy\EnergyWalletTradeList;
  4. use App\Library\Log;
  5. use Hyperf\DbConnection\Db;
  6. use App\Service\Bus\TronServices;
  7. class EnergyWalletTradeTrxServices
  8. {
  9. private $limit = 50; //每次获取多少条
  10. /**
  11. * 获取能量钱包数据-通过tronscan获取
  12. * @param $in_list [钱包数据]
  13. * @param $start_timestamp [开始时间 13位时间戳]
  14. * @param $end_timestamp [结束时间 13位时间戳]
  15. * @param $page [页数]
  16. */
  17. public function getList($in_list,$start_timestamp,$end_timestamp,$page=0){
  18. $limit = $this->limit;
  19. $start = $page * $limit;
  20. //通过tronscan拉取交易
  21. $url = 'https://apilist.tronscanapi.com/api/new/transfer?sort=-timestamp&count=true&limit='.$limit.'&start='.$start.'&address='.$in_list['receive_wallet'].'&toAddress='.$in_list['receive_wallet'].'&tokens=_&start_timestamp='.$start_timestamp.'&end_timestamp='.$end_timestamp;
  22. $api_key = config('apikey.tronapikey');
  23. $apikeyrand = $api_key[array_rand($api_key)];
  24. $heders = [
  25. 'TRON-PRO-API-KEY:'.$apikeyrand
  26. ];
  27. $data = Get_Pay($url,null,$heders);
  28. if(!empty($data)){
  29. $data = json_decode($data,true);
  30. if(!empty($data['total']) && isset($data['data']) && count($data['data']) > 0){
  31. $data = $this->handleWalletData($data,$in_list,$start_timestamp,$end_timestamp,$page,$limit);
  32. }
  33. }
  34. }
  35. /**
  36. * 处理收款数据-通过tronscan获取
  37. * @param $data [收款数据]
  38. * @param $in_list [钱包数据]
  39. * @param $start_timestamp [开始时间 13位时间戳]
  40. * @param $end_timestamp [结束时间 13位时间戳]
  41. * @param $page [页数]
  42. * @param $limit [每页获取数据]
  43. */
  44. public function handleWalletData($data,$in_list,$start_timestamp,$end_timestamp,$page,$limit){
  45. if(isset($data['data'])){
  46. $list = $data['data'];
  47. $total = $data['total']; //总数
  48. if($list){
  49. // 校验hash是否存在
  50. $hash_list = array_column($list,'transactionHash');
  51. $transaction_hash_list = EnergyWalletTradeList::whereIn('tx_hash',$hash_list)->pluck('tx_hash')->toArray();
  52. $success_hash_list = []; //成功hash值数组
  53. $error_hash_list = []; //失败hash值数组
  54. $time = nowDate();
  55. foreach ($list as $k => $v) {
  56. if(!in_array($v['transactionHash'],$transaction_hash_list) && $v['contractRet'] == 'SUCCESS' && calculationExcept($v['amount'],6) >= 1 && $v['tokenInfo']['tokenId'] == '_' && $v['tokenInfo']['tokenAbbr'] == 'trx'){
  57. Db::beginTransaction();
  58. try {
  59. $res = $this->AddWalletData($v,$time,$in_list);
  60. if($res['code'] == 200){
  61. $success_hash_list[] = $v['transactionHash'];
  62. }else{
  63. $error_hash_list[] = $v['transactionHash'].'--------'.'不是收款记录或金额为0,交易失败';
  64. }
  65. Db::commit();
  66. }catch (\Exception $e){
  67. Db::rollBack();
  68. $error_hash_list[] = $v['transactionHash'].'--------'.$e->getMessage();
  69. }
  70. }else{
  71. $error_hash_list[] = $v['transactionHash'].'--------'.'已存在';
  72. }
  73. }
  74. // $log_list = [
  75. // 'receive_wallet' => $in_list['receive_wallet'],
  76. // 'success_hash_list' => $success_hash_list,
  77. // 'error_hash_list' => $error_hash_list,
  78. // ];
  79. // $this->log('getenergywallettrxtrade','钱包地址:'.$in_list['receive_wallet'].',成功hash值'.$success_hash_list_count.'条,失败hash值'.$error_hash_list_count.'条');
  80. // $this->log('getenergywallettrxtrade',json_encode($log_list,JSON_UNESCAPED_UNICODE));
  81. // 总数大于当前获取数时和当前获取数据总数等于设置条数,再次去获取
  82. $get_total = ($page+1) * $limit;
  83. if($total > $get_total && count($list) == $limit){
  84. $this->getList($in_list,$start_timestamp,$end_timestamp,$page+1);
  85. }
  86. }
  87. }
  88. }
  89. /**
  90. * 整合添加收款数据-通过tronscan获取
  91. * @param $data [收款数据]
  92. * @param $time [当前时间]
  93. * @param $in_list [钱包数据]
  94. */
  95. public function AddWalletData($data,$time,$in_list){
  96. $txid_list = [];
  97. $txid_list['tx_hash'] = $data['transactionHash']; //交易hash
  98. $txid_list['transferfrom_address'] = $data['transferFromAddress']; //来源钱包地址
  99. $txid_list['timestamp'] = $data['timestamp']; //时间戳
  100. $txid_list['transferto_address'] = $in_list['receive_wallet']; //收款钱包地址
  101. $txid_list['coin_name'] = 'trx';
  102. $txid_list['amount'] = calculationExcept($data['amount'],6); //交易数额
  103. $txid_list['get_time'] = $time; //拉取时间
  104. $txid_list['process_status'] = 1; //待兑换
  105. $txid_list['process_comments'] = '待处理'; //处理备注
  106. $txid_list['process_time'] = $time; //处理时间
  107. EnergyWalletTradeList::insert($txid_list); //添加收款钱包交易列表
  108. return ['code' => 200];
  109. }
  110. /**
  111. * 获取能量钱包数据-通过trongrid获取
  112. * @param $in_list [钱包数据]
  113. * @param $start_timestamp [开始时间 13位时间戳]
  114. * @param $nexturl [下一页]
  115. */
  116. public function getListByGrid($in_list,$start_timestamp,$nexturl='0'){
  117. $limit = $this->limit;
  118. if($nexturl != '0'){
  119. $url = $nexturl;
  120. }else{
  121. $url = 'https://api.trongrid.io/v1/accounts/'.$in_list['receive_wallet'].'/transactions?only_to=true&only_confirm=true&limit='.$limit.'&min_timestamp='.$start_timestamp.'&search_internal=false';
  122. }
  123. $api_key = config('apikey.gridapikey');
  124. $apikeyrand = $api_key[array_rand($api_key)];
  125. $heders = [
  126. 'TRON-PRO-API-KEY:'.$apikeyrand
  127. ];
  128. $data = Get_Pay($url,null,$heders);
  129. if(!empty($data) && $data){
  130. //波场接口API
  131. $TronApiConfig = [
  132. 'url' => 'https://api.trongrid.io',
  133. 'api_key' => $apikeyrand,
  134. ];
  135. $tron = new TronServices($TronApiConfig,'1111111','222222');
  136. $data = json_decode($data,true);
  137. $data = $this->handleWalletDataByGrid($data,$in_list,$tron);
  138. }
  139. }
  140. /**
  141. * 处理收款数据-通过trongrid获取
  142. * @param $data [收款数据]
  143. * @param $in_list [钱包数据]
  144. */
  145. public function handleWalletDataByGrid($data,$in_list,$tron){
  146. if(isset($data['data'])){
  147. $list = $data['data'];
  148. if($list){
  149. // 校验hash是否存在
  150. $hash_list = array_column($list,'txID');
  151. $transaction_hash_list = EnergyWalletTradeList::whereIn('tx_hash',$hash_list)->pluck('tx_hash')->toArray();
  152. $success_hash_list = []; //成功hash值数组
  153. $error_hash_list = []; //失败hash值数组
  154. $time = nowDate();
  155. foreach ($list as $k => $v) {
  156. if(!in_array($v['txID'],$transaction_hash_list) && $v['raw_data']['contract'][0]['type'] == 'TransferContract'){
  157. Db::beginTransaction();
  158. try {
  159. $res = $this->AddWalletDataByGrid($v,$time,$in_list,$tron);
  160. if($res['code'] == 200){
  161. $success_hash_list[] = $v['txID'];
  162. }else{
  163. $error_hash_list[] = $v['txID'].'--------'.'不是收款记录或金额为0,交易失败';
  164. }
  165. Db::commit();
  166. }catch (\Exception $e){
  167. Db::rollBack();
  168. $error_hash_list[] = $v['txID'].'--------'.$e->getMessage();
  169. }
  170. }else{
  171. $error_hash_list[] = $v['txID'].'--------'.'已存在';
  172. }
  173. }
  174. // $log_list = [
  175. // 'receive_wallet' => $in_list['receive_wallet'],
  176. // 'success_hash_list' => $success_hash_list,
  177. // 'error_hash_list' => $error_hash_list,
  178. // ];
  179. // $this->log('getenergywallettrxtrade','钱包地址:'.$in_list['receive_wallet'].',成功hash值'.$success_hash_list_count.'条,失败hash值'.$error_hash_list_count.'条');
  180. // $this->log('getenergywallettrxtrade',json_encode($log_list,JSON_UNESCAPED_UNICODE));
  181. // 如果有下一页,再次去获取
  182. if(isset($data['meta']['links']['next'])){
  183. $this->getList($in_list,0,$data['meta']['links']['next']);
  184. }
  185. }
  186. }
  187. }
  188. /**
  189. * 整合添加收款数据-通过trongrid获取
  190. * @param $data [收款数据]
  191. * @param $time [当前时间]
  192. * @param $in_list [钱包数据]
  193. */
  194. public function AddWalletDataByGrid($data,$time,$in_list,$tron){
  195. $amount = calculationExcept($data['raw_data']['contract'][0]['parameter']['value']['amount'],6);
  196. if($amount >= 0.1){
  197. $fromaddress = $tron->addressFromHex($data['raw_data']['contract'][0]['parameter']['value']['owner_address']);
  198. $txid_list = [];
  199. $txid_list['tx_hash'] = $data['txID']; //交易hash
  200. $txid_list['transferfrom_address'] = $fromaddress; //来源钱包地址
  201. $txid_list['timestamp'] = $data['raw_data']['timestamp']; //时间戳
  202. $txid_list['transferto_address'] = $in_list['receive_wallet']; //收款钱包地址
  203. $txid_list['coin_name'] = 'trx';
  204. $txid_list['amount'] = $amount; //交易数额
  205. $txid_list['get_time'] = $time; //拉取时间
  206. $txid_list['process_status'] = 1; //待兑换
  207. $txid_list['process_comments'] = '待处理'; //处理备注
  208. $txid_list['process_time'] = $time; //处理时间
  209. EnergyWalletTradeList::insert($txid_list); //添加收款钱包交易列表
  210. }
  211. return ['code' => 200];
  212. }
  213. /**
  214. * 记入日志
  215. * @param $log_title [日志路径]
  216. * @param $message [内容,不支持数组]
  217. * @param $remarks [备注]
  218. */
  219. protected function log($log_title,$message,$remarks='info'){
  220. Log::get($remarks,$log_title)->info($message);
  221. }
  222. }