Apply code suggestions
Non-functional as of now.
This commit is contained in:
parent
32e88d6be1
commit
e00e7b571d
@ -20,9 +20,7 @@
|
|||||||
|
|
||||||
#include <QtNetwork>
|
#include <QtNetwork>
|
||||||
#include <QCoreApplication>
|
#include <QCoreApplication>
|
||||||
#include "server.h"
|
#include "area_data.h"
|
||||||
|
|
||||||
class Server;
|
|
||||||
|
|
||||||
class Discord : public QObject {
|
class Discord : public QObject {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
@ -34,10 +32,25 @@ public:
|
|||||||
* @param p_server A pointer to the Server instance Discord is constructed by.
|
* @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.
|
* @param parent Qt-based parent, passed along to inherited constructor from QObject.
|
||||||
*/
|
*/
|
||||||
Discord(Server* p_server, QObject* parent = nullptr)
|
Discord(QObject* parent = nullptr)
|
||||||
: QObject(parent), server(p_server) {
|
: 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:
|
public slots:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -48,16 +61,7 @@ public slots:
|
|||||||
* @param reason The reason the client specified for the modcall.
|
* @param reason The reason the client specified for the modcall.
|
||||||
* @param current_area The index of the area the modcall is made.
|
* @param current_area The index of the area the modcall is made.
|
||||||
*/
|
*/
|
||||||
void postModcallWebhook(QString name, QString area, QString reason, int current_area);
|
void postModcallWebhook(QString name, QString reason, AreaData* area);
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief A pointer to the Server.
|
|
||||||
*/
|
|
||||||
Server* server;
|
|
||||||
|
|
||||||
private slots:
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Sends the reply to the POST request sent by Discord::postModcallWebhook.
|
* @brief Sends the reply to the POST request sent by Discord::postModcallWebhook.
|
||||||
|
@ -101,7 +101,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
*@brief Returns the current area buffer
|
*@brief Returns the current area buffer
|
||||||
*/
|
*/
|
||||||
QQueue<QString> getBuffer();
|
const QQueue<QString>& getBuffer() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/**
|
/**
|
||||||
|
@ -183,6 +183,11 @@ class Server : public QObject {
|
|||||||
*/
|
*/
|
||||||
DBManager* db_manager;
|
DBManager* db_manager;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Handles discord webhooks.
|
||||||
|
*/
|
||||||
|
Discord* discord;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief The max amount of players on the server.
|
* @brief The max amount of players on the server.
|
||||||
*/
|
*/
|
||||||
@ -239,21 +244,6 @@ class Server : public QObject {
|
|||||||
*/
|
*/
|
||||||
int afk_timeout;
|
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.
|
* @brief The server-wide global timer.
|
||||||
*/
|
*/
|
||||||
@ -331,11 +321,10 @@ class Server : public QObject {
|
|||||||
* @brief Sends a modcall webhook request, emitted by AOClient::pktModcall.
|
* @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 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 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:
|
private:
|
||||||
/**
|
/**
|
||||||
@ -359,11 +348,6 @@ class Server : public QObject {
|
|||||||
* @brief The port through which the server will accept WebSocket connections.
|
* @brief The port through which the server will accept WebSocket connections.
|
||||||
*/
|
*/
|
||||||
int ws_port;
|
int ws_port;
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Handles discord webhooks.
|
|
||||||
*/
|
|
||||||
Discord* discord;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // SERVER_H
|
#endif // SERVER_H
|
||||||
|
@ -17,14 +17,13 @@
|
|||||||
//////////////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////////////
|
||||||
#include "include/discord.h"
|
#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!";
|
qWarning() << "Invalid webhook url!";
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
QNetworkRequest request((QUrl (webhook_url)));
|
||||||
QNetworkRequest request(QUrl (server->webhook_url));
|
|
||||||
QNetworkAccessManager* nam = new QNetworkAccessManager();
|
QNetworkAccessManager* nam = new QNetworkAccessManager();
|
||||||
connect(nam, &QNetworkAccessManager::finished,
|
connect(nam, &QNetworkAccessManager::finished,
|
||||||
this, &Discord::onFinish);
|
this, &Discord::onFinish);
|
||||||
@ -37,7 +36,7 @@ void Discord::postModcallWebhook(QString name, QString area, QString reason, int
|
|||||||
QJsonArray jsonArray;
|
QJsonArray jsonArray;
|
||||||
QJsonObject jsonObject {
|
QJsonObject jsonObject {
|
||||||
{"color", "13312842"},
|
{"color", "13312842"},
|
||||||
{"title", name + " filed a modcall in " + area},
|
{"title", name + " filed a modcall in " + area->name},
|
||||||
{"description", reason}
|
{"description", reason}
|
||||||
};
|
};
|
||||||
jsonArray.append(jsonObject);
|
jsonArray.append(jsonObject);
|
||||||
@ -45,7 +44,7 @@ void Discord::postModcallWebhook(QString name, QString area, QString reason, int
|
|||||||
|
|
||||||
nam->post(request, QJsonDocument(json).toJson());
|
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();
|
QHttpMultiPart* construct = new QHttpMultiPart();
|
||||||
request.setHeader(QNetworkRequest::ContentTypeHeader, "multipart/form-data; boundary=" + construct->boundary());
|
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;
|
QHttpPart file;
|
||||||
file.setRawHeader(QByteArray("Content-Disposition"), QByteArray("form-data; name=\"file\"; filename=\"log.txt\""));
|
file.setRawHeader(QByteArray("Content-Disposition"), QByteArray("form-data; name=\"file\"; filename=\"log.txt\""));
|
||||||
file.setRawHeader(QByteArray("Content-Type"), QByteArray("plain/text"));
|
file.setRawHeader(QByteArray("Content-Type"), QByteArray("plain/text"));
|
||||||
QQueue<QString> buffer = server->areas[current_area]->logger->getBuffer(); // I feel no shame for doing this
|
QQueue<QString> buffer = area->logger->getBuffer(); // I feel no shame for doing this
|
||||||
QString log;
|
QString log;
|
||||||
while (!buffer.isEmpty()) {
|
while (!buffer.isEmpty()) {
|
||||||
log.append(buffer.dequeue() + "\n");
|
log.append(buffer.dequeue() + "\n");
|
||||||
|
@ -114,7 +114,7 @@ void Logger::flush()
|
|||||||
logfile.close();
|
logfile.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
QQueue<QString> Logger::getBuffer()
|
const QQueue<QString>& Logger::getBuffer() const
|
||||||
{
|
{
|
||||||
return buffer;
|
return buffer;
|
||||||
}
|
}
|
||||||
|
@ -328,12 +328,12 @@ void AOClient::pktModCall(AreaData* area, int argc, QStringList argv, AOPacket p
|
|||||||
}
|
}
|
||||||
area->logger->logModcall(this, &packet);
|
area->logger->logModcall(this, &packet);
|
||||||
|
|
||||||
if (server->webhook_enabled) {
|
if (server->discord->webhook_enabled) {
|
||||||
QString name = ooc_name;
|
QString name = ooc_name;
|
||||||
if (ooc_name.isEmpty())
|
if (ooc_name.isEmpty())
|
||||||
name = current_char;
|
name = current_char;
|
||||||
|
|
||||||
server->webhookRequest(name, area->name, packet.contents[0], current_area);
|
server->webhookRequest(name, packet.contents[0], area);
|
||||||
}
|
}
|
||||||
area->logger->flush();
|
area->logger->flush();
|
||||||
}
|
}
|
||||||
|
@ -304,9 +304,10 @@ void Server::loadServerConfig()
|
|||||||
|
|
||||||
//Load discord webhook
|
//Load discord webhook
|
||||||
config.beginGroup("Discord");
|
config.beginGroup("Discord");
|
||||||
webhook_enabled = config.value("webhook_enabled", "false").toBool();
|
discord->webhook_enabled = config.value("webhook_enabled", "false").toBool();
|
||||||
webhook_url = config.value("webhook_url", "Your webhook url here.").toString();
|
discord->webhook_url = config.value("webhook_url", "Your webhook url here.").toString();
|
||||||
webhook_sendfile = config.value("webhook_sendfile", false).toBool();
|
discord->webhook_sendfile = config.value("webhook_sendfile", false).toBool();
|
||||||
|
config.endGroup();
|
||||||
}
|
}
|
||||||
|
|
||||||
Server::~Server()
|
Server::~Server()
|
||||||
|
Loading…
Reference in New Issue
Block a user