2018-12-30 01:20:24 +01:00
|
|
|
const { Listener } = require('discord-akairo');
|
2019-02-10 01:49:01 +01:00
|
|
|
const { MessageEmbed } = require('discord.js');
|
2019-01-10 09:00:30 +01:00
|
|
|
const responseObject = require('../../json/reply.json');
|
|
|
|
const reactObject = require('../../json/react.json');
|
|
|
|
const imgResponseObject = require('../../json/imgreply.json');
|
2019-02-08 19:06:29 +01:00
|
|
|
const rand = require('../../rand.js');
|
2019-01-02 05:51:09 +01:00
|
|
|
const reload = require('auto-reload');
|
2019-06-28 17:05:01 +02:00
|
|
|
const fs = require('fs');
|
2018-12-30 01:20:24 +01:00
|
|
|
|
2019-01-02 21:46:12 +01:00
|
|
|
class messageListener extends Listener {
|
2019-01-02 08:09:45 +01:00
|
|
|
constructor() {
|
|
|
|
super('message', {
|
|
|
|
emitter: 'client',
|
2019-01-02 21:46:12 +01:00
|
|
|
event: 'message'
|
2019-01-02 08:09:45 +01:00
|
|
|
});
|
|
|
|
}
|
2018-12-30 01:20:24 +01:00
|
|
|
|
2019-04-05 21:51:39 +02:00
|
|
|
async exec(message) {
|
2019-01-02 19:05:32 +01:00
|
|
|
if (message.author.bot) return; {
|
2019-03-02 20:15:09 +01:00
|
|
|
let autoresponse = reload('../../json/autoresponse.json');
|
|
|
|
let message_content = message.content.toLowerCase();
|
2019-01-02 21:46:12 +01:00
|
|
|
|
2019-01-02 19:05:32 +01:00
|
|
|
// If autoresponse is enable send the response
|
|
|
|
if(autoresponse[message.channel.id] == 'enable') {
|
|
|
|
// Reply with images as attachement
|
|
|
|
if(imgResponseObject[message_content]) {
|
|
|
|
message.channel.send({files: [imgResponseObject[message_content]]});
|
|
|
|
}
|
|
|
|
// React only to the messages
|
|
|
|
else if(reactObject[message_content]) {
|
|
|
|
message.react(reactObject[message_content]);
|
2019-01-02 08:09:45 +01:00
|
|
|
}
|
2019-01-02 19:05:32 +01:00
|
|
|
// auto respond to messages
|
|
|
|
else if(responseObject[message_content]) {
|
|
|
|
message.channel.send(responseObject[message_content]);
|
|
|
|
// If it contain 'like if' react with 👍
|
|
|
|
} else if (message_content.includes('like if')) {
|
|
|
|
message.react('\u{1F44D}');
|
|
|
|
// If it contain 'jeff' react with a jeff emote
|
|
|
|
} else if (message_content.includes('jeff')) {
|
|
|
|
message.react('496028845967802378');
|
2019-01-02 08:09:45 +01:00
|
|
|
}
|
2019-01-11 23:04:13 +01:00
|
|
|
}
|
|
|
|
// User autoresponse
|
2019-06-28 17:05:01 +02:00
|
|
|
if (fs.existsSync(`./tag/${message.guild.id}.json`)) {
|
2019-07-01 21:15:45 +02:00
|
|
|
let customresponse = reload(`../../tag/${message.guild.id}.json`);
|
2019-05-08 22:57:22 +02:00
|
|
|
|
2019-07-01 21:15:45 +02:00
|
|
|
if(customresponse[message_content]) {
|
|
|
|
let text = customresponse[message_content];
|
|
|
|
if (text.includes('[ban]')) {
|
|
|
|
message.member.ban('Tag ban :^)');
|
|
|
|
} else if (text.includes('[kick]')) {
|
|
|
|
message.member.kick('Tag kick :^)');
|
|
|
|
} else if (text.includes('[delete]')) {
|
|
|
|
message.delete('Tag delete :^)');
|
|
|
|
}
|
2019-06-28 17:05:01 +02:00
|
|
|
|
2019-07-01 21:15:45 +02:00
|
|
|
text = rand.random(text, message);
|
2019-02-10 16:23:49 +01:00
|
|
|
|
2019-07-01 21:15:45 +02:00
|
|
|
let attach = '';
|
2019-02-10 16:23:49 +01:00
|
|
|
|
2019-07-01 21:15:45 +02:00
|
|
|
if (text.includes('[attach:')) {
|
|
|
|
attach = text.split(/(\[attach:.*?])/);
|
|
|
|
for (let i = 0, l = attach.length; i < l; i++) {
|
|
|
|
if (attach[i].includes('[attach:')) {
|
|
|
|
attach = attach[i].replace('[attach:', '').slice(0, -1);
|
|
|
|
i = attach.length;
|
2019-02-10 01:49:01 +01:00
|
|
|
}
|
|
|
|
}
|
2019-07-01 21:15:45 +02:00
|
|
|
text = text.replace(/(\[attach:.*?])/, '');
|
|
|
|
}
|
2019-02-10 16:23:49 +01:00
|
|
|
|
2019-07-01 21:15:45 +02:00
|
|
|
// THIS SECTION IS VERY VERY BAD MUST CHANGE
|
|
|
|
if (text.includes('[embed]')) {
|
|
|
|
text = text.replace(/\[embed\]/, ' ');
|
2019-06-28 17:05:01 +02:00
|
|
|
|
2019-07-01 21:15:45 +02:00
|
|
|
let title = '';
|
|
|
|
let desc = '';
|
|
|
|
let image;
|
|
|
|
let thumbnail;
|
|
|
|
let footer = '';
|
|
|
|
let color;
|
2019-06-28 17:05:01 +02:00
|
|
|
|
2019-07-01 21:15:45 +02:00
|
|
|
if (text.includes('[embedImage:')) {
|
|
|
|
image = text.split(/(\[embedImage:.*?])/);
|
2019-06-28 17:05:01 +02:00
|
|
|
|
2019-07-01 21:15:45 +02:00
|
|
|
for (let i = 0, l = image.length; i < l; i++) {
|
|
|
|
if (image[i].includes('[embedImage:')) {
|
|
|
|
image = image[i].replace('[embedImage:', '').slice(0, -1);
|
|
|
|
text = text.replace(/(\[embedimage:.*?])/g, '');
|
|
|
|
i = image.length;
|
2019-02-10 16:23:49 +01:00
|
|
|
}
|
2019-02-10 01:49:01 +01:00
|
|
|
}
|
2019-07-01 21:15:45 +02:00
|
|
|
}
|
2019-06-28 17:05:01 +02:00
|
|
|
|
2019-07-01 21:15:45 +02:00
|
|
|
if (text.includes('[embedThumbnail:')) {
|
|
|
|
thumbnail = text.split(/(\[embedThumbnail:.*?])/);
|
2019-06-28 17:05:01 +02:00
|
|
|
|
2019-07-01 21:15:45 +02:00
|
|
|
for (let i = 0, l = thumbnail.length; i < l; i++) {
|
|
|
|
if (thumbnail[i].includes('[embedThumbnail:')) {
|
|
|
|
thumbnail = thumbnail[i].replace('[embedThumbnail:', '').slice(0, -1);
|
|
|
|
text = text.replace(/(\[embedThumbnail:.*?])/g, '');
|
|
|
|
i = thumbnail.length;
|
2019-02-10 16:23:49 +01:00
|
|
|
}
|
2019-02-10 02:11:53 +01:00
|
|
|
}
|
2019-07-01 21:15:45 +02:00
|
|
|
}
|
2019-06-28 17:05:01 +02:00
|
|
|
|
2019-07-01 21:15:45 +02:00
|
|
|
if (text.includes('[embedColor:')) {
|
|
|
|
color = text.split(/(\[embedColor:.*?])/);
|
|
|
|
for (let i = 0, l = color.length; i < l; i++) {
|
|
|
|
if (color[i].includes('[embedColor:')) {
|
|
|
|
color = color[i].replace('[embedColor:', '').slice(0, -1);
|
|
|
|
text = text.replace(/(\[embedColor:.*?])/g, '');
|
|
|
|
i = color.length;
|
2019-02-10 16:23:49 +01:00
|
|
|
}
|
2019-02-10 01:49:01 +01:00
|
|
|
}
|
2019-07-01 21:15:45 +02:00
|
|
|
}
|
2019-06-28 17:05:01 +02:00
|
|
|
|
|
|
|
|
2019-07-01 21:15:45 +02:00
|
|
|
if (text.includes('[embedTitle:')) {
|
|
|
|
title = text.split(/(\[embedTitle:.*?])/);
|
|
|
|
for (let i = 0, l = title.length; i < l; i++) {
|
|
|
|
if (title[i].includes('[embedTitle:')) {
|
|
|
|
title = title[i].replace('[embedTitle:', '').slice(0, -1);
|
|
|
|
text = text.replace(/(\[embedTitle:.*?])/g, '');
|
|
|
|
i = title.length;
|
2019-02-10 16:23:49 +01:00
|
|
|
}
|
2019-02-10 01:49:01 +01:00
|
|
|
}
|
2019-07-01 21:15:45 +02:00
|
|
|
}
|
2019-06-28 17:05:01 +02:00
|
|
|
|
2019-07-01 21:15:45 +02:00
|
|
|
if (text.includes('[embedFooter:')) {
|
|
|
|
footer = text.split(/(\[embedFooter:.*?])/);
|
|
|
|
for (let i = 0, l = footer.length; i < l; i++) {
|
|
|
|
if (footer[i].includes('[embedFooter:')) {
|
|
|
|
footer = footer[i].replace('[embedFooter:', '').slice(0, -1);
|
|
|
|
text = text.replace(/(\[embedFooter:.*?])/g, '');
|
|
|
|
i = footer.length;
|
2019-06-28 17:05:01 +02:00
|
|
|
}
|
|
|
|
}
|
2019-07-01 21:15:45 +02:00
|
|
|
}
|
2019-06-28 17:05:01 +02:00
|
|
|
|
2019-07-01 21:15:45 +02:00
|
|
|
if (text.includes('[embedDesc:')) {
|
|
|
|
desc = text.split(/(\[embedDesc:.*?])/);
|
|
|
|
for (let i = 0, l = desc.length; i < l; i++) {
|
|
|
|
if (desc[i].includes('[embedDesc:')) {
|
|
|
|
desc = desc[i].replace('[embedDesc:', '').slice(0, -1);
|
|
|
|
i = desc.length;
|
2019-02-10 16:23:49 +01:00
|
|
|
}
|
2019-02-10 02:09:42 +01:00
|
|
|
}
|
2019-07-01 21:15:45 +02:00
|
|
|
}
|
2019-06-28 17:05:01 +02:00
|
|
|
|
2019-07-01 21:15:45 +02:00
|
|
|
const embed = new MessageEmbed()
|
|
|
|
.setColor(color)
|
|
|
|
.setTitle(title)
|
|
|
|
.setImage(image)
|
|
|
|
.setThumbnail(thumbnail)
|
|
|
|
.setDescription(desc)
|
|
|
|
.setFooter(footer)
|
|
|
|
.setTimestamp();
|
2019-06-28 17:05:01 +02:00
|
|
|
|
|
|
|
|
2019-05-09 21:34:01 +02:00
|
|
|
if (attach) {
|
2019-07-01 21:15:45 +02:00
|
|
|
return message.channel.send(embed, {files: [attach]});
|
2019-05-09 21:34:01 +02:00
|
|
|
} else {
|
2019-07-01 21:15:45 +02:00
|
|
|
return message.channel.send(embed);
|
2019-05-09 21:34:01 +02:00
|
|
|
}
|
2019-07-01 21:15:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (attach) {
|
|
|
|
return message.channel.send(text, {files: [attach]});
|
|
|
|
} else {
|
|
|
|
return message.channel.send(text);
|
|
|
|
}
|
|
|
|
}
|
2019-02-10 16:23:49 +01:00
|
|
|
}
|
2019-01-02 19:05:32 +01:00
|
|
|
}
|
2019-01-02 08:09:45 +01:00
|
|
|
}
|
2018-12-30 01:20:24 +01:00
|
|
|
}
|
|
|
|
|
2019-01-02 21:46:12 +01:00
|
|
|
module.exports = messageListener;
|