Merge branch 'ts-rewrite' of https://git.corgi.wtf/galactic/galactic-bot into ts-rewrite

This commit is contained in:
Erik 2023-12-08 13:20:08 +02:00
commit e7a07c1326
6 changed files with 53 additions and 16 deletions

View File

@ -65,7 +65,10 @@ class StatsCommand extends SlashCommand
};
const shardResults = await shard.broadcastEval(evalFunc).catch((error) => this.client.logger.error(error));
// const shardResults: null | [] = null;
console.log('shart results');
const managerResult = await this.client.managerEval(mEvalFunc).catch((error) => this.client.logger.error(error));
console.log('manager result');
if (!shardResults || !managerResult)
throw new Error('Missing results for either shard or manager');

View File

@ -3,7 +3,7 @@ import DiscordClient from '../../../DiscordClient.js';
import { Nickname } from '../../../infractions/index.js';
import { CommandError, ModerationCommand } from '../../../interfaces/index.js';
import InvokerWrapper from '../../wrappers/InvokerWrapper.js';
import UserWrapper from '../../wrappers/UserWrapper.js';
import MemberWrapper from '../../wrappers/MemberWrapper.js';
class DehoistCommand extends ModerationCommand
{
@ -22,15 +22,15 @@ class DehoistCommand extends ModerationCommand
}
async execute (invoker: InvokerWrapper, { users, ...args }: CommandParams)
async execute (invoker: InvokerWrapper<true>, { users, ...args }: CommandParams)
{
if (!users)
throw new CommandError(invoker, { index: 'MODERATION_MISSING_USERS' });
const wrappers = await Promise.all(users.asUsers.map(user => this.client.getUserWrapper(user)));
const wrappers = await Promise.all(users!.asUsers.map(user => invoker.guild.memberWrapper(user)));
return this.client.moderation.handleInfraction(Nickname, invoker, {
targets: wrappers.filter(Boolean) as UserWrapper[],
targets: wrappers.filter(Boolean) as MemberWrapper[],
args,
data: {
dehoist: true

View File

@ -3,7 +3,7 @@ import DiscordClient from '../../../DiscordClient.js';
import { Kick } from '../../../infractions/index.js';
import { ModerationCommand } from '../../../interfaces/index.js';
import InvokerWrapper from '../../wrappers/InvokerWrapper.js';
import UserWrapper from '../../wrappers/UserWrapper.js';
import MemberWrapper from '../../wrappers/MemberWrapper.js';
class KickCommand extends ModerationCommand
{
@ -21,11 +21,11 @@ class KickCommand extends ModerationCommand
});
}
async execute (invoker: InvokerWrapper, { users, ...args }: CommandParams)
async execute (invoker: InvokerWrapper<true>, { users, ...args }: CommandParams)
{
const wrappers = await Promise.all(users!.asUsers.map(user => this.client.getUserWrapper(user)));
const wrappers = await Promise.all(users!.asUsers.map(user => invoker.guild.memberWrapper(user)));
return this.client.moderation.handleInfraction(Kick, invoker, {
targets: wrappers.filter(Boolean) as UserWrapper[],
targets: wrappers.filter(Boolean) as MemberWrapper[],
args
});
}

View File

@ -2,9 +2,9 @@ import { CommandError, ModerationCommand } from '../../../interfaces/index.js';
import DiscordClient from '../../../DiscordClient.js';
import InvokerWrapper from '../../wrappers/InvokerWrapper.js';
import { CommandOptionType, CommandParams } from '../../../../../@types/Client.js';
import UserWrapper from '../../wrappers/UserWrapper.js';
import Addrole from '../../../infractions/Addrole.js';
import Removerole from '../../../infractions/Removerole.js';
import MemberWrapper from '../../wrappers/MemberWrapper.js';
class AddroleCommand extends ModerationCommand
{
@ -46,7 +46,7 @@ class AddroleCommand extends ModerationCommand
}
async execute (invoker: InvokerWrapper, { users, roles, ...args }: CommandParams)
async execute (invoker: InvokerWrapper<true>, { users, roles, ...args }: CommandParams)
{
if (!users)
@ -56,9 +56,9 @@ class AddroleCommand extends ModerationCommand
const Infraction = invoker.subcommand!.name === 'add' ? Addrole : Removerole;
const wrappers = await Promise.all(users.asUsers.map(user => this.client.getUserWrapper(user)));
const wrappers = await Promise.all(users!.asUsers.map(user => invoker.guild.memberWrapper(user)));
return this.client.moderation.handleInfraction(Infraction, invoker, {
targets: wrappers.filter(Boolean) as UserWrapper[],
targets: wrappers.filter(Boolean) as MemberWrapper[],
args,
data: {
roleIds: roles.asRoles.map((r) => r.id),

View File

@ -3,7 +3,7 @@ import DiscordClient from '../../../DiscordClient.js';
import { Unmute } from '../../../infractions/index.js';
import { CommandError, ModerationCommand } from '../../../interfaces/index.js';
import InvokerWrapper from '../../wrappers/InvokerWrapper.js';
import UserWrapper from '../../wrappers/UserWrapper.js';
import MemberWrapper from '../../wrappers/MemberWrapper.js';
class UnmuteCommand extends ModerationCommand
{
@ -22,7 +22,7 @@ class UnmuteCommand extends ModerationCommand
});
}
async execute (invoker: InvokerWrapper, { users, ...args }: CommandParams)
async execute (invoker: InvokerWrapper<true>, { users, ...args }: CommandParams)
{
if (!users)
throw new CommandError(invoker, { index: 'MODERATION_MISSING_USERS' });
@ -35,9 +35,9 @@ class UnmuteCommand extends ModerationCommand
else if (!me!.permissions.has('ManageRoles'))
throw new CommandError(invoker, { index: 'INHIBITOR_CLIENTPERMISSIONS_ERROR', formatParams: { command: this.name, missing: 'ManageRoles' } });
const wrappers = await Promise.all(users.asUsers.map(user => this.client.getUserWrapper(user)));
const wrappers = await Promise.all(users!.asUsers.map(user => invoker.guild.memberWrapper(user)));
return this.client.moderation.handleInfraction(Unmute, invoker, {
targets: wrappers.filter(Boolean) as UserWrapper[],
targets: wrappers.filter(Boolean) as MemberWrapper[],
args
});
}

View File

@ -0,0 +1,34 @@
import { CommandParams } from '../../../../../@types/Client.js';
import DiscordClient from '../../../DiscordClient.js';
import { VcKick } from '../../../infractions/index.js';
import { ModerationCommand } from '../../../interfaces/index.js';
import InvokerWrapper from '../../wrappers/InvokerWrapper.js';
import MemberWrapper from '../../wrappers/MemberWrapper.js';
class VcKickCommand extends ModerationCommand
{
constructor (client: DiscordClient)
{
super(client, {
name: 'vckick',
description: 'Kick people from a VC.',
moduleName: 'moderation',
options: [],
guildOnly: true,
showUsage: true,
memberPermissions: [ 'MoveMembers' ],
clientPermissions: [ 'MoveMembers' ],
});
}
async execute (invoker: InvokerWrapper<true>, { users, ...args }: CommandParams)
{
const wrappers = await Promise.all(users!.asUsers.map(user => invoker.guild.memberWrapper(user)));
return this.client.moderation.handleInfraction(VcKick, invoker, {
targets: wrappers.filter(Boolean) as MemberWrapper[],
args
});
}
}
export default VcKickCommand;