FmsWalletTradeTrxServices.php 11 KB

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