-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.js
197 lines (175 loc) · 6.51 KB
/
bot.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
const Discord = require('discord.js');
const auth = require('./auth.json');
const User = require('./user');
const setupLogger = require('./logger');
const ballGag = require('./gags/prototypeGag');
const latex = require('./gags/latex');
const muzzleGag = require('./gags/muzzle');
const logger = setupLogger(auth.dev);
// Initialize Discord Bot
const bot = new Discord.Client();
bot.login(auth.token);
bot.on('ready', function (_evt) {
logger.info('Connected');
logger.info('Logged in as: ');
logger.info(bot.user.tag);
});
let gaggedList = [];
let gagList = {
'ball': ballGag,
'latex': latex,
'muzzle': muzzleGag,
'default' : ballGag
};
bot.on('message', msg => {
// Our bot needs to know if it will execute a command
// It will listen for messages that will start with `!`
let message = msg.content;
let user = msg.author;
let channel = msg.channel;
let guild = msg.guild;
logger.info(message);
logger.info(user.username);
logger.info(user.id);
logger.info(channel.id);
logger.info(guild.id);
if (isCommand(message)) {
var args = message.substring(1).split(' ');
var cmd = args[0];
args = args.splice(1);
switch(cmd.toLowerCase()) {
case 'gag':
gagSomeone(gaggedList, channel, args);
break;
case 'ungag':
ungagSomeone(gaggedList, channel, args);
break;
case 'gaglist':
listGaggedUsers(gaggedList, channel);
break;
case 'gaghelp':
help(channel);
break;
}
return;
}
if(isAlwaysCommand(message))return;
if(userIsGagged(`<@${user.id}>`, gaggedList, channel.id)){
gagMessage(`<@${user.id}>`, msg, message, channel, user.id);
}
});
function gagSomeone(gaggedList, channel, args){
let gagType = 'default';
let userName = args[0];
if(args.length >= 2){
gagType = args[1];
}
userName = userName.replace('!','');
let gaggedUser = new User(userName, gagType, channel.id);
if(userIsGagged(userName, gaggedList, channel.id)){
sendErrorEmbed(`User ${gaggedUser.name} is already gagged!`, channel);
return;
}
if(userName == `<@${bot.user.id}>`){
sendErrorEmbed(`Cannot gag Muffle-bot!`, channel);
return;
}
gaggedList.push(gaggedUser);
let embed = new Discord.MessageEmbed()
.setAuthor('Muffle Gag!', bot.user.displayAvatarURL())
.setColor(0xffffff)
.setDescription(`User gagged: ${gaggedUser.name} !`);
channel.send(embed);
}
function ungagSomeone(list, channel, args){
let ungaggedUser = args.join(' ');
ungaggedUser = ungaggedUser.replace('!','');
if(!userIsGagged(ungaggedUser, list, channel.id)){
sendErrorEmbed(`User ${ungaggedUser} is not currently gagged!`, channel);
return;
}
gaggedList = removeFromList(ungaggedUser, list, channel.id);
let embed = new Discord.MessageEmbed()
.setAuthor('Muffle Ungag!', bot.user.displayAvatarURL())
.setColor(0xffffff)
.setDescription(`User ungagged: ${ungaggedUser} !`);
channel.send(embed);
}
function listGaggedUsers(gaggedList, channel){
let channelGaggedList = gaggedList.filter(x => x.channel === channel.id).map(x => `${x.name} - ${x.gag}`);
channelGaggedList.push('\u200B');
let embed = new Discord.MessageEmbed()
.setAuthor('Muffle Gag List!', bot.user.displayAvatarURL())
.setColor(0xffffff)
.addField('Gagged Users in this channel', channelGaggedList.join('\n'));
channel.send(embed);
}
function userIsGagged(gaggedUser, gaggedList, channel){
let count = gaggedList.filter(x => x.name === gaggedUser && x.channel === channel).length;
return count !== 0;
}
async function gagMessage(user, msg, message, channel, userId){
msg.delete().catch(_err => {
logger.info(`${msg.guild.name} ${msg.guild.id} GAGGED`);
});
let gaggedMessage = convertToGagType(message, user, channel.id);
let embed = await buildGagEmbed(user, gaggedMessage, userId);
channel.send(embed);
}
async function buildGagEmbed(user, gaggedMessage, userId){
let discord_user = await bot.users.fetch(userId.replace('!', ''));
return new Discord.MessageEmbed()
.setAuthor(discord_user.tag, discord_user.displayAvatarURL())
.setColor(0x8af7bd)
.setDescription(gaggedMessage);
}
function removeFromList(user, list, channel){
return list.filter(x => !(x.name === user && x.channel === channel));
}
function sendErrorEmbed(message, channel){
let embed = new Discord.MessageEmbed()
.setAuthor('Muffle Gag!', bot.user.displayAvatarURL())
.setColor(0xaa0000)
.setDescription(`Error: ${message}!`);
channel.send(embed);
}
function convertToGagType(message, user, channel){
let userObject = gaggedList.filter(x => x.name === user && x.channel === channel)[0];
let gagKey = Object.keys(gagList).filter(x => x === userObject.gag.toLowerCase());
if(gagKey.length === 0){
gagKey = 'default';
}
else{
gagKey = gagKey[0];
}
return gagList[gagKey](message);
}
function isCommand(message){
let prefix = message.substring(0, 1);
if(auth.dev){
return prefix === '!';
}
return prefix === '$';
}
function isAlwaysCommand(message){
let prefix = message.substring(0, 1);
return prefix === '$' || prefix === '!';
}
function help(channel){
let embed = new Discord.MessageEmbed()
.setAuthor('Muffle Help!', bot.user.displayAvatarURL())
.setColor(0xffffff)
.setDescription('List of avalaible commands')
.addField('`$gag <@DiscordUserName> [gagType]`', `Gags the user in the current channel with the provided gagType. \n List of available gagType : ${Object.keys(gagList)}`)
.addField('`$ungag <@DiscordUserName>`', 'Ungags the user in the current channel.')
.addField('`$gaghelp`', 'Display this message.')
.addField('`$gaglist`', 'Obtain a list of currently gagged users in this channel.')
.addField('Additional Information:', `
When someone is gagged all of the messages they post in the channel are intercepted by this bot.
Only their commands(messages starting by \`$\`) are not intercepted.
Descriptions (in italics, between \`* *\` or \`_ _\`) do not get muffled.
Out Of Character (between parentheses, \`()\`) do not get muffled. Make sure to double check your parentheses match correctly~
For commands, parameters between \`<>\` are mandatory, while those between \`[]\` are optional.
`);
channel.send(embed);
}