GetOKTRealtimeRate.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. namespace App\Task;
  3. use App\Model\Transit\TransitWalletCoin;
  4. use App\Library\Log;
  5. class GetOKTRealtimeRate
  6. {
  7. public function execute()
  8. {
  9. try {
  10. $url = 'https://www.okx.com/api/v5/market/index-tickers?instId=TRX-USDT&quoteCcy=USDT';
  11. $data = Get_Pay($url);
  12. $usdttrx = 1; #默认汇率
  13. $is_update = 'N'; #是否更新:N不更新,Y更新
  14. if(!empty($data)){
  15. $data = json_decode($data,true);
  16. if(isset($data['data']) && count($data['data']) > 0){
  17. $trxusdt = $data['data'][0]['idxPx'];
  18. $usdttrx = number_format(1 / $trxusdt, 2);
  19. $is_update = 'Y';
  20. }
  21. }else{
  22. $this->log('getoktrealtimerate','获取okx实时汇率失败');
  23. }
  24. //查询汇率成功的时候才更新
  25. if($is_update == 'Y'){
  26. #更新实时汇率
  27. $walletdata = TransitWalletCoin::where('in_coin_name','usdt')->where('out_coin_name','trx')->whereIn('is_realtime_rate',[1,3])->get();
  28. if($walletdata->count() > 0){
  29. foreach ($walletdata as $k => $v) {
  30. if($v['is_realtime_rate'] == 1){
  31. $realrate = $usdttrx - $v['profit_rate']; //直接扣
  32. }else{
  33. $realrate = bcmul($usdttrx, (1 - $v['profit_rate']),2); //按百分比扣
  34. }
  35. $updatedata['exchange_rate'] = $realrate > 0 ? $realrate:1; #如果汇率计算后小于0,则取默认汇率
  36. TransitWalletCoin::where('rid',$v['rid'])->update($updatedata);
  37. }
  38. }
  39. }
  40. }catch (\Exception $e){
  41. $this->log('getoktrealtimerate','----------任务执行报错,请联系管理员。报错原因:----------'.$e->getMessage());
  42. }
  43. }
  44. /**
  45. * 记入日志
  46. * @param $log_title [日志路径]
  47. * @param $message [内容,不支持数组]
  48. * @param $remarks [备注]
  49. */
  50. protected function log($log_title,$message,$remarks='info'){
  51. Log::get($remarks,$log_title)->info($message);
  52. }
  53. }