* Fix tests * Update coverage * Remove unrequired mock files * Add about command test * Update about tests * Ban command tests * eval command tests * Start help command tests * Add help command tests * Add kick command tests * Mute command tests * Poll command tests * Add role command tests Signed-off-by: Ethan Lane <ethan@vylpes.com> * Add rules command tests * Add unmute command tests * Add warn command tests * Add MemberEvents tests * Add GuildMemberUpdate tests Signed-off-by: Ethan Lane <ethan@vylpes.com> * Add MessageEvents tests * Add StringTools test Signed-off-by: Ethan Lane <ethan@vylpes.com> * Add embed tests Signed-off-by: Ethan Lane <ethan@vylpes.com> * Add GitHub Actions Signed-off-by: Ethan Lane <ethan@vylpes.com> * Move to tslint Signed-off-by: Ethan Lane <ethan@vylpes.com> * Remove tslint Signed-off-by: Ethan Lane <ethan@vylpes.com> * Remove linting script Signed-off-by: Ethan Lane <ethan@vylpes.com>
83 lines
No EOL
2.5 KiB
TypeScript
83 lines
No EOL
2.5 KiB
TypeScript
import ErrorMessages from "../constants/ErrorMessages";
|
|
import { ICommandContext } from "../contracts/ICommandContext";
|
|
import ICommandReturnContext from "../contracts/ICommandReturnContext";
|
|
import ErrorEmbed from "../helpers/embeds/ErrorEmbed";
|
|
import LogEmbed from "../helpers/embeds/LogEmbed";
|
|
import PublicEmbed from "../helpers/embeds/PublicEmbed";
|
|
import { Command } from "../type/command";
|
|
|
|
export default class Kick extends Command {
|
|
constructor() {
|
|
super();
|
|
|
|
super._category = "Moderation";
|
|
super._roles = [
|
|
process.env.ROLES_MODERATOR!
|
|
];
|
|
}
|
|
|
|
public override async execute(context: ICommandContext): Promise<ICommandReturnContext> {
|
|
const targetUser = context.message.mentions.users.first();
|
|
|
|
if (!targetUser) {
|
|
const embed = new ErrorEmbed(context, "User does not exist");
|
|
embed.SendToCurrentChannel();
|
|
|
|
return {
|
|
commandContext: context,
|
|
embeds: [embed]
|
|
};
|
|
}
|
|
|
|
const targetMember = context.message.guild?.member(targetUser);
|
|
|
|
if (!targetMember) {
|
|
const embed = new ErrorEmbed(context, "User is not in this server");
|
|
embed.SendToCurrentChannel();
|
|
|
|
return {
|
|
commandContext: context,
|
|
embeds: [embed]
|
|
};
|
|
}
|
|
|
|
const reasonArgs = context.args;
|
|
reasonArgs.splice(0, 1)
|
|
|
|
const reason = reasonArgs.join(" ");
|
|
|
|
if (!context.message.guild?.available) {
|
|
return {
|
|
commandContext: context,
|
|
embeds: []
|
|
};
|
|
}
|
|
|
|
if (!targetMember.kickable) {
|
|
const embed = new ErrorEmbed(context, ErrorMessages.InsufficientBotPermissions);
|
|
embed.SendToCurrentChannel();
|
|
|
|
return {
|
|
commandContext: context,
|
|
embeds: [embed]
|
|
};
|
|
}
|
|
|
|
const logEmbed = new LogEmbed(context, "Member Kicked");
|
|
logEmbed.AddUser("User", targetUser, true);
|
|
logEmbed.AddUser("Moderator", context.message.author);
|
|
logEmbed.AddReason(reason);
|
|
|
|
const publicEmbed = new PublicEmbed(context, "", `${targetUser} has been kicked`);
|
|
|
|
await targetMember.kick(reason);
|
|
|
|
logEmbed.SendToModLogsChannel();
|
|
publicEmbed.SendToCurrentChannel();
|
|
|
|
return {
|
|
commandContext: context,
|
|
embeds: [logEmbed, publicEmbed]
|
|
};
|
|
}
|
|
} |