Add optional content field for Webhook
Allows the usage of pings with the webhook. Only added to the hook message if configured.
This commit is contained in:
parent
1696d13b18
commit
fb1caf6cee
@ -317,11 +317,17 @@ class Server : public QObject {
|
|||||||
* @brief The minimum time between IC messages, in milliseconds.
|
* @brief The minimum time between IC messages, in milliseconds.
|
||||||
*/
|
*/
|
||||||
int message_floodguard;
|
int message_floodguard;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief URL send to the client during handshake to set the remote repository URL.
|
* @brief URL send to the client during handshake to set the remote repository URL.
|
||||||
*/
|
*/
|
||||||
QUrl asset_url;
|
QUrl asset_url;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Opional text to be send with the Discord embeed. Can be used to configure pings.
|
||||||
|
*/
|
||||||
|
QString webhook_content;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
/**
|
/**
|
||||||
* @brief Handles a new connection.
|
* @brief Handles a new connection.
|
||||||
|
@ -42,6 +42,8 @@ void Discord::postModcallWebhook(QString name, QString reason, int current_area)
|
|||||||
};
|
};
|
||||||
jsonArray.append(jsonObject);
|
jsonArray.append(jsonObject);
|
||||||
json["embeds"] = jsonArray;
|
json["embeds"] = jsonArray;
|
||||||
|
if (server->webhook_content != NULL)
|
||||||
|
json["content"] = server->webhook_content;
|
||||||
|
|
||||||
nam->post(request, QJsonDocument(json).toJson());
|
nam->post(request, QJsonDocument(json).toJson());
|
||||||
|
|
||||||
|
@ -311,6 +311,7 @@ void Server::loadServerConfig()
|
|||||||
webhook_enabled = config.value("webhook_enabled", "false").toBool();
|
webhook_enabled = config.value("webhook_enabled", "false").toBool();
|
||||||
webhook_url = config.value("webhook_url", "Your webhook url here.").toString();
|
webhook_url = config.value("webhook_url", "Your webhook url here.").toString();
|
||||||
webhook_sendfile = config.value("webhook_sendfile", false).toBool();
|
webhook_sendfile = config.value("webhook_sendfile", false).toBool();
|
||||||
|
webhook_content = config.value("webhook_content", NULL).toString();
|
||||||
config.endGroup();
|
config.endGroup();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user