diff options
Diffstat (limited to 'src/commands/dev')
-rw-r--r-- | src/commands/dev/eval.ts | 14 | ||||
-rw-r--r-- | src/commands/dev/reload.ts | 4 | ||||
-rw-r--r-- | src/commands/dev/setLevel.ts | 7 | ||||
-rw-r--r-- | src/commands/dev/superUser.ts | 73 |
4 files changed, 88 insertions, 10 deletions
diff --git a/src/commands/dev/eval.ts b/src/commands/dev/eval.ts index 8bf88ff..d2fe432 100644 --- a/src/commands/dev/eval.ts +++ b/src/commands/dev/eval.ts @@ -5,7 +5,7 @@ import { CommandInteraction, MessageEmbed, MessageEmbedOptions, Util } from 'dis import { transpile } from 'typescript'; import { inspect, promisify } from 'util'; import { BushCommand } from '../../lib/extensions/BushCommand'; -import { BushInteractionMessage } from '../../lib/extensions/BushInteractionMessage'; +import { BushSlashMessage } from '../../lib/extensions/BushInteractionMessage'; import { BushMessage } from '../../lib/extensions/BushMessage'; const clean = (text) => { @@ -123,7 +123,7 @@ export default class EvalCommand extends BushCommand { } public async exec( - message: BushMessage | BushInteractionMessage, + message: BushMessage | BushSlashMessage, args: { sel_depth: number; code: string; @@ -138,7 +138,7 @@ export default class EvalCommand extends BushCommand { if (!this.client.config.owners.includes(message.author.id)) return await message.util.reply(`${this.client.util.emojis.error} Only my developers can run this command.`); if (message.util.isSlash) { - await (message as BushInteractionMessage).interaction.defer({ ephemeral: args.silent }); + await (message as BushSlashMessage).interaction.defer({ ephemeral: args.silent }); } const code: { js?: string | null; ts?: string | null; lang?: 'js' | 'ts' } = {}; @@ -181,7 +181,13 @@ export default class EvalCommand extends BushCommand { channel = message.channel, config = this.client.config, members = message.guild.members, - roles = message.guild.roles; + roles = message.guild.roles, + { Ban } = await import('../../lib/models/Ban'), + { Global } = await import('../../lib/models/Global'), + { Guild } = await import('../../lib/models/Guild'), + { Level } = await import('../../lib/models/Level'), + { Modlog } = await import('../../lib/models/Modlog'), + { StickyRole } = await import('../../lib/models/StickyRole'); if (code[code.lang].replace(/ /g, '').includes('9+10' || '10+9')) { output = 21; } else { diff --git a/src/commands/dev/reload.ts b/src/commands/dev/reload.ts index 9aee9a7..94e31b0 100644 --- a/src/commands/dev/reload.ts +++ b/src/commands/dev/reload.ts @@ -2,7 +2,7 @@ import { stripIndent } from 'common-tags'; import { Message } from 'discord.js'; import { SlashCommandOption } from '../../lib/extensions/BushClientUtil'; import { BushCommand } from '../../lib/extensions/BushCommand'; -import { BushInteractionMessage } from '../../lib/extensions/BushInteractionMessage'; +import { BushSlashMessage } from '../../lib/extensions/BushInteractionMessage'; export default class ReloadCommand extends BushCommand { constructor() { @@ -55,7 +55,7 @@ export default class ReloadCommand extends BushCommand { await message.util.send(await this.getResponse(fast)); } - public async execSlash(message: BushInteractionMessage, { fast }: { fast: SlashCommandOption<boolean> }): Promise<void> { + public async execSlash(message: BushSlashMessage, { fast }: { fast: SlashCommandOption<boolean> }): Promise<void> { await message.interaction.reply(await this.getResponse(fast?.value)); } } diff --git a/src/commands/dev/setLevel.ts b/src/commands/dev/setLevel.ts index 58c01dd..ca555db 100644 --- a/src/commands/dev/setLevel.ts +++ b/src/commands/dev/setLevel.ts @@ -1,7 +1,7 @@ import { Message, User } from 'discord.js'; import { SlashCommandOption } from '../../lib/extensions/BushClientUtil'; import { BushCommand } from '../../lib/extensions/BushCommand'; -import { BushInteractionMessage } from '../../lib/extensions/BushInteractionMessage'; +import { BushSlashMessage } from '../../lib/extensions/BushInteractionMessage'; import { Level } from '../../lib/models'; import AllowedMentions from '../../lib/utils/AllowedMentions'; @@ -61,8 +61,7 @@ export default class SetLevelCommand extends BushCommand { id: user.id } }); - levelEntry.xp = Level.convertLevelToXp(level); - await levelEntry.save(); + await levelEntry.update({ xp: Level.convertLevelToXp(level) }); return `Successfully set level of <@${user.id}> to \`${level}\` (\`${levelEntry.xp}\` XP)`; } @@ -74,7 +73,7 @@ export default class SetLevelCommand extends BushCommand { } async execSlash( - message: BushInteractionMessage, + message: BushSlashMessage, { user, level }: { user: SlashCommandOption<void>; level: SlashCommandOption<number> } ): Promise<void> { await message.interaction.reply({ diff --git a/src/commands/dev/superUser.ts b/src/commands/dev/superUser.ts new file mode 100644 index 0000000..c3ed0b0 --- /dev/null +++ b/src/commands/dev/superUser.ts @@ -0,0 +1,73 @@ +import { Constants } from 'discord-akairo'; +import { User } from 'discord.js'; +import { BushCommand } from '../../lib/extensions/BushCommand'; +import { BushMessage } from '../../lib/extensions/BushMessage'; +import { Global } from '../../lib/models/Global'; + +export default class SuperUserCommand extends BushCommand { + public constructor() { + super('superuser', { + aliases: ['superuser', 'su'], + category: 'dev', + description: { + content: 'A command to manage superusers.', + usage: 'superuser <add/remove> <user>', + examples: ['superuser add IRONM00N'] + }, + clientPermissions: ['SEND_MESSAGES'], + ownerOnly: true + }); + } + *args(): unknown { + const action = yield { + id: 'action', + type: ['add', 'remove'], + match: Constants.ArgumentMatches.PHRASE, + prompt: { + start: 'Would you like to `add` or `remove` a user from the superuser list?', + retry: '{error} Choose if you would like to `add` or `remove` a user.', + required: true + } + }; + const user = yield { + id: 'user', + type: Constants.ArgumentTypes.USER, + match: Constants.ArgumentMatches.REST_CONTENT, + prompt: { + start: `Who would you like to ${action || 'add/remove'} from the superuser list?`, + retry: `Choose a valid user to ${action || 'add/remove'} from the superuser list.`, + required: true + } + }; + return { action, user }; + } + public async exec(message: BushMessage, args: { action: 'add' | 'remove'; user: User }): Promise<unknown> { + if (!this.client.config.owners.includes(message.author.id)) + return await message.util.reply(`${this.client.util.emojis.error} Only my developers can run this command...`); + + const superUsers = (await Global.findByPk(this.client.config.dev ? 'development' : 'production')).superUsers; + let success; + if (args.action === 'add') { + if (superUsers.includes(args.user.id)) { + return message.util.reply(`${this.client.util.emojis.warn} \`${args.user.tag}\` is already a superuser.`); + } + success = await this.client.util.insertOrRemoveFromGlobal('add', 'superUsers', args.user.id).catch(() => false); + } else { + if (!superUsers.includes(args.user.id)) { + return message.util.reply(`${this.client.util.emojis.warn} \`${args.user.tag}\` is not superuser.`); + } + success = await this.client.util.insertOrRemoveFromGlobal('remove', 'superUsers', args.user.id).catch(() => false); + } + if (success) { + const responses = [args.action == 'remove' ? `` : 'made', args.action == 'remove' ? 'is no longer' : '']; + return message.util.reply( + `${this.client.util.emojis.success} ${responses[0]} \`${args.user.tag}\` ${responses[1]} a superuser.` + ); + } else { + const response = [args.action == 'remove' ? `removing` : 'making', args.action == 'remove' ? `from` : 'to']; + return message.util.reply( + `${this.client.util.emojis.error} There was an error ${response[0]} \`${args.user.tag}\` ${response[1]} the superuser list.` + ); + } + } +} |