add more info to return to pkToUser endpoint

This commit is contained in:
sla-ppy 2024-05-28 14:15:41 +02:00
parent a3670bff4a
commit 58a7e39419
2 changed files with 18 additions and 11 deletions

View File

@ -289,16 +289,23 @@ std::shared_ptr<TClient> TNetwork::Authentication(TConnection&& RawConnection) {
return nullptr;
}
std::string key(reinterpret_cast<const char*>(Data.data()), Data.size());
std::string Key(reinterpret_cast<const char*>(Data.data()), Data.size());
std::string AuthKey = Application::Settings.Key;
std::string ClientIp = Client->GetIdentifiers().at("ip");
nlohmann::json AuthReq {};
std::string AuthResStr {};
try {
AuthReq = nlohmann::json {
{ "key", key }
{ "key", Key },
{ "auth_key", AuthKey },
{ "client_ip", ClientIp }
};
beammp_debugf("IF YOU SEE THIS AND IT DISPLAYS PROPER INFO, THE FEATURE WORKS: {}", to_string(AuthReq));
auto Target = "/pkToUser";
unsigned int ResponseCode = 0;
AuthResStr = Http::POST(Application::GetBackendUrlForAuth(), 443, Target, AuthReq.dump(), "application/json", &ResponseCode);