diff --git a/include/discord.h b/include/discord.h index 18b8781..437e92f 100644 --- a/include/discord.h +++ b/include/discord.h @@ -20,9 +20,7 @@ #include #include -#include "server.h" - -class Server; +#include "area_data.h" class Discord : public QObject { Q_OBJECT @@ -34,10 +32,25 @@ public: * @param p_server A pointer to the Server instance Discord is constructed by. * @param parent Qt-based parent, passed along to inherited constructor from QObject. */ - Discord(Server* p_server, QObject* parent = nullptr) - : QObject(parent), server(p_server) { + Discord(QObject* parent = nullptr) + : QObject(parent) { }; + /** + * @brief Whether discord webhooks are enabled on this server. + */ + bool webhook_enabled; + + /** + * @brief Requires link to be https and that both WebhookID and WebhookToken are present, if used for Discord. + */ + QString webhook_url; + + /** + * @brief If the modcall buffer is sent as a file. + */ + bool webhook_sendfile; + public slots: /** @@ -48,16 +61,7 @@ public slots: * @param reason The reason the client specified for the modcall. * @param current_area The index of the area the modcall is made. */ - void postModcallWebhook(QString name, QString area, QString reason, int current_area); - -private: - - /** - * @brief A pointer to the Server. - */ - Server* server; - -private slots: + void postModcallWebhook(QString name, QString reason, AreaData* area); /** * @brief Sends the reply to the POST request sent by Discord::postModcallWebhook. diff --git a/include/logger.h b/include/logger.h index 046dfe6..6e44884 100644 --- a/include/logger.h +++ b/include/logger.h @@ -101,7 +101,7 @@ public: /** *@brief Returns the current area buffer */ - QQueue getBuffer(); + const QQueue& getBuffer() const; private: /** diff --git a/include/server.h b/include/server.h index e53ec81..6947c96 100644 --- a/include/server.h +++ b/include/server.h @@ -183,6 +183,11 @@ class Server : public QObject { */ DBManager* db_manager; + /** + * @brief Handles discord webhooks. + */ + Discord* discord; + /** * @brief The max amount of players on the server. */ @@ -239,21 +244,6 @@ class Server : public QObject { */ int afk_timeout; - /** - * @brief Whether discord webhooks are enabled on this server. - */ - bool webhook_enabled; - - /** - * @brief The URL of the discord webhook. - */ - QString webhook_url; - - /** - * @brief If the modcall buffer is send as a file. - */ - bool webhook_sendfile; - /** * @brief The server-wide global timer. */ @@ -331,11 +321,10 @@ class Server : public QObject { * @brief Sends a modcall webhook request, emitted by AOClient::pktModcall. * * @param name The character or OOC name of the client who sent the modcall. - * @param area_name The name of the area the modcall was sent from. * @param reason The reason the client specified for the modcall. - * @param + * @param current_area Integer ID of the area the modcall was send. */ - void webhookRequest(QString name, QString area_name, QString reason, int current_area); + void webhookRequest(QString name, QString reason, AreaData* area); private: /** @@ -359,11 +348,6 @@ class Server : public QObject { * @brief The port through which the server will accept WebSocket connections. */ int ws_port; - - /** - * @brief Handles discord webhooks. - */ - Discord* discord; }; #endif // SERVER_H diff --git a/src/discord.cpp b/src/discord.cpp index 40d888a..ba61a0e 100644 --- a/src/discord.cpp +++ b/src/discord.cpp @@ -17,14 +17,13 @@ ////////////////////////////////////////////////////////////////////////////////////// #include "include/discord.h" -void Discord::postModcallWebhook(QString name, QString area, QString reason, int current_area) +void Discord::postModcallWebhook(QString name, QString reason, AreaData* area) { - if (!QUrl (server->webhook_url).isValid()) { + if (!QUrl (webhook_url).isValid()) { qWarning() << "Invalid webhook url!"; return; } - - QNetworkRequest request(QUrl (server->webhook_url)); + QNetworkRequest request((QUrl (webhook_url))); QNetworkAccessManager* nam = new QNetworkAccessManager(); connect(nam, &QNetworkAccessManager::finished, this, &Discord::onFinish); @@ -37,7 +36,7 @@ void Discord::postModcallWebhook(QString name, QString area, QString reason, int QJsonArray jsonArray; QJsonObject jsonObject { {"color", "13312842"}, - {"title", name + " filed a modcall in " + area}, + {"title", name + " filed a modcall in " + area->name}, {"description", reason} }; jsonArray.append(jsonObject); @@ -45,7 +44,7 @@ void Discord::postModcallWebhook(QString name, QString area, QString reason, int nam->post(request, QJsonDocument(json).toJson()); - if (server->areas[current_area]->log_type == "modcall" && server->webhook_sendfile) { + if (area->log_type == "modcall" && webhook_sendfile) { QHttpMultiPart* construct = new QHttpMultiPart(); request.setHeader(QNetworkRequest::ContentTypeHeader, "multipart/form-data; boundary=" + construct->boundary()); @@ -53,7 +52,7 @@ void Discord::postModcallWebhook(QString name, QString area, QString reason, int QHttpPart file; file.setRawHeader(QByteArray("Content-Disposition"), QByteArray("form-data; name=\"file\"; filename=\"log.txt\"")); file.setRawHeader(QByteArray("Content-Type"), QByteArray("plain/text")); - QQueue buffer = server->areas[current_area]->logger->getBuffer(); // I feel no shame for doing this + QQueue buffer = area->logger->getBuffer(); // I feel no shame for doing this QString log; while (!buffer.isEmpty()) { log.append(buffer.dequeue() + "\n"); diff --git a/src/logger.cpp b/src/logger.cpp index a4c33f9..6c487e8 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -114,7 +114,7 @@ void Logger::flush() logfile.close(); } -QQueue Logger::getBuffer() +const QQueue& Logger::getBuffer() const { return buffer; } diff --git a/src/packets.cpp b/src/packets.cpp index 42733db..baf88fc 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -328,12 +328,12 @@ void AOClient::pktModCall(AreaData* area, int argc, QStringList argv, AOPacket p } area->logger->logModcall(this, &packet); - if (server->webhook_enabled) { + if (server->discord->webhook_enabled) { QString name = ooc_name; if (ooc_name.isEmpty()) name = current_char; - server->webhookRequest(name, area->name, packet.contents[0], current_area); + server->webhookRequest(name, packet.contents[0], area); } area->logger->flush(); } diff --git a/src/server.cpp b/src/server.cpp index 6b45068..19d7d7e 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -304,9 +304,10 @@ void Server::loadServerConfig() //Load discord webhook config.beginGroup("Discord"); - webhook_enabled = config.value("webhook_enabled", "false").toBool(); - webhook_url = config.value("webhook_url", "Your webhook url here.").toString(); - webhook_sendfile = config.value("webhook_sendfile", false).toBool(); + discord->webhook_enabled = config.value("webhook_enabled", "false").toBool(); + discord->webhook_url = config.value("webhook_url", "Your webhook url here.").toString(); + discord->webhook_sendfile = config.value("webhook_sendfile", false).toBool(); + config.endGroup(); } Server::~Server()