1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-01-31 17:19:00 +03:00
Octobot/Boyfriend/Commands/BanModule.cs

36 lines
1.7 KiB
C#
Raw Normal View History

2021-12-07 21:27:27 +03:00
using Discord;
using Discord.Commands;
2021-12-10 14:25:29 +03:00
2021-12-07 21:27:27 +03:00
// ReSharper disable UnusedType.Global
// ReSharper disable UnusedMember.Global
2021-12-10 14:25:29 +03:00
// ReSharper disable ClassNeverInstantiated.Global
2021-12-07 21:27:27 +03:00
namespace Boyfriend.Commands;
public class BanModule : ModuleBase<SocketCommandContext> {
[Command("ban")]
[Summary("Банит пользователя")]
[Alias("бан")]
2021-12-10 14:25:29 +03:00
[RequireBotPermission(GuildPermission.BanMembers)]
[RequireUserPermission(GuildPermission.BanMembers)]
public Task Run(string user, TimeSpan duration, [Remainder]string reason) {
var toBan = Utils.ParseUser(user).Result;
BanUser(Context.Guild, Context.User, toBan, duration, reason);
return Task.CompletedTask;
}
2021-12-07 21:27:27 +03:00
2021-12-10 14:25:29 +03:00
public static async void BanUser(IGuild guild, IUser author, IUser toBan, TimeSpan duration, string reason) {
2021-12-07 21:27:27 +03:00
var authorMention = author.Mention;
2021-12-10 14:25:29 +03:00
await Utils.SendDirectMessage(toBan, $"Тебя забанил {author.Mention} на сервере {guild.Name} за `{reason}`");
var guildBanMessage = $"({author.Username}#{author.Discriminator}) {reason}";
await guild.AddBanAsync(toBan, 0, guildBanMessage);
var notification = $"{authorMention} банит {toBan.Mention} за {Utils.WrapInline(reason)}";
await Utils.SilentSendAsync(guild.GetSystemChannelAsync().Result, notification);
await Utils.SilentSendAsync(Utils.GetAdminLogChannel(), notification);
var task = new Task(() => UnbanModule.UnbanUser(guild, guild.GetCurrentUserAsync().Result, toBan,
"Время наказания истекло"));
await Utils.StartDelayed(task, duration, () => guild.GetBanAsync(toBan).Result != null);
2021-12-07 21:27:27 +03:00
}
}