This commit is contained in:
aozhiwei 2023-12-26 15:28:25 +08:00
parent 8bd3b443ec
commit 33347004a5

View File

@ -33,13 +33,15 @@ class MatchController extends BaseAuthedController {
return;
}
$matchInfo = array(
'state' => 0,
'team_list' => array()
);
$matchOkDb = $this->readMatchOk($r, $teamUuid);
if ($matchOkDb) {
$this->refreshKeyExpire($r, MATCH_OK_KEY . $teamUuid, 1000*600);
$this->refreshKeyExpire($r, MATCH_OK_KEY . $matchOkDb['target_team'], 1000*600);
$this->refreshKeyExpire($r, TEAMID_KEY . $matchOkDb['target_team'], 1000*600);
$this->fillMatchInfo($r, $matchInfo);
} else {
$currMatchDb = $this->readCurrMatchTeam($r);
if (empty($currMatchDb)) {
@ -52,6 +54,7 @@ class MatchController extends BaseAuthedController {
} else {
if ($currMatchDb['current_team'] != $teamUuid) {
$this->matchOk($r, $teamUuid, $currMatchDb);
$this->fillMatchInfo($r, $matchInfo);
}
}
}
@ -140,4 +143,9 @@ class MatchController extends BaseAuthedController {
}
}
private function fillMatchInfo($r, &$matchInfo)
{
$matchInfo['state'] = 1;
}
}