Use struct to transport config

+ Fix debug message on success
This commit is contained in:
Salanto 2021-07-11 20:15:04 +02:00
parent 910560ec13
commit 13cd901cfc
5 changed files with 57 additions and 36 deletions

View File

@ -21,6 +21,16 @@
#include <QtNetwork> #include <QtNetwork>
#include <QObject> #include <QObject>
//Don't question this. It needs to be here for some reason.
struct advertiser_config {
QString name;
QString description;
int port;
int ws_port;
int players;
QUrl masterserver;
bool debug;
};
/** /**
* @brief Represents the advertiser of the server. Sends current server information to masterserver. * @brief Represents the advertiser of the server. Sends current server information to masterserver.
@ -54,15 +64,10 @@ public slots:
void msRequestFinished(QNetworkReply *reply); void msRequestFinished(QNetworkReply *reply);
/** /**
* @brief setAdvertiserSettings Configures the values being advertised to masterserver. * @brief Sets the values being advertised to masterserver.
* @param f_name Servername. * @param config Configuration struct for the advertiser. Always includes ALL settings.
* @param f_description Serverdescription.
* @param f_port Client port.
* @param f_ws_port Optional Websocket proxy port.
* @param f_players Maximum amount of clients.
* @param f_master_url URL of the advertisement target.
*/ */
void setAdvertiserSettings(QString f_name, QString f_description, int f_port, int f_ws_port, int f_players, QUrl f_master_url, bool f_debug); void setAdvertiserSettings(advertiser_config config);
private: private:

View File

@ -138,6 +138,11 @@ class Server : public QObject {
*/ */
int getCharID(QString char_name); int getCharID(QString char_name);
/**
* @brief Creates an HTTP advertiser config struct and emits it using server::reloadHTTPRequest.
*/
void reloadHTTPAdvertiserConfig();
/** /**
* @brief The collection of all currently connected clients. * @brief The collection of all currently connected clients.
*/ */
@ -230,14 +235,9 @@ class Server : public QObject {
/** /**
* @brief Sends all necessary info for the new advertiser. * @brief Sends all necessary info for the new advertiser.
* @param f_name Servername. * @param Struct that contains all configuration for the advertiser
* @param f_description Serverdescription.
* @param f_port Client port.
* @param f_ws_port Optional Websocket proxy port.
* @param f_players Maximum amount of clients.
* @param f_master_url URL of the advertisement target.
*/ */
void reloadHTTPRequest(QString f_name, QString f_description, int f_port, int f_ws_port, int f_players, QUrl f_master_url, bool f_debug); void reloadHTTPRequest(struct advertiser_config config);
/** /**
* @brief Sends a modcall webhook request, emitted by AOClient::pktModcall. * @brief Sends a modcall webhook request, emitted by AOClient::pktModcall.

View File

@ -412,9 +412,7 @@ void AOClient::cmdReload(int argc, QStringList argv)
{ {
ConfigManager::reloadSettings(); ConfigManager::reloadSettings();
emit server->reloadRequest(ConfigManager::serverName(), ConfigManager::serverDescription()); emit server->reloadRequest(ConfigManager::serverName(), ConfigManager::serverDescription());
emit server->reloadHTTPRequest(ConfigManager::serverName(),ConfigManager::serverDescription(),ConfigManager::serverPort(), server->reloadHTTPAdvertiserConfig();
ConfigManager::webaoPort(),ConfigManager::maxPlayers(),ConfigManager::advertiserHTTPIP(),
ConfigManager::advertiserHTTPDebug());
sendServerMessage("Reloaded configurations"); sendServerMessage("Reloaded configurations");
} }

View File

@ -48,28 +48,35 @@ void HTTPAdvertiser::msAdvertiseServer()
void HTTPAdvertiser::msRequestFinished(QNetworkReply *reply) void HTTPAdvertiser::msRequestFinished(QNetworkReply *reply)
{ {
if (m_debug) { if (m_debug) {
QJsonDocument json = QJsonDocument::fromJson(reply->readAll()); if (reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt() == 200) {
if (json.isNull()) { qDebug().noquote() << "Succesfully advertised server.";
qCritical().noquote() << "Invalid JSON response from" << reply->url();
reply->deleteLater();
return;
} }
else {
QJsonDocument json = QJsonDocument::fromJson(reply->readAll());
if (json.isNull()) {
qCritical().noquote() << "Invalid JSON response from" << reply->url();
reply->deleteLater();
return;
}
qDebug().noquote() << "Got valid response from" << reply->url(); qDebug().noquote() << "Got valid response from" << reply->url();
qDebug() << json; qDebug() << json;
}
} }
reply->deleteLater(); reply->deleteLater();
} }
void HTTPAdvertiser::setAdvertiserSettings(QString f_name, QString f_description, int f_port, int f_ws_port, int f_players, QUrl f_master_url, bool f_debug) void HTTPAdvertiser::setAdvertiserSettings(advertiser_config config)
{ {
m_name = f_name; m_name = config.name;
m_description = f_description; m_description = config.description;
m_port = f_port; m_port = config.port;
m_ws_port = f_ws_port; m_ws_port = config.ws_port;
m_players = f_players; m_players = config.players;
m_masterserver = f_master_url; m_masterserver = config.masterserver;
m_debug = f_debug; m_debug = config.debug;
msAdvertiseServer(); msAdvertiseServer();
} }

View File

@ -66,9 +66,7 @@ void Server::start()
httpAdvertiser, &HTTPAdvertiser::msAdvertiseServer); httpAdvertiser, &HTTPAdvertiser::msAdvertiseServer);
connect(this, &Server::reloadHTTPRequest, connect(this, &Server::reloadHTTPRequest,
httpAdvertiser, &HTTPAdvertiser::setAdvertiserSettings); httpAdvertiser, &HTTPAdvertiser::setAdvertiserSettings);
reloadHTTPAdvertiserConfig();
emit reloadHTTPRequest(ConfigManager::serverName(),ConfigManager::serverDescription(),ConfigManager::serverPort(),ConfigManager::webaoPort(),
ConfigManager::maxPlayers(),ConfigManager::advertiserHTTPIP(),ConfigManager::advertiserHTTPDebug());
httpAdvertiserTimer->start(300000); httpAdvertiserTimer->start(300000);
} }
@ -257,6 +255,19 @@ int Server::getCharID(QString char_name)
return -1; // character does not exist return -1; // character does not exist
} }
void Server::reloadHTTPAdvertiserConfig()
{
advertiser_config config;
config.name = ConfigManager::serverName();
config.description = ConfigManager::serverDescription();
config.port = ConfigManager::serverPort();
config.ws_port = ConfigManager::webaoPort();
config.players = ConfigManager::maxPlayers();
config.masterserver = ConfigManager::advertiserHTTPIP();
config.debug = ConfigManager::advertiserHTTPDebug();
emit reloadHTTPRequest(config);
}
void Server::allowMessage() void Server::allowMessage()
{ {
can_send_ic_messages = true; can_send_ic_messages = true;