improving logging
This commit is contained in:
@ -701,9 +701,20 @@ class MatchManagerCore implements CallbackListener, CommandListener, TimerListen
|
|||||||
/*
|
/*
|
||||||
* MARK: Internal Functions
|
* MARK: Internal Functions
|
||||||
*/
|
*/
|
||||||
|
/**
|
||||||
|
* Custom log function to add prefix
|
||||||
|
*
|
||||||
|
* @param mixed $message
|
||||||
|
*/
|
||||||
private function log(mixed $message) {
|
private function log(mixed $message) {
|
||||||
Logger::log(self::LOG_PREFIX . $message);
|
Logger::log(self::LOG_PREFIX . $message);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Custom logError function to add prefix
|
||||||
|
*
|
||||||
|
* @param mixed $message
|
||||||
|
*/
|
||||||
private function logError(mixed $message) {
|
private function logError(mixed $message) {
|
||||||
Logger::logError(self::LOG_PREFIX . $message);
|
Logger::logError(self::LOG_PREFIX . $message);
|
||||||
}
|
}
|
||||||
@ -1985,10 +1996,9 @@ class MatchManagerCore implements CallbackListener, CommandListener, TimerListen
|
|||||||
* @param OnScoresStructure $structure
|
* @param OnScoresStructure $structure
|
||||||
*/
|
*/
|
||||||
public function handleTrackmaniaScore(OnScoresStructure $structure) {
|
public function handleTrackmaniaScore(OnScoresStructure $structure) {
|
||||||
$this->log("handleTrackmaniaScore-" . $structure->getSection());
|
$this->log("handleTrackmaniaScore - Section: " . $structure->getSection());
|
||||||
|
|
||||||
if ($this->matchStarted && $this->settingsloaded && !$this->postmatch) {
|
if ($this->matchStarted && $this->settingsloaded && !$this->postmatch) {
|
||||||
$this->log("Section: " . $structure->getSection());
|
|
||||||
if ($structure->getSection() == "EndMatchEarly" || $structure->getSection() == "EndMatch") {
|
if ($structure->getSection() == "EndMatchEarly" || $structure->getSection() == "EndMatch") {
|
||||||
$this->computeCurrentScores($structure);
|
$this->computeCurrentScores($structure);
|
||||||
$this->MatchEnd();
|
$this->MatchEnd();
|
||||||
@ -1998,6 +2008,7 @@ class MatchManagerCore implements CallbackListener, CommandListener, TimerListen
|
|||||||
$this->preendroundscore = $structure;
|
$this->preendroundscore = $structure;
|
||||||
} elseif ($structure->getSection() == "EndRound") {
|
} elseif ($structure->getSection() == "EndRound") {
|
||||||
if ($this->nbmaps != 0 && ($this->nbrounds <= $this->settings_nbroundsbymap || $this->settings_nbroundsbymap <= 0)) {
|
if ($this->nbmaps != 0 && ($this->nbrounds <= $this->settings_nbroundsbymap || $this->settings_nbroundsbymap <= 0)) {
|
||||||
|
$this->log("Computing current scores");
|
||||||
$this->computeCurrentScores($structure);
|
$this->computeCurrentScores($structure);
|
||||||
|
|
||||||
$timestamp = time();
|
$timestamp = time();
|
||||||
|
@ -195,9 +195,9 @@ class MatchManagerGSheet implements CallbackListener, TimerListener, CommandLis
|
|||||||
|
|
||||||
$this->access_token = $this->getSecretSetting("access_token");
|
$this->access_token = $this->getSecretSetting("access_token");
|
||||||
|
|
||||||
$this->maniaControl->getChat()->sendErrorToAdmins('To use the MatchManagerGSheet plugin, $<$l[https://github.com/AmazingBeu/ManiacontrolPlugins/wiki/MatchManager-GSheet]check the doc$>');
|
$this->maniaControl->getChat()->sendErrorToAdmins($this->MatchManagerCore->getChatPrefix() .'To use the MatchManagerGSheet plugin, $<$l[https://github.com/AmazingBeu/ManiacontrolPlugins/wiki/MatchManager-GSheet]check the doc$>');
|
||||||
|
|
||||||
$this->maniaControl->getChat()->sendErrorToAdmins('Since MatchManagerGSheet 2.0, Player names are in the results and no more in a separated list');
|
$this->maniaControl->getChat()->sendErrorToAdmins($this->MatchManagerCore->getChatPrefix() .'Since MatchManagerGSheet 2.0, Player names are in the results and no more in a separated list');
|
||||||
|
|
||||||
$this->updateAdminUIMenuItems();
|
$this->updateAdminUIMenuItems();
|
||||||
|
|
||||||
@ -473,7 +473,7 @@ class MatchManagerGSheet implements CallbackListener, TimerListener, CommandLis
|
|||||||
}
|
}
|
||||||
|
|
||||||
private function refreshTokenIfNeeded() {
|
private function refreshTokenIfNeeded() {
|
||||||
$this->Log('refreshTokenIfNeeded');
|
$this->log('Refresh Google API token if needed');
|
||||||
$this->access_token = $this->getSecretSetting("access_token");
|
$this->access_token = $this->getSecretSetting("access_token");
|
||||||
$expire = $this->getSecretSetting("expire");
|
$expire = $this->getSecretSetting("expire");
|
||||||
$refreshtoken = $this->getSecretSetting("refresh_token");
|
$refreshtoken = $this->getSecretSetting("refresh_token");
|
||||||
@ -505,6 +505,8 @@ class MatchManagerGSheet implements CallbackListener, TimerListener, CommandLis
|
|||||||
$this->access_token = $data->access_token;
|
$this->access_token = $data->access_token;
|
||||||
$this->saveSecretSetting("access_token", $data->access_token);
|
$this->saveSecretSetting("access_token", $data->access_token);
|
||||||
$this->saveSecretSetting("expire", time() + $data->expires_in);
|
$this->saveSecretSetting("expire", time() + $data->expires_in);
|
||||||
|
|
||||||
|
$this->log('Successfully updated Google API token');
|
||||||
} elseif (isset($data->error_description)) {
|
} elseif (isset($data->error_description)) {
|
||||||
$this->maniaControl->getChat()->sendErrorToAdmins($this->MatchManagerCore->getChatPrefix() .'Google refused the request: ' . $data->error_description);
|
$this->maniaControl->getChat()->sendErrorToAdmins($this->MatchManagerCore->getChatPrefix() .'Google refused the request: ' . $data->error_description);
|
||||||
} else {
|
} else {
|
||||||
@ -670,6 +672,7 @@ class MatchManagerGSheet implements CallbackListener, TimerListener, CommandLis
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($this->currentdatamode == "All Rounds Data" && $matchstatus == "running") {
|
if ($this->currentdatamode == "All Rounds Data" && $matchstatus == "running") {
|
||||||
|
$this->log('Successfully sent Info data');
|
||||||
$newcurrentscore = [];
|
$newcurrentscore = [];
|
||||||
foreach ($currentscore as $score) {
|
foreach ($currentscore as $score) {
|
||||||
array_push($newcurrentscore, array_merge([$nbmaps, $nbrounds], $score));
|
array_push($newcurrentscore, array_merge([$nbmaps, $nbrounds], $score));
|
||||||
@ -702,6 +705,8 @@ class MatchManagerGSheet implements CallbackListener, TimerListener, CommandLis
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->log('Successfully appending Player Scores data');
|
||||||
|
|
||||||
if (!empty($currentteamsscore)) {
|
if (!empty($currentteamsscore)) {
|
||||||
$newcurrentteamsscore = [];
|
$newcurrentteamsscore = [];
|
||||||
foreach ($currentteamsscore as $score) {
|
foreach ($currentteamsscore as $score) {
|
||||||
@ -734,11 +739,15 @@ class MatchManagerGSheet implements CallbackListener, TimerListener, CommandLis
|
|||||||
$this->maniaControl->getChat()->sendErrorToAdmins($this->MatchManagerCore->getChatPrefix() .'Request error: ' . $data->error->code . " ". $data->error->message);
|
$this->maniaControl->getChat()->sendErrorToAdmins($this->MatchManagerCore->getChatPrefix() .'Request error: ' . $data->error->code . " ". $data->error->message);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->log('Successfully appending Team Scores data');
|
||||||
});
|
});
|
||||||
$asyncHttpRequest->postData(1000);
|
$asyncHttpRequest->postData(1000);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$asyncHttpRequest->postData(1000);
|
$asyncHttpRequest->postData(1000);
|
||||||
|
} else {
|
||||||
|
$this->log('Successfully sent Info and Scores data');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$asyncHttpRequest->postData(1000);
|
$asyncHttpRequest->postData(1000);
|
||||||
@ -748,12 +757,12 @@ class MatchManagerGSheet implements CallbackListener, TimerListener, CommandLis
|
|||||||
}
|
}
|
||||||
|
|
||||||
function onCallbackEndRound(String $matchid, Array $currentscore, Array $currentteamsscore) {
|
function onCallbackEndRound(String $matchid, Array $currentscore, Array $currentteamsscore) {
|
||||||
$this->Log('onCallbackEndRound');
|
$this->log('onCallbackEndRound');
|
||||||
$this->matchstatus = "running";
|
$this->matchstatus = "running";
|
||||||
$this->UpdateGSheetData($matchid, $currentscore, $currentteamsscore);
|
$this->UpdateGSheetData($matchid, $currentscore, $currentteamsscore);
|
||||||
}
|
}
|
||||||
function onCallbackEndMatch(String $matchid, Array $currentscore, Array $currentteamsscore) {
|
function onCallbackEndMatch(String $matchid, Array $currentscore, Array $currentteamsscore) {
|
||||||
$this->Log('onCallbackEndMatch');
|
$this->log('onCallbackEndMatch');
|
||||||
$this->matchstatus = "ended";
|
$this->matchstatus = "ended";
|
||||||
|
|
||||||
$this->maniaControl->getTimerManager()->registerOneTimeListening($this, function () use ($matchid, $currentscore, $currentteamsscore) {
|
$this->maniaControl->getTimerManager()->registerOneTimeListening($this, function () use ($matchid, $currentscore, $currentteamsscore) {
|
||||||
@ -761,7 +770,7 @@ class MatchManagerGSheet implements CallbackListener, TimerListener, CommandLis
|
|||||||
}, 1000); // Wait a sec before sending last data to avoid collision
|
}, 1000); // Wait a sec before sending last data to avoid collision
|
||||||
}
|
}
|
||||||
function onCallbackStopMatch(String $matchid, Array $currentscore, Array $currentteamsscore) {
|
function onCallbackStopMatch(String $matchid, Array $currentscore, Array $currentteamsscore) {
|
||||||
$this->Log('onCallbackStopMatch');
|
$this->log('onCallbackStopMatch');
|
||||||
$this->matchstatus = "stopped";
|
$this->matchstatus = "stopped";
|
||||||
$this->UpdateGSheetData($matchid, $currentscore, $currentteamsscore);
|
$this->UpdateGSheetData($matchid, $currentscore, $currentteamsscore);
|
||||||
}
|
}
|
||||||
@ -833,7 +842,7 @@ class MatchManagerGSheet implements CallbackListener, TimerListener, CommandLis
|
|||||||
$i = 0;
|
$i = 0;
|
||||||
|
|
||||||
if (!$sheetexists) {
|
if (!$sheetexists) {
|
||||||
$this->Log("Creating new Sheet: " . $sheetname);
|
$this->log("Creating new Sheet: " . $sheetname);
|
||||||
$sheetid = rand(1000,2147483646);
|
$sheetid = rand(1000,2147483646);
|
||||||
while (in_array($sheetid, $sheetsid)) {
|
while (in_array($sheetid, $sheetsid)) {
|
||||||
$sheetid = rand(1000,2147483646);
|
$sheetid = rand(1000,2147483646);
|
||||||
@ -944,6 +953,8 @@ class MatchManagerGSheet implements CallbackListener, TimerListener, CommandLis
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->log('Successfully created sheet with formatting');
|
||||||
|
|
||||||
// Clear Scoreboards data
|
// Clear Scoreboards data
|
||||||
$asyncHttpRequest = new AsyncHttpRequest($this->maniaControl, 'https://sheets.googleapis.com/v4/spreadsheets/' . $spreadsheetid . '/values/' . urlencode("'". $sheetname . "'") . '!A1:Z300:clear');
|
$asyncHttpRequest = new AsyncHttpRequest($this->maniaControl, 'https://sheets.googleapis.com/v4/spreadsheets/' . $spreadsheetid . '/values/' . urlencode("'". $sheetname . "'") . '!A1:Z300:clear');
|
||||||
$asyncHttpRequest->setHeaders(array("Authorization: Bearer " . $this->access_token));
|
$asyncHttpRequest->setHeaders(array("Authorization: Bearer " . $this->access_token));
|
||||||
@ -965,6 +976,8 @@ class MatchManagerGSheet implements CallbackListener, TimerListener, CommandLis
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->log('Successfully cleared all the data');
|
||||||
|
|
||||||
// Add headers data
|
// Add headers data
|
||||||
$data = new \stdClass;
|
$data = new \stdClass;
|
||||||
$data->valueInputOption = "RAW";
|
$data->valueInputOption = "RAW";
|
||||||
@ -1002,6 +1015,8 @@ class MatchManagerGSheet implements CallbackListener, TimerListener, CommandLis
|
|||||||
$this->maniaControl->getChat()->sendErrorToAdmins('$this->MatchManagerCore->getChatPrefix() .Request error: ' . $data->error->code . " ". $data->error->message);
|
$this->maniaControl->getChat()->sendErrorToAdmins('$this->MatchManagerCore->getChatPrefix() .Request error: ' . $data->error->code . " ". $data->error->message);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->log('Successfully added headers data');
|
||||||
});
|
});
|
||||||
$asyncHttpRequest->postData(1000);
|
$asyncHttpRequest->postData(1000);
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user