-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbot.js
213 lines (195 loc) · 5.72 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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
const Discord = require('discord.js');
const {
createAudioPlayer,
getVoiceConnection,
NoSubscriberBehavior,
} = require('@discordjs/voice');
const { joinVoiceChannel } = require('@discordjs/voice');
const plugins = require('./commands');
class BobTheBot {
constructor(config, failOnCommandError = false) {
this.config = config;
this.failOnCommandError = failOnCommandError;
}
resetProperties() {
this.plugins = [];
this.registeredCommands = {};
this.authToken = this.config.authToken;
this.allowOwnBotMessages = false;
this.client = new Discord.Client({
intents: [
Discord.GatewayIntentBits.Guilds,
Discord.GatewayIntentBits.DirectMessages,
Discord.GatewayIntentBits.GuildVoiceStates,
Discord.GatewayIntentBits.GuildMessages,
Discord.GatewayIntentBits.MessageContent,
],
});
this.audioResource = null;
this.audioPlayer = createAudioPlayer(1);
this.currentVoiceChannel = null;
}
async init() {
this.resetProperties();
await this.client.login(this.authToken);
this.client.on('messageCreate', (msg) => this.onMessage(msg));
await this.client.user.setActivity();
this.enableAutoVoiceLeave();
this.userId = this.client.user.id;
}
async stop() {
this.client.destroy();
}
/**
* @param {string} content
* @param {Discord.MessageMentions} mentions
* @returns
*/
messageIsDirectedAtBot(content, mentions) {
for (const mentionedUser of mentions.users) {
if (mentionedUser.id === this.userId) {
return true;
}
}
if (content.indexOf('!') === 0) {
return true;
}
return false;
}
/**
* @param {Discord.Message} msg
*/
async onMessage(msg) {
if (!this.allowOwnBotMessages && msg.author.id === this.userId) {
return;
}
if (!this.messageIsDirectedAtBot(msg.content, msg.mentions)) {
await this.checkMessageListeners(msg);
return;
}
let content = msg.content.replace(`<@${this.userId}> `, '');
content = content.replace('!', '');
const [command] = content.split(' ');
console.log(`Message directed at bot found: ${content} by: ${msg.author.username}`);
try {
await this.callBotCommand(command, msg);
if (this.config.deleteProcessedMessages) {
await msg.delete();
}
} catch (error) {
if (this.failOnCommandError) {
throw error;
} else {
console.warn('Command Failed', content, error);
}
}
}
async checkMessageListeners(msg) {
for (const plugin of this.plugins) {
if (plugin.messageListener) {
try {
await plugin.messageListener(msg);
} catch (error) {
if (this.failOnCommandError) {
throw error;
} else {
console.error(`Error in a messageListener:
Error: ${error}
Plugin: ${plugin.constructor.name}`);
console.error(error);
}
}
}
}
}
async callBotCommand(command, msg) {
const { plugin } = this.registeredCommands[command] || {};
if (!plugin) {
throw new Error('Not a valid Command');
}
await plugin.messageHandler(command, msg, this);
}
async loadPlugins() {
// Register all commands in the plugin folder
for (const Plugin of plugins) {
const newPlugin = new Plugin(this);
if (newPlugin.init) {
await newPlugin.init();
}
this.plugins.push(newPlugin);
newPlugin.getCommands().forEach((command) => {
this.registeredCommands[command.name] = {
description: command.description,
plugin: newPlugin,
};
});
}
console.log(this.registeredCommands);
}
async getVoiceConnection(guildId) {
if (!guildId) {
throw Error('No guild id specified for voice connection');
}
return getVoiceConnection(guildId);
}
async playAudioResource(guildId, resource, startVolume = 0.6) {
const player = this.audioPlayer;
(await getVoiceConnection(guildId)).subscribe(player);
player.play(resource);
player.on('error', (error) => {
console.log(error);
});
player.on('debug', (debug) => console.log(debug));
resource.volume.setVolume(startVolume);
}
getCurrentAudioResource() {
return this.audioResource;
}
enableAutoVoiceLeave() {
this.client.on('voiceStateUpdate', async (oldState, newState) => {
if (newState.channelId) return;
const channel = await oldState.channel.fetch();
if (channel.members.filter((val) => val.id !== this.userId).size === 0) {
this.leaveVoiceChannel(channel.guildId);
}
});
}
async joinVoiceChannel(foundChannel) {
console.log(foundChannel);
await joinVoiceChannel({
channelId: foundChannel.id,
guildId: foundChannel.guild.id,
adapterCreator: foundChannel.guild.voiceAdapterCreator,
});
this.currentVoiceChannel = foundChannel;
}
async leaveVoiceChannel(guildId) {
const voiceConnection = await getVoiceConnection(guildId);
if (!voiceConnection) {
this.currentVoiceChannel = null;
return;
}
voiceConnection.destroy();
this.currentVoiceChannel = null;
}
async getVoiceChannelOfUser(msg) {
console.log(msg);
const channels = await msg.guild.channels.fetch();
console.log(channels);
const voiceChannels = channels
.filter((channel) => channel.type === Discord.ChannelType.GuildVoice);
const authorChannel = voiceChannels.find(
(channel) => channel.members.find((member) => member.id === msg.author.id),
);
return authorChannel;
}
createNewAudioPlayer() {
this.audioPlayer.stop();
this.audioPlayer = createAudioPlayer({
behaviors: NoSubscriberBehavior.Play,
});
}
}
module.exports = {
BobTheBot,
};