mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 09:09:00 +03:00
49 lines
No EOL
1.7 KiB
C#
49 lines
No EOL
1.7 KiB
C#
using Discord;
|
|
using Discord.Commands;
|
|
using Discord.WebSocket;
|
|
|
|
namespace Boyfriend.Commands;
|
|
|
|
public class KickCommand : Command {
|
|
public override string[] Aliases { get; } = {"kick", "кик", "выгнать"};
|
|
public override int ArgsLengthRequired => 2;
|
|
|
|
public override async Task Run(SocketCommandContext context, string[] args) {
|
|
var author = (SocketGuildUser) context.User;
|
|
|
|
var permissionCheckResponse = CommandHandler.HasPermission(ref author, GuildPermission.KickMembers);
|
|
if (permissionCheckResponse != "") {
|
|
Error(permissionCheckResponse, true);
|
|
return;
|
|
}
|
|
|
|
var toKick = Utils.ParseMember(context.Guild, args[0]);
|
|
|
|
if (toKick == null) {
|
|
Error(Messages.UserNotInGuild, false);
|
|
return;
|
|
}
|
|
|
|
var interactionCheckResponse = CommandHandler.CanInteract(ref author, ref toKick);
|
|
if (interactionCheckResponse != "") {
|
|
Error(interactionCheckResponse, true);
|
|
return;
|
|
}
|
|
|
|
await KickMember(context.Guild, author, toKick, Utils.JoinString(ref args, 1));
|
|
|
|
Success(
|
|
string.Format(Messages.FeedbackMemberKicked, toKick.Mention,
|
|
Utils.WrapInline(Utils.JoinString(ref args, 1))), author.Mention);
|
|
}
|
|
|
|
private static async Task KickMember(IGuild guild, SocketUser author, SocketGuildUser toKick, string reason) {
|
|
var authorMention = author.Mention;
|
|
var guildKickMessage = $"({author}) {reason}";
|
|
|
|
await Utils.SendDirectMessage(toKick,
|
|
string.Format(Messages.YouWereKicked, authorMention, guild.Name, Utils.WrapInline(reason)));
|
|
|
|
await toKick.KickAsync(guildKickMessage);
|
|
}
|
|
} |