This repository has been archived on 2024-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
OctobotStealth/Boyfriend/Commands/UnmuteCommand.cs

72 lines
3 KiB
C#
Raw Normal View History

using Discord;
using Discord.Commands;
// ReSharper disable UnusedType.Global
// ReSharper disable UnusedMember.Global
// ReSharper disable ClassNeverInstantiated.Global
namespace Boyfriend.Commands;
public class UnmuteCommand : Command {
public override async Task Run(SocketCommandContext context, string[] args) {
2022-02-02 16:14:26 +03:00
await UnmuteMember(context.Guild, context.Channel as ITextChannel, context.Guild.GetUser(context.User.Id),
await Utils.ParseMember(context.Guild, args[0]), Utils.JoinString(args, 1));
}
public static async Task UnmuteMember(IGuild guild, ITextChannel? channel, IGuildUser author, IGuildUser toUnmute,
string reason) {
await CommandHandler.CheckPermissions(author, GuildPermission.ModerateMembers, GuildPermission.ManageRoles);
await CommandHandler.CheckInteractions(author, toUnmute);
2022-02-02 16:14:26 +03:00
var authorMention = author.Mention;
var config = Boyfriend.GetGuildConfig(guild);
var notification = string.Format(Messages.MemberUnmuted, authorMention, toUnmute.Mention,
Utils.WrapInline(reason));
var requestOptions = Utils.GetRequestOptions($"({Utils.GetNameAndDiscrim(author)}) {reason}");
var role = Utils.GetMuteRole(guild);
2022-01-30 11:43:15 +03:00
if (role != null) {
if (toUnmute.RoleIds.All(x => x != role.Id)) {
2022-01-30 11:43:15 +03:00
var rolesRemoved = config.RolesRemovedOnMute;
2022-02-02 16:14:26 +03:00
await toUnmute.AddRolesAsync(rolesRemoved![toUnmute.Id]);
rolesRemoved.Remove(toUnmute.Id);
2022-01-30 11:43:15 +03:00
await config.Save();
throw new ApplicationException(Messages.RolesReturned);
}
2022-02-02 16:14:26 +03:00
if (toUnmute.RoleIds.All(x => x != role.Id))
throw new ApplicationException(Messages.MemberNotMuted);
2022-02-02 16:14:26 +03:00
await toUnmute.RemoveRoleAsync(role, requestOptions);
2022-01-30 11:43:15 +03:00
if (config.RolesRemovedOnMute!.ContainsKey(toUnmute.Id)) {
2022-02-02 16:14:26 +03:00
await toUnmute.AddRolesAsync(config.RolesRemovedOnMute[toUnmute.Id]);
2022-01-30 11:43:15 +03:00
config.RolesRemovedOnMute.Remove(toUnmute.Id);
await config.Save();
}
} else {
2022-02-02 16:14:26 +03:00
if (toUnmute.TimedOutUntil == null || toUnmute.TimedOutUntil.Value.ToUnixTimeMilliseconds()
< DateTimeOffset.Now.ToUnixTimeMilliseconds())
throw new ApplicationException(Messages.MemberNotMuted);
2022-01-30 11:43:15 +03:00
await toUnmute.RemoveTimeOutAsync();
}
await Utils.SilentSendAsync(channel, string.Format(Messages.UnmuteResponse, toUnmute.Mention,
Utils.WrapInline(reason)));
await Utils.SilentSendAsync(await guild.GetSystemChannelAsync(), notification);
await Utils.SilentSendAsync(await Utils.GetAdminLogChannel(guild), notification);
}
public override List<string> GetAliases() {
return new List<string> {"unmute", "размут"};
}
public override int GetArgumentsAmountRequired() {
return 2;
}
public override string GetSummary() {
return "Снимает мут с участника";
}
2022-01-30 11:43:15 +03:00
}