Haha-Yes/commands/admin/tag.js

65 lines
2.3 KiB
JavaScript
Raw Normal View History

2018-12-30 01:20:24 +01:00
const { Command } = require('discord-akairo');
2019-07-08 22:10:14 +02:00
const Tag = require('../../models').Tag;
2018-12-25 19:17:07 +01:00
2018-12-30 01:20:24 +01:00
class TagCommand extends Command {
2019-01-02 08:09:45 +01:00
constructor() {
super('tag', {
aliases: ['tag'],
category: 'admin',
2019-01-12 17:00:36 +01:00
userPermissions: ['MANAGE_MESSAGES'],
2019-01-02 08:09:45 +01:00
args: [
{
id: 'trigger',
2019-06-23 03:41:59 +02:00
type: 'string',
prompt: {
start: 'What word or sentence should trigger it?',
}
2019-01-02 08:09:45 +01:00
},
{
id: 'response',
2019-02-08 19:06:12 +01:00
type: 'string',
2019-06-23 03:41:59 +02:00
match: 'rest',
prompt: {
start: 'What word or sentence should the response be?',
}
2019-01-02 08:09:45 +01:00
}
],
channelRestriction: 'guild',
description: {
content: 'Create custom autoresponse [Click here to see the complete list of "tag"](https://cdn.discordapp.com/attachments/502198809355354133/561043193949585418/unknown.png) (Need "" if the trigger contains spaces)',
2019-01-02 08:09:45 +01:00
usage: '[trigger] [response]',
examples: ['"do you know da wea" Fuck off dead meme', 'hello Hello [author], how are you today?']
2019-01-02 08:09:45 +01:00
}
});
}
2018-12-18 17:02:05 +01:00
2019-01-02 08:09:45 +01:00
async exec(message, args) {
2019-07-08 22:10:14 +02:00
const tag = await Tag.findOne({where: {trigger: args.trigger, serverID: message.guild.id}});
2018-12-18 17:02:05 +01:00
2019-07-08 22:10:14 +02:00
if (!tag) {
2019-07-09 02:19:44 +02:00
const body = {trigger: args.trigger, response: args.response, ownerID: message.author.id, serverID: message.guild.id};
2019-07-17 01:17:03 +02:00
await Tag.create(body);
2019-07-12 06:06:17 +02:00
return message.channel.send(`tag have been set to ${args.trigger} : ${args.response}`);
2019-07-08 22:10:14 +02:00
} else {
2019-07-12 06:06:17 +02:00
message.channel.send('This tag 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, max: 1, errors: ['time'] })
2019-07-17 01:17:03 +02:00
.then(async messages => {
2019-07-12 06:06:17 +02:00
let messageContent = messages.map(messages => messages.content);
2019-07-20 22:33:41 +02:00
if (messageContent.tolowerCase() == 'y' || messageContent.tolowerCase() == 'yes') {
2019-07-12 06:06:17 +02:00
const body = {trigger: args.trigger, response: args.response, ownerID: message.author.id, serverID: message.guild.id};
2019-07-17 01:17:03 +02:00
await Tag.update(body, {where: {trigger: args.trigger, serverID: message.guild.id}});
2019-07-12 06:06:17 +02:00
return message.channel.send(`tag have been set to ${args.trigger} : ${args.response}`);
2019-07-20 22:34:12 +02:00
} else {
return message.channel.send('Not updating.');
2019-07-12 06:06:17 +02:00
}
})
2019-07-17 01:18:20 +02:00
.catch(err => {
console.error(err);
2019-07-12 06:06:17 +02:00
return message.channel.send('Took too long to answer. didin\'t update anything.');
});
2019-07-08 22:10:14 +02:00
}
2019-01-02 08:09:45 +01:00
}
2018-12-30 01:20:24 +01:00
}
module.exports = TagCommand;