| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983 |
- <?php
- /**
- * 根据不同状态获取 赛事数据
- * User: Jun.peng
- * Date: 2019/4/4
- * Time: 10:57
- */
- namespace Biz\Match;
- use Biz\Match\GetOddsData;
- use App\Sports\Model\St_zq_league as leagueModel;
- use App\Sports\Model\St_zq_competition as matchModel;
- use App\Sports\Model\St_zq_odds as ZQoddsModel;
- use App\Sports\Model\St_wq_odds as WQoddsModel;
- use App\Sports\Model\St_bq_odds as BQoddsModel;
- use App\Sports\Model\St_lq_odds as LQoddsModel;
- class GetmatchData {
- public function __construct() {
- $this->getOddsData = new GetOddsData();
- $this->commonFunction = C()->get('commonFunction');
- }
- /**
- * @param $ret 提交参数
- * @param $source 数据源条件
- * @return array
- * @throws \Exception
- * 获取不同状态下的赛事相关数据
- */
- public function typeData($ret,$source){
- //根据球类代码 获取相关model
- $models = $this->commonFunction->getModels($ret['game_code']);
- $model_match = $models['model_match'];
- //获取 不同状态的查询条件
- $where = $this->commonFunction->getState($ret['type_code'],$model_match);
- //根据联赛id查询
- if(!empty($ret['lg_id'])){
- $lg_id = $ret['lg_id'];
- }
- //根据搜索查询
- if(!empty($ret['search'])){
- $search = $ret['search'];
- }
- switch ($ret['type_code']){
- case 'StRollBall'://滚球
- $data = $this->getRollBall($source,$models,$where,$ret,$search);
- break;
- case 'StSoon'://即将
- $oddsTypeWhere = [
- [$models['model_odds'].'.is_stringscene','=',0],
- ];
- $data = $this->getSoon($source,$models,$where,$lg_id,$ret,$search,$oddsTypeWhere);
- break;
- case 'StToday'://今日
- $oddsTypeWhere = [
- [$models['model_odds'].'.is_stringscene','=',0],
- ];
- $data = $this->getToday($source,$models,$where,$lg_id,$search,$oddsTypeWhere);
- break;
- case 'StMorningPlate'://早盘
- //默认当天
- if(empty($ret['match_date'])){
- // $match_date = date("Y-m-d");
- $match_date = '';
- }else{
- if($ret['match_date'] != 'other'){
- $match_date = $ret['match_date'];
- }else{
- $match_date = 'other';
- }
- }
- $oddsTypeWhere = [
- [$models['model_odds'].'.is_stringscene','=',0],
- ];
- $data = $this->getMorningPlate($source,$models,$where,$lg_id,$search,$match_date,$oddsTypeWhere,$ret['type_code'],$ret['game_code']);
- break;
- case 'StStringScene'://串场
- $oddsTypeWhere = [
- [$models['model_odds'].'.is_stringscene','=',1],
- ];
- if(empty($ret['str_type']) || $ret['str_type'] ==0){//赛事
- $data = $this->getStringScene($source,$models,$where,$lg_id,$search,'',$oddsTypeWhere);
- }
- if($ret['str_type'] == 1){//参赛表
- }
- if($ret['str_type'] == 2){//冠军盘口
- $where = $this->commonFunction->getState('StChampion',$model_match);
- $data = $this->getChampion($source,$models,$where,$lg_id,$search,'StChampion');
- }
- break;
- case 'StChampion'://冠军
- $data = $this->getChampion($source,$models,$where,$lg_id,$search,$ret['type_code']);
- break;
- default:
- throw new \Exception(Render([], '10002', lang('Tips','Sports')->get('PARAM_ERROR')));
- }
- return $data;
- }
- /**
- * 获取各球类 滚球/即将 默认赔率数据
- */
- public function getDefault($data,$game_code,$models,$match_ids,$source){
- if($game_code == 'zq') {
- //获取赛事下默认赔率
- $oddsData = ZQoddsModel::getMatchOdds($source, $models,$match_ids);
- foreach ($data as $k=>$v){
- foreach ($v['matchData'] as $kk=>$vv){
- //获取赛事下赔率并且分组
- foreach ($oddsData as $kkk=>$vvv) {
- if ($vv['match_id'] == $vvv['match_id'] and $vvv['sort']==0) {
- if($vvv['odds_code'] == 'concede_guest'){
- $concede_g = $vvv;
- }
- if($vvv['odds_code'] == 'concede_home'){
- $concede_h = $vvv;
- }
- if($vvv['odds_code'] == 'goal_size_big'){
- $size_s = $vvv;
- }
- if($vvv['odds_code'] == 'goal_size_small'){
- $size_b = $vvv;
- }
- if($vvv['odds_code'] == 'capot_home'){
- $capot_h = $vvv;
- }
- if($vvv['odds_code'] == 'capot_dogfall'){
- $capot_d = $vvv;
- }
- if($vvv['odds_code'] == 'capot_guest'){
- $capot_g = $vvv;
- }
- }
- }
- $concede_size = [$concede_g,$concede_h,$size_s,$size_b];
- $capot = [$capot_h,$capot_d,$capot_g];
- foreach ($concede_size as $key => $vaule){
- if($vaule == null) unset($concede_size[$key]);
- }
- foreach ($capot as $key1 => $vaule1){
- if($vaule1 == null) unset($capot[$key1]);
- }
- sort($concede_size);
- sort($capot);
- $data[$k]['matchData'][$kk]['oddsData'] = [$concede_size,$capot];
- }
- }
- }
- if($game_code == 'lq') {
- $oddsData = LQoddsModel::getMatchOdds($source,$match_ids);
- foreach ($data as $k=>$v){
- foreach ($v['matchData'] as $kk=>$vv){
- //获取赛事下赔率并且分组
- $capot = [];
- $total_size = [];
- $concede = [];
- foreach ($oddsData as $kkk=>$vvv) {
- if ($vv['match_id'] == $vvv['match_id'] and $vvv['sort']==0) {
- if($vvv['p_code'] == 'capot'){
- $capot[] = $vvv;
- }else{
- if($vvv['p_code'] == 'total_size'){
- $total_size[] = $vvv;
- }
- if($vvv['p_code'] == 'concede'){
- $concede[] = $vvv;
- }
- }
- }
- }
- $concede_size = [$concede[0],$concede[1],$total_size[0],$total_size[1]];
- $data[$k]['matchData'][$kk]['oddsData'] = [$concede_size,$capot];
- }
- }
- }
- if($game_code == 'wq') {
- $oddsData = WQoddsModel::getMatchOdds($source,$match_ids);
- foreach ($data as $k=>$v){
- foreach ($v['matchData'] as $kk=>$vv){
- //获取赛事下赔率并且分组
- $odds = [];
- foreach ($oddsData as $kkk=>$vvv) {
- if ($vv['match_id'] == $vvv['match_id'] and $vvv['sort']==0) {
- $odds[] = $vvv;
- }
- }
- $data[$k]['matchData'][$kk]['oddsData'] = $odds;
- }
- }
- }
- if($game_code == 'bq') {
- $oddsData = BQoddsModel::getMatchOdds($source,$match_ids);
- foreach ($data as $k=>$v){
- foreach ($v['matchData'] as $kk=>$vv){
- //获取赛事下赔率并且分组
- $odds = [];
- foreach ($oddsData as $kkk=>$vvv) {
- if ($vv['match_id'] == $vvv['match_id'] and $vvv['sort']==0) {
- if($vvv['odds_code'] == 'concede_guest'){
- $concede_g = $vvv;
- }
- if($vvv['odds_code'] == 'concede_home'){
- $concede_h = $vvv;
- }
- if($vvv['odds_code'] == 'total_size_small'){
- $size_s = $vvv;
- }
- if($vvv['odds_code'] == 'total_size_big'){
- $size_b = $vvv;
- }
- if($vvv['odds_code'] == 'capot_home'){
- $capot_h = $vvv;
- }
- if($vvv['odds_code'] == 'capot_guest'){
- $capot_g = $vvv;
- }
- }
- }
- $concede_size = [$concede_g,$concede_h,$size_s,$size_b];
- $capot = [$capot_h,$capot_g];
- foreach ($concede_size as $key => $vaule){
- if($vaule == null) unset($concede_size[$key]);
- }
- foreach ($capot as $key1 => $vaule1){
- if($vaule1 == null) unset($capot[$key1]);
- }
- sort($concede_size);
- sort($capot);
- $data[$k]['matchData'][$kk]['oddsData'] = [$concede_size,$capot];
- }
- }
- }
- return $data;
- }
- /**
- * 获取滚球数据
- */
- public function getRollBall($source,$models,$where,$ret,$search=''){
- //获取当前状态下所有联赛
- $leagueData = leagueModel::getRollLeagueData($source,$models,$where,$search);
- if(empty($leagueData)){
- return $leagueData=[];
- }
- //获取联赛id
- $lg_ids = [];
- foreach ($leagueData as $k => $v){
- $lg_ids[] = $v['lg_id'];
- }
- //统计联赛下的赛事及查询赛事
- $matchData = matchModel::getRollMatchDataAll($source,$models,$where,$lg_ids);
- //如果赛事为空,直接返回
- if(empty($matchData)) return $matchData;
- //===获取当前赛事是否有赔率,如果没有则去除===
- $matchData_new = $this->commonFunction->Handle_Odds_Null($matchData,$models);
- //获取当前match_id
- $match_ids = [];
- foreach($matchData as $k=>$v){
- $match_ids[] = $v['match_id'];
- }
- //组装联赛下赛事
- $data = [];
- foreach ($leagueData as $k=>$v){
- $data[$k] = $v;
- foreach ($matchData_new as $kk=>$vv){
- if($v['lg_id'] == $vv['lg_id']){
- $data[$k]['matchData'][] = $vv;
- }
- }
- $matchNum = count($data[$k]['matchData']);
- $data[$k]['matchNum'] = $matchNum;
- }
- //去除 没有赛事的联赛
- if(!empty($data)){
- foreach($data as $k=>$v){
- if($v['matchNum'] < 1){
- unset($data[$k]);
- }
- }
- sort($data);
- }
- //获取滚球/即将赛事 默认 赔率数据
- $data = $this->getDefault($data,$ret['game_code'],$models,$match_ids,$source);
- return $data;
- }
- /**
- * 获取即将数据
- */
- public function getSoon($source,$models,$where,$lg_id=0,$ret,$search='',$oddsTypeWhere=''){
- //获取当前状态下所有联赛
- $leagueData = leagueModel::getSoonLeagueData($source,$models,$where,$search);
- if(empty($leagueData)){
- return $leagueData=[];
- }
- //获取联赛id
- $lg_ids = [];
- foreach ($leagueData as $k => $v){
- $lg_ids[] = $v['lg_id'];
- }
- //统计联赛下的赛事及查询赛事
- $matchData = matchModel::getSoonMatchDataAll($source,$models,$where,$lg_ids);
- //如果赛事为空,直接返回
- if(empty($matchData)) return $matchData;
- //===获取当前赛事是否有赔率,如果没有则去除===
- $matchData_new = $this->commonFunction->Handle_Odds_Null($matchData,$models);
- //获取当前match_id
- $match_ids = [];
- foreach($matchData as $k=>$v){
- $match_ids[] = $v['match_id'];
- }
- //获取当前美东时间
- $s_time = strtotime($this->commonFunction->qgmdate('Y-m-d H:i:s', '', -4));
- $data = [];
- foreach ($leagueData as $k=>$v){
- $data[$k] = $v;
- foreach ($matchData_new as $kk=>$vv){
- if($v['lg_id'] == $vv['lg_id']){
- $wait_time = ceil(((strtotime( $vv['us_time']))-$s_time)/60);
- $vv['wait_time'] = $wait_time;//追加距离开赛时间
- $data[$k]['matchData'][] = $vv;
- }
- }
- //获取当前联赛下赛事数量
- $matchNum = count($data[$k]['matchData']);
- $data[$k]['matchNum'] = $matchNum;
- }
- //去除联赛下没有赛事的联赛
- if(!empty($data)){
- foreach($data as $k=>$v){
- if($v['matchNum'] < 1){
- unset($data[$k]);
- }
- }
- sort($data);
- }
- //获取滚球/即将赛事 默认 赔率数据
- $data = $this->getDefault($data,$ret['game_code'],$models,$match_ids,$source);
- return $data;
- }
- /**
- * 获取今日数据
- */
- public function getToday($source,$models,$where,$lg_id=0,$search='',$oddsTypeWhere=[]){
- //获取model
- $model_match = $models['model_match'];
- $model_odds = $models['model_odds'];
- $model_league = $models['model_league'];
- $model_result = $models['model_result'];
- //根据联赛id 获取联赛下 赛事赔率数据
- if($lg_id >0){
- $leagueData = $this->getMatchOdds($source,$model_league,$model_match,$model_odds,$where,$search,$lg_id,'',$oddsTypeWhere);
- return $leagueData;
- }
- $data = $this->getMatch($source,$models,$search,$where);
- return $data;
- }
- /**
- * 获取早盘数据
- */
- public function getMorningPlate($source,$models,$where,$lg_id=0,$search='',$time='',$oddsTypeWhere='',$type_code='',$game_code=''){
- //获取model
- $model_match = $models['model_match'];
- $model_odds = $models['model_odds'];
- $model_league = $models['model_league'];
- $model_result = $models['model_result'];
- //根据联赛id 获取联赛下 赛事赔率数据
- if($lg_id >0){
- $leagueData = $this->getMatchOdds($source,$model_league,$model_match,$model_odds,$where,$search,$lg_id,$time,$oddsTypeWhere);
- return $leagueData;
- }
- $data = $this->getMatch($source,$models,$search,$where,$time,'',$type_code,$game_code);
- return $data;
- }
- /**
- * 获取串场数据
- */
- public function getStringScene($source,$models,$where,$lg_id=0,$search='',$time='',$oddsTypeWhere=''){
- //获取model
- $model_match = $models['model_match'];
- $model_odds = $models['model_odds'];
- $model_league = $models['model_league'];
- $model_result = $models['model_result'];
- //根据联赛id 获取联赛下 赛事赔率数据
- if($lg_id >0){
- $leagueData = $this->getMatchOdds($source,$model_league,$model_match,$model_odds,$where,$search,$lg_id,$time,$oddsTypeWhere);
- return $leagueData;
- }
- $data = $this->getMatch($source,$models,$search,$where,$time,'','','',$oddsTypeWhere);
- return $data;
- }
- /**
- * 获取冠军数据
- */
- public function getChampion($source,$models,$where,$lg_id=0,$search='',$type_code=''){
- //获取model
- $model_odds = $models['model_odds'];
- $model_league = $models['model_league'];
- //根据联赛id 获取联赛下 冠军玩法盘口
- if($lg_id >0){
- $last_time = lm($model_league, 'Sports')
- ->select('last_time')
- ->where('id',$lg_id)
- ->first()->last_time;
- $championData = lm($model_odds, 'Sports')
- ->select("id","lg_id","match_id","p_code","odds_code","team","odds","sort","status","odds_only")
- ->where('lg_id',$lg_id)
- ->where($where)
- ->where(['status'=>0])
- ->groupBy("id","lg_id","match_id","p_code","odds_code","team","odds","sort","status","odds_only")
- ->get()->toArray();
- //按p_code分组
- $p_code=array();
- foreach($championData as $k=>$v){
- $p_code[$v['p_code']][]=$v;
- }
- $sd = [];
- foreach ($p_code as $k1=>$v1){
- foreach ($v1 as $k2=>$v2){
- $sd[$v2['p_code']]['last_time'] =$last_time;
- $sd[$v2['p_code']][$v2['odds_code']][] = $v2;
- }
- }
- return $sd;
- }
- //获取国家/洲下所有联赛及数量
- $data = $this->getMatch($source,$models,$search,$where,'',$type_code);
- return $data;
- }
- /**
- * 获取国家/洲 下联赛
- */
- public function getMatch($source,$models,$search,$where,$time='',$type_code='',$s_type_code='',$game_code='',$oddsTypeWhere=[]){
- //国家下所有联赛
- $country = lm($models['model_league'],"Sports")
- ->leftjoin('st_area_country','st_area_country.id',$models['model_league'].'.country_id')
- ->select('st_area_country.id as country_id','st_area_country.name as region')
- ->distinct('st_area_country.name')
- ->where([[$models['model_league'].'.name_chinese','!=','']])
- ->where($models['model_league'].'.name_chinese','like','%'.$search.'%')
- ->get()
- ->toArray();
- //洲下所有联赛
- $area = lm($models['model_league'],"Sports")
- ->leftjoin('st_area_country','st_area_country.id',$models['model_league'].'.area_id')
- ->select('st_area_country.id as area_id','st_area_country.name as region')
- ->distinct('st_area_country.name')
- ->where([[$models['model_league'].'.country_id','=',0]])
- ->where([[$models['model_league'].'.name_chinese','!=','']])
- ->where($models['model_league'].'.name_chinese','like','%'.$search.'%')
- ->get()
- ->toArray();
- if($type_code != 'StChampion'){//非冠军赛事
- $data = $this->getMatchNum($source,$country,$area,$models,$where,$search,$time,'',$s_type_code,$game_code,$oddsTypeWhere);
- }else{//冠军赛事
- $data = $this->getMatchStChampionNum($source,$country,$area,$models,$where,$search,$time);
- }
- return $data;
- }
- /**
- * 获取联赛下赛事 数量
- * 非冠军盘口
- */
- public function getMatchNum($source,$country,$area,$models,$where,$search,$time='',$type=0,$s_type_code='',$game_code='',$oddsTypeWhere=[]){
- $leagueData = lm($models['model_league'],'Sports')
- ->select('id as lg_id','name_chinese as league','country_id','area_id')
- ->where([[$models['model_league'].'.name_chinese','!=','']])
- ->where($models['model_league'].'.name_chinese','like','%'.$search.'%')
- ->get()
- ->toArray();
- //如果有时间条件
- $timeWhere = [];
- if(!empty($time)){
- if($time == 'other'){
- $timeWhere[] = ['match_date','>',date("Y-m-d",strtotime("+1weeks",strtotime(date('Y-m-d',time()))))];
- }else{
- $timeWhere[] = ['match_date',$time];
- }
- }
- if($s_type_code == 'StMorningPlate' and $game_code !='zq'){
- $timeWhere[] = ['match_date','>',date('Y-m-d',time())];
- }
- //获取赛事
- $matchData = lm($models['model_match'],'Sports')
- ->select('id as match_id','lg_id')
- ->where($where)
- ->where($timeWhere)
- ->get()
- ->toArray();
- //如果赛事为空,直接返回
- if(empty($matchData)) return $matchData;
- //===获取当前赛事是否有赔率,如果没有则去除===
- $matchData_new = $this->commonFunction->Handle_Odds_Null($matchData,$models,$oddsTypeWhere);
- //按国家
- $countryData = [];
- if(!empty($country) and !empty($leagueData) and !empty($matchData_new)){
- foreach ($country as $k=>$v){
- if($v['country_id']){
- $countryData[$k] = $v;
- foreach ($leagueData as $kk=>$vv){
- if($v['country_id'] == $vv['country_id']){
- $countryData[$k]['league_count'][] = $vv;
- }
- }
- }
- }
- }
- //去除无联赛 国家
- foreach ($countryData as $k=>$v){
- if(count($v) == 2){
- unset($countryData[$k]);
- }
- }
- //按地区
- $areaData = [];
- if(!empty($area) and !empty($leagueData) and($matchData_new)){
- foreach ($area as $k=>$v){
- if($v['area_id']){
- $areaData[$k] = $v;
- foreach ($leagueData as $kk=>$vv){
- if($v['area_id'] == $vv['area_id'] and $vv['country_id'] == 0){
- $areaData[$k]['league_count'][] = $vv;
- }
- }
- }
- }
- }
- //去除无联赛 地区
- foreach ($areaData as $k=>$v){
- if(count($v) == 2){
- unset($areaData[$k]);
- }
- }
- $countryData = $this->commonFunction->array_other_tt($countryData,$matchData_new);
- $areaData = $this->commonFunction->array_other_tt($areaData,$matchData_new);
- $data = array_merge($countryData,$areaData);
- return $data;
- }
- /**
- * 获取联赛下赛事 数量
- * 冠军盘口
- */
- public function getMatchStChampionNum($source,$country,$area,$models,$where,$search,$time='',$type=0){
- $leagueData = lm($models['model_league'],'Sports')
- ->select('id as lg_id','name_chinese as league','country_id','area_id')
- ->where([[$models['model_league'].'.name_chinese','!=','']])
- ->where($models['model_league'].'.name_chinese','like','%'.$search.'%')
- ->get()
- ->toArray();
- $oddsData = lm($models['model_odds'],'Sports')
- ->select('id','lg_id','p_code')
- ->distinct("p_code")//去重
- ->where($where)
- ->where(['status'=>0])
- ->get()
- ->toArray();
- //按国家
- $countryData = [];
- if(!empty($country) and !empty($leagueData) and !empty($oddsData)){
- foreach ($country as $k=>$v){
- if($v['country_id']){
- $countryData[$k] = $v;
- foreach ($leagueData as $kk=>$vv){
- if($v['country_id'] == $vv['country_id']){
- $countryData[$k]['league_count'][] = $vv;
- }
- }
- }
- }
- }
- //去除无联赛 国家
- foreach ($countryData as $k=>$v){
- if(count($v) == 2){
- unset($countryData[$k]);
- }
- }
- //按地区
- $areaData = [];
- if(!empty($area) and !empty($leagueData) and($oddsData)){
- foreach ($area as $k=>$v){
- if($v['area_id']){
- $areaData[$k] = $v;
- foreach ($leagueData as $kk=>$vv){
- if($v['area_id'] == $vv['area_id'] and $vv['country_id'] == 0){
- $areaData[$k]['league_count'][] = $vv;
- }
- }
- }
- }
- }
- //去除无联赛 地区
- foreach ($areaData as $k=>$v){
- if(count($v) == 2){
- unset($areaData[$k]);
- }
- }
- $countryData = $this->commonFunction->array_gj_tt($countryData,$oddsData);
- $areaData = $this->commonFunction->array_gj_tt($areaData,$oddsData);
- $data = array_merge($countryData,$areaData);
- return $data;
- }
- /**
- * 获取联赛下 赛事赔率
- */
- public function getMatchOdds($source,$model_league,$model_match,$model_odds,$where,$search,$lg_id,$time='',$oddsTypeWhere=[]){
- $leagueData = lm($model_league,"Sports")
- ->select('id as lg_id','name_chinese as leagueName')
- ->where('id',$lg_id)
- ->first();
- //根据时间 拼装查询条件
- $whereTime = [];
- if(!empty($time)){
- if($time == 'other'){
- //其他时间(七天后)
- $whereTime = [
- ['match_date','>',date("Y-m-d",strtotime("+1weeks",strtotime(date('Y-m-d',time()))))],
- ];
- }elseif($time == date('Y-m-d')){
- //今天
- $whereTime = [
- ['is_morningplate','=',1],
- ['match_date','=',$time],
- ['match_time','>',date("H:i:s", time())]
- ];
- }else{
- //今天以后 七天内
- $whereTime = [
- ['match_date','=',$time]
- ];
- }
- }
- $matchData = lm($model_match,"Sports")
- ->select($model_match.'.id as match_id',$model_match.'.tag','match_date',$model_match.'.match_time',$model_match.'.home_team',$model_match.'.guest_team')
- ->where($model_match.'.lg_id',$lg_id)
- ->where($where)
- ->where($whereTime)
- ->where(function($query)use ($model_match,$search){
- $query->where($model_match.'.home_team','like','%'.$search.'%')
- ->orWhere(function($query)use ($model_match,$search) {
- $query->where($model_match . '.guest_team', 'like', '%' . $search . '%');
- });
- })
- ->get()
- ->toarray();
- //如果赛事为空,直接返回
- if(empty($matchData)) return $matchData;
- //===获取当前赛事是否有赔率,如果没有则去除===
- $models = ['model_odds'=>$model_odds];
- $matchData_new = $this->commonFunction->Handle_Odds_Null($matchData,$models,$oddsTypeWhere);
- //获取各球类默认赔率
- $game_code = $_REQUEST['game_code'];
- switch ($game_code) {
- case 'zq'://足球
- $matchData = $this->getOddsData->getOddsZQ($matchData_new, $model_odds, $source,$oddsTypeWhere);
- break;
- case 'lq'://篮球
- $matchData = $this->getOddsData->getOddsLQ($matchData_new, $model_odds, $source,$oddsTypeWhere);
- break;
- case 'wq'://网球
- $matchData = $this->getOddsData->getOddsWQ($matchData_new, $model_odds, $source,$oddsTypeWhere);
- break;
- case 'bq'://棒球
- $matchData = $this->getOddsData->getOddsBQ($matchData_new, $model_odds, $source,$oddsTypeWhere);
- break;
- }
- $leagueData->matchNum = count($matchData);
- $leagueData->matchData = $matchData;
- return $leagueData;
- }
- /**
- * @param $source 数据源
- * @param $where 该状态 查询条件
- * @return array
- * @throws \Exception
- * 获取所有即将开赛 数据
- */
- public function getAllSoon($source,$where){
- $game = lm('GameType', 'Sports')->select('id','game_name','game_code','game_ico_url')->where('status',1)->get()->toArray();
- //获取当前美东时间
- $s_time = strtotime($this->commonFunction->qgmdate('Y-m-d H:i:s', '', -4));
- $data=[];
- foreach ($game as $key=>$item){
- if($item['game_code'] !='gj'){
- $model = $this->commonFunction->getModels($item['game_code']);
- $matchData = lm($model['model_match'], 'Sports')
- ->select('id as match_id','home_team','guest_team','match_time','us_time')
- ->where($where)
- ->orderBy('match_time','asc')
- ->get()->toArray();
- //===获取当前赛事是否有赔率,如果没有则去除===
- $matchData = $this->commonFunction->Handle_Odds_Null($matchData,$model);
- $matchNum = count($matchData);
- $matchData = array_slice($matchData,0,6);
- foreach ($matchData as $key1 => $item1){
- //获取等待时间
- $wait_time = ceil(((strtotime($item1['us_time']))-$s_time)/60);
- $matchData[$key1]['wait_time'] = $wait_time;
- }
- if($matchNum > 0){
- $data[$item['game_code']]['matchData'] = $matchData;
- $data[$item['game_code']]['matchNum'] = $matchNum;
- $data[$item['game_code']]['gameName'] = $item['game_name'];
- $data[$item['game_code']]['gameCode'] = $item['game_code'];
- }
- }
- }
- return $data;
- }
- /**
- * 获取欧冠 各状态赛事数据
- */
- public function getUEFAChampions($source){
- //根据搜索查询
- if(!empty($_GET['search'])){
- $search = $_GET['search'];
- }
- $model = $this->commonFunction->getModels('gj',1);
- $model_league = $model['model_league'];
- $leagueData = lm($model_league,'Sports')
- ->select('name_chinese','id as lg_id','last_time')
- ->where($model_league.'.name_chinese','欧洲冠军杯')
- ->first();
- //获取滚球数据
- $StRollBall = $this->getUEFAStRollBall($model,'StRollBall',$source,$leagueData->lg_id,$search);
- //获取今日数据
- $StToday = $this->getUEFAStToday($model,'StToday',$source,$leagueData->lg_id,$search);
- //获取早盘数据
- $StMorningPlate = $this->getUEFAStMorningPlate($model,'StMorningPlate',$source,$leagueData->lg_id,$search);
- //获取冠军盘口数据
- $StChampion = $this->getUEFAStChampion($model,'StChampion',$source,$leagueData->lg_id,$leagueData->last_time);
- $data = [
- 'lg_id' => $leagueData->lg_id,
- 'leagueName'=> $leagueData->name_chinese,
- 'StRollBall'=>[//滚球数据
- 'typeName'=>'滚球',
- 'matchNum'=>count($StRollBall),
- 'matchData'=>$StRollBall
- ],
- 'StToday'=>[//今日数据
- 'typeName'=>'今日',
- 'matchNum'=>count($StToday),
- 'matchData'=>$StToday
- ],
- 'StMorningPlate'=>[//早盘数据
- 'typeName'=>'早盘',
- 'matchNum'=>count($StMorningPlate),
- 'matchData'=>$StMorningPlate
- ],
- 'StChampion'=>[//冠军盘口
- 'typeName'=>'冠军盘口',
- 'matchNum'=>count($StChampion),
- 'matchData'=>$StChampion
- ]
- ];
- return $data;
- }
- /**
- * 获取欧冠 滚球数据
- */
- public function getUEFAStRollBall($model,$type_code,$source,$lg_id,$search=''){
- $model_match = $model['model_match'];
- $model_odds = $model['model_odds'];
- $model_result = $model['model_result'];
- $where = $this->commonFunction->getState($type_code,$model_match);
- $matchData = lm($model_match,"Sports")
- ->leftjoin($model_result,$model_result.'.match_id',$model_match.'.id')
- ->select($model_match.'.id as match_id',$model_match.'.tag','match_date',$model_match.'.match_time',$model_match.'.home_team',$model_match.'.guest_team','home_score','guest_score',$model_result.'.match_time as a_time','match_process')
- ->where($model_match.'.lg_id',$lg_id)
- ->where($where)
- ->where(function($query)use ($model_match,$search){
- $query->where($model_match.'.home_team','like','%'.$search.'%')
- ->orWhere(function($query)use ($model_match,$search) {
- $query->where($model_match . '.guest_team', 'like', '%' . $search . '%');
- });
- })
- ->get()
- ->toarray();
- //获取赛事id
- $match_ids = [];
- foreach ($matchData as $k => $v){
- $match_ids[] = $v['match_id'];
- }
- //获取赛事下滚球默认赔率
- $oddsData = ZQoddsModel::getMatchOdds($source,$model,$match_ids);
- foreach ($matchData as $k=>$v){
- //获取赛事下赔率并且分组
- $capot = [];
- $concede_size = [];
- foreach ($oddsData as $kk=>$vv){
- if ($vv['match_id'] == $v['match_id'] and $vv['sort']==0) {
- if($vv['p_code'] == 'concede_size'){
- $concede_size[] = $vv;
- }
- if($vv['p_code'] == 'capot'){
- $capot[] = $vv;
- }
- }
- }
- $matchData[$k]['oddsData'] = [$concede_size,$capot];
- }
- return $matchData;
- }
- /**
- * 获取欧冠 今日数据
- */
- public function getUEFAStToday($model,$type_code,$source,$lg_id,$search=''){
- $model_match = $model['model_match'];
- $model_odds = $model['model_odds'];
- $where = $this->commonFunction->getState($type_code);
- $matchData = lm($model_match,'Sports')
- ->select('id as match_id','match_date','match_time','tag','home_team','guest_team')
- ->where($where)
- ->where('lg_id',$lg_id)
- ->where(function($query)use ($model_match,$search){
- $query->where($model_match.'.home_team','like','%'.$search.'%')
- ->orWhere(function($query)use ($model_match,$search) {
- $query->where($model_match . '.guest_team', 'like', '%' . $search . '%');
- });
- })
- ->get()->toArray();
- //获取赛事id
- $match_ids = [];
- foreach ($matchData as $k => $v){
- $match_ids[] = $v['match_id'];
- }
- //获取赔率数据
- $oddsData = lm($model_odds, "Sports")
- ->select( 'id','p_code', 'odds_code','odds_only','status', 'odds', 'condition', 'sort','match_id')
- ->whereIn('match_id', $match_ids)
- ->where(['status'=>0])
- ->groupBy($model_odds . '.id','p_code', 'odds_code','odds_only', $model_odds . '.status', 'odds', 'condition', 'sort','match_id')
- ->orderBy($model_odds . '.id','desc')
- ->get()
- ->toarray();
- foreach ($matchData as $k=>$v){
- foreach ($oddsData as $kk=>$vv){
- if($v['match_id'] == $vv['match_id']){
- $matchData[$k]['oddsData'][] = $vv;
- }
- }
- }
- return $matchData;
- }
- /**
- * 获取欧冠 早盘数据
- */
- public function getUEFAStMorningPlate($model,$type_code,$source,$lg_id,$search=''){
- $model_match = $model['model_match'];
- $model_odds = $model['model_odds'];
- $where = $this->commonFunction->getState($type_code);
- $matchData = lm($model_match,'Sports')
- ->select('id as match_id','match_date','match_time','tag','home_team','guest_team')
- ->where($where)
- ->where('lg_id',$lg_id)
- ->where(function($query)use ($model_match,$search){
- $query->where($model_match.'.home_team','like','%'.$search.'%')
- ->orWhere(function($query)use ($model_match,$search) {
- $query->where($model_match . '.guest_team', 'like', '%' . $search . '%');
- });
- })
- ->get()->toArray();
- $data = $this->getOddsData->getOddsZQ($matchData,$model_odds,$source,[]);
- return $data;
- }
- /**
- * 获取 欧冠 冠军盘口数据
- */
- public function getUEFAStChampion($model,$type_code,$source,$lg_id,$last_time=''){
- $model_odds = $model['model_odds'];
- $where = $this->commonFunction->getState($type_code);
- $championData = lm($model_odds, 'Sports')
- ->select("id","lg_id","match_id","p_code","odds_code","team","odds","sort","status","odds_only")
- ->where('lg_id',$lg_id)
- ->where($where)
- ->where(['status'=>0])
- ->groupBy("id","lg_id","match_id","p_code","odds_code","team","odds","sort","status","odds_only")
- ->get()->toArray();
- //按p_code分组
- $p_code=array();
- foreach($championData as $k=>$v){
- $p_code[$v['p_code']][]=$v;
- }
- $data = [];
- foreach ($p_code as $k1=>$v1){
- foreach ($v1 as $k2=>$v2){
- $data[$v2['p_code']]['last_time'] =$last_time;
- $data[$v2['p_code']][$v2['odds_code']][] = $v2;
- }
- }
- return $data;
- }
- }
|