From 3cd7f4331db00cf58a27bbaf00c4ab0ed90226a5 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 26 Jan 2023 21:11:32 +0100 Subject: [PATCH] Add debug logging for 'CPylon::CheckForBan' --- r5dev/networksystem/pylon.cpp | 35 +++++++++++++++++++++++++++++------ 1 file changed, 29 insertions(+), 6 deletions(-) diff --git a/r5dev/networksystem/pylon.cpp b/r5dev/networksystem/pylon.cpp index cfbde6e8..2416bec9 100644 --- a/r5dev/networksystem/pylon.cpp +++ b/r5dev/networksystem/pylon.cpp @@ -133,7 +133,9 @@ bool CPylon::GetServerByToken(NetGameServer_t& slOutServer, string& svOutMessage string svRequestBody = jsRequestBody.dump(4); string svResponseBuf; - if (pylon_showdebuginfo->GetBool()) + const bool bDebugLog = pylon_showdebuginfo->GetBool(); + + if (bDebugLog) { DevMsg(eDLL_T::ENGINE, "%s - Sending token connect request to comp-server:\n%s\n", __FUNCTION__, svRequestBody.c_str()); } @@ -144,7 +146,7 @@ bool CPylon::GetServerByToken(NetGameServer_t& slOutServer, string& svOutMessage return false; } - if (pylon_showdebuginfo->GetBool()) + if (bDebugLog) { DevMsg(eDLL_T::ENGINE, "%s - Comp-server replied with status: '%d'\n", __FUNCTION__, status); try @@ -267,7 +269,9 @@ bool CPylon::PostServerHost(string& svOutMessage, string& svOutToken, const NetG string svRequestBody = jsRequestBody.dump(4); string svResponseBuf; - if (pylon_showdebuginfo->GetBool()) + const bool bDebugLog = pylon_showdebuginfo->GetBool(); + + if (bDebugLog) { DevMsg(eDLL_T::ENGINE, "%s - Sending post host request to comp-server:\n%s\n", __FUNCTION__, svRequestBody.c_str()); } @@ -278,13 +282,13 @@ bool CPylon::PostServerHost(string& svOutMessage, string& svOutToken, const NetG return false; } - if (pylon_showdebuginfo->GetBool()) + if (bDebugLog) { DevMsg(eDLL_T::ENGINE, "%s - Comp-server replied with status: '%d'\n", __FUNCTION__, status); try { - string jsResultBody = nlohmann::json::parse(svResponseBuf).dump(4); - DevMsg(eDLL_T::ENGINE, "%s - Comp-server response body:\n%s\n", __FUNCTION__, jsResultBody.c_str()); + string svResultBody = nlohmann::json::parse(svResponseBuf).dump(4); + DevMsg(eDLL_T::ENGINE, "%s - Comp-server response body:\n%s\n", __FUNCTION__, svResultBody.c_str()); } catch (const std::exception& ex) { @@ -397,17 +401,36 @@ bool CPylon::CheckForBan(const string& svIpAddress, const uint64_t nNucleusID, s string svOutMessage; CURLINFO status; + const bool bDebugLog = pylon_showdebuginfo->GetBool(); + + if (bDebugLog) + { + DevMsg(eDLL_T::ENGINE, "%s - Sending ban check request to comp-server:\n%s\n", __FUNCTION__, svRequestBody.c_str()); + } + if (!QueryMasterServer(pylon_matchmaking_hostname->GetString(), "/banlist/isBanned", svRequestBody, svResponseBuf, svOutMessage, status)) { Error(eDLL_T::ENGINE, NO_ERROR, "%s - Failed to query comp-server: %s\n", __FUNCTION__, svOutMessage.c_str()); return false; } + if (bDebugLog) + { + DevMsg(eDLL_T::ENGINE, "%s - Comp-server replied with status: '%d'\n", __FUNCTION__, status); + } + try { if (status == 200) { nlohmann::json jsResultBody = nlohmann::json::parse(svResponseBuf); + + if (bDebugLog) + { + string svResultBody = jsResultBody.dump(4); + DevMsg(eDLL_T::ENGINE, "%s - Comp-server response body:\n%s\n", __FUNCTION__, svResultBody.c_str()); + } + if (jsResultBody["success"].is_boolean() && jsResultBody["success"].get()) { if (jsResultBody["banned"].is_boolean() && jsResultBody["banned"].get())