Merge pull request #131 from Salanto/discord_content

Discord content
This commit is contained in:
scatterflower 2021-05-24 14:22:35 -05:00 committed by GitHub
commit eb834a639d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 0 deletions

View File

@ -30,3 +30,4 @@ max_dice=100
webhook_enabled=false
webhook_url=Your webhook url here.
webhook_sendfile=false
webhook_content=

View File

@ -317,11 +317,17 @@ class Server : public QObject {
* @brief The minimum time between IC messages, in milliseconds.
*/
int message_floodguard;
/**
* @brief URL send to the client during handshake to set the remote repository 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:
/**
* @brief Handles a new connection.

View File

@ -42,6 +42,8 @@ void Discord::postModcallWebhook(QString name, QString reason, int current_area)
};
jsonArray.append(jsonObject);
json["embeds"] = jsonArray;
if (!server->webhook_content.isEmpty())
json["content"] = server->webhook_content;
nam->post(request, QJsonDocument(json).toJson());

View File

@ -311,6 +311,7 @@ void Server::loadServerConfig()
webhook_enabled = config.value("webhook_enabled", "false").toBool();
webhook_url = config.value("webhook_url", "Your webhook url here.").toString();
webhook_sendfile = config.value("webhook_sendfile", false).toBool();
webhook_content = config.value("webhook_content", "").toString();
config.endGroup();
}