397 lines
15 KiB
C++
Raw Normal View History

//=====================================================================================//
//
// Purpose: Implementation of the pylon server backend.
//
// $NoKeywords: $
//=====================================================================================//
#include <core/stdafx.h>
#include <tier1/cvar.h>
#include <networksystem/pylon.h>
#ifndef CLIENT_DLL
#include <engine/server/server.h>
#endif // !CLIENT_DLL
//-----------------------------------------------------------------------------
// Purpose: Send keep alive request to Pylon Master Server.
// NOTE: When Pylon update reaches indev remove this and implement properly.
//-----------------------------------------------------------------------------
bool KeepAliveToPylon(const NetGameServer_t& netGameServer)
{
2022-05-12 19:39:55 +02:00
#ifndef CLIENT_DLL
if (g_pServer->IsActive() && sv_pylonVisibility->GetBool()) // Check for active game.
{
string m_szHostToken;
string m_szHostRequestMessage;
2022-03-26 01:19:02 +01:00
bool result = g_pMasterServer->PostServerHost(m_szHostRequestMessage, m_szHostToken, netGameServer);
return result;
}
return false;
2022-05-12 19:39:55 +02:00
#endif // !CLIENT_DLL
2022-07-01 10:29:27 +02:00
}
//-----------------------------------------------------------------------------
// Purpose: returns a vector of hosted servers.
//-----------------------------------------------------------------------------
vector<NetGameServer_t> CPylon::GetServerList(string& svOutMessage)
2022-07-01 10:29:27 +02:00
{
vector<NetGameServer_t> vslList{};
nlohmann::json jsRequestBody = nlohmann::json::object();
jsRequestBody["version"] = SDK_VERSION;
string svRequestBody = jsRequestBody.dump(4);
if (pylon_showdebug->GetBool())
{
DevMsg(eDLL_T::ENGINE, "%s - Sending server list request to comp-server:\n%s\n", __FUNCTION__, svRequestBody.c_str());
}
httplib::Client htClient(pylon_matchmaking_hostname->GetString()); htClient.set_connection_timeout(10);
httplib::Result htResult = htClient.Post("/servers", jsRequestBody.dump(4).c_str(), jsRequestBody.dump(4).length(), "application/json");
if (htResult && pylon_showdebug->GetBool())
2022-07-01 10:29:27 +02:00
{
DevMsg(eDLL_T::ENGINE, "%s - Replied with '%d'.\n", __FUNCTION__, htResult->status);
2022-07-01 10:29:27 +02:00
}
try
2022-07-01 10:29:27 +02:00
{
if (htResult && htResult->status == 200) // STATUS_OK
2022-07-01 10:29:27 +02:00
{
nlohmann::json jsResultBody = nlohmann::json::parse(htResult->body);
if (jsResultBody["success"].is_boolean() && jsResultBody["success"].get<bool>())
2022-07-01 10:29:27 +02:00
{
for (auto& obj : jsResultBody["servers"])
{
vslList.push_back(
NetGameServer_t
{
obj.value("name",""),
obj.value("description",""),
obj.value("hidden","false") == "true",
obj.value("map",""),
obj.value("playlist",""),
obj.value("ip",""),
obj.value("port", ""),
obj.value("key",""),
obj.value("checksum",""),
obj.value("version", SDK_VERSION),
obj.value("playerCount", ""),
obj.value("maxPlayers", ""),
obj.value("timeStamp", 0),
obj.value("publicRef", ""),
obj.value("cachedID", ""),
}
);
}
2022-07-01 10:29:27 +02:00
}
else
{
if (jsResultBody["err"].is_string())
{
svOutMessage = jsResultBody["err"].get<string>();
}
else
{
svOutMessage = "An unknown error occured!";
}
}
}
else
{
if (htResult)
{
if (!htResult->body.empty())
{
nlohmann::json jsResultBody = nlohmann::json::parse(htResult->body);
if (jsResultBody["err"].is_string())
{
svOutMessage = jsResultBody["err"].get<string>();
}
else
{
svOutMessage = string("Failed to reach comp-server: ") + std::to_string(htResult->status);
}
return vslList;
2022-07-01 10:29:27 +02:00
}
svOutMessage = string("Failed to reach comp-server: ") + std::to_string(htResult->status);
2022-07-01 10:29:27 +02:00
return vslList;
}
svOutMessage = "Failed to reach comp-server: Unknown error code";
2022-07-01 10:29:27 +02:00
return vslList;
}
}
catch (const std::exception& ex)
{
Warning(eDLL_T::ENGINE, "%s - Exception while parsing comp-server response:\n%s\n", __FUNCTION__, ex.what());
2022-07-01 10:29:27 +02:00
}
return vslList;
}
//-----------------------------------------------------------------------------
// Purpose: Sends host server POST request.
// Input : &svOutMessage -
// &svOutToken -
// &slServerListing -
// Output : Returns true on success, false on failure.
//-----------------------------------------------------------------------------
bool CPylon::PostServerHost(string& svOutMessage, string& svOutToken, const NetGameServer_t& slServerListing)
{
nlohmann::json jsRequestBody = nlohmann::json::object();
jsRequestBody["name"] = slServerListing.m_svHostName;
jsRequestBody["description"] = slServerListing.m_svDescription;
jsRequestBody["hidden"] = slServerListing.m_bHidden;
jsRequestBody["map"] = slServerListing.m_svHostMap;
2022-07-01 10:29:27 +02:00
jsRequestBody["playlist"] = slServerListing.m_svPlaylist;
jsRequestBody["ip"] = slServerListing.m_svIpAddress;
jsRequestBody["port"] = slServerListing.m_svGamePort;
jsRequestBody["key"] = slServerListing.m_svEncryptionKey;
jsRequestBody["checksum"] = slServerListing.m_svRemoteChecksum;
jsRequestBody["version"] = slServerListing.m_svSDKVersion;
jsRequestBody["playerCount"] = slServerListing.m_svPlayerCount;
jsRequestBody["maxPlayers"] = slServerListing.m_svMaxPlayers;
jsRequestBody["timeStamp"] = slServerListing.m_nTimeStamp;
jsRequestBody["publicRef"] = slServerListing.m_svPublicRef;
jsRequestBody["cachedID"] = slServerListing.m_svCachedID;
string svRequestBody = jsRequestBody.dump(4);
if (pylon_showdebug->GetBool())
{
DevMsg(eDLL_T::ENGINE, "%s - Sending post host request to comp-server:\n%s\n", __FUNCTION__, svRequestBody.c_str());
}
httplib::Client htClient(pylon_matchmaking_hostname->GetString()); htClient.set_connection_timeout(10);
httplib::Result htResult = htClient.Post("/servers/add", svRequestBody.c_str(), svRequestBody.length(), "application/json");
if (htResult && pylon_showdebug->GetBool())
2022-07-01 10:29:27 +02:00
{
DevMsg(eDLL_T::ENGINE, "%s - Comp-server replied with '%d'\n", __FUNCTION__, htResult->status);
2022-07-01 10:29:27 +02:00
}
try
2022-07-01 10:29:27 +02:00
{
if (htResult && htResult->status == 200) // STATUS_OK
2022-07-01 10:29:27 +02:00
{
nlohmann::json jsResultBody = nlohmann::json::parse(htResult->body);
if (jsResultBody["success"].is_boolean() && jsResultBody["success"].get<bool>())
2022-07-01 10:29:27 +02:00
{
if (jsResultBody["token"].is_string())
{
svOutToken = jsResultBody["token"].get<string>();
}
else
{
svOutToken = string();
}
2022-07-01 10:29:27 +02:00
return true;
2022-07-01 10:29:27 +02:00
}
else
{
if (jsResultBody["err"].is_string())
{
svOutMessage = jsResultBody["err"].get<string>();
}
else
{
svOutMessage = "An unknown error occured!";
}
return false;
}
}
else
{
if (htResult)
{
if (!htResult->body.empty())
{
nlohmann::json jsResultBody = nlohmann::json::parse(htResult->body);
if (jsResultBody["err"].is_string())
{
svOutMessage = jsResultBody["err"].get<string>();
}
else
{
svOutMessage = string("Failed to reach comp-server ") + std::to_string(htResult->status);
}
svOutToken = string();
return false;
2022-07-01 10:29:27 +02:00
}
svOutToken = string();
svOutMessage = string("Failed to reach comp-server: ") + std::to_string(htResult->status);
2022-07-01 10:29:27 +02:00
return false;
}
svOutToken = string();
svOutMessage = "Failed to reach comp-server: Unknown error code";
2022-07-01 10:29:27 +02:00
return false;
}
}
catch (const std::exception& ex)
{
Warning(eDLL_T::ENGINE, "%s - Exception while parsing comp-server response:\n%s\n", __FUNCTION__, ex.what());
2022-07-01 10:29:27 +02:00
}
return false;
}
//-----------------------------------------------------------------------------
// Purpose: Gets the server by token string.
// Input : &slOutServer -
// &svOutMessage -
// svToken -
// Output : Returns true on success, false on failure.
//-----------------------------------------------------------------------------
bool CPylon::GetServerByToken(NetGameServer_t& slOutServer, string& svOutMessage, const string& svToken)
{
nlohmann::json jsRequestBody = nlohmann::json::object();
jsRequestBody["token"] = svToken;
string svRequestBody = jsRequestBody.dump(4);
if (pylon_showdebug->GetBool())
{
DevMsg(eDLL_T::ENGINE, "%s - Sending token connect request to comp-server:\n%s\n", __FUNCTION__, svRequestBody.c_str());
}
httplib::Client htClient(pylon_matchmaking_hostname->GetString()); htClient.set_connection_timeout(10);
httplib::Result htResult = htClient.Post("/server/byToken", jsRequestBody.dump(4).c_str(), jsRequestBody.dump(4).length(), "application/json");
2022-07-01 10:29:27 +02:00
if (pylon_showdebug->GetBool())
{
DevMsg(eDLL_T::ENGINE, "%s - Comp-server replied with '%d'\n", __FUNCTION__, htResult->status);
2022-07-01 10:29:27 +02:00
}
try
2022-07-01 10:29:27 +02:00
{
if (htResult && htResult->status == 200) // STATUS_OK
2022-07-01 10:29:27 +02:00
{
if (!htResult->body.empty())
2022-07-01 10:29:27 +02:00
{
nlohmann::json jsResultBody = nlohmann::json::parse(htResult->body);
if (htResult && jsResultBody["success"].is_boolean() && jsResultBody["success"])
2022-07-01 10:29:27 +02:00
{
slOutServer = NetGameServer_t
{
jsResultBody["server"].value("name",""),
jsResultBody["server"].value("description",""),
jsResultBody["server"].value("hidden","false") == "true",
jsResultBody["server"].value("map",""),
jsResultBody["server"].value("playlist",""),
jsResultBody["server"].value("ip",""),
jsResultBody["server"].value("port", ""),
jsResultBody["server"].value("key",""),
jsResultBody["server"].value("checksum",""),
jsResultBody["server"].value("version", SDK_VERSION),
jsResultBody["server"].value("playerCount", ""),
jsResultBody["server"].value("maxPlayers", ""),
jsResultBody["server"].value("timeStamp", 0),
jsResultBody["server"].value("publicRef", ""),
jsResultBody["server"].value("cachedID", ""),
};
return true;
2022-07-01 10:29:27 +02:00
}
else
{
if (jsResultBody["err"].is_string())
{
svOutMessage = jsResultBody["err"].get<string>();
}
else
{
svOutMessage = "";
}
2022-07-01 10:29:27 +02:00
slOutServer = NetGameServer_t{};
return false;
}
2022-07-01 10:29:27 +02:00
}
}
else
2022-07-01 10:29:27 +02:00
{
if (htResult)
2022-07-01 10:29:27 +02:00
{
if (!htResult->body.empty())
2022-07-01 10:29:27 +02:00
{
nlohmann::json jsResultBody = nlohmann::json::parse(htResult->body);
if (jsResultBody["err"].is_string())
{
svOutMessage = jsResultBody["err"].get<string>();
}
else
{
svOutMessage = string("Failed to reach comp-server: ") + std::to_string(htResult->status);
}
return false;
2022-07-01 10:29:27 +02:00
}
svOutMessage = string("Failed to reach comp-server: ") + std::to_string(htResult->status);
2022-07-01 10:29:27 +02:00
return false;
}
svOutMessage = "Failed to reach comp-server: Unknown error code";
slOutServer = NetGameServer_t{};
2022-07-01 10:29:27 +02:00
return false;
}
}
catch (const std::exception& ex)
{
Warning(eDLL_T::ENGINE, "%s - Exception while parsing comp-server response:\n%s\n", __FUNCTION__, ex.what());
2022-07-01 10:29:27 +02:00
}
return false;
}
//-----------------------------------------------------------------------------
// Purpose: Checks if client is banned on the comp server.
// Input : svIpAddress -
// nOriginID -
// &svOutErrCl -
// Output : Returns true if banned, false if not banned.
//-----------------------------------------------------------------------------
bool CPylon::CheckForBan(const string& svIpAddress, uint64_t nOriginID, string& svOutErrCl)
2022-07-01 10:29:27 +02:00
{
nlohmann::json jsRequestBody = nlohmann::json::object();
jsRequestBody["oid"] = nOriginID;
jsRequestBody["ip"] = svIpAddress;
httplib::Client htClient(pylon_matchmaking_hostname->GetString()); htClient.set_connection_timeout(10);
httplib::Result htResult = htClient.Post("/banlist/isBanned", jsRequestBody.dump(4).c_str(), jsRequestBody.dump(4).length(), "application/json");
try
2022-07-01 10:29:27 +02:00
{
if (htResult && htResult->status == 200)
2022-07-01 10:29:27 +02:00
{
nlohmann::json jsResultBody = nlohmann::json::parse(htResult->body);
if (jsResultBody["success"].is_boolean() && jsResultBody["success"].get<bool>())
2022-07-01 10:29:27 +02:00
{
if (jsResultBody["banned"].is_boolean() && jsResultBody["banned"].get<bool>())
{
svOutErrCl = jsResultBody.value("errCl", "#DISCONNECT_BANNED");
return true;
}
2022-07-01 10:29:27 +02:00
}
}
}
catch (const std::exception& ex)
{
Warning(eDLL_T::ENGINE, "%s - Exception while parsing comp-server response:\n%s\n", __FUNCTION__, ex.what());
}
2022-07-01 10:29:27 +02:00
return false;
}
///////////////////////////////////////////////////////////////////////////////
CPylon* g_pMasterServer(new CPylon());