Make webhook reloadable
This commit is contained in:
parent
51ca518aeb
commit
9148e522aa
@ -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:
|
||||
|
||||
/**
|
||||
|
@ -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");
|
||||
}
|
||||
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user