pissbot-9000/commands/message/core/undo.js
2022-06-06 23:48:59 +02:00

45 lines
No EOL
1.6 KiB
JavaScript

const { format } = require('../../../labscore/utils/ansi')
const { codeblock, icon, highlight } = require('../../../labscore/utils/markdown')
const { createEmbed } = require('../../../labscore/utils/embed')
const { editOrReply } = require('../../../labscore/utils/message')
module.exports = {
name: 'undo',
default: 1,
label: 'amount',
metadata: {
description: 'undo your last bot command(s)',
examples: ['undo 5'],
category: 'core',
usage: 'undo [<amount (1-5)>]'
},
run: async (context, args) => {
try{
context.triggerTyping();
if(typeof(args.amount) == "string") args.amount = parseInt(args.amount)
if(!args.amount) args.amount = 1
if(args.amount >= 6 || args.amount <= 0) return await editOrReply(context, {embeds:[createEmbed("warning", context, "Invalid Argument (amount)")]})
let cmds = [];
let found = 0;
for(const c of context.commandClient.replies.toArray().reverse()){
if(found > args.amount) break;
if (c.context.channelId !== context.channelId || c.context.userId !== context.userId) continue;
if (c.context.message.canDelete) cmds.push(c.context.message.id)
if (c.reply.canDelete && !c.reply.deleted) {
cmds.push(c.reply.id);
found++;
}
}
if (cmds.length == 1 || !context.canManage) {
for (let id of cmds) {
await context.channel.deleteMessage(id);
}
} else {
await context.channel.bulkDelete(cmds);
}
if(context.canManage) await context.message.delete()
}catch(e){
console.log(e)
}
},
};