Haha-Yes/commands/owner/addResponse.js

69 lines
2.2 KiB
JavaScript
Raw Normal View History

2019-07-08 22:10:29 +02:00
const { Command } = require('discord-akairo');
const autoResponse = require('../../models').autoresponse;
class addResponseCommand extends Command {
constructor() {
super('addResponse', {
aliases: ['addResponse'],
2019-07-08 22:48:04 +02:00
category: 'owner',
ownerOnly: 'true',
2019-07-08 22:10:29 +02:00
userPermissions: ['MANAGE_MESSAGES'],
args: [
{
id: 'trigger',
type: 'string',
prompt: {
start: 'What word or sentence should trigger it?',
}
},
{
id: 'response',
type: 'string',
prompt: {
start: 'What word or sentence should the response be?',
}
},
{
id: 'type',
type: 'string',
prompt: {
start: 'What is the type of the response? (text,image,react)',
}
}
],
2020-03-19 23:24:31 +01:00
channel: 'guild',
2019-07-08 22:10:29 +02:00
description: {
2019-07-08 22:48:04 +02:00
content: 'Create custom autoresponse',
2019-07-08 22:10:29 +02:00
usage: '[trigger] [response]',
examples: ['"do you know da wea" Fuck off dead meme', 'hello Hello [author], how are you today?']
}
});
}
async exec(message, args) {
const autoresponse = await autoResponse.findOne({where: {trigger: args.trigger}});
if (!autoresponse) {
const body = {trigger: args.trigger, response: args.response, type: args.type};
autoResponse.create(body);
return message.channel.send(`autoresponse have been set to ${args.trigger} : ${args.response} with type: ${args.type}`);
} else {
2019-07-12 06:06:17 +02:00
message.channel.send('This autoresponse already exist, do you want to update it? y/n');
const filter = m => m.content && m.author.id == message.author.id;
message.channel.awaitMessages(filter, {time: 5000 * 1000, max: 1, errors: ['time'] })
.then(messages => {
let messageContent = messages.map(messages => messages.content);
if (messageContent[0] === 'y' || messageContent[0] === 'yes') {
2019-07-12 06:06:17 +02:00
const body = {trigger: args.trigger, response: args.response, type: args.type};
2019-07-12 17:47:16 +02:00
autoResponse.update(body, {where: {trigger: args.trigger}});
2019-07-12 06:06:17 +02:00
return message.channel.send(`autoresponse have been set to ${args.trigger} : ${args.response} with type: ${args.type}`);
}
})
.catch(() => {
return message.channel.send('Took too long to answer. didin\'t update anything.');
});
2019-07-08 22:10:29 +02:00
}
}
}
module.exports = addResponseCommand;