| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423 |
- <?php
- namespace App\Http\Model;
- use Illuminate\Database\Eloquent\Model;
- use App\Http\Response\Response;
- use Illuminate\Support\Facades\DB;
- use App\Lib\Biz\Sport\Common as commonFunction;
- /**
- * Class StBqResult
- * @package App\Http\Model
- * 棒球 赛事 结果
- */
- class StBqResult extends Model
- {
- protected $table = 'st_bq_result';
- public $timestamps = false;
- /*
- * 写赛事结果
- * 弃用
- */
- public static function BQresult__($model){
- //获取赛事表7天内所有赛事
- $matchData = $model['model_match']::select('id','home_team','guest_team','lg_id','status','tag','match_date','match_time')
- ->where([['ctime','>',date('Y-m-d H:i:s', strtotime("-7 day"))]])
- ->get()
- ->toarray();
- //没有数据,无需操作
- if(empty($matchData)) return Response::success();
- //获取赛事结果表 所有当月
- $matchData_r = $model['model_result']::select('match_id')
- ->where([['ctime','>',date('Y-m-d H:i:s', strtotime("-7 day"))]])
- ->get()
- ->toarray();
- //结果表无数据,直接插入
- if(empty($matchData_r)){
- foreach ($matchData as $k=>$v){
- $start_time = ($v['match_date'].' '.$v['match_time']);
- $time = time()-strtotime($v['match_time']);
- $match_time = self::secTime($time);
- $set_match_r[] = [
- "match_id"=> $v['id'],
- "home_team"=>$v['home_team'],
- "guest_team"=>$v['guest_team'],
- "lg_id"=>$v['lg_id'],
- "status"=>$v['status'],
- "tag"=> $v['tag'],
- 'match_time'=>$match_time,
- "ctime"=>date('Y-m-d H:i:s'),
- "update_time"=>date('Y-m-d H:i:s'),
- "start_time"=>date('Y-m-d H:i:s',strtotime($start_time))
- ];
- }
- $ret = $model['model_result']::insert($set_match_r);
- if($ret != true) throw new \Exception( Response::generate('',Response::ADD_MATCH_R_ERROR));
- }else {
- //如果结果表有数据,则获取结果表没有的赛事
- foreach ($matchData as $k => $v) {
- foreach ($matchData_r as $kk => $vv) {
- if ($v['id'] == $vv['match_id']) {
- unset($matchData[$k]);
- }
- }
- }
- //如果还有未写入赛事
- if (!empty($matchData)) {
- //写入结果表不存在赛事
- foreach ($matchData as $k => $v) {
- $start_time = ($v['match_date'] . ' ' . $v['match_time']);
- $time = time() - strtotime($v['match_time']);
- $match_time = self::secTime($time);
- $set_match_r[] = [
- "match_id" => $v['id'],
- "home_team" => $v['home_team'],
- "guest_team" => $v['guest_team'],
- "lg_id" => $v['lg_id'],
- "status" => $v['status'],
- "tag" => $v['tag'],
- 'match_time' => $match_time,
- "ctime" => date('Y-m-d H:i:s'),
- "update_time" => date('Y-m-d H:i:s'),
- "start_time" => date('Y-m-d H:i:s', strtotime($start_time))
- ];
- }
- $ret = $model['model_result']::insert($set_match_r);
- if ($ret != true) throw new \Exception(Response::generate('', Response::ADD_MATCH_R_ERROR));//Render([], '10022', lang('Tips','Sports')->get('add_match_r_error'));
- }
- }
- }
- public static function BQresult_v1($model){
- //获取赛事表7天内所有赛事
- $matchData = $model['model_match']::select('id','home_team','guest_team','lg_id','status','tag','match_date','match_time')
- ->where([['match_date','>',date('Y-m-d',strtotime("-2 day"))],['status','=',2]])
- ->get()
- ->toArray();
-
- //获取赛事结果表 一天内
- $matchData_r = $model['model_result']::select('match_id')
- ->where([['ctime','>',date('Y-m-d H:i:s', strtotime("-2 day"))]])
- ->get()
- ->toArray();
- if(!empty($matchData_r)){
- //如果结果表有数据,则获取结果表没有的赛事
- foreach ($matchData as $k => $v) {
- foreach ($matchData_r as $kk => $vv) {
- if ($v['id'] == $vv['match_id']) {
- unset($matchData[$k]);
- }
- }
- }
- }
- //没有数据,无需操作
- if(empty($matchData)) return Response::success();
- //获取赛事id 用于获取赛事对应结果比分
- $match_ids = [];
- foreach($matchData as $k =>$v){
- //只获取赛事已结束的
- if($v['status'] == 2){
- $match_ids[] = $v['id'];
- }
- }
- $match_ids_str = implode(",", $match_ids);
- // 组装sql
- $sql_result = "select a.match_id,a.home_score,a.guest_score,a.match_time as a_time,a.match_process,a.all_inning,a.first_score,a.last_score,a.match_score,a.match_winer,a.home_rate,a.guest_rate,a.result_mark from st_bq_result_record a,
- (select match_id,max(id) id from st_bq_result_record where match_id IN ($match_ids_str) group by match_id)b
- where a.match_id = b.match_id and a.id = b.id ";
- //赛事最终结果
- $match_result = DB::select($sql_result);
- //拼装赛事结果数据
- $set_match_r = [];
- if(!empty($match_result)){
- foreach($matchData as $k =>$v ){
- //获取开赛时间
- $start_time = ($v['match_date'].' '.$v['match_time']);
- $time = time()-strtotime($v['match_time']);
- $match_time = self::secTime($time);
- //获取赛事每节的赛果
- $resultData = commonFunction::filter_by_value($match_result,'match_id',$v['id']);
-
- if(!empty($resultData)){
- //获取赛果json
- $result_mark = json_decode($resultData['result_mark'],true);
- //获取进程
- $match_process = $resultData['match_process'];
- //获胜球员
- $match_winer = '';
- if($result_mark['game_num_H'] > $result_mark['game_num_C']){
- $match_winer = $v['home_team'];
- }else{
- $match_winer = $v['guest_team'];
- }
- //组装输赢结果json
- $inning = [
- 1=>[
- "home"=>$result_mark['sc_1th_H'],
- "guest"=>$result_mark['sc_1th_C'],
- ],
- 2=>[
- "home"=>$result_mark['sc_2th_H'],
- "guest"=>$result_mark['sc_2th_C'],
- ],
- 3=>[
- "home"=>$result_mark['sc_3th_H'],
- "guest"=>$result_mark['sc_3th_C'],
- ],
- 4=>[
- "home"=>$result_mark['sc_4th_H'],
- "guest"=>$result_mark['sc_4th_C'],
- ],
- 5=>[
- "home"=>$result_mark['sc_5th_H'],
- "guest"=>$result_mark['sc_5th_C'],
- ],
- 6=>[
- "home"=>$result_mark['sc_6th_H'],
- "guest"=>$result_mark['sc_6th_C'],
- ],
- 7=>[
- "home"=>$result_mark['sc_7th_H'],
- "guest"=>$result_mark['sc_7th_C'],
- ],
- 8=>[
- "home"=>$result_mark['sc_8th_H'],
- "guest"=>$result_mark['sc_8th_C'],
- ],
- 9=>[
- "home"=>$result_mark['sc_9th_H'],
- "guest"=>$result_mark['sc_9th_C'],
- ],
- "other"=>[//加时
- "home"=>$result_mark['OT_H'],
- "guest"=>$result_mark['OT_C'],
- ]
-
- ];
- //上半场主队进球
- $u_home_score = $result_mark['sc_1th_H']+$result_mark['sc_2th_H']+$result_mark['sc_3th_H']+$result_mark['sc_4th_H']+$result_mark['sc_5th_H'];
- //上半场客队进球
- $u_guest_score = $result_mark['sc_1th_C']+$result_mark['sc_2th_C']+$result_mark['sc_3th_C']+$result_mark['sc_4th_C']+$result_mark['sc_5th_C'];
- //赛事比分
- $match_score = $result_mark['game_num_H'].':'.$result_mark['game_num_C'];
- //总进球数
- $all_goal = $result_mark['game_num_H'] + $result_mark['game_num_C'];
-
- //赛事待写入赛果数据
- $set_match_r[] = [
- "match_id"=> $v['id'],
- "home_team"=>$v['home_team'],
- "guest_team"=>$v['guest_team'],
- "lg_id"=>$v['lg_id'],
- "status"=>$v['status'],
- "tag"=> $v['tag'],
- 'match_time'=>$resultData['a_time']?:0,
- "ctime"=>date('Y-m-d H:i:s'),
- "update_time"=>date('Y-m-d H:i:s'),
- "start_time"=>date('Y-m-d H:i:s',strtotime($start_time)),
- "home_rate"=> $resultData['home_rate']?:0, //主队让球
- "guest_rate"=> $resultData['guest_rate']?:0, //客队让球
- "home_score"=> $result_mark['game_num_H']?:0, //主队进球
- "guest_score"=> $result_mark['game_num_C']?:0, //客队进球
- "all_goal"=> $all_goal?:0, //总局数
- // "first_score"=> $resultData['first_score']?:'', //最先得分
- // "last_score"=> $resultData['last_score']?:'', //最后得分
- "match_score"=> $match_score?:'',//赛事比分
- "match_winer"=> $match_winer?:'',//获胜队员
- "match_process"=> $match_process?:'',//比赛进程
- "u_home_score"=> $u_home_score,//上半场主队进球
- "u_guest_score"=> $u_guest_score ,//上半场客队进球
- "match_score_t"=> json_encode($inning)?:'',//每局输赢结果
- ];
- }
- }
- }
- //写入赛果
- if(!empty($set_match_r)){
- $ret = $model['model_result']::insert($set_match_r);
- if($ret != true) throw new \Exception( Response::generate('',Response::ADD_MATCH_R_ERROR));
- }
- return 1;
- }
- /**
- * 获取自动赛事结果
- * 只更新已结束+未手动修改的赛事结果
- * $match_id 本地赛事id 为0时 则用于后台手动刷新赛果
- */
- public static function BQresult_v2($model,$match_id=0){
- //如果有赛事id 则只更新当前赛事结果
- if($match_id > 0){
- $match_ids_str = $match_id;
- }else{
- //获取两天内的结束赛事
- $matchData = $model['model_match']
- ->join('st_bq_result','st_bq_result.match_id','=','st_bq_competition.id')
- ->select('st_bq_competition.id','is_correct')
- ->where([['st_bq_competition.match_date','>',date('Y-m-d', strtotime("-2 day"))],['st_bq_competition.status','=',2],['st_bq_result.is_correct','=',-1]])
- ->get()
- ->toArray();
- //没有数据,无需操作
- if(empty($matchData)) return Response::success();
- //获取需更新结果的赛事ID
- $match_ids = [];
- foreach($matchData as $k =>$v){
- //未手动修改比分
- if($v['is_correct'] == 0){
- $match_ids[] = $v['id'];
- }
- }
- if(empty($match_ids)) return Response::success();
- $match_ids_str = implode(",", $match_ids);
- }
- // 组装sql
- $sql_result = "select a.match_id,a.home_team,a.guest_team,a.home_score,a.guest_score,a.match_time as a_time,a.match_process,a.all_inning,a.first_score,a.last_score,a.match_score,a.match_winer,a.home_rate,a.guest_rate,a.result_mark from st_bq_result_record a,
- (select match_id,max(id) id from st_bq_result_record where match_id IN ($match_ids_str) group by match_id)b
- where a.match_id = b.match_id and a.id = b.id ";
- //赛事最终结果
- $match_result = DB::select($sql_result);
- if(!empty($match_result)){
- foreach($match_result as $k=>$v){
- //获取赛事每节的赛果
- $resultData = commonFunction::filter_by_value($match_result,'match_id',$v->match_id);
-
- if(!empty($resultData)){
- //获取赛果json
- $result_mark = json_decode($resultData['result_mark'],true);
- //获取进程
- $match_process = $resultData['match_process'];
- //获胜球员
- $match_winer = '';
- if($result_mark['game_num_H'] > $result_mark['game_num_C']){
- $match_winer = $v->home_team;
- }else{
- $match_winer = $v->guest_team;
- }
- //组装输赢结果json
- $inning = [
- 1=>[
- "home"=>$result_mark['sc_1th_H'],
- "guest"=>$result_mark['sc_1th_C'],
- ],
- 2=>[
- "home"=>$result_mark['sc_2th_H'],
- "guest"=>$result_mark['sc_2th_C'],
- ],
- 3=>[
- "home"=>$result_mark['sc_3th_H'],
- "guest"=>$result_mark['sc_3th_C'],
- ],
- 4=>[
- "home"=>$result_mark['sc_4th_H'],
- "guest"=>$result_mark['sc_4th_C'],
- ],
- 5=>[
- "home"=>$result_mark['sc_5th_H'],
- "guest"=>$result_mark['sc_5th_C'],
- ],
- 6=>[
- "home"=>$result_mark['sc_6th_H'],
- "guest"=>$result_mark['sc_6th_C'],
- ],
- 7=>[
- "home"=>$result_mark['sc_7th_H'],
- "guest"=>$result_mark['sc_7th_C'],
- ],
- 8=>[
- "home"=>$result_mark['sc_8th_H'],
- "guest"=>$result_mark['sc_8th_C'],
- ],
- 9=>[
- "home"=>$result_mark['sc_9th_H'],
- "guest"=>$result_mark['sc_9th_C'],
- ],
- "other"=>[//加时
- "home"=>$result_mark['OT_H'],
- "guest"=>$result_mark['OT_C'],
- ]
-
- ];
- //上半场主队进球
- $u_home_score = $result_mark['sc_1th_H']+$result_mark['sc_2th_H']+$result_mark['sc_3th_H']+$result_mark['sc_4th_H']+$result_mark['sc_5th_H'];
- //上半场客队进球
- $u_guest_score = $result_mark['sc_1th_C']+$result_mark['sc_2th_C']+$result_mark['sc_3th_C']+$result_mark['sc_4th_C']+$result_mark['sc_5th_C'];
- //赛事比分
- $match_score = $result_mark['game_num_H'].':'.$result_mark['game_num_C'];
- //总进球数
- $all_goal = $result_mark['game_num_H'] + $result_mark['game_num_C'];
-
- //赛事待写入赛果数据
- $set_match_r = [
- "match_id"=> $v->match_id,
- "status"=>2,
- "update_time"=>date('Y-m-d H:i:s'),
- "home_rate"=> $resultData['home_rate']?:0, //主队让球
- "guest_rate"=> $resultData['guest_rate']?:0, //客队让球
- "home_score"=> $result_mark['game_num_H']?:0, //主队进球
- "guest_score"=> $result_mark['game_num_C']?:0, //客队进球
- "all_goal"=> $all_goal?:0, //总局数
- // "first_score"=> $resultData['first_score']?:'', //最先得分
- // "last_score"=> $resultData['last_score']?:'', //最后得分
- "match_score"=> $match_score?:'',//赛事比分
- "match_winer"=> $match_winer?:'',//获胜队员
- "match_process"=> $match_process?:'',//比赛进程
- "u_home_score"=> $u_home_score,//上半场主队进球
- "u_guest_score"=> $u_guest_score ,//上半场客队进球
- "match_score_t"=> json_encode($inning)?:'',//每局输赢结果
- "is_correct"=> -1,//自动比分
- ];
- $ret = $model['model_result']::where(['match_id' => $v->match_id,'is_correct'=>-1])
- ->update($set_match_r);
-
- // if($ret < 1) throw new \Exception( Response::generate('',Response::ADD_MATCH_R_ERROR));
- }
- }
- }
- return 1;
- }
- //计算滚球 赛事进行时间
- public static function secTime($sec=0){
- $min = floor($sec/60);
- $res = $min.':'.($sec-$min*60);
- return $res;
- }
- }
|