2012-12-25 12:20:51 +01:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2012-12-25 12:20:51 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <algorithm>
|
|
|
|
|
2013-09-25 04:29:07 +02:00
|
|
|
#include "version.h"
|
2012-12-25 12:20:51 +01:00
|
|
|
#include "main.h" // for g_settings
|
|
|
|
#include "settings.h"
|
|
|
|
#include "serverlist.h"
|
|
|
|
#include "filesys.h"
|
|
|
|
#include "porting.h"
|
|
|
|
#include "log.h"
|
2013-02-21 23:00:44 +01:00
|
|
|
#include "json/json.h"
|
2013-06-23 18:30:21 +02:00
|
|
|
#include "convert_json.h"
|
2013-08-29 05:58:13 +02:00
|
|
|
#include "httpfetch.h"
|
|
|
|
#include "util/string.h"
|
2012-12-25 12:20:51 +01:00
|
|
|
|
|
|
|
namespace ServerList
|
|
|
|
{
|
|
|
|
std::string getFilePath()
|
|
|
|
{
|
|
|
|
std::string serverlist_file = g_settings->get("serverlist_file");
|
|
|
|
|
2013-04-12 12:58:04 +02:00
|
|
|
std::string dir_path = std::string("client") + DIR_DELIM
|
|
|
|
+ "serverlist" + DIR_DELIM;
|
|
|
|
fs::CreateDir(porting::path_user + DIR_DELIM + "client");
|
|
|
|
fs::CreateDir(porting::path_user + DIR_DELIM + dir_path);
|
|
|
|
std::string rel_path = dir_path + serverlist_file;
|
|
|
|
std::string path = porting::path_user + DIR_DELIM + rel_path;
|
2012-12-25 12:20:51 +01:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<ServerListSpec> getLocal()
|
|
|
|
{
|
|
|
|
std::string path = ServerList::getFilePath();
|
|
|
|
std::string liststring;
|
|
|
|
if(fs::PathExists(path))
|
|
|
|
{
|
2013-05-04 07:31:22 +02:00
|
|
|
std::ifstream istream(path.c_str());
|
2012-12-25 12:20:51 +01:00
|
|
|
if(istream.is_open())
|
|
|
|
{
|
|
|
|
std::ostringstream ostream;
|
|
|
|
ostream << istream.rdbuf();
|
|
|
|
liststring = ostream.str();
|
|
|
|
istream.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ServerList::deSerialize(liststring);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<ServerListSpec> getOnline()
|
|
|
|
{
|
2014-06-19 20:58:22 +02:00
|
|
|
Json::Value root = fetchJsonValue((g_settings->get("serverlist_url")+"/list").c_str(), NULL);
|
2012-12-25 12:20:51 +01:00
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
std::vector<ServerListSpec> serverlist;
|
2012-12-25 12:20:51 +01:00
|
|
|
|
2013-06-23 18:30:21 +02:00
|
|
|
if (root.isArray()) {
|
|
|
|
for (unsigned int i = 0; i < root.size(); i++)
|
|
|
|
{
|
|
|
|
if (root[i].isObject()) {
|
|
|
|
serverlist.push_back(root[i]);
|
|
|
|
}
|
|
|
|
}
|
2012-12-25 12:20:51 +01:00
|
|
|
}
|
2013-06-23 18:30:21 +02:00
|
|
|
|
|
|
|
return serverlist;
|
2012-12-25 12:20:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Delete a server fromt he local favorites list
|
|
|
|
*/
|
|
|
|
bool deleteEntry (ServerListSpec server)
|
|
|
|
{
|
|
|
|
std::vector<ServerListSpec> serverlist = ServerList::getLocal();
|
|
|
|
for(unsigned i = 0; i < serverlist.size(); i++)
|
|
|
|
{
|
2013-02-21 23:00:44 +01:00
|
|
|
if (serverlist[i]["address"] == server["address"]
|
|
|
|
&& serverlist[i]["port"] == server["port"])
|
2012-12-25 12:20:51 +01:00
|
|
|
{
|
|
|
|
serverlist.erase(serverlist.begin() + i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string path = ServerList::getFilePath();
|
2013-08-13 19:15:06 +02:00
|
|
|
std::ostringstream ss(std::ios_base::binary);
|
|
|
|
ss << ServerList::serialize(serverlist);
|
|
|
|
if (!fs::safeWriteToFile(path, ss.str()))
|
|
|
|
return false;
|
|
|
|
return true;
|
2012-12-25 12:20:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Insert a server to the local favorites list
|
|
|
|
*/
|
|
|
|
bool insert (ServerListSpec server)
|
|
|
|
{
|
|
|
|
// Remove duplicates
|
|
|
|
ServerList::deleteEntry(server);
|
|
|
|
|
|
|
|
std::vector<ServerListSpec> serverlist = ServerList::getLocal();
|
|
|
|
|
|
|
|
// Insert new server at the top of the list
|
|
|
|
serverlist.insert(serverlist.begin(), server);
|
|
|
|
|
|
|
|
std::string path = ServerList::getFilePath();
|
2013-08-13 19:15:06 +02:00
|
|
|
std::ostringstream ss(std::ios_base::binary);
|
|
|
|
ss << ServerList::serialize(serverlist);
|
|
|
|
fs::safeWriteToFile(path, ss.str());
|
2012-12-25 12:20:51 +01:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<ServerListSpec> deSerialize(std::string liststring)
|
|
|
|
{
|
|
|
|
std::vector<ServerListSpec> serverlist;
|
|
|
|
std::istringstream stream(liststring);
|
2013-02-21 23:00:44 +01:00
|
|
|
std::string line, tmp;
|
2012-12-25 12:20:51 +01:00
|
|
|
while (std::getline(stream, line))
|
|
|
|
{
|
|
|
|
std::transform(line.begin(), line.end(),line.begin(), ::toupper);
|
|
|
|
if (line == "[SERVER]")
|
|
|
|
{
|
|
|
|
ServerListSpec thisserver;
|
2013-02-21 23:00:44 +01:00
|
|
|
std::getline(stream, tmp);
|
|
|
|
thisserver["name"] = tmp;
|
|
|
|
std::getline(stream, tmp);
|
|
|
|
thisserver["address"] = tmp;
|
|
|
|
std::getline(stream, tmp);
|
|
|
|
thisserver["port"] = tmp;
|
|
|
|
std::getline(stream, tmp);
|
|
|
|
thisserver["description"] = tmp;
|
2012-12-25 12:20:51 +01:00
|
|
|
serverlist.push_back(thisserver);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return serverlist;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string serialize(std::vector<ServerListSpec> serverlist)
|
|
|
|
{
|
|
|
|
std::string liststring;
|
|
|
|
for(std::vector<ServerListSpec>::iterator i = serverlist.begin(); i != serverlist.end(); i++)
|
|
|
|
{
|
|
|
|
liststring += "[server]\n";
|
2013-02-21 23:00:44 +01:00
|
|
|
liststring += (*i)["name"].asString() + "\n";
|
|
|
|
liststring += (*i)["address"].asString() + "\n";
|
|
|
|
liststring += (*i)["port"].asString() + "\n";
|
|
|
|
liststring += (*i)["description"].asString() + "\n";
|
2012-12-25 12:20:51 +01:00
|
|
|
liststring += "\n";
|
|
|
|
}
|
|
|
|
return liststring;
|
|
|
|
}
|
|
|
|
|
2013-02-21 23:00:44 +01:00
|
|
|
std::string serializeJson(std::vector<ServerListSpec> serverlist)
|
|
|
|
{
|
|
|
|
Json::Value root;
|
|
|
|
Json::Value list(Json::arrayValue);
|
|
|
|
for(std::vector<ServerListSpec>::iterator i = serverlist.begin(); i != serverlist.end(); i++)
|
|
|
|
{
|
|
|
|
list.append(*i);
|
|
|
|
}
|
|
|
|
root["list"] = list;
|
|
|
|
Json::StyledWriter writer;
|
|
|
|
return writer.write( root );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if USE_CURL
|
2014-01-06 23:50:45 +01:00
|
|
|
void sendAnnounce(std::string action, const std::vector<std::string> & clients_names, double uptime, u32 game_time, float lag, std::string gameid, std::vector<ModSpec> mods) {
|
2013-02-21 23:00:44 +01:00
|
|
|
Json::Value server;
|
|
|
|
if (action.size())
|
|
|
|
server["action"] = action;
|
2013-10-17 23:32:49 +02:00
|
|
|
server["port"] = g_settings->get("port");
|
2013-07-04 17:39:26 +02:00
|
|
|
server["address"] = g_settings->get("server_address");
|
|
|
|
if (action != "delete") {
|
2013-02-21 23:00:44 +01:00
|
|
|
server["name"] = g_settings->get("server_name");
|
|
|
|
server["description"] = g_settings->get("server_description");
|
2013-09-25 04:29:07 +02:00
|
|
|
server["version"] = minetest_version_simple;
|
2013-02-21 23:00:44 +01:00
|
|
|
server["url"] = g_settings->get("server_url");
|
|
|
|
server["creative"] = g_settings->get("creative_mode");
|
|
|
|
server["damage"] = g_settings->get("enable_damage");
|
|
|
|
server["password"] = g_settings->getBool("disallow_empty_password");
|
|
|
|
server["pvp"] = g_settings->getBool("enable_pvp");
|
2013-10-17 23:32:49 +02:00
|
|
|
server["clients"] = (int)clients_names.size();
|
2013-02-21 23:00:44 +01:00
|
|
|
server["clients_max"] = g_settings->get("max_users");
|
2013-10-17 23:32:49 +02:00
|
|
|
server["clients_list"] = Json::Value(Json::arrayValue);
|
|
|
|
for(u32 i = 0; i < clients_names.size(); ++i) {
|
|
|
|
server["clients_list"].append(clients_names[i]);
|
|
|
|
}
|
|
|
|
if (uptime >= 1) server["uptime"] = (int)uptime;
|
|
|
|
if (gameid != "") server["gameid"] = gameid;
|
|
|
|
if (game_time >= 1) server["game_time"] = game_time;
|
2013-02-21 23:00:44 +01:00
|
|
|
}
|
2013-07-04 17:39:26 +02:00
|
|
|
|
|
|
|
if(server["action"] == "start") {
|
2013-08-03 01:02:59 +02:00
|
|
|
server["dedicated"] = g_settings->get("server_dedicated");
|
2013-11-04 01:55:35 +01:00
|
|
|
server["privs"] = g_settings->get("default_privs");
|
2013-08-03 01:02:59 +02:00
|
|
|
server["rollback"] = g_settings->getBool("enable_rollback_recording");
|
|
|
|
server["mapgen"] = g_settings->get("mg_name");
|
2013-12-03 17:13:33 +01:00
|
|
|
server["can_see_far_names"] = g_settings->getBool("unlimited_player_transfer_distance");
|
2013-10-17 23:32:49 +02:00
|
|
|
server["mods"] = Json::Value(Json::arrayValue);
|
|
|
|
for(std::vector<ModSpec>::iterator m = mods.begin(); m != mods.end(); m++) {
|
2013-07-04 17:39:26 +02:00
|
|
|
server["mods"].append(m->name);
|
|
|
|
}
|
2013-02-21 23:00:44 +01:00
|
|
|
actionstream << "announcing to " << g_settings->get("serverlist_url") << std::endl;
|
2014-01-06 23:50:45 +01:00
|
|
|
} else {
|
|
|
|
if (lag)
|
2014-01-07 00:11:18 +01:00
|
|
|
server["lag"] = lag;
|
2013-07-04 17:39:26 +02:00
|
|
|
}
|
|
|
|
|
2014-01-06 23:50:45 +01:00
|
|
|
Json::FastWriter writer;
|
2013-08-29 05:58:13 +02:00
|
|
|
HTTPFetchRequest fetchrequest;
|
2014-01-06 23:50:45 +01:00
|
|
|
fetchrequest.url = g_settings->get("serverlist_url") + std::string("/announce");
|
2014-06-19 22:00:22 +02:00
|
|
|
fetchrequest.post_fields["json"] = writer.write(server);
|
|
|
|
fetchrequest.multipart = true;
|
2013-08-29 05:58:13 +02:00
|
|
|
httpfetch_async(fetchrequest);
|
2013-02-21 23:00:44 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-12-25 12:20:51 +01:00
|
|
|
} //namespace ServerList
|