Make webhook reloadable
This commit is contained in:
parent
51ca518aeb
commit
9148e522aa
@ -228,6 +228,13 @@ class Server : public QObject {
|
|||||||
*/
|
*/
|
||||||
void allowMessage();
|
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:
|
signals:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -417,6 +417,7 @@ void AOClient::cmdReload(int argc, QStringList argv)
|
|||||||
ConfigManager::reloadSettings();
|
ConfigManager::reloadSettings();
|
||||||
emit server->reloadRequest(ConfigManager::serverName(), ConfigManager::serverDescription());
|
emit server->reloadRequest(ConfigManager::serverName(), ConfigManager::serverDescription());
|
||||||
server->updateHTTPAdvertiserConfig();
|
server->updateHTTPAdvertiserConfig();
|
||||||
|
server->handleDiscordIntegration();
|
||||||
sendServerMessage("Reloaded configurations");
|
sendServerMessage("Reloaded configurations");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,13 +52,7 @@ void Server::start()
|
|||||||
qDebug() << "Server listening on" << port;
|
qDebug() << "Server listening on" << port;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ConfigManager::discordWebhookEnabled()) {
|
handleDiscordIntegration();
|
||||||
discord = new Discord(this);
|
|
||||||
connect(this, &Server::modcallWebhookRequest,
|
|
||||||
discord, &Discord::onModcallWebhookRequested);
|
|
||||||
connect(this, &Server::banWebhookRequest,
|
|
||||||
discord, &Discord::onBanWebhookRequested);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ConfigManager::advertiseHTTPServer()) {
|
if (ConfigManager::advertiseHTTPServer()) {
|
||||||
httpAdvertiserTimer = new QTimer(this);
|
httpAdvertiserTimer = new QTimer(this);
|
||||||
@ -289,6 +283,27 @@ void Server::allowMessage()
|
|||||||
can_send_ic_messages = true;
|
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()
|
Server::~Server()
|
||||||
{
|
{
|
||||||
for (AOClient* client : clients) {
|
for (AOClient* client : clients) {
|
||||||
|
Loading…
Reference in New Issue
Block a user