Make webhook reloadable

This commit is contained in:
Salanto 2021-08-12 21:44:53 +02:00
parent 51ca518aeb
commit 9148e522aa
3 changed files with 30 additions and 7 deletions

View File

@ -228,6 +228,13 @@ class Server : public QObject {
*/
void allowMessage();
/**
* @brief Method to construct and reconstruct Discord Webhook Integration.
*
* @details Constructs or rebuilds Discord Object during server startup and configuration reload.
*/
void handleDiscordIntegration();
signals:
/**

View File

@ -417,6 +417,7 @@ void AOClient::cmdReload(int argc, QStringList argv)
ConfigManager::reloadSettings();
emit server->reloadRequest(ConfigManager::serverName(), ConfigManager::serverDescription());
server->updateHTTPAdvertiserConfig();
server->handleDiscordIntegration();
sendServerMessage("Reloaded configurations");
}

View File

@ -52,13 +52,7 @@ void Server::start()
qDebug() << "Server listening on" << port;
}
if (ConfigManager::discordWebhookEnabled()) {
discord = new Discord(this);
connect(this, &Server::modcallWebhookRequest,
discord, &Discord::onModcallWebhookRequested);
connect(this, &Server::banWebhookRequest,
discord, &Discord::onBanWebhookRequested);
}
handleDiscordIntegration();
if (ConfigManager::advertiseHTTPServer()) {
httpAdvertiserTimer = new QTimer(this);
@ -289,6 +283,27 @@ void Server::allowMessage()
can_send_ic_messages = true;
}
void Server::handleDiscordIntegration()
{
if (discord != nullptr) {
discord->deleteLater();
return;
}
if (ConfigManager::discordWebhookEnabled()) {
discord = new Discord(this);
if (ConfigManager::discordModcallWebhookEnabled())
connect(this, &Server::modcallWebhookRequest,
discord, &Discord::onModcallWebhookRequested);
if (ConfigManager::discordBanWebhookEnabled())
connect(this, &Server::banWebhookRequest,
discord, &Discord::onBanWebhookRequested);
}
return;
}
Server::~Server()
{
for (AOClient* client : clients) {