diff --git a/core/include/discord.h b/core/include/discord.h index d207308..d9cc814 100644 --- a/core/include/discord.h +++ b/core/include/discord.h @@ -46,6 +46,67 @@ public: */ ~Discord(); + /** + * @brief Method to start the Uptime Webhook posting timer. + */ + void startUptimeTimer(); + + /** + * @brief Method to stop the Uptime Webhook posting timer. + */ + void stopUptimeTimer(); + + +public slots: + /** + * @brief Handles a modcall webhook request. + * + * @param f_name The name of the modcall sender. + * @param f_area The name of the area the modcall was sent from. + * @param f_reason The reason for the modcall. + * @param f_buffer The area's log buffer. + */ + void onModcallWebhookRequested(const QString& f_name, const QString& f_area, const QString& f_reason, const QQueue& f_buffer); + + /** + * @brief Handles a ban webhook request. + * + * @param f_ipid The IPID of the client. + * @param f_moderator The name of the moderator banning. + * @param f_duration The date the ban expires. + * @param f_reason The reason of the ban. + */ + void onBanWebhookRequested(const QString& f_ipid, const QString& f_moderator, const QString& f_duration, const QString& f_reason, const int& f_banID); + + /** + * @brief Handles a uptime webhook request. + */ + void onUptimeWebhookRequested(); + +private: + /** + * @brief The QNetworkAccessManager for webhooks. + */ + QNetworkAccessManager* m_nam; + + /** + * @brief The QNetworkRequest for webhooks. + */ + QNetworkRequest m_request; + + /** + * @brief Timer to post a message that the server is still alive. + */ + QTimer* m_uptimePostTimer; + +private slots: + /** + * @brief Handles a network reply from a webhook POST request. + * + * @param f_reply Pointer to the QNetworkReply created by the webhook POST request. + */ + void onReplyFinished(QNetworkReply* f_reply); + /** * @brief Sends a webhook POST request with the given JSON document. * @@ -98,56 +159,6 @@ public: * @return A QHttpMultiPart containing the log file. */ QHttpMultiPart* constructLogMultipart(const QQueue& f_buffer) const; - -public slots: - /** - * @brief Handles a modcall webhook request. - * - * @param f_name The name of the modcall sender. - * @param f_area The name of the area the modcall was sent from. - * @param f_reason The reason for the modcall. - * @param f_buffer The area's log buffer. - */ - void onModcallWebhookRequested(const QString& f_name, const QString& f_area, const QString& f_reason, const QQueue& f_buffer); - - /** - * @brief Handles a ban webhook request. - * - * @param f_ipid The IPID of the client. - * @param f_moderator The name of the moderator banning. - * @param f_duration The date the ban expires. - * @param f_reason The reason of the ban. - */ - void onBanWebhookRequested(const QString& f_ipid, const QString& f_moderator, const QString& f_duration, const QString& f_reason, const int& f_banID); - - /** - * @brief Handles a uptime webhook request. - */ - void onUptimeWebhookRequested(); - -private: - /** - * @brief The QNetworkAccessManager for webhooks. - */ - QNetworkAccessManager* m_nam; - - /** - * @brief The QNetworkRequest for webhooks. - */ - QNetworkRequest m_request; - - /** - * @brief Timer to post a message that the server is still alive. - */ - QTimer* m_uptimePostTimer; - -private slots: - /** - * @brief Handles a network reply from a webhook POST request. - * - * @param f_reply Pointer to the QNetworkReply created by the webhook POST request. - */ - void onReplyFinished(QNetworkReply* f_reply); }; #endif // DISCORD_H diff --git a/core/src/discord.cpp b/core/src/discord.cpp index f300cb5..3fd8e94 100644 --- a/core/src/discord.cpp +++ b/core/src/discord.cpp @@ -24,13 +24,9 @@ Discord::Discord(QObject* parent) : connect(m_nam, &QNetworkAccessManager::finished, this, &Discord::onReplyFinished); - if (ConfigManager::discordUptimeEnabled()){ - m_uptimePostTimer = new QTimer; - connect(m_uptimePostTimer, &QTimer::timeout, - this, &Discord::onUptimeWebhookRequested); - m_uptimePostTimer->start(ConfigManager::discordUptimeTime() * 60000); - onUptimeWebhookRequested(); - } + m_uptimePostTimer = new QTimer; + connect(m_uptimePostTimer, &QTimer::timeout, + this, &Discord::onUptimeWebhookRequested); } void Discord::onModcallWebhookRequested(const QString &f_name, const QString &f_area, const QString &f_reason, const QQueue &f_buffer) @@ -162,3 +158,14 @@ Discord::~Discord() { m_nam->deleteLater(); } + +void Discord::startUptimeTimer() +{ + m_uptimePostTimer->start(ConfigManager::discordUptimeTime() * 60000); + onUptimeWebhookRequested(); +} + +void Discord::stopUptimeTimer() +{ + m_uptimePostTimer->stop(); +} diff --git a/core/src/packets.cpp b/core/src/packets.cpp index 5e16d4f..5cab906 100644 --- a/core/src/packets.cpp +++ b/core/src/packets.cpp @@ -352,7 +352,7 @@ void AOClient::pktModCall(AreaData* area, int argc, QStringList argv, AOPacket p } area->log(current_char, ipid, packet); - if (ConfigManager::discordWebhookEnabled()) { + if (ConfigManager::discordModcallWebhookEnabled()) { QString name = ooc_name; if (ooc_name.isEmpty()) name = current_char; diff --git a/core/src/server.cpp b/core/src/server.cpp index dfe8c1b..6da6f31 100644 --- a/core/src/server.cpp +++ b/core/src/server.cpp @@ -52,6 +52,7 @@ void Server::start() qDebug() << "Server listening on" << port; } + discord = new Discord(this); handleDiscordIntegration(); if (ConfigManager::advertiseHTTPServer()) { @@ -285,21 +286,22 @@ void Server::allowMessage() void Server::handleDiscordIntegration() { - if (discord != nullptr) { - discord->deleteLater(); - discord = nullptr; - } + // Prevent double connecting by preemtively disconnecting them. + disconnect(this, nullptr, discord, nullptr); if (ConfigManager::discordWebhookEnabled()) { - discord = new Discord(this); - if (ConfigManager::discordModcallWebhookEnabled()) - connect(this, &Server::modcallWebhookRequest, - discord, &Discord::onModcallWebhookRequested); + connect(this, &Server::modcallWebhookRequest, + discord, &Discord::onModcallWebhookRequested); if (ConfigManager::discordBanWebhookEnabled()) - connect(this, &Server::banWebhookRequest, - discord, &Discord::onBanWebhookRequested); + connect(this, &Server::banWebhookRequest, + discord, &Discord::onBanWebhookRequested); + + if (ConfigManager::discordUptimeEnabled()) + discord->startUptimeTimer(); + else + discord->stopUptimeTimer(); } return; }