mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-20 00:43:36 +03:00
Add /settings & /settingslist commands
Co-authored-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
parent
d46b08df08
commit
fcedb762eb
6 changed files with 1518 additions and 863 deletions
|
@ -80,7 +80,8 @@ public class Boyfriend {
|
||||||
.WithCommandGroup<KickCommandGroup>()
|
.WithCommandGroup<KickCommandGroup>()
|
||||||
.WithCommandGroup<MuteCommandGroup>()
|
.WithCommandGroup<MuteCommandGroup>()
|
||||||
.WithCommandGroup<PingCommandGroup>()
|
.WithCommandGroup<PingCommandGroup>()
|
||||||
.WithCommandGroup<RemindCommandGroup>();
|
.WithCommandGroup<RemindCommandGroup>()
|
||||||
|
.WithCommandGroup<SettingsCommandGroup>();
|
||||||
var responderTypes = typeof(Boyfriend).Assembly
|
var responderTypes = typeof(Boyfriend).Assembly
|
||||||
.GetExportedTypes()
|
.GetExportedTypes()
|
||||||
.Where(t => t.IsResponder());
|
.Where(t => t.IsResponder());
|
||||||
|
|
145
Commands/SettingsCommandGroup.cs
Normal file
145
Commands/SettingsCommandGroup.cs
Normal file
|
@ -0,0 +1,145 @@
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Reflection;
|
||||||
|
using System.Text;
|
||||||
|
using Boyfriend.Data;
|
||||||
|
using Boyfriend.Services;
|
||||||
|
using Remora.Commands.Attributes;
|
||||||
|
using Remora.Commands.Groups;
|
||||||
|
using Remora.Discord.API.Abstractions.Objects;
|
||||||
|
using Remora.Discord.API.Abstractions.Rest;
|
||||||
|
using Remora.Discord.Commands.Attributes;
|
||||||
|
using Remora.Discord.Commands.Contexts;
|
||||||
|
using Remora.Discord.Commands.Feedback.Messages;
|
||||||
|
using Remora.Discord.Commands.Feedback.Services;
|
||||||
|
using Remora.Discord.Extensions.Embeds;
|
||||||
|
using Remora.Discord.Extensions.Formatting;
|
||||||
|
using Remora.Results;
|
||||||
|
|
||||||
|
// ReSharper disable ClassNeverInstantiated.Global
|
||||||
|
// ReSharper disable UnusedMember.Global
|
||||||
|
|
||||||
|
namespace Boyfriend.Commands;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Handles the command to show information about this bot: /about
|
||||||
|
/// </summary>
|
||||||
|
public class SettingsCommandGroup : CommandGroup {
|
||||||
|
private readonly ICommandContext _context;
|
||||||
|
private readonly GuildDataService _dataService;
|
||||||
|
private readonly FeedbackService _feedbackService;
|
||||||
|
private readonly IDiscordRestUserAPI _userApi;
|
||||||
|
|
||||||
|
public SettingsCommandGroup(
|
||||||
|
ICommandContext context, GuildDataService dataService,
|
||||||
|
FeedbackService feedbackService, IDiscordRestUserAPI userApi) {
|
||||||
|
_context = context;
|
||||||
|
_dataService = dataService;
|
||||||
|
_feedbackService = feedbackService;
|
||||||
|
_userApi = userApi;
|
||||||
|
}
|
||||||
|
|
||||||
|
[Command("settingslist")]
|
||||||
|
[Description("ХАХАХАХАХАХ я ебанулся")]
|
||||||
|
[SuppressInteractionResponse(suppress: true)]
|
||||||
|
public async Task<Result> SendSettingsListAsync() {
|
||||||
|
if (!_context.TryGetContextIDs(out var guildId, out _, out _))
|
||||||
|
return Result.FromError(
|
||||||
|
new ArgumentNullError(nameof(_context), "Unable to retrieve necessary IDs from command context"));
|
||||||
|
|
||||||
|
var currentUserResult = await _userApi.GetCurrentUserAsync(CancellationToken);
|
||||||
|
if (!currentUserResult.IsDefined(out var currentUser))
|
||||||
|
return Result.FromError(currentUserResult);
|
||||||
|
|
||||||
|
var cfg = await _dataService.GetConfiguration(guildId.Value, CancellationToken);
|
||||||
|
Messages.Culture = cfg.GetCulture();
|
||||||
|
|
||||||
|
var builder = new StringBuilder();
|
||||||
|
|
||||||
|
foreach (var setting in typeof(GuildConfiguration).GetProperties()) {
|
||||||
|
builder.Append(Markdown.InlineCode(setting.Name))
|
||||||
|
.Append(": ");
|
||||||
|
var something = setting.GetValue(cfg);
|
||||||
|
if (something.GetType() == typeof(List<GuildConfiguration.NotificationReceiver>)) {
|
||||||
|
var list = (something as List<GuildConfiguration.NotificationReceiver>);
|
||||||
|
builder.AppendLine(string.Join(", ", list.Select(v => Markdown.InlineCode(v.ToString()))));
|
||||||
|
} else {
|
||||||
|
builder.AppendLine(Markdown.InlineCode(something.ToString()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var embed = new EmbedBuilder().WithSmallTitle(Messages.SettingsListTitle, currentUser)
|
||||||
|
.WithDescription(builder.ToString())
|
||||||
|
.WithColour(ColorsList.Default)
|
||||||
|
.Build();
|
||||||
|
if (!embed.IsDefined(out var built)) return Result.FromError(embed);
|
||||||
|
|
||||||
|
return (Result)await _feedbackService.SendContextualEmbedAsync(built, ct: CancellationToken, options: new FeedbackMessageOptions(MessageFlags: MessageFlags.Ephemeral));
|
||||||
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// A slash command that shows information about this bot.
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>
|
||||||
|
/// A feedback sending result which may or may not have succeeded.
|
||||||
|
/// </returns>
|
||||||
|
[Command("settings")]
|
||||||
|
[Description("редактирует НАСТРОЙКИ ХАХАХАХАХА")]
|
||||||
|
public async Task<Result> EditSettingsAsync(
|
||||||
|
[Description("настройка")] string setting,
|
||||||
|
[Description("значение")] string value) {
|
||||||
|
if (!_context.TryGetContextIDs(out var guildId, out _, out _))
|
||||||
|
return Result.FromError(
|
||||||
|
new ArgumentNullError(nameof(_context), "Unable to retrieve necessary IDs from command context"));
|
||||||
|
|
||||||
|
var currentUserResult = await _userApi.GetCurrentUserAsync(CancellationToken);
|
||||||
|
if (!currentUserResult.IsDefined(out var currentUser))
|
||||||
|
return Result.FromError(currentUserResult);
|
||||||
|
|
||||||
|
var cfg = await _dataService.GetConfiguration(guildId.Value, CancellationToken);
|
||||||
|
Messages.Culture = cfg.GetCulture();
|
||||||
|
|
||||||
|
PropertyInfo? property = null;
|
||||||
|
|
||||||
|
try {
|
||||||
|
foreach (var prop in typeof(GuildConfiguration).GetProperties())
|
||||||
|
if (setting.ToLower() == prop.Name.ToLower())
|
||||||
|
property = prop;
|
||||||
|
if (property == null || !property.CanWrite)
|
||||||
|
throw new ApplicationException(Messages.SettingDoesntExist);
|
||||||
|
var type = property.PropertyType;
|
||||||
|
|
||||||
|
if (value is "reset" or "default") { property.SetValue(cfg, null); } else if (type == typeof(string)) {
|
||||||
|
if (setting == "language" && value is not ("ru" or "en" or "mctaylors-ru"))
|
||||||
|
throw new ApplicationException(Messages.LanguageNotSupported);
|
||||||
|
property.SetValue(cfg, value);
|
||||||
|
} else {
|
||||||
|
try {
|
||||||
|
if (type == typeof(bool))
|
||||||
|
property.SetValue(cfg, Convert.ToBoolean(value));
|
||||||
|
|
||||||
|
if (type == typeof(ulong)) {
|
||||||
|
var id = Convert.ToUInt64(value);
|
||||||
|
|
||||||
|
property.SetValue(cfg, id);
|
||||||
|
}
|
||||||
|
} catch (Exception e) when (e is FormatException or OverflowException) {
|
||||||
|
throw new ApplicationException(Messages.InvalidSettingValue);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
var failedEmbed = new EmbedBuilder().WithSmallTitle(Messages.SettingNotChanged, currentUser)
|
||||||
|
.WithDescription(e.Message)
|
||||||
|
.WithColour(ColorsList.Red)
|
||||||
|
.Build();
|
||||||
|
if (!failedEmbed.IsDefined(out var failedBuilt)) return Result.FromError(failedEmbed);
|
||||||
|
|
||||||
|
return (Result)await _feedbackService.SendContextualEmbedAsync(failedBuilt, ct: CancellationToken);
|
||||||
|
}
|
||||||
|
|
||||||
|
var embed = new EmbedBuilder().WithSmallTitle(Messages.SettingSuccessfulyChanged, currentUser)
|
||||||
|
.WithColour(ColorsList.Green)
|
||||||
|
.Build();
|
||||||
|
if (!embed.IsDefined(out var built)) return Result.FromError(embed);
|
||||||
|
|
||||||
|
return (Result)await _feedbackService.SendContextualEmbedAsync(built, ct: CancellationToken);
|
||||||
|
}
|
||||||
|
}
|
2206
Messages.Designer.cs
generated
2206
Messages.Designer.cs
generated
File diff suppressed because it is too large
Load diff
|
@ -546,4 +546,13 @@
|
||||||
<data name="DescriptionReminder" xml:space="preserve">
|
<data name="DescriptionReminder" xml:space="preserve">
|
||||||
<value>You asked me to remind you {0}</value>
|
<value>You asked me to remind you {0}</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="SettingsListTitle" xml:space="preserve">
|
||||||
|
<value>Boyfriend's Settings</value>
|
||||||
|
</data>
|
||||||
|
<data name="SettingSuccessfulyChanged" xml:space="preserve">
|
||||||
|
<value>Setting successfuly changed</value>
|
||||||
|
</data>
|
||||||
|
<data name="SettingNotChanged" xml:space="preserve">
|
||||||
|
<value>Setting not changed</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|
|
@ -546,4 +546,13 @@
|
||||||
<data name="DescriptionReminder" xml:space="preserve">
|
<data name="DescriptionReminder" xml:space="preserve">
|
||||||
<value>Вы просили напомнить вам {0}</value>
|
<value>Вы просили напомнить вам {0}</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="SettingsListTitle" xml:space="preserve">
|
||||||
|
<value>Настройки Boyfriend</value>
|
||||||
|
</data>
|
||||||
|
<data name="SettingSuccessfulyChanged" xml:space="preserve">
|
||||||
|
<value>Настройка успешно изменена</value>
|
||||||
|
</data>
|
||||||
|
<data name="SettingNotChanged" xml:space="preserve">
|
||||||
|
<value>Настройка не редактирована</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|
|
@ -546,4 +546,13 @@
|
||||||
<data name="DescriptionReminder" xml:space="preserve">
|
<data name="DescriptionReminder" xml:space="preserve">
|
||||||
<value>ты хотел чтоб я напомнил тебе {0}</value>
|
<value>ты хотел чтоб я напомнил тебе {0}</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="SettingsListTitle" xml:space="preserve">
|
||||||
|
<value>приколы Boyfriend</value>
|
||||||
|
</data>
|
||||||
|
<data name="SettingSuccessfulyChanged" xml:space="preserve">
|
||||||
|
<value>прикол редактирован</value>
|
||||||
|
</data>
|
||||||
|
<data name="SettingNotChanged" xml:space="preserve">
|
||||||
|
<value>прикол сдох</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|
Loading…
Add table
Reference in a new issue