114 lines
No EOL
4.5 KiB
JavaScript
114 lines
No EOL
4.5 KiB
JavaScript
const { Command } = require('discord-akairo');
|
|
const Tag = require('../../models').Tag;
|
|
|
|
class TagCommand extends Command {
|
|
constructor() {
|
|
super('tag', {
|
|
aliases: ['tag'],
|
|
category: 'admin',
|
|
userPermissions: ['MANAGE_MESSAGES'],
|
|
args: [
|
|
{
|
|
id: 'trigger',
|
|
type: 'string',
|
|
},
|
|
{
|
|
id: 'remove',
|
|
match: 'flag',
|
|
flag: '--remove'
|
|
},
|
|
{
|
|
id: 'reset',
|
|
match: 'flag',
|
|
flag: '--reset'
|
|
},
|
|
{
|
|
id: 'response',
|
|
type: 'string',
|
|
match: 'rest',
|
|
}
|
|
],
|
|
channel: 'guild',
|
|
description: {
|
|
content: 'Create custom autoresponse (--remove to delete a tag, --reset to delete EVERY tag on the server) [Click here to see the complete list of "tag"](https://cdn.discordapp.com/attachments/502198809355354133/561043193949585418/unknown.png) (Need "" if the trigger contains spaces)',
|
|
usage: '[trigger] [response]',
|
|
examples: ['"do you know da wea" Fuck off dead meme', 'hello Hello [author], how are you today?', 'hello --remove']
|
|
}
|
|
});
|
|
}
|
|
|
|
async exec(message, args) {
|
|
const tag = await Tag.findOne({where: {trigger: args.trigger, serverID: message.guild.id}});
|
|
const ownerID = this.client.ownerID;
|
|
|
|
if (args.reset) {
|
|
if (message.member.hasPermission('ADMINISTRATOR')) {
|
|
message.channel.send('Are you sure you want to delete EVERY tag? There is no way to recover them. y/n');
|
|
|
|
const filter = m => m.content && m.author.id == message.author.id;
|
|
return message.channel.awaitMessages(filter, {time: 5000, max: 1, errors: ['time'] })
|
|
.then(async messages => {
|
|
let messageContent = messages.map(messages => messages.content.toLowerCase());
|
|
if (messageContent == 'y' || messageContent == 'yes') {
|
|
Tag.destroy({where: {serverID: message.guild.id}});
|
|
return message.channel.send('Tags have been reset.');
|
|
} else {
|
|
return message.channel.send('Not reseting.');
|
|
}
|
|
})
|
|
.catch(err => {
|
|
console.error(err);
|
|
return message.channel.send('Took too long to answer. didin\'t update anything.');
|
|
});
|
|
} else {
|
|
return message.channel.send('Only person with the `ADMINISTRATOR` rank can reset tags.');
|
|
}
|
|
}
|
|
|
|
if (args.remove) {
|
|
if (tag) {
|
|
if (tag.get('ownerID') == message.author.id || message.member.hasPermission('ADMINISTRATOR') || message.author.id == ownerID) {
|
|
Tag.destroy({where: {trigger: args.trigger, serverID: message.guild.id}});
|
|
return message.channel.send('successfully deleted the following tag: ' + args.trigger);
|
|
} else {
|
|
return message.channel.send(`You are not the owner of this tag, if you think it is problematic ask an admin to remove it by doing ${this.client.commandHandler.prefix[0]}tag ${args.trigger} --remove`);
|
|
}
|
|
} else {
|
|
return message.channel.send('Did not find the specified tag, are you sure it exist?');
|
|
}
|
|
}
|
|
|
|
|
|
if (!args.trigger) return message.channel.send('Please provide a trigger in order to create a tag.');
|
|
|
|
if (!args.response) return message.channel.send('Please provide the response for that tag');
|
|
|
|
if (!tag) {
|
|
const body = {trigger: args.trigger, response: args.response, ownerID: message.author.id, serverID: message.guild.id};
|
|
await Tag.create(body);
|
|
return message.channel.send(`tag have been set to ${args.trigger} : ${args.response}`);
|
|
} else if (tag.get('ownerID') == message.author.id || message.member.hasPermission('ADMINISTRATOR') || message.author.id == ownerID) {
|
|
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'] })
|
|
.then(async messages => {
|
|
let messageContent = messages.map(messages => messages.content.toLowerCase());
|
|
if (messageContent == 'y' || messageContent == 'yes') {
|
|
const body = {trigger: args.trigger, response: args.response, ownerID: message.author.id, serverID: message.guild.id};
|
|
await Tag.update(body, {where: {trigger: args.trigger, serverID: message.guild.id}});
|
|
return message.channel.send(`tag have been set to ${args.trigger} : ${args.response}`);
|
|
} else {
|
|
return message.channel.send('Not updating.');
|
|
}
|
|
})
|
|
.catch(err => {
|
|
console.error(err);
|
|
return message.channel.send('Took too long to answer. didin\'t update anything.');
|
|
});
|
|
} else {
|
|
return message.channel.send(`You are not the owner of this tag, if you think it is problematic ask an admin to remove it by doing ${this.client.commandHandler.prefix[0]}tag ${args.trigger} --remove`);
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = TagCommand; |