mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
- Bot now sends dm help text ONLY if the message contains one of the keywords specified - If no keywords are specified, bot will reply to every DM (like before) - Fixed several commands which used error color for success confirmation messages
42 lines
1.7 KiB
C#
42 lines
1.7 KiB
C#
using System;
|
|
using Discord;
|
|
using NadekoBot.Common;
|
|
using NadekoBot.Common.Configs;
|
|
using SixLabors.ImageSharp.PixelFormats;
|
|
|
|
namespace NadekoBot.Services
|
|
{
|
|
/// <summary>
|
|
/// Settings service for bot-wide configuration.
|
|
/// </summary>
|
|
public sealed class BotConfigService : ConfigServiceBase<BotConfig>
|
|
{
|
|
public override string Name { get; } = "bot";
|
|
|
|
private const string FilePath = "data/bot.yml";
|
|
private static TypedKey<BotConfig> changeKey = new TypedKey<BotConfig>("config.bot.updated");
|
|
|
|
public BotConfigService(IConfigSeria serializer, IPubSub pubSub)
|
|
: base(FilePath, serializer, pubSub, changeKey)
|
|
{
|
|
AddParsedProp("color.ok", bs => bs.Color.Ok, Rgba32.TryParseHex, ConfigPrinters.Color);
|
|
AddParsedProp("color.error", bs => bs.Color.Error, Rgba32.TryParseHex, ConfigPrinters.Color);
|
|
AddParsedProp("color.pending", bs => bs.Color.Pending, Rgba32.TryParseHex, ConfigPrinters.Color);
|
|
AddParsedProp("help.text", bs => bs.HelpText, ConfigParsers.String, ConfigPrinters.ToString);
|
|
AddParsedProp("help.dmtext", bs => bs.DmHelpText, ConfigParsers.String, ConfigPrinters.ToString);
|
|
AddParsedProp("console.type", bs => bs.ConsoleOutputType, Enum.TryParse, ConfigPrinters.ToString);
|
|
AddParsedProp("locale", bs => bs.DefaultLocale, ConfigParsers.Culture, ConfigPrinters.Culture);
|
|
AddParsedProp("prefix", bs => bs.Prefix, ConfigParsers.String, ConfigPrinters.ToString);
|
|
|
|
Migrate();
|
|
}
|
|
|
|
private void Migrate()
|
|
{
|
|
if (_data.Version < 2)
|
|
{
|
|
ModifyConfig(c => c.Version = 2);
|
|
}
|
|
}
|
|
}
|
|
} |