Merge pull request #208 from Salanto/webhook_color

Add optional color configuration
This commit is contained in:
Rosemary Witchaven 2021-09-20 14:34:25 -05:00 committed by GitHub
commit f1b998b945
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 19 additions and 6 deletions

View File

@ -28,3 +28,6 @@ webhook_uptime_time = 60
; The URL of the Uptime Webhook. Must contain the webhook ID and token.
webhook_uptime_url=
; The color code for the webhook. Allows customization of the color used in the embeed.
webhook_color=

View File

@ -321,10 +321,17 @@ class ConfigManager {
/**
* @brief Returns the Discord Uptime Webhook URL.
*
* @return See sshort description.
* @return See short description.
*/
static QString discordUptimeWebhookUrl();
/**
* @brief Returns a user configurable color code for the embeed object.s
*
* @return See short description.
*/
static QString discordWebhookColor();
/**
* @brief Returns true if password requirements should be enforced.
*

View File

@ -141,8 +141,6 @@ private slots:
*/
void postMultipartWebhook(QHttpMultiPart& f_multipart);
/**
* @brief Constructs a new JSON document for bans.
*

View File

@ -470,6 +470,11 @@ QString ConfigManager::discordUptimeWebhookUrl()
return m_discord->value("Discord/webhook_uptime_url", "").toString();
}
QString ConfigManager::discordWebhookColor()
{
return m_discord->value("Discord/webhook_color","13312842").toString();
}
bool ConfigManager::passwordRequirements()
{
return m_settings->value("Password/password_requirements", true).toBool();

View File

@ -66,7 +66,7 @@ QJsonDocument Discord::constructModcallJson(const QString &f_name, const QString
QJsonObject l_json;
QJsonArray l_array;
QJsonObject l_object {
{"color", "13312842"},
{"color", ConfigManager::discordWebhookColor()},
{"title", f_name + " filed a modcall in " + f_area},
{"description", f_reason}
};
@ -85,7 +85,7 @@ QJsonDocument Discord::constructBanJson(const QString &f_ipid, const QString &f_
QJsonObject l_json;
QJsonArray l_array;
QJsonObject l_object {
{"color", "13312842"},
{"color", ConfigManager::discordWebhookColor()},
{"title", "Ban issued by " + f_moderator},
{"description", "Client IPID : " + f_ipid + "\nBan ID: " + QString::number(f_banID) + "\nBan reason : " + f_reason +"\nBanned until : " +f_duration}
};
@ -100,7 +100,7 @@ QJsonDocument Discord::constructUptimeJson(const QString& f_timeExpired)
QJsonObject l_json;
QJsonArray l_array;
QJsonObject l_object {
{"color", "13312842"},
{"color", ConfigManager::discordWebhookColor()},
{"title", "Your server is online!"},
{"description", "Your server has been online for " + f_timeExpired}
};