123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- namespace App\Task;
- use App\Model\Transit\TransitWalletCoin;
- use App\Library\Log;
- class GetOKTRealtimeRate
- {
- public function execute()
- {
- try {
- $url = 'https://www.okx.com/api/v5/market/index-tickers?instId=TRX-USDT"eCcy=USDT';
-
- $data = Get_Pay($url);
- $usdttrx = 1;
- $is_update = 'N';
-
- if(!empty($data)){
- $data = json_decode($data,true);
- if(isset($data['data']) && count($data['data']) > 0){
- $trxusdt = $data['data'][0]['idxPx'];
- $usdttrx = number_format(1 / $trxusdt, 2);
- $is_update = 'Y';
- }
- }else{
- $this->log('getoktrealtimerate','获取okx实时汇率失败');
- }
-
-
- if($is_update == 'Y'){
-
- $walletdata = TransitWalletCoin::where('in_coin_name','usdt')->where('out_coin_name','trx')->whereIn('is_realtime_rate',[1,3])->get();
-
- if($walletdata->count() > 0){
- foreach ($walletdata as $k => $v) {
- if($v['is_realtime_rate'] == 1){
- $realrate = $usdttrx - $v['profit_rate'];
- }else{
- $realrate = bcmul($usdttrx, (1 - $v['profit_rate']),2);
- }
-
- $updatedata['exchange_rate'] = $realrate > 0 ? $realrate:1;
- TransitWalletCoin::where('rid',$v['rid'])->update($updatedata);
- }
- }
- }
-
- }catch (\Exception $e){
- $this->log('getoktrealtimerate','----------任务执行报错,请联系管理员。报错原因:----------'.$e->getMessage());
- }
- }
-
- protected function log($log_title,$message,$remarks='info'){
- Log::get($remarks,$log_title)->info($message);
- }
- }
|