forked from TeamInklings/Octobot
34 lines
1.5 KiB
C#
34 lines
1.5 KiB
C#
|
using Discord;
|
|||
|
using Discord.Commands;
|
|||
|
|
|||
|
// ReSharper disable UnusedType.Global
|
|||
|
// ReSharper disable UnusedMember.Global
|
|||
|
// ReSharper disable ClassNeverInstantiated.Global
|
|||
|
|
|||
|
namespace Boyfriend.Commands;
|
|||
|
|
|||
|
public class KickModule : ModuleBase<SocketCommandContext> {
|
|||
|
|
|||
|
[Command("kick")]
|
|||
|
[Summary("Выгоняет пользователя")]
|
|||
|
[Alias("кик")]
|
|||
|
[RequireBotPermission(GuildPermission.KickMembers)]
|
|||
|
[RequireUserPermission(GuildPermission.KickMembers)]
|
|||
|
public Task Run(string user, [Remainder]string reason) {
|
|||
|
var toKick = Utils.ParseMember(Context.Guild, user).Result;
|
|||
|
KickMember(Context.Guild, Context.User, toKick, reason);
|
|||
|
return Task.CompletedTask;
|
|||
|
}
|
|||
|
|
|||
|
private static async void KickMember(IGuild guild, IUser author, IGuildUser toKick, string reason) {
|
|||
|
var authorMention = author.Mention;
|
|||
|
await Utils.SendDirectMessage(toKick, $"Тебя кикнул {authorMention} на сервере {guild.Name} за " +
|
|||
|
$"{Utils.WrapInline(reason)}");
|
|||
|
|
|||
|
var guildKickMessage = $"({author.Username}#{author.Discriminator}) {reason}";
|
|||
|
await toKick.KickAsync(guildKickMessage);
|
|||
|
var notification = $"{authorMention} выгоняет {toKick.Mention} за {Utils.WrapInline(reason)}";
|
|||
|
await Utils.SilentSendAsync(guild.GetSystemChannelAsync().Result, notification);
|
|||
|
await Utils.SilentSendAsync(Utils.GetAdminLogChannel(), notification);
|
|||
|
}
|
|||
|
}
|