| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2019/6/26
- * Time: 17:10
- */
- namespace App\Logic;
- use datainf\pplus\Instance;
- use App\Http\Response\Response;
- use App\Lib\ModelBase;
- use Illuminate\Database\Capsule\Manager as DB;
- use App\Lib\Biz\Sport\Common as commonFunction;
- use App\Http\Model\StBqResult as BqResultModel;
- use App\Http\Model\StBroadcast as broadcastModel;
- use App\Http\Model\StGameType as gameModel;
- use App\Http\Model\StLqResult as LqResultModel;
- use App\Http\Model\StWqResult as WqResultModel;
- use App\Http\Model\StZqLocalLeague as LeagueModel;
- use App\Http\Model\StZqLocalMatch as MatchModel;
- use App\Http\Model\StZqOdds as OddsModel;
- use App\Http\Model\StZqOddsRecord as OddsRecordModel;
- use App\Http\Model\StZqResult as ZqResultModel;
- class DataLogic
- {
- use Instance;
- /*
- * 写 联赛 数据
- * 每个请求 包含 N个联赛
- */
- public function setLeague($data)
- {
- try {
- //开启事务
- DB::beginTransaction();
- $obt = $data['data'];
- //请求 数据 为空
- if(empty($obt)) throw new \Exception(Response::generate('请求数据为空,',Response::ABNORMAL));
- $getData = $this->getAddData($obt);
- //不是 联赛 数据
- if($getData['title'] != 'league') throw new \Exception(Response::generate('不是联赛数据,',Response::ABNORMAL));
- //获取球类代码
- $game_code = $getData['game_code'];
- //获取数据源
- $source = $getData['source'];
- //获取球类名称
- $gameName = gameModel::getGameName($game_code);
- //获取 model
- $models = commonFunction::getModels($game_code, 1);
- //获取 联赛 数据
- $leagueData = $getData['data'];
- //获取 当前请求 所有 联赛 uuid
- $identity = [];
- foreach($leagueData as $k=>$v){
- $identity[] = $v['uuid'];
- }
- $identity = array_unique($identity);
- sort($identity);
- //获取 本地 已存在 联赛
- $l_lg_data = $models['model_local_league']::whereIn('identity',$identity)->select('identity','lg_id')->get()->toArray();
- //二维数组去重
- $l_lg_data = commonFunction::uniquArrV2($l_lg_data,'identity');
- //循环对比 请求identity->本地identity
- foreach($l_lg_data as $k=>$v){
- foreach($identity as $kk=> $uuid){
- if($v['identity'] == $uuid){
- unset($identity[$kk]);
- }
- }
- }
- //去除本地和请求里都存在的联赛,如果还有剩余联赛uuid,则将其写入
- if(!empty($identity)) {
- //没有 决赛时间 默认获取本年最后一天
- $last_time = date('Y-12-31 23:59:59');
- foreach($leagueData as $k=>$v){
- foreach($identity as $kk=> $uuid){
- if($v['uuid'] == $uuid){
- //如有 决赛时间
- if($v['last_time']){
- $last_time = $v['last_time'];
- }
- if(empty($v['uuid'])) throw new \Exception(Response::generate($gameName.'联赛-lg_id:'.$v['lg_id'].';',Response::LG__UUID_NULL));
- $set_lg['name_chinese'] = $v['name_chinese'];
- $set_lg['kind'] = $v['kind'];
- $set_lg['match_mode'] = $v['match_mode'];
- $set_lg['if_stop'] = $v['if_stop'];
- $set_lg['identity'] = $v['uuid'];
- $set_lg['last_time'] = $last_time;
- $set_lg['utime'] = date('Y-m-d H:i:s');
- //写入联赛
- $id = $models['model_league']::insertGetId($set_lg);
- $m_lg_id = $id;
- if($m_lg_id < 1) throw new \Exception(Response::generate($gameName.'联赛-lg_id:'.$v['lg_id'].';',Response::INSERT_ERROR));
- //写入 本地 联赛记录
- $set_local = [
- 'lg_id'=>$id,
- 'others_lg_id'=>$v['lg_id'],
- 'source'=>$source,
- 'ctime'=>date('Y-m-d H:i:s'),
- 'identity'=>$v['uuid'],
- ];
- $ret = $models['model_local_league']::insertGetId($set_local);
- if($ret < 1) throw new \Exception(Response::generate($gameName.'联赛-lg_id:'.$data['lg_id'].';',Response::LOCAL_LEAGUE_ERROR)) ;//Render([], '10017', lang('Tips','Sports')->get('local_league_error'));
- }
- }
- }
- }
- $this->writeLog($data,Response::success());
- //提交事务
- DB::commit();
- return Response::success();
- } catch (\Exception $e) {
- //回滚事务
- DB::rollBack();
- $this->writeLog($data,$e->getMessage());
- return $e->getMessage();
- }
- }
- /*
- * 写 赛事 数据
- * 每个请求 包含 N个联赛 下 N个赛事
- */
- public function setMatch($data)
- {
- try {
- //开启事务
- DB::beginTransaction();
- $obt = $data['data'];
- //请求 数据 为空
- if(empty($obt)) throw new \Exception(Response::generate('请求数据为空,',Response::ABNORMAL));
- $getData = $this->getAddData($obt);
- //不是 赛事 数据
- if($getData['title'] != 'match') throw new \Exception(Response::generate('不是赛事数据,',Response::ABNORMAL));
- //获取球类代码
- $game_code = $getData['game_code'];
- //获取数据源
- $source = $getData['source'];
- //获取球类名称
- $gameName = gameModel::getGameName($game_code);
- //获取 model
- $models = commonFunction::getModels($game_code, 1);
- //获取 赛事 数据
- $matchData = $getData['data'];
- //获取 当前请求 所有 uuid /match_id
- $identity = [];
- $s_match_ids = [];
- foreach($matchData as $k=>$v){
- $identity[] = $v['uuid'];
- $s_match_ids[] = $v['match_id'];
- }
- //====验证 赛事 所属 联赛 是否存在====
- $identity = array_unique($identity);
- sort($identity);
- //获取 本地 已存在 联赛
- $l_lg_data = $models['model_local_league']::whereIn('identity',$identity)->select('identity','lg_id')->get()->toArray();
- //二维数组去重
- $l_lg_data = commonFunction::uniquArrV2($l_lg_data,'identity');
- //循环对比 请求uuid->本地identity
- foreach($l_lg_data as $k=>$v){
- foreach($identity as $kk=> $uuid){
- if($v['identity'] == $uuid){
- unset($identity[$kk]);
- }
- }
- }
- sort($identity);
- //去除本地和请求里都存在的联赛,如果还有剩余联赛id,则返回异常
- if(!empty($identity)) throw new \Exception(Response::generate($gameName.'联赛:uuid-'.$identity[0].';',Response::LEAGUE_ERROR));
- //====end====
- //====获取 本地 已存在 赛事====
- $s_match_ids = array_unique($s_match_ids);
- sort($s_match_ids);
- $l_match_data = $models['model_local_match']::whereIn('others_match_id',$s_match_ids)->where('source',$source)->select('others_match_id','match_id')->get()->toArray();
- //二维数组去重
- $l_match_data = commonFunction::uniquArrV2($l_match_data,'others_match_id');
- //循环对比 请求match_id->本地others_match_id
- foreach($l_match_data as $k=>$v){
- foreach($s_match_ids as $kk=> $s_match_id){
- if($v['others_match_id'] == $s_match_id){
- unset($s_match_ids[$kk]);
- }
- }
- }
- //剩余 赛事 数据 写入
- if(!empty($s_match_ids)){
- foreach($matchData as $k=>$v){
- foreach($s_match_ids as $kk=> $s_match_id){
- if($v['match_id'] == $s_match_id){
- $data = $v;
- $half_match_id = 0;
- //获取 本地 联赛 ID
- $lg_id = commonFunction::searcharray($data['lg_id'],'others_lg_id',$l_lg_data,'lg_id');
- //如果有上半场赛事id 获取上半场赛事是否存在
- if(!empty($data['half_match_id'])){
- $half_match_id = $models['model_local_match']::where(['others_match_id'=>$data['half_match_id'],'source'=>$source])
- ->value('match_id');
- if(empty($half_match_id)) throw new \Exception(Response::generate($gameName.'上半场赛事-match_id:'.$data['match_id'].';',Response::HALF_MATCH_ERROR)) ;//Render([], '10024', lang('Tips','Sports')->get('half_match_error'));
- }
- //如果赛事没有开始日期,则为冠军盘口赛事
- if(empty($data['match_date'])){
- //冠军盘口赛事获取所属联赛结束时间
- $last_time = $models['model_league']::where(['id'=>$lg_id])
- ->value('last_time');
- if(empty($last_time)) throw new \Exception(Response::generate($gameName.'联赛-lg_id:'.$data['lg_id'].';',Response::LG_LASTTIME_ERROR)) ;//Render([], '10023', lang('Tips','Sports')->get('lg_lastTime_error'));
- //给冠军盘口赛事 赋值时间
- $time = strtotime($last_time);
- $data['match_date'] = date('Y-m-d',$time);
- $data['match_time'] = date('H:i:s',$time);
- }
- $set_match = [
- 'ctime'=>date('Y-m-d H:i:s'),
- 'utime'=>date('Y-m-d H:i:s'),
- 'expire_time'=>date('Y-m-d H:i:s',time()+60),
- 'home_team'=>$data['home_team']?:'',
- 'guest_team'=>$data['guest_team']?:'no_team',
- 'lg_id'=>$lg_id,
- 'status'=>$data['status'],
- 'match_date'=>$data['match_date']?:date('Y-m-d'),
- 'match_time'=>$data['match_time']?:date('H:i:s'),
- // 'tag'=>$data['tag']?:0,
- 'is_rollball'=>$data['is_rollball']?:0,
- 'is_today'=>$data['is_today']?:0,
- 'is_morningplate'=>$data['is_morningplate']?:0,
- 'is_stringscene'=>$data['is_stringscene']?:0,
- 'us_time'=>$data['us_time']?:commonFunction::qgmdate('Y-m-d H:i:s', '', -4),
- 'half_match_id'=>$half_match_id?:0,
- 'identity' => $data['uuid'],
- ];
- //写入赛事 返回id
- $id = $models['model_match']::insertGetId($set_match);
- if($id < 1) throw new \Exception(Response::generate($gameName.'赛事-match_id:'.$data['match_id'].';',Response::INSERT_ERROR)) ;
- //写关联记录
- $set_local = [
- 'match_id'=>$id,
- 'others_match_id'=>$data['match_id'],
- 'source'=>$source,
- 'ctime'=>date('Y-m-d H:i:s')
- ];
- $ret = $models['model_local_match']::insertGetId($set_local);
- if($ret < 1) throw new \Exception(Response::generate($gameName.'赛事-match_id:'.$data['match_id'].';',Response::LOCAL_MATCH_ERROR)) ;//Render([], '10018', lang('Tips','Sports')->get('local_match_error'));
- }
- }
- }
- }
- $this->writeLog($data,Response::success());
- //提交事务
- DB::commit();
- return Response::success();
- } catch (\Exception $e) {
- //回滚事务
- DB::rollBack();
- $this->writeLog($data,$e->getMessage());
- return $e->getMessage();
- }
- }
- /*
- * 写 赛事 结果 记录 数据
- * 每个请求 包含 N个联赛 下 N个赛事 结果数据
- */
- public function setMatchResult($data)
- {
- try {
- //开启事务
- DB::beginTransaction();
- $obt = $data['data'];
- //请求 数据 为空
- if(empty($obt)) throw new \Exception(Response::generate('请求数据为空,',Response::ABNORMAL));
- $getData = $this->getAddData($obt);
- //不是 赛事 结果 记录 数据
- if($getData['title'] != 'match_result_r') throw new \Exception(Response::generate('不是赛事结果记录数据,',Response::ABNORMAL));
- //获取球类代码
- $game_code = $getData['game_code'];
- //获取数据源
- $source = $getData['source'];
- //获取球类名称
- $gameName = gameModel::getGameName($game_code);
- //获取 model
- $models = commonFunction::getModels($game_code, 1);
- //获取 赛事 数据
- $match_r_data = $getData['data'];
- //获取 当前请求 所有 uuid /match_id
- $identity = [];
- $s_match_ids = [];
- foreach($match_r_data as $k=>$v){
- $identity[] = $v['uuid'];
- $s_match_ids[] = $v['match_id'];
- }
- //====验证 赛事 所属 联赛 是否存在====
- $identity = array_unique($identity);
- sort($identity);
- //获取 本地 已存在 联赛
- $l_lg_data = $models['model_local_league']::whereIn('identity',$identity)->select('identity','lg_id')->get()->toArray();
- //二维数组去重
- $l_lg_data = commonFunction::uniquArrV2($l_lg_data,'identity');
- //循环对比 请求uuid->本地identity
- foreach($l_lg_data as $k=>$v){
- foreach($identity as $kk=> $uuid){
- if($v['identity'] == $uuid){
- unset($identity[$kk]);
- }
- }
- }
- sort($identity);
- //去除本地和请求里都存在的联赛,如果还有剩余联赛id,则返回异常
- if(!empty($identity)) throw new \Exception(Response::generate($gameName.'联赛:uuid-'.$identity[0].';',Response::LEAGUE_ERROR));
- //====end====
- //====验证 赛事结果记录 所属赛事 是否存在====
- $s_match_ids = array_unique($s_match_ids);
- sort($s_match_ids);
- //获取 本地 已存在 赛事
- $l_match_data = $models['model_local_match']::whereIn('others_match_id',$s_match_ids)->where('source',$source)->select('others_match_id','match_id')->get()->toArray();
- //二维数组去重
- $l_match_data = commonFunction::uniquArrV2($l_match_data,'others_match_id');
- //循环对比 请求match_id->本地others_match_id
- foreach($l_match_data as $k=>$v){
- foreach($s_match_ids as $kk=> $s_match_id){
- if($v['others_match_id'] == $s_match_id){
- unset($s_match_ids[$kk]);
- }
- }
- }
- sort($s_match_ids);
- //去除本地和请求里都存在的赛事,如果还有剩余赛事id,则返回异常
- if(!empty($s_match_ids)) throw new \Exception(Response::generate($gameName.'赛事-match_id'.$s_match_ids[0].';',Response::MATCH_ERROR));
- //====end====
- //处理 赛事 结果记录 数据
- foreach($match_r_data as $k=>$v){
- $data = $v;
- //获取 本地 联赛 ID
- $lg_id = commonFunction::searcharray($data['lg_id'],'others_lg_id',$l_lg_data,'lg_id');
- //获取 本地 赛事 ID
- $match_id = commonFunction::searcharray($data['match_id'],'others_match_id',$l_match_data,'match_id');
- //根据球类 获取 赛事结果记录字段
- $set_match_r = $this->get_match_r($game_code,$lg_id,$match_id,$data);
- //写 赛事 结果 记录
- $ret = $models['model_result_record']::insert($set_match_r);
- if($ret != true) throw new \Exception(Response::generate($gameName.'赛事-match_id:'.$data['match_id'].';',Response::ADD_MATCH_R_R_ERROR));
- }
- $this->writeLog($data,Response::success());
- //提交事务
- DB::commit();
- return Response::success();
- } catch (\Exception $e) {
- //回滚事务
- DB::rollBack();
- $this->writeLog($data,$e->getMessage());
- return $e->getMessage();
- }
- }
- /*
- * 写 普通 赔率 数据
- * 每个请求 只包含 一场赛事下 N条赔率
- */
- public function setOdds($data)
- {
- try {
- //开启事务
- DB::beginTransaction();
- $obt = $data['data'];
- //请求 数据 为空
- if(empty($obt)) throw new \Exception(Response::generate('请求数据为空,',Response::ABNORMAL));
- $getData = $this->getAddData($obt);
- //不是 赔率 数据
- if($getData['title'] != 'odds') throw new \Exception(Response::generate('不是赔率数据,',Response::ABNORMAL));
- //获取球类代码
- $game_code = $getData['game_code'];
- //获取数据源
- $source = $getData['source'];
- //获取源数据联赛ID
- $uuid = $getData['uuid'];
- //获取源数据赛事ID
- $s_match_id = $getData['match_id'];
- //获取赔率所属赛事 tag 值 玩法数量
- $tag = $getData['tag'];
- //获取球类名称
- $gameName = gameModel::getGameName($game_code);
- //验证本次请求所属联赛/赛事是否存在 返回本地联赛/赛事ID
- $models = commonFunction::getModels($game_code, 1);
- $lg_id = $this->leagueVerify($models,$uuid,$source,$gameName);
- $match_id = $this->matchVerify($models,$s_match_id,$source,$gameName);
- //更新赛事 tag 值
- $upMatch = $models['model_match']::where(['id'=>$match_id])
- ->update(['tag'=>$tag,'utime'=>date('Y-m-d H:i:s')]);
- if($upMatch < 1) throw new \Exception(Response::generate($gameName.'赛事-match_id:'.$s_match_id.';',Response::UPMATCHTAG_ERROR)) ;
- //获取 赔率数据
- $oddsData = $getData['data'];
- if(!empty($oddsData)){
- //获取 当前 所有 可用 赔率 sole
- $odds_only = $getData['odds_only'];
- //更新赛事下所有 不在本次请求的赔率 状态
- $ret= OddsModel::upOddsStatus($models,$s_match_id,'',$source,$odds_only);
- if($ret != true) throw new \Exception(Response::generate($gameName,Response::ODDS_SOLE_ERR));
- //拼装 待写入 赔率数据
- foreach($oddsData as $k=>$v){
- //组装数据
- $set_odds = [
- 'match_id'=> $match_id?:0,
- 'others_match_id'=> $v['match_id']?:0,
- 'odds_code'=> $v['odds_code']?:'',
- 'status'=> $v['status']?:0,
- 'sort'=> $v['sort']?:0,
- 'p_code'=> $v['p_code']?:'',
- 'odds'=> $v['odds']?:0,
- 'condition'=> $v['condition'],
- 'odds_only'=> $v['odds_only']?:'',
- 'source'=> $v['source']?:'',
- 'type'=> $v['type']?:0,
- 'team'=> $v['team']?:'',
- 'lg_id'=> $lg_id,
- 'others_lg_id'=> $v['lg_id'],
- 'ctime'=> date('Y-m-d H:i:s'),
- 'utime'=> date('Y-m-d H:i:s'),
- ];
- //写赔率记录数据
- $ret = $models['model_odds_record']->updateOrCreate(
- ['odds_only'=>$v['odds_only']],$set_odds
- );
- if(empty($ret)) throw new \Exception(Response::generate($gameName.'赔率记录-odds_only:'.$v['odds_only'].';',Response::ADD_ODDS_R_ERROR));
- //追加参数
- $set_odds['sole'] = $v['sole'];
- $set_odds['expire_time'] = date('Y-m-d H:i:s',time()+60);
- //写赔率 数据
- $ret = $models['model_odds']->updateOrCreate(
- ['odds_only'=>$v['odds_only']],$set_odds
- );
- if(empty($ret)) throw new \Exception(Response::generate($gameName.'赔率-odds_only:'.$v['odds_only'].';',Response::ADD_ODDS_ERROR));
- }
- }
- $this->writeLog($data,Response::success());
- //提交事务
- DB::commit();
- return Response::success();
- } catch (\Exception $e) {
- //回滚事务
- DB::rollBack();
- $this->writeLog($data,$e->getMessage());
- return $e->getMessage();
- }
- }
- /**
- * @param Req $data
- * @return string
- * @throws \App\Lib\Biz\Sport\Exception
- * 更新赛事状态
- */
- public function upMatch($data){
- try {
- //开启事务
- DB::beginTransaction();
- //获取待更新赛事
- $obt = $data->data;
- if($obt){
- //json转数组
- $data = $this->getAddData($obt);
- //获取 球类代码
- $game_code = $data['game_code'];
- //获取 数据源
- $source = $data['source'];
- //获取所有数据源赛事 match_id
- $others_match_ids = [];
- foreach ($data['data'] as $k=>$v){
- $others_match_ids[] = $v['match_id'];
- }
- //根据球类代码 获取model
- $model =commonFunction::getModels($game_code,1);
- //获取所有赛事 match_id
- $local_match = $model['model_local_match']::SELECT('others_match_id','match_id')
- ->where(['source'=>$source])
- ->whereIn('others_match_id',$others_match_ids)
- ->get()->toArray();
- if(empty($local_match)) throw new \Exception(Response::generate('',Response::MATCHID_NULL));
- //更新状态字段
- foreach ($local_match as $k=>$v){
- $set_status = [
- 'status'=>$v['status'],
- 'is_rollball'=>$v['is_rollball'],
- 'stais_todaytus'=>$v['is_today'],
- 'is_morningplate'=>$v['is_morningplate'],
- 'is_stringscene'=>$v['is_stringscene'],
- 'is_horn'=>$v['is_horn'],
- ];
- $ret = $model['model_match']::where(['id'=>$v['match_id']])
- -> update($set_status);
- if($ret<1) throw new \Exception(Response::generate(gameModel::getGameName($game_code).'赛事-match_id:'.$v['others_match_id'],Response::UPSTATUS_ERROR));
- }
- }
- $this->writeLog($data,Response::success());
- //提交事务
- DB::commit();
- return Response::success();
- } catch (\Exception $e) {
- //回滚事务
- DB::rollBack();
- $this->writeLog($data,$e->getMessage());
- return $e->getMessage();
- }
- }
- /*
- *写 冠军联赛 赔率 数据
- *每个请求 包含 N个联赛 下 N条赔率
- */
- public function setOddsCH($data)
- {
- try {
- //开启事务
- DB::beginTransaction();
- $obt = $data['data'];
- //请求 数据 为空
- if(empty($obt)) throw new \Exception(Response::generate('请求数据为空,',Response::ABNORMAL));
- $getData = $this->getAddData($obt);
- //不是 冠军 赔率 数据
- if($getData['title'] != 'odds_ch') throw new \Exception(Response::generate('不是冠军赔率数据,',Response::ABNORMAL));
- //获取球类代码
- $game_code = $getData['game_code'];
- //获取数据源
- $source = $getData['source'];
- //获取球类名称
- $gameName = gameModel::getGameName($game_code);
- //获取 model
- $models = commonFunction::getModels($game_code, 1);
- //获取 赔率数据
- $oddsData = $getData['data'];
- //获取 当前 所有 可用 赔率 sole
- // $odds_only = $getData['odds_only'];
- //====验证 请求里 所有赔率 所属联赛 是否存在 ====
- //获取 当前请求 所有 联赛 uuid
- $uuids = [];
- foreach($oddsData as $k=>$v){
- $uuids[] = $v['uuid'];
- }
- $uuids = array_unique($uuids);
- sort($uuids);
- //更新赛事下所有 不在本次请求的赔率 状态
- // $ret= OddsModel::upOddsStatus($models,'',$s_lg_ids,$source,$odds_only);
- // if($ret != true) throw new \Exception(Response::generate($gameName,Response::ODDS_SOLE_ERR));
- //获取 本地 已存在 联赛
- $l_lg_data = $models['model_local_league']::whereIn('identity',$uuids)->select('identity','lg_id')->get()->toArray();
- //二维数组去重
- $l_lg_data = commonFunction::uniquArrV2($l_lg_data,'identity');
- //循环对比 请求uuid->本地uuid
- foreach($l_lg_data as $k=>$v){
- foreach($uuids as $kk=> $uuid){
- if($v['identity'] == $uuid){
- unset($uuids[$kk]);
- }
- }
- }
- //去除本地和请求里都存在的联赛,如果还有剩余联赛id,则返回异常;
- if(!empty($uuids)) throw new \Exception(Response::generate($gameName.'冠军联赛:uuid-'.$uuids[0].';',Response::LEAGUE_ERROR));
- //====end====
- //拼装 待写入 赔率数据
- foreach($oddsData as $k=>$v){
- //获取 本地 联赛 ID
- $lg_id = commonFunction::searcharray($v['lg_id'],'others_lg_id',$l_lg_data,'lg_id');
- //组装数据
- $set_odds = [
- 'match_id'=>0,
- 'others_match_id'=> $v['match_id']?:0,
- 'odds_code'=> $v['odds_code']?:'',
- 'status'=> $v['status']?:0,
- 'sort'=> $v['sort']?:0,
- 'p_code'=> $v['p_code']?:'',
- 'odds'=> $v['odds']?:0,
- 'condition'=> $v['condition'],
- 'odds_only'=> $v['odds_only']?:'',
- 'source'=> $v['source']?:'',
- 'type'=> $v['type']?:1,
- 'team'=> $v['team']?:'',
- 'lg_id'=> $lg_id,
- 'others_lg_id'=> $v['lg_id'],
- 'ctime'=> date('Y-m-d H:i:s'),
- 'utime'=> date('Y-m-d H:i:s'),
- ];
- //写赔率记录数据
- $ret = $models['model_odds_record']->updateOrCreate(
- ['odds_only'=>$v['odds_only']],$set_odds
- );
- if(empty($ret)) throw new \Exception(Response::generate($gameName.'赔率记录-odds_only:'.$v['odds_only'].';',Response::ADD_ODDS_R_ERROR));
- //追加参数
- $set_odds['sole'] = $v['sole'];
- $set_odds['expire_time'] = date('Y-m-d H:i:s',time()+60);
- //写赔率 数据
- $ret = $models['model_odds']->updateOrCreate(
- ['odds_only'=>$v['odds_only']],$set_odds
- );
- if(empty($ret)) throw new \Exception(Response::generate($gameName.'赔率-odds_only:'.$v['odds_only'].';',Response::ADD_ODDS_ERROR));
- }
- $this->writeLog($data,Response::success());
- //提交事务
- DB::commit();
- return Response::success();
- } catch (\Exception $e) {
- //回滚事务
- DB::rollBack();
- $this->writeLog($data,$e->getMessage());
- return $e->getMessage();
- }
- }
- /*
- * 写入直播 数据
- */
- public function setBroadCast($data)
- {
- try {
- //开启事务
- DB::beginTransaction();
- $obt = $data['data'];
- //请求 数据 为空
- if (empty($obt)) throw new \Exception(Response::generate('请求数据为空,', Response::ABNORMAL));
- $getData = $this->getAddData($obt);
- //不是 直播 数据
- if ($getData['title'] != 'broad_cast') throw new \Exception(Response::generate('不是直播数据,', Response::ABNORMAL));
- //获取 球类
- $game_code = $getData['game_code'];
- //获取 直播 数据
- $BroadCast = $getData['data'];
- $set_broadcast = [];
- foreach ($BroadCast as $k => $data) {
- //组装数据
- $set_broadcast[] = [
- "doing" => $data['doing'],
- "game_type" => $data['game_type'],
- "game_code" => $game_code,
- "guest_team" => $data['guest_team'],
- "host_team" => $data['host_team'],
- "league_name" => $data['league_name'],
- "shower" => $data['shower'],
- "showid" => (int)$data['showid'],
- "start_time" => $data['start_time'],
- "ctime" => date('Y-m-d H:i:s'),
- "utime" => date('Y-m-d H:i:s'),
- ];
- }
- //写入 直播 数据
- $ret = broadcastModel::insert($set_broadcast);
- if ($ret == false) throw new \Exception(Response::generate('', Response::BROADCAST_ERROR));
- $this->writeLog($data,Response::success());
- //提交事务
- DB::commit();
- return Response::success();
- } catch (\Exception $e) {
- //回滚事务
- DB::rollBack();
- $this->writeLog($data,$e->getMessage());
- return $e->getMessage();
- }
- }
- /*
- * 验证所属 联赛 是否存在
- */
- public function leagueVerify($models=[],$uuid='',$source='',$gameName=''){
- if(empty($models) || empty($uuid)) throw new \Exception(Response::generate('',Response::ABNORMAL));
- $l_lg_id = $models['model_local_league']::where(['identity'=>$uuid])->value('lg_id');
- if($l_lg_id < 1) throw new \Exception(Response::generate($gameName.'联赛:lg_id-'.$uuid,Response::LEAGUE_ERROR));
- return $l_lg_id;
- }
- /*
- * 验证所属 赛事 是否存在
- */
- public function matchVerify($models = [], $s_match_id = '', $source = '', $gameName = '')
- {
- if (empty($models) || empty($s_match_id)) throw new \Exception(Response::generate('', Response::ABNORMAL));
- $l_match_id = $models['model_local_match']::where(['others_match_id' => $s_match_id, 'source' => $source])->value('match_id');
- if ($l_match_id < 1) throw new \Exception(Response::generate($gameName . '赛事:match_id-' . $s_match_id, Response::MATCH_ERROR));
- return $l_match_id;
- }
- /*
- * 写入直播 数据
- */
- public function broadcast($opt = [], $game_code = '')
- {
- $data = $opt['data'];
- $set_broadcast = [
- "doing" => $data['doing'],
- "game_type" => $data['game_type'],
- "game_code" => $game_code,
- "guest_team" => $data['guest_team'],
- "host_team" => $data['host_team'],
- "league_name" => $data['league_name'],
- "shower" => $data['shower'],
- "showid" => (int)$data['showid'],
- "start_time" => $data['start_time'],
- "ctime" => date('Y-m-d H:i:s'),
- "utime" => date('Y-m-d H:i:s'),
- ];
- $ret = broadcastModel::insert($set_broadcast);
- if ($ret == false) throw new \Exception(Response::generate('', Response::BROADCAST_ERROR));
- }
- /*
- * 写入 赛事 初始 结果
- */
- public function match_result($game_code = '')
- {
- $model = commonFunction::getModels($game_code, 1);
- if ($game_code == 'zq') ZqResultModel::ZQresult($model);
- if ($game_code == 'lq') LqResultModel::LQresult($model);
- if ($game_code == 'wq') WqResultModel::WQresult($model);
- if ($game_code == 'bq') BqResultModel::BQresult($model);
- }
- /*
- * 写入联赛数据
- */
- public function league($opt = [], $gameName = '')
- {
- $game_code = $opt['game_code'];
- //根据球类代码获取相关model
- $model = commonFunction::getModels($game_code, 1);
- $data = $opt['data'];
- //查询联赛是否已存在
- $id = $model['model_league']::where('name_chinese', '=', $data['name_chinese'])
- ->value('id');
- //默认获取本年最后一天
- $last_time = date('Y-12-31 23:59:59');
- //决赛时间
- if ($data['last_time']) {
- $last_time = $data['last_time'];
- }
- $set_lg['name_chinese'] = $data['name_chinese'];
- $set_lg['kind'] = $data['kind'];
- $set_lg['match_mode'] = $data['match_mode'];
- $set_lg['if_stop'] = $data['if_stop'];
- $set_lg['identity'] = $data['uuid'] ?: '';
- $set_lg['last_time'] = $last_time;
- $set_lg['utime'] = date('Y-m-d H:i:s');
- if (empty($id)) {
- //写入联赛
- $id = $model['model_league']::insertGetId($set_lg);
- $m_lg_id = $id;
- if ($m_lg_id < 1) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::INSERT_ERROR));
- } else {
- //更新联赛
- $ret = $model['model_league']::where(['id' => $id])
- ->update($set_lg);
- if ($ret < 1) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::UPDATE_ERROR));
- }
- $set_local = [
- 'lg_id' => $id,
- 'others_lg_id' => $data['lg_id'],
- 'source' => $data['source'],
- 'ctime' => date('Y-m-d H:i:s')
- ];
- $ret = $model['model_local_league']::insertGetId($set_local);
- if ($ret < 1) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::LOCAL_LEAGUE_ERROR));//Render([], '10017', lang('Tips','Sports')->get('local_league_error'));
- //执行成功返回源数据 联赛ID
- $data = ['others_lg_id' => $data['lg_id'], 'lg_id' => $id];
- return $data;
- }
- /*
- * 写入赛事数据
- */
- public function competition($opt = [], $gameName = '', $lg_id = '')
- {
- $game_code = $opt['game_code'];
- //根据球类代码获取相关model
- $model = commonFunction::getModels($game_code, 1);
- $data = $opt['data'];
- if (empty($data['lg_id'])) throw new \Exception(Response::generate('', Response::LEAGUE_ERROR));//Render([], '10015', lang('Tips','Sports')->get('league_error'));
- //查询赛事是否存在
- $id = $model['model_match']::where(['home_team' => $data['home_team'], 'guest_team' => $data['guest_team'], 'match_date' => $data['match_date'], 'match_time' => $data['match_time']])
- ->value('id');
- $half_match_id = 0;
- //如果有上半场赛事id 获取上半场赛事是否存在
- if (!empty($data['half_match_id'])) {
- $half_match_id = $match_id = $model['model_local_match']::where(['others_match_id' => $data['half_match_id'], 'source' => $data['source']])
- ->value('match_id');
- if (empty($half_match_id)) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::HALF_MATCH_ERROR));//Render([], '10024', lang('Tips','Sports')->get('half_match_error'));
- }
- //如果赛事没有开始日期,则为冠军盘口赛事
- if (empty($data['match_date'])) {
- //冠军盘口赛事获取所属联赛结束时间
- $last_time = $model['model_league']::where(['id' => $lg_id])
- ->value('last_time');
- if (empty($last_time)) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::LG_LASTTIME_ERROR));//Render([], '10023', lang('Tips','Sports')->get('lg_lastTime_error'));
- //给冠军盘口赛事 赋值时间
- $time = strtotime($last_time);
- $data['match_date'] = date('Y-m-d', $time);
- $data['match_time'] = date('H:i:s', $time);
- }
- $set_match = [
- 'ctime' => date('Y-m-d H:i:s'),
- 'utime' => date('Y-m-d H:i:s'),
- 'expire_time' => date('Y-m-d H:i:s', time() + 60),
- 'home_team' => $data['home_team'] ?: '',
- 'guest_team' => $data['guest_team'] ?: 'no_team',
- 'lg_id' => $lg_id,
- 'status' => $data['status'],
- 'match_date' => $data['match_date'] ?: date('Y-m-d'),
- 'match_time' => $data['match_time'] ?: date('H:i:s'),
- 'tag' => $data['tag'] ?: 0,
- 'is_rollball' => $data['is_rollball'] ?: 0,
- 'is_today' => $data['is_today'] ?: 0,
- 'is_morningplate' => $data['is_morningplate'] ?: 0,
- 'is_stringscene' => $data['is_stringscene'] ?: 0,
- 'us_time' => $data['us_time'] ?: commonFunction::qgmdate('Y-m-d H:i:s', '', -4),
- 'half_match_id' => $half_match_id ?: 0,
- 'identity' => $data['uuid'],
- ];
- //写入赛事
- if (empty($id)) {
- //写入赛事 返回id
- $id = $model['model_match']::insertGetId($set_match);
- if ($id < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::INSERT_ERROR));
- } else {
- //更新赛事
- $ret = $model['model_match']::where(['id' => $id])->update($set_match);
- if ($ret < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::UPDATE_ERROR));
- }
- //写关联记录
- $set_local = [
- 'match_id' => $id,
- 'others_match_id' => $data['match_id'],
- 'source' => $data['source'],
- 'ctime' => date('Y-m-d H:i:s')
- ];
- $ret = $model['model_local_match']::insertGetId($set_local);
- if ($ret < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::LOCAL_MATCH_ERROR));//Render([], '10018', lang('Tips','Sports')->get('local_match_error'));
- //返回 源数据 赛事ID
- $data = ['others_match_id' => $data['match_id'], 'match_id' => $id];
- return $data;
- }
- /*
- * 写入赔率/赔率记录数据
- */
- public function odds($opt = [], $gameName = '', $lg_id = 0, $match_id = 0, $oddsID = '', $oddsRecordID = '')
- {
- $game_code = $opt['game_code'];
- //根据球类代码获取相关model
- $model = commonFunction::getModels($game_code, 1);
- $data = $opt['data'];
- //获取赛事 本地/源ID
- $others_match_id = $data['match_id'];
- //获取联赛 本地/源ID
- $others_lg_id = $data['lg_id'];
- //===写赔率记录===
- $set_odds_r = [
- 'match_id' => $match_id ?: 0,
- 'others_match_id' => $others_match_id ?: 0,
- 'odds_code' => $data['odds_code'] ?: '',
- 'status' => $data['status'] ?: 0,
- 'sort' => $data['sort'] ?: 0,
- 'p_code' => $data['p_code'] ?: '',
- 'odds' => $data['odds'] ?: 0,
- 'condition' => $data['condition'],
- 'odds_only' => $data['odds_only'] ?: '',
- 'source' => $data['source'] ?: '',
- 'type' => $data['type'] ?: 0,
- 'team' => $data['team'] ?: '',
- 'lg_id' => $lg_id,
- 'others_lg_id' => $others_lg_id,
- 'ctime' => date('Y-m-d H:i:s'),
- ];
- //更新或写入赔率记录
- if ($oddsRecordID != false) {
- $ret = $model['model_odds_record']::where(['id' => $oddsRecordID])
- ->update($set_odds_r);
- if ($ret < 1) throw new \Exception(Response::generate($gameName . '赔率记录-odds_only:' . $data['odds_only'] . ';', Response::ADD_ODDS_R_ERROR));//Render([], '10020', lang('Tips','Sports')->get('add_odds_r_error'));
- } else {
- $ret = $model['model_odds_record']::insert($set_odds_r);
- if ($ret != true) throw new \Exception(Response::generate($gameName . '赔率记录-odds_only:' . $data['odds_only'] . ';', Response::ADD_ODDS_R_ERROR));//Render([], '10020', lang('Tips','Sports')->get('add_odds_r_error'));
- }
- //===写赔率===
- $set_odds = [
- 'match_id' => $match_id ?: 0,
- 'others_match_id' => $others_match_id ?: 0,
- 'odds_code' => $data['odds_code'] ?: '',
- 'status' => $data['status'] ?: 0,
- 'sort' => $data['sort'] ?: 0,
- 'p_code' => $data['p_code'] ?: '',
- 'odds' => $data['odds'] ?: 0,
- 'condition' => $data['condition'],
- 'odds_only' => $data['odds_only'] ?: '',
- 'sole' => $data['sole'] ?: '',
- 'source' => $data['source'] ?: '',
- 'type' => $data['type'] ?: 0,
- 'team' => $data['team'] ?: '',
- 'lg_id' => $lg_id,
- 'others_lg_id' => $others_lg_id,
- 'ctime' => date('Y-m-d H:i:s'),
- 'utime' => date('Y-m-d H:i:s'),
- 'expire_time' => date('Y-m-d H:i:s', time() + 60),
- ];
- //更新或写入赔率数据
- if ($oddsID != false) {
- $ret = $model['model_odds']::where(['id' => $oddsID])
- ->update($set_odds);
- if ($ret < 1) throw new \Exception(Response::generate($gameName . '赔率-odds_only:' . $data['odds_only'] . ';', Response::ADD_ODDS_ERROR));//Render([], '10019', lang('Tips','Sports')->get('add_odds_error'));
- } else {
- $ret = $model['model_odds']::insert($set_odds);
- if ($ret != true) throw new \Exception(Response::generate($gameName . '赔率-odds_only:' . $data['odds_only'] . ';', Response::ADD_ODDS_ERROR));//Render([], '10019', lang('Tips','Sports')->get('add_odds_error'));
- }
- //===end===
- }
- /*
- * 更新 赛事下 所有不在本次请求的 赔率状态
- */
- public function upOddsStatus($opt = [], $gameName = '')
- {
- //获取球类代码
- $game_code = $opt['game_code'];
- //获取球类model
- $model = commonFunction::getModels($game_code, 1);
- //赛事下 所有 赔率sole
- $odds_sole = $opt['data'];
- //数据源 赛事 id
- $others_match_id = $opt['match_id'];
- //数据源
- $source = $opt['source'];
- //更新赛事下所有 不在本次请求的赔率 状态
- $ret = OddsModel::getMatchSole($model, $others_match_id, '', $source, $odds_sole);
- if ($ret != true) throw new \Exception(Response::generate($gameName, Response::ODDS_SOLE_ERR));
- }
- /*
- * 写入联赛结果
- */
- public function league_result($opt, $gameName)
- {
- $game_code = $opt['game_code'];
- //根据球类代码获取相关model
- $model = commonFunction::getModels($game_code, 1);
- $data = $opt['data'];
- //验证结果所属联赛
- $lg_id = $model['model_local_league']::where(['others_lg_id' => $data['lg_id'], 'source' => $data['source']])
- ->value('lg_id');
- if ($lg_id < 1) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::LEAGUE_ERROR));
- $lg_result_id = $model['model_league_result']::where(['lg_id' => $lg_id, 'game_name' => $data['game_name']])
- ->value('id');
- $set_lg_result = [
- 'lg_id' => $lg_id,
- 'game_name' => $data['game_name'],
- 'result' => json_encode($data['result'], JSON_UNESCAPED_UNICODE),
- 'status' => $data['status'],
- 'ctime' => date('Y-m-d H:i:s'),
- 'utime' => date('Y-m-d H:i:s'),
- ];
- //联赛结果数据处理
- if (!empty($lg_result_id)) {
- $ret = $model['model_league_result']::where(['id' => $lg_result_id])
- ->update($set_lg_result);
- if ($ret < 1) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::ADD_LG_R_ERROR));//Render([], '10021', lang('Tips','Sports')->get('add_lg_r_error'));
- } else {
- $ret = $model['model_league_result']::insert($set_lg_result);
- if ($ret != true) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::ADD_LG_R_ERROR));//Render([], '10021', lang('Tips','Sports')->get('add_lg_r_error'));
- }
- }
- /*
- * 写入赛事结果
- */
- public function com_result($opt = [], $gameName = '', $lg_id = '', $match_id = '')
- {
- $game_code = $opt['game_code'];
- //根据球类代码获取相关model
- $model = commonFunction::getModels($game_code, 1);
- $data = $opt['data'];
- //查询结果是否存在
- $match_r_id = $model['model_result']::where(['match_id' => $match_id])
- ->value('id');
- $set_match_r = [
- "home_team" => $data['home_team'],
- "guest_team" => $data['guest_team'],
- "lg_id" => $lg_id,
- "home_rate" => $data['home_rate'],
- "guest_rate" => $data['guest_rate'],
- "home_score" => $data['home_score'],
- "guest_score" => $data['guest_score'],
- "all_goal" => $data['all_goal'],
- "status" => $data['status'],
- "first_score" => $data['first_score'],
- "last_score" => $data['last_score'],
- "match_score" => $data['match_score'],
- "match_winer" => $data['match_winer'],
- "match_time" => $data['match_time'],
- "match_process" => $data['match_process'],
- "tag" => $data['tag'],
- "match_id" => $match_id,
- "u_home_score" => $data['u_home_score'],
- "u_guest_score" => $data['u_guest_score'],
- "p_code" => $data['p_code'],
- "update_time" => date('Y-m-d H:i:s')
- ];
- //赛事结果数据处理
- if (!empty($match_r_id)) {
- $ret = $model['model_result']::where(['id' => $match_r_id])
- ->update($set_match_r);
- if ($ret < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::ADD_MATCH_R_ERROR));//Render([], '10022', lang('Tips','Sports')->get('add_match_r_error'));
- } else {
- $ret = $model['model_result']::insert($set_match_r);
- if ($ret != true) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::ADD_MATCH_R_ERROR));//Render([], '10022', lang('Tips','Sports')->get('add_match_r_error'));
- }
- // return Response::success();
- }
- //写入赛事结果记录
- public function com_result_record($opt = [], $gameName = '', $lg_id = '', $match_id = '')
- {
- $game_code = $opt['game_code'];
- //根据球类代码获取相关model
- $model = commonFunction::getModels($game_code, 1);
- $data = $opt['data'];
- $match_r_id = $model['model_result_record']::where(['match_id' => $match_id, 'match_time' => $data['match_time']])
- ->value('id');
- //根据球类 获取 赛事结果记录字段
- $set_match_r = $this->get_match_r($game_code, $lg_id, $match_id, $data);
- //赛事结果记录处理
- if ($match_r_id > 0) {
- $ret = $model['model_result_record']::where(['id' => $match_r_id])
- ->update($set_match_r);
- if ($ret < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::ADD_MATCH_R_R_ERROR));//Render([], '10022', lang('Tips','Sports')->get('add_match_r_r_error'));
- } else {
- $ret = $model['model_result_record']::insert($set_match_r);
- if ($ret != true) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::ADD_MATCH_R_R_ERROR));//Render([], '10022', lang('Tips','Sports')->get('add_match_r_r_error'));
- }
- }
- /**
- * @param $data
- * @return mixed
- * json转数组
- */
- public function getAddData($data)
- {
- $data = json_decode($data, true);
- return $data;
- }
- /*
- * 根据球类获取 赛事结果记录字段
- */
- public function get_match_r($game_code, $lg_id, $match_id, $data)
- {
- $set_match_r = [];
- if ($game_code == 'zq') {
- $set_match_r = [
- "home_team" => $data['home_team'] ?: '',
- "guest_team" => $data['guest_team'] ?: '',
- "lg_id" => $lg_id,
- "all_goal" => $data['all_goal'] ?: 0,
- "home_rate" => $data['home_rate'] ?: 0,
- "guest_rate" => $data['guest_rate'] ?: 0,
- "home_score" => $data['home_score'] ?: 0,
- "guest_score" => $data['guest_score'] ?: 0,
- "status" => $data['status'] ?: 0,
- "first_score" => $data['first_score'] ?: 0,
- "last_score" => $data['last_score'] ?: 0,
- "match_score" => $data['match_score'] ?: 0,
- "match_winer" => $data['match_winer'] ?: '',
- "match_time" => $data['match_time'] ?: 0,
- "match_process" => $data['match_process'] ?: '',
- //"tag" => $data['tag'] ?: 0,
- "match_id" => $match_id,
- "update_time" => date('Y-m-d H:i:s')
- ];
- };
- if ($game_code == 'lq') {
- $set_match_r = [
- "home_team" => $data['home_team'] ?: '',
- "guest_team" => $data['guest_team'] ?: '',
- "lg_id" => $lg_id,
- "home_rate" => $data['home_rate'] ?: 0,
- "guest_rate" => $data['guest_rate'] ?: 0,
- "home_score" => $data['home_score'] ?: 0,
- "guest_score" => $data['guest_score'] ?: 0,
- "status" => $data['status'] ?: 0,
- "first_score" => $data['first_score'] ?: 0,
- "last_score" => $data['last_score'] ?: 0,
- "match_score" => $data['match_score'] ?: 0,
- "match_winer" => $data['match_winer'] ?: '',
- "match_time" => $data['match_time'] ?: 0,
- "match_process" => $data['match_process'] ?: '',
- //"tag" => $data['tag'] ?: 0,
- "match_id" => $match_id,
- "update_time" => date('Y-m-d H:i:s')
- ];
- }
- if ($game_code == 'wq') {
- $set_match_r = [
- "home_player_name" => $data['home_player_name'] ?: '',
- "guest_player_name" => $data['guest_player_name'] ?: '',
- "lg_id" => $lg_id,
- "home_player_let_plate" => $data['home_player_let_plate'] ?: 0,
- "guest_player_let_plate" => $data['guest_player_let_plate'] ?: 0,
- "home_player_let_inning" => $data['home_player_let_inning'] ?: 0,
- "guest_player_let_inning" => $data['guest_player_let_inning'] ?: 0,
- "all_inning" => $data['all_inning'] ?: 0,
- "home_player_score" => $data['home_player_score'] ?: 0,
- "guest_player_score" => $data['guest_player_score'] ?: 0,
- "status" => $data['status'] ?: 0,
- "first_score_player" => $data['first_score_player'] ?: '',
- "last_score_player" => $data['last_score_player'] ?: '',
- "first_inning_score" => $data['first_inning_score'] ?: 0,
- "second_inning_score" => $data['second_inning_score'] ?: 0,
- "third_inning_score" => $data['third_inning_score'] ?: 0,
- "match_winer_player" => $data['match_winer_player'] ?: '',
- "update_time" => date('Y-m-d H:i:s'),
- "match_time" => $data['match_time'] ?: 0,
- "match_process" => $data['match_process'] ?: '',
- //"tag" => $data['tag'] ?: 0,
- "match_id" => $match_id,
- "result_mark" => $data['result_mark'] ?: '',
- ];
- }
- if ($game_code == 'bq') {
- $set_match_r = [
- "home_team" => $data['home_team'] ?: '',
- "guest_team" => $data['guest_team'] ?: '',
- "lg_id" => $lg_id,
- "home_rate" => $data['home_rate'] ?: 0,
- "guest_rate" => $data['guest_rate'] ?: 0,
- "home_score" => $data['home_score'] ?: 0,
- "guest_score" => $data['guest_score'] ?: 0,
- "status" => $data['status'] ?: 0,
- "first_score" => $data['first_score'] ?: 0,
- "last_score" => $data['last_score'] ?: 0,
- "match_score" => $data['match_score'] ?: 0,
- "match_winer" => $data['match_winer'] ?: '',
- "match_time" => $data['match_time'] ?: 0,
- "match_process" => $data['match_process'] ?: '',
- //"tag" => $data['tag'] ?: 0,
- "match_id" => $match_id,
- "all_inning" => $data['all_inning'] ?: 9,
- "update_time" => date('Y-m-d H:i:s'),
- "result_mark" => $data['result_mark'] ?: '',
- ];
- }
- return $set_match_r;
- }
- private function writeLog($body, $ret)
- {
- if (!is_string($body)) {
- $body = json_encode([$body], 256);
- }
- $data = ['ctime' => date("Y-m-d H:i:s"), 'body' => $body, 'ret' => $ret];
- $return = DB::table('datainf_log')->insert($data);
- return $return;
- }
- }
|