[Download] Add serverlist info

This commit is contained in:
/dev/root 2018-12-02 18:17:45 +01:00
parent 179f34bd9f
commit 3f9f58d5f6
4 changed files with 42 additions and 0 deletions

View File

@ -465,6 +465,37 @@ namespace Components
nc->flags |= MG_F_SEND_AND_CLOSE;
}
void Download::ServerlistHandler(mg_connection* nc, int ev, void* /*ev_data*/)
{
// Only handle http requests
if (ev != MG_EV_HTTP_REQUEST) return;
std::vector<json11::Json> servers;
// Build server list
for (auto& node : Node::GetNodes())
{
std::map<std::string, json11::Json> serverInfo;
serverInfo["address"] = "127.0.0.1:28960";
if (node.isValid())
{
serverInfo["address"] = node.address.getCString();
servers.push_back(serverInfo);
}
}
mg_printf(nc,
"HTTP/1.1 200 OK\r\n"
"Content-Type: application/json\r\n"
"Connection: close\r\n"
"Access-Control-Allow-Origin: *\r\n"
"\r\n"
"%s", json11::Json(servers).dump().data());
nc->flags |= MG_F_SEND_AND_CLOSE;
}
void Download::MapHandler(mg_connection *nc, int ev, void* ev_data)
{
// Only handle http requests
@ -819,6 +850,7 @@ namespace Components
mg_register_http_endpoint(nc, "/list", Download::ListHandler);
mg_register_http_endpoint(nc, "/map", Download::MapHandler);
mg_register_http_endpoint(nc, "/file/", Download::FileHandler);
mg_register_http_endpoint(nc, "/serverlist", Download::ServerlistHandler);
mg_set_protocol_http_websocket(nc);
}

View File

@ -217,6 +217,7 @@ namespace Components
static void EventHandler(mg_connection *nc, int ev, void *ev_data);
static void ListHandler(mg_connection *nc, int ev, void *ev_data);
static void MapHandler(mg_connection *nc, int ev, void *ev_data);
static void ServerlistHandler(mg_connection *nc, int ev, void *ev_data);
static void FileHandler(mg_connection *nc, int ev, void *ev_data);
static void InfoHandler(mg_connection *nc, int ev, void *ev_data);
static void DownloadHandler(mg_connection *nc, int ev, void *ev_data);

View File

@ -153,6 +153,13 @@ namespace Components
Node::Nodes.push_back(node);
}
std::vector<Node::Entry> Node::GetNodes()
{
std::lock_guard<std::recursive_mutex> _(Node::Mutex);
return Node::Nodes;
}
void Node::RunFrame()
{
if (Dedicated::IsEnabled() && Dvar::Var("sv_lanOnly").get<bool>()) return;
@ -264,6 +271,7 @@ namespace Components
Node::Nodes.push_back(entry);
}
}
void Node::SendList(Network::Address address)
{
Proto::Node::List list;

View File

@ -41,6 +41,7 @@ namespace Components
~Node();
static void Add(Network::Address address);
static std::vector<Entry> GetNodes();
static void RunFrame();
static void Synchronize();