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
|
|
|
|
{
|
2014-06-20 06:59:39 +02:00
|
|
|
|
2012-12-25 12:20:51 +01:00
|
|
|
std::string getFilePath()
|
|
|
|
{
|
|
|
|
std::string serverlist_file = g_settings->get("serverlist_file");
|
|
|
|
|
2014-06-20 06:59:39 +02:00
|
|
|
std::string dir_path = "client" DIR_DELIM "serverlist" DIR_DELIM;
|
|
|
|
fs::CreateDir(porting::path_user + DIR_DELIM "client");
|
2013-04-12 12:58:04 +02:00
|
|
|
fs::CreateDir(porting::path_user + DIR_DELIM + dir_path);
|
2014-06-20 06:59:39 +02:00
|
|
|
return porting::path_user + DIR_DELIM + dir_path + serverlist_file;
|
2012-12-25 12:20:51 +01:00
|
|
|
}
|
|
|
|
|
2014-06-20 06:59:39 +02:00
|
|
|
|
2012-12-25 12:20:51 +01:00
|
|
|
std::vector<ServerListSpec> getLocal()
|
|
|
|
{
|
|
|
|
std::string path = ServerList::getFilePath();
|
|
|
|
std::string liststring;
|
2014-06-20 06:59:39 +02:00
|
|
|
if (fs::PathExists(path)) {
|
2013-05-04 07:31:22 +02:00
|
|
|
std::ifstream istream(path.c_str());
|
2014-06-20 06:59:39 +02:00
|
|
|
if (istream.is_open()) {
|
2012-12-25 12:20:51 +01:00
|
|
|
std::ostringstream ostream;
|
|
|
|
ostream << istream.rdbuf();
|
|
|
|
liststring = ostream.str();
|
|
|
|
istream.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-20 06:59:39 +02:00
|
|
|
return deSerialize(liststring);
|
2012-12-25 12:20:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<ServerListSpec> getOnline()
|
|
|
|
{
|
2014-06-20 06:59:39 +02:00
|
|
|
Json::Value root = fetchJsonValue(
|
|
|
|
(g_settings->get("serverlist_url") + "/list").c_str(), NULL);
|
2012-12-25 12:20:51 +01:00
|
|
|
|
2014-09-15 02:46:45 +02:00
|
|
|
std::vector<ServerListSpec> server_list;
|
|
|
|
|
|
|
|
if (!root.isObject()) {
|
|
|
|
return server_list;
|
|
|
|
}
|
2012-12-25 12:20:51 +01:00
|
|
|
|
2014-09-15 02:46:45 +02:00
|
|
|
root = root["list"];
|
|
|
|
if (!root.isArray()) {
|
|
|
|
return server_list;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < root.size(); i++) {
|
|
|
|
if (root[i].isObject()) {
|
|
|
|
server_list.push_back(root[i]);
|
2013-06-23 18:30:21 +02:00
|
|
|
}
|
2012-12-25 12:20:51 +01:00
|
|
|
}
|
2013-06-23 18:30:21 +02:00
|
|
|
|
2014-09-15 02:46:45 +02:00
|
|
|
return server_list;
|
2012-12-25 12:20:51 +01:00
|
|
|
}
|
|
|
|
|
2014-06-20 06:59:39 +02:00
|
|
|
|
|
|
|
// Delete a server from the local favorites list
|
|
|
|
bool deleteEntry(const ServerListSpec &server)
|
2012-12-25 12:20:51 +01:00
|
|
|
{
|
|
|
|
std::vector<ServerListSpec> serverlist = ServerList::getLocal();
|
2014-06-20 06:59:39 +02:00
|
|
|
for (std::vector<ServerListSpec>::iterator it = serverlist.begin();
|
|
|
|
it != serverlist.end();) {
|
|
|
|
if ((*it)["address"] == server["address"] &&
|
|
|
|
(*it)["port"] == server["port"]) {
|
|
|
|
it = serverlist.erase(it);
|
|
|
|
} else {
|
|
|
|
++it;
|
2012-12-25 12:20:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-06-20 06:59:39 +02:00
|
|
|
// Insert a server to the local favorites list
|
|
|
|
bool insert(const ServerListSpec &server)
|
2012-12-25 12:20:51 +01:00
|
|
|
{
|
|
|
|
// 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);
|
2014-06-20 06:59:39 +02:00
|
|
|
if (!fs::safeWriteToFile(path, ss.str()))
|
|
|
|
return false;
|
2012-12-25 12:20:51 +01:00
|
|
|
|
2014-06-20 06:59:39 +02:00
|
|
|
return true;
|
2012-12-25 12:20:51 +01:00
|
|
|
}
|
|
|
|
|
2014-06-20 06:59:39 +02:00
|
|
|
std::vector<ServerListSpec> deSerialize(const std::string &liststring)
|
2012-12-25 12:20:51 +01:00
|
|
|
{
|
|
|
|
std::vector<ServerListSpec> serverlist;
|
|
|
|
std::istringstream stream(liststring);
|
2013-02-21 23:00:44 +01:00
|
|
|
std::string line, tmp;
|
2014-06-20 06:59:39 +02:00
|
|
|
while (std::getline(stream, line)) {
|
|
|
|
std::transform(line.begin(), line.end(), line.begin(), ::toupper);
|
|
|
|
if (line == "[SERVER]") {
|
|
|
|
ServerListSpec server;
|
2013-02-21 23:00:44 +01:00
|
|
|
std::getline(stream, tmp);
|
2014-06-20 06:59:39 +02:00
|
|
|
server["name"] = tmp;
|
2013-02-21 23:00:44 +01:00
|
|
|
std::getline(stream, tmp);
|
2014-06-20 06:59:39 +02:00
|
|
|
server["address"] = tmp;
|
2013-02-21 23:00:44 +01:00
|
|
|
std::getline(stream, tmp);
|
2014-06-20 06:59:39 +02:00
|
|
|
server["port"] = tmp;
|
2013-02-21 23:00:44 +01:00
|
|
|
std::getline(stream, tmp);
|
2014-06-20 06:59:39 +02:00
|
|
|
server["description"] = tmp;
|
|
|
|
serverlist.push_back(server);
|
2012-12-25 12:20:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return serverlist;
|
|
|
|
}
|
|
|
|
|
2014-06-20 06:59:39 +02:00
|
|
|
const std::string serialize(const std::vector<ServerListSpec> &serverlist)
|
2012-12-25 12:20:51 +01:00
|
|
|
{
|
|
|
|
std::string liststring;
|
2014-06-20 06:59:39 +02:00
|
|
|
for (std::vector<ServerListSpec>::const_iterator it = serverlist.begin();
|
|
|
|
it != serverlist.end();
|
|
|
|
it++) {
|
2012-12-25 12:20:51 +01:00
|
|
|
liststring += "[server]\n";
|
2014-06-20 06:59:39 +02:00
|
|
|
liststring += (*it)["name"].asString() + '\n';
|
|
|
|
liststring += (*it)["address"].asString() + '\n';
|
|
|
|
liststring += (*it)["port"].asString() + '\n';
|
|
|
|
liststring += (*it)["description"].asString() + '\n';
|
|
|
|
liststring += '\n';
|
2012-12-25 12:20:51 +01:00
|
|
|
}
|
|
|
|
return liststring;
|
|
|
|
}
|
|
|
|
|
2014-06-20 06:59:39 +02:00
|
|
|
const std::string serializeJson(const std::vector<ServerListSpec> &serverlist)
|
2013-02-21 23:00:44 +01:00
|
|
|
{
|
|
|
|
Json::Value root;
|
|
|
|
Json::Value list(Json::arrayValue);
|
2014-06-20 06:59:39 +02:00
|
|
|
for (std::vector<ServerListSpec>::const_iterator it = serverlist.begin();
|
|
|
|
it != serverlist.end();
|
|
|
|
it++) {
|
|
|
|
list.append(*it);
|
2013-02-21 23:00:44 +01:00
|
|
|
}
|
|
|
|
root["list"] = list;
|
2014-06-20 06:59:39 +02:00
|
|
|
Json::FastWriter writer;
|
|
|
|
return writer.write(root);
|
2013-02-21 23:00:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if USE_CURL
|
2014-06-20 06:59:39 +02:00
|
|
|
void sendAnnounce(const std::string &action,
|
|
|
|
const std::vector<std::string> &clients_names,
|
|
|
|
const double uptime,
|
|
|
|
const u32 game_time,
|
|
|
|
const float lag,
|
|
|
|
const std::string &gameid,
|
2014-11-10 22:06:24 +01:00
|
|
|
const std::string &mg_name,
|
2014-06-20 06:59:39 +02:00
|
|
|
const std::vector<ModSpec> &mods)
|
2014-06-20 02:21:02 +02:00
|
|
|
{
|
2013-02-21 23:00:44 +01:00
|
|
|
Json::Value server;
|
2014-06-20 06:59:39 +02:00
|
|
|
server["action"] = action;
|
2014-06-20 02:21:02 +02:00
|
|
|
server["port"] = g_settings->getU16("port");
|
2014-06-20 06:59:39 +02:00
|
|
|
if (g_settings->exists("server_address")) {
|
|
|
|
server["address"] = g_settings->get("server_address");
|
|
|
|
}
|
2013-07-04 17:39:26 +02:00
|
|
|
if (action != "delete") {
|
2014-06-20 02:21:02 +02:00
|
|
|
server["name"] = g_settings->get("server_name");
|
|
|
|
server["description"] = g_settings->get("server_description");
|
|
|
|
server["version"] = minetest_version_simple;
|
|
|
|
server["url"] = g_settings->get("server_url");
|
|
|
|
server["creative"] = g_settings->getBool("creative_mode");
|
|
|
|
server["damage"] = g_settings->getBool("enable_damage");
|
|
|
|
server["password"] = g_settings->getBool("disallow_empty_password");
|
|
|
|
server["pvp"] = g_settings->getBool("enable_pvp");
|
|
|
|
server["uptime"] = (int) uptime;
|
|
|
|
server["game_time"] = game_time;
|
|
|
|
server["clients"] = (int) clients_names.size();
|
2014-06-20 06:59:39 +02:00
|
|
|
server["clients_max"] = g_settings->getU16("max_users");
|
2014-06-20 02:21:02 +02:00
|
|
|
server["clients_list"] = Json::Value(Json::arrayValue);
|
|
|
|
for (std::vector<std::string>::const_iterator it = clients_names.begin();
|
|
|
|
it != clients_names.end();
|
|
|
|
++it) {
|
|
|
|
server["clients_list"].append(*it);
|
2013-10-17 23:32:49 +02:00
|
|
|
}
|
2014-06-20 02:21:02 +02:00
|
|
|
if (gameid != "") server["gameid"] = gameid;
|
2013-02-21 23:00:44 +01:00
|
|
|
}
|
2013-07-04 17:39:26 +02:00
|
|
|
|
2014-06-20 06:59:39 +02:00
|
|
|
if (action == "start") {
|
2014-06-20 02:21:02 +02:00
|
|
|
server["dedicated"] = g_settings->getBool("server_dedicated");
|
|
|
|
server["rollback"] = g_settings->getBool("enable_rollback_recording");
|
2014-11-10 22:06:24 +01:00
|
|
|
server["mapgen"] = mg_name;
|
2014-06-20 02:21:02 +02:00
|
|
|
server["privs"] = g_settings->get("default_privs");
|
2014-11-08 14:35:55 +01:00
|
|
|
server["can_see_far_names"] = g_settings->getS16("player_transfer_distance") <= 0;
|
2014-06-20 02:21:02 +02:00
|
|
|
server["mods"] = Json::Value(Json::arrayValue);
|
2014-06-20 06:59:39 +02:00
|
|
|
for (std::vector<ModSpec>::const_iterator it = mods.begin();
|
|
|
|
it != mods.end();
|
|
|
|
++it) {
|
|
|
|
server["mods"].append(it->name);
|
2013-07-04 17:39:26 +02:00
|
|
|
}
|
2014-06-20 02:21:02 +02:00
|
|
|
actionstream << "Announcing to " << g_settings->get("serverlist_url") << std::endl;
|
2014-01-06 23:50:45 +01:00
|
|
|
} else {
|
|
|
|
if (lag)
|
2014-06-20 02:21:02 +02:00
|
|
|
server["lag"] = lag;
|
2013-07-04 17:39:26 +02:00
|
|
|
}
|
|
|
|
|
2014-01-06 23:50:45 +01:00
|
|
|
Json::FastWriter writer;
|
2014-09-15 02:46:45 +02:00
|
|
|
HTTPFetchRequest fetch_request;
|
|
|
|
fetch_request.url = g_settings->get("serverlist_url") + std::string("/announce");
|
|
|
|
fetch_request.post_fields["json"] = writer.write(server);
|
|
|
|
fetch_request.multipart = true;
|
|
|
|
httpfetch_async(fetch_request);
|
2013-02-21 23:00:44 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-12-25 12:20:51 +01:00
|
|
|
} //namespace ServerList
|