2017-09-29 23:21:48 +00:00
|
|
|
// Check for environmental variables.
|
|
|
|
require('checkenv').check();
|
|
|
|
|
2020-05-02 05:35:33 +00:00
|
|
|
import discord = require('discord.js');
|
|
|
|
import path = require('path');
|
|
|
|
// const schedule = require('node-schedule');
|
|
|
|
import fs = require('fs');
|
2016-12-08 03:52:37 +00:00
|
|
|
|
2020-05-02 05:35:33 +00:00
|
|
|
import logger from './logging';
|
|
|
|
import state from './state';
|
|
|
|
import * as data from './data';
|
2016-12-08 03:52:37 +00:00
|
|
|
|
2018-04-03 23:28:33 +00:00
|
|
|
state.responses = require('./responses.json');
|
2017-09-29 23:21:48 +00:00
|
|
|
|
2020-05-02 05:35:33 +00:00
|
|
|
interface IModuleMap {
|
|
|
|
[name: string]: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
let cachedModules: IModuleMap = {};
|
|
|
|
let cachedTriggers: any[] = [];
|
2019-07-22 00:56:54 +00:00
|
|
|
const client = new discord.Client();
|
2016-12-08 03:52:37 +00:00
|
|
|
|
2020-05-02 05:35:33 +00:00
|
|
|
const mediaUsers = new Map();
|
2019-07-22 00:55:55 +00:00
|
|
|
|
2018-04-03 23:28:33 +00:00
|
|
|
logger.info('Application startup. Configuring environment.');
|
|
|
|
|
2020-05-02 05:35:33 +00:00
|
|
|
function findArray(haystack: string | any[], arr: any[]) {
|
|
|
|
return arr.some(function (v: any) {
|
2017-09-29 23:38:00 +00:00
|
|
|
return haystack.indexOf(v) >= 0;
|
|
|
|
});
|
|
|
|
}
|
2016-12-08 03:52:37 +00:00
|
|
|
|
2020-05-02 05:35:33 +00:00
|
|
|
function IsIgnoredCategory(categoryName: string) {
|
2019-08-16 06:51:51 +00:00
|
|
|
const IgnoredCategory = ['welcome', 'team', 'website-team'];
|
|
|
|
return IgnoredCategory.includes(categoryName);
|
2019-08-12 07:44:22 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 05:35:33 +00:00
|
|
|
client.on('ready', async () => {
|
2019-07-22 00:56:54 +00:00
|
|
|
// Initialize app channels.
|
2020-05-02 05:35:33 +00:00
|
|
|
let logChannel = await client.channels.fetch(process.env.DISCORD_LOG_CHANNEL) as discord.TextChannel;
|
|
|
|
let msglogChannel = await client.channels.fetch(process.env.DISCORD_MSGLOG_CHANNEL) as discord.TextChannel;
|
|
|
|
if (!logChannel.send) throw new Error('DISCORD_LOG_CHANNEL is not a text channel!');
|
|
|
|
if (!msglogChannel.send) throw new Error('DISCORD_MSGLOG_CHANNEL is not a text channel!');
|
|
|
|
state.logChannel = logChannel;
|
|
|
|
state.msglogChannel = msglogChannel;
|
2016-12-08 03:52:37 +00:00
|
|
|
|
2017-03-31 01:17:21 +00:00
|
|
|
logger.info('Bot is now online and connected to server.');
|
2016-12-08 03:52:37 +00:00
|
|
|
});
|
|
|
|
|
2018-09-07 01:10:21 +00:00
|
|
|
client.on('error', (x) => {
|
2019-07-22 00:56:54 +00:00
|
|
|
logger.error(x);
|
|
|
|
logger.error('Restarting process.');
|
|
|
|
process.exit(1);
|
|
|
|
});
|
2018-09-07 01:10:21 +00:00
|
|
|
client.on('warn', (x) => {
|
2019-07-22 00:56:54 +00:00
|
|
|
logger.warn(x);
|
|
|
|
});
|
2018-09-07 01:10:21 +00:00
|
|
|
|
2019-07-22 00:56:54 +00:00
|
|
|
client.on('debug', (x) => null);
|
2018-09-07 01:10:21 +00:00
|
|
|
|
|
|
|
client.on('disconnect', () => {
|
2019-07-22 00:56:54 +00:00
|
|
|
logger.warn('Disconnected from Discord server.');
|
|
|
|
});
|
2018-09-07 01:10:21 +00:00
|
|
|
|
2017-09-29 23:38:00 +00:00
|
|
|
client.on('guildMemberAdd', (member) => {
|
2020-05-02 05:35:33 +00:00
|
|
|
member.roles.add(process.env.DISCORD_RULES_ROLE);
|
2017-07-20 01:45:58 +00:00
|
|
|
});
|
|
|
|
|
2019-08-09 18:26:55 +00:00
|
|
|
client.on('messageDelete', message => {
|
2020-05-02 05:35:33 +00:00
|
|
|
let parent = (message.channel as discord.TextChannel).parent;
|
|
|
|
if (parent && IsIgnoredCategory(parent.name) === false) {
|
|
|
|
if (message.content && message.content.startsWith('.') === false && message.author.bot === false) {
|
|
|
|
const deletionEmbed = new discord.MessageEmbed()
|
|
|
|
.setAuthor(message.author.tag, message.author.displayAvatarURL())
|
2020-05-02 07:23:12 +00:00
|
|
|
.setDescription(`Message deleted in ${message.channel.toString()}`)
|
2019-08-12 07:44:22 +00:00
|
|
|
.addField('Content', message.cleanContent, false)
|
|
|
|
.setTimestamp()
|
|
|
|
.setColor('RED');
|
|
|
|
|
|
|
|
state.msglogChannel.send(deletionEmbed);
|
|
|
|
logger.info(`${message.author.username} ${message.author} deleted message: ${message.cleanContent}.`);
|
|
|
|
}
|
2019-08-09 18:26:55 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
client.on('messageUpdate', (oldMessage, newMessage) => {
|
2019-08-16 06:51:51 +00:00
|
|
|
const AllowedRoles = ['Administrators', 'Moderators', 'Team', 'VIP'];
|
2020-05-02 05:35:33 +00:00
|
|
|
if (!findArray(oldMessage.member.roles.cache.map(x => x.name), AllowedRoles)) {
|
|
|
|
let parent = (oldMessage.channel as discord.TextChannel).parent;
|
|
|
|
if (parent && IsIgnoredCategory(parent.name) === false) {
|
2019-08-16 06:51:51 +00:00
|
|
|
const oldM = oldMessage.cleanContent;
|
|
|
|
const newM = newMessage.cleanContent;
|
2020-05-02 05:35:33 +00:00
|
|
|
if (oldMessage.content !== newMessage.content && oldM && newM) {
|
|
|
|
const editedEmbed = new discord.MessageEmbed()
|
|
|
|
.setAuthor(oldMessage.author.tag, oldMessage.author.displayAvatarURL())
|
2020-05-02 07:23:12 +00:00
|
|
|
.setDescription(`Message edited in ${oldMessage.channel.toString()} [Jump To Message](${newMessage.url})`)
|
2019-08-16 06:51:51 +00:00
|
|
|
.addField('Before', oldM, false)
|
|
|
|
.addField('After', newM, false)
|
|
|
|
.setTimestamp()
|
|
|
|
.setColor('GREEN');
|
|
|
|
|
|
|
|
state.msglogChannel.send(editedEmbed);
|
|
|
|
logger.info(`${oldMessage.author.username} ${oldMessage.author} edited message from: ${oldM} to: ${newM}.`);
|
|
|
|
}
|
2019-08-12 07:44:22 +00:00
|
|
|
}
|
2019-08-09 18:26:55 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-12-08 03:52:37 +00:00
|
|
|
client.on('message', message => {
|
2017-09-29 23:38:00 +00:00
|
|
|
if (message.author.bot && message.content.startsWith('.ban') === false) { return; }
|
2016-12-08 03:52:37 +00:00
|
|
|
|
2018-01-20 04:29:33 +00:00
|
|
|
if (message.guild == null && state.responses.pmReply) {
|
2016-12-08 03:52:37 +00:00
|
|
|
// We want to log PM attempts.
|
|
|
|
logger.info(`${message.author.username} ${message.author} [PM]: ${message.content}`);
|
2020-05-02 07:23:12 +00:00
|
|
|
state.logChannel.send(`${message.author.toString()} [PM]: ${message.content}`);
|
2018-01-20 04:29:33 +00:00
|
|
|
message.reply(state.responses.pmReply);
|
2016-12-08 03:52:37 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-02 05:35:33 +00:00
|
|
|
logger.verbose(`${message.author.username} ${message.author} [Channel: ${(message.channel as discord.TextChannel).name} ${message.channel}]: ${message.content}`);
|
2016-12-08 03:52:37 +00:00
|
|
|
|
2019-07-22 00:55:55 +00:00
|
|
|
if (message.channel.id === process.env.DISCORD_MEDIA_CHANNEL && !message.author.bot) {
|
|
|
|
const AllowedMediaRoles = ['Administrators', 'Moderators', 'Team', 'VIP'];
|
2020-05-02 05:35:33 +00:00
|
|
|
if (!findArray(message.member.roles.cache.map(x => x.name), AllowedMediaRoles)) {
|
2019-07-22 00:55:55 +00:00
|
|
|
const urlRegex = new RegExp(/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{2,256}\.[a-z]{2,4}\b([-a-zA-Z0-9@:%_+.~#?&//=]*)/gi);
|
|
|
|
if (message.attachments.size > 0 || message.content.match(urlRegex)) {
|
|
|
|
mediaUsers.set(message.author.id, true);
|
|
|
|
} else if (mediaUsers.get(message.author.id)) {
|
|
|
|
mediaUsers.set(message.author.id, false);
|
|
|
|
} else {
|
|
|
|
message.delete();
|
|
|
|
mediaUsers.set(message.author.id, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-28 00:19:14 +00:00
|
|
|
// Check if the channel is #rules, if so we want to follow a different logic flow.
|
|
|
|
if (message.channel.id === process.env.DISCORD_RULES_CHANNEL) {
|
2019-03-07 04:25:59 +00:00
|
|
|
if (message.content.toLowerCase().includes(process.env.DISCORD_RULES_TRIGGER)) {
|
2018-02-28 00:19:14 +00:00
|
|
|
// We want to remove the 'Unauthorized' role from them once they agree to the rules.
|
|
|
|
logger.verbose(`${message.author.username} ${message.author} has accepted the rules, removing role ${process.env.DISCORD_RULES_ROLE}.`);
|
2020-05-02 05:35:33 +00:00
|
|
|
message.member.roles.remove(process.env.DISCORD_RULES_ROLE, 'Accepted the rules.');
|
2018-02-28 00:19:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete the message in the channel to force a cleanup.
|
|
|
|
message.delete();
|
|
|
|
} else if (message.content.startsWith('.') && message.content.startsWith('..') === false) {
|
|
|
|
// We want to make sure it's an actual command, not someone '...'-ing.
|
2020-05-02 05:35:33 +00:00
|
|
|
const cmd = message.content.split(' ', 1)[0].slice(1);
|
2016-12-08 03:52:37 +00:00
|
|
|
|
|
|
|
// Check by the name of the command.
|
|
|
|
let cachedModule = cachedModules[`${cmd}.js`];
|
|
|
|
let cachedModuleType = 'Command';
|
|
|
|
// Check by the quotes in the configuration.
|
2018-01-20 04:29:33 +00:00
|
|
|
if (cachedModule == null) { cachedModule = state.responses.quotes[cmd]; cachedModuleType = 'Quote'; }
|
2016-12-08 03:52:37 +00:00
|
|
|
|
2020-05-02 05:35:33 +00:00
|
|
|
if (!cachedModule) return; // Not a valid command.
|
2016-12-08 03:52:37 +00:00
|
|
|
|
2020-05-02 05:35:33 +00:00
|
|
|
// Check access permissions.
|
2020-05-02 07:23:12 +00:00
|
|
|
if (cachedModule.roles && findArray(message.member.roles.cache.map(x => x.name), cachedModule.roles) === false) {
|
|
|
|
state.logChannel.send(`${message.author.toString()} attempted to use admin command: ${message.content}`);
|
2020-05-02 05:35:33 +00:00
|
|
|
logger.info(`${message.author.username} ${message.author} attempted to use admin command: ${message.content}`);
|
|
|
|
return false;
|
|
|
|
}
|
2016-12-08 03:52:37 +00:00
|
|
|
|
2020-05-02 05:35:33 +00:00
|
|
|
logger.info(`${message.author.username} ${message.author} [Channel: ${message.channel}] executed command: ${message.content}`);
|
|
|
|
message.delete();
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (cachedModuleType === 'Command') {
|
|
|
|
cachedModule.command(message);
|
|
|
|
} else if (cachedModuleType === 'Quote') {
|
|
|
|
cachedModules['quote.js'].command(message, cachedModule.reply);
|
|
|
|
}
|
|
|
|
} catch (err) { logger.error(err); }
|
|
|
|
|
|
|
|
// Warn after running command?
|
|
|
|
try {
|
|
|
|
// Check if the command requires a warning.
|
|
|
|
if (cmd !== 'warn' && cachedModule.warn === true) {
|
|
|
|
// Access check to see if the user has privileges to warn.
|
|
|
|
const warnCommand = cachedModules['warn.js'];
|
|
|
|
if (findArray(message.member.roles.cache.map(x => x.name), warnCommand.roles)) {
|
|
|
|
// They are allowed to warn because they are in warn's roles.
|
|
|
|
warnCommand.command(message);
|
2018-04-03 23:28:33 +00:00
|
|
|
}
|
2020-05-02 05:35:33 +00:00
|
|
|
}
|
|
|
|
} catch (err) { logger.error(err); }
|
|
|
|
|
2017-09-29 23:38:00 +00:00
|
|
|
} else if (message.author.bot === false) {
|
2016-12-31 05:49:12 +00:00
|
|
|
// This is a normal channel message.
|
2017-09-29 23:38:00 +00:00
|
|
|
cachedTriggers.forEach(function (trigger) {
|
2020-05-02 05:35:33 +00:00
|
|
|
if (trigger.roles === undefined || findArray(message.member.roles.cache.map(x => x.name), trigger.roles)) {
|
2017-09-29 23:38:00 +00:00
|
|
|
if (trigger.trigger(message) === true) {
|
|
|
|
logger.debug(`${message.author.username} ${message.author} [Channel: ${message.channel}] triggered: ${message.content}`);
|
|
|
|
try {
|
|
|
|
trigger.execute(message);
|
|
|
|
} catch (err) { logger.error(err); }
|
2016-12-31 05:49:12 +00:00
|
|
|
}
|
2017-09-29 23:38:00 +00:00
|
|
|
}
|
2016-12-31 05:49:12 +00:00
|
|
|
});
|
2016-12-08 03:52:37 +00:00
|
|
|
}
|
2017-03-31 01:17:21 +00:00
|
|
|
});
|
2016-12-08 03:52:37 +00:00
|
|
|
|
2017-03-31 01:17:21 +00:00
|
|
|
// Cache all command modules.
|
2020-05-02 05:35:33 +00:00
|
|
|
cachedModules = {};
|
|
|
|
fs.readdirSync('./commands/').forEach(function (file) {
|
2017-03-31 01:17:21 +00:00
|
|
|
// Load the module if it's a script.
|
2017-09-29 23:38:00 +00:00
|
|
|
if (path.extname(file) === '.js') {
|
2017-04-07 23:36:45 +00:00
|
|
|
if (file.includes('.disabled')) {
|
|
|
|
logger.info(`Did not load disabled module: ${file}`);
|
|
|
|
} else {
|
|
|
|
logger.info(`Loaded module: ${file}`);
|
|
|
|
cachedModules[file] = require(`./commands/${file}`);
|
|
|
|
}
|
2017-03-31 01:17:21 +00:00
|
|
|
}
|
2016-12-08 03:52:37 +00:00
|
|
|
});
|
|
|
|
|
2017-03-31 01:17:21 +00:00
|
|
|
// Cache all triggers.
|
2017-03-31 01:18:23 +00:00
|
|
|
cachedTriggers = [];
|
2017-03-31 01:17:21 +00:00
|
|
|
|
2018-04-03 23:28:33 +00:00
|
|
|
data.readWarnings();
|
|
|
|
data.readBans();
|
|
|
|
|
|
|
|
// Load custom responses
|
|
|
|
if (process.env.DATA_CUSTOM_RESPONSES) {
|
|
|
|
data.readCustomResponses();
|
|
|
|
}
|
|
|
|
|
2017-09-29 23:21:48 +00:00
|
|
|
client.login(process.env.DISCORD_LOGIN_TOKEN);
|
2017-09-29 23:38:00 +00:00
|
|
|
logger.info('Startup completed. Established connection to Discord.');
|