Add optional color configuration
This commit is contained in:
parent
e041d4f94a
commit
2c96e2683f
@ -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=
|
||||
|
@ -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.
|
||||
*
|
||||
|
@ -141,8 +141,6 @@ private slots:
|
||||
*/
|
||||
void postMultipartWebhook(QHttpMultiPart& f_multipart);
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @brief Constructs a new JSON document for bans.
|
||||
*
|
||||
|
@ -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();
|
||||
|
@ -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}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user