-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbot.js
343 lines (265 loc) · 10.5 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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
const Discord = require("discord.js");
const { Collection } = require("discord.js")
const cooldowns = new Collection()
const client = new Discord.Client({
disableMentions: "everyone"
});
require("dotenv").config();
let config = require("./config.js");
const YouTube = require("simple-youtube-api");
const ytdl = require("ytdl-core");
const api = config.yt_api;
const youtube = new YouTube(api);
const music = new Map();
const { Util } = require("discord.js")
const fs = require("fs");
client.embed = Discord.MessageEmbed;
client.guildConfig = require("quick.db")
client.login(config.token)
client.commands = new Discord.Collection();
client.modules = new Discord.Collection();
client.aliases = new Discord.Collection();
require("./src/module.js")(client, fs)
// events
client.on("ready", () => {
client.user.setActivity("Saturday Nights - Chill out music mix - Khalid, Ali Gatie, Jeremy Zucker...", {type: "PLAYING"})
client.voices = new Map()
console.log(`Login as ${client.user.username}`)
let joinforcreate = require("./src/jfc/joinforcreate.js");
joinforcreate(client)
});
let prefix = config.prefix;
client.on("voiceStateUpdate", async (oldS, newS) => {
let _loe = client.guildConfig.get(`config.${oldS.guild.id}.leaveOnEmpty`);
if (_loe) {
if (music.get(oldS.guild.id)) {
if (music.get(oldS.guild.id).voiceChannel.id == oldS.channelID) {
try {
if (oldS.channel.members.size < 2) {
setTimeout(function() {
if (oldS.channel.members.size < 2) {
music.get(oldS.guild.id).voiceChannel.leave();
music.delete(oldS.guild.id);
} else {
return;
}
}, 60000)
}
} catch (e) {
console.log(`oh no ${e}`)
}
}
}
} else if (!_loe) {
return;
}
})
client.on("guildCreate", async guild => {
client.guildConfig.set(`config.${guild.id}`, {
leaveOnEmpty: true
})
});
client.on("guildDelete", async guild => {
if (client.guildConfig.get(`config.${guild.id}`)) {
client.guildConfig.delete(`config.${guild.id}`);
}
});
client.on("message", async message => {
if (!message.content.startsWith(prefix)) return;
if (message.author.bot) return;
const args = message.content.toLowerCase().slice(prefix.length).trim().split(/ +/g);
let cmd = args.shift();
const url = args[1] ? args[1].replace(/<(.+)>/g, "$1") : "";
client.url = url;
let command = client.commands.get(cmd) || client.commands.get(client.aliases.get(cmd));
if (!command) return;
if (!cooldowns.has(command.config.name)) {
cooldowns.set(command.config.name, new Collection());
}
let member = message.author;
const now = Date.now();
const timestamps = cooldowns.get(command.config.name);
const cooldownAmount = (command.config.cooldown || 10) * 1000;
if (!timestamps.has(member.id)) {
timestamps.set(member.id, now);
} else {
const expirationTime = timestamps.get(member.id) + cooldownAmount;
if (now < expirationTime) {
const timeLeft = (expirationTime - now) / 1000;
return message.channel.send(`⏲️ <@${message.author.id}> - **Please wait \`${timeLeft.toFixed(1)}s\`**`).then(m => {
m.delete({
timeout: 5000
})
})
}
timestamps.set(member.id, now);
setTimeout(() => timestamps.delete(member.id), cooldownAmount);
}
command.run(message, client, args, music, config, handleVideo, play, youtube, url)
})
// events akhir
// music function
async function handleVideo(video, message, voiceChannel, playlist = false) {
const serverQueue = music.get(message.guild.id);
let xH = video.duration.hours * 3600000;
let xM = video.duration.minutes * 60000;
let xS = video.duration.seconds * 1000;
let duration;
if (video.duration.hours == 0 && video.duration.minutes == 0 && video.duration.seconds == 0) {
duration = "[LIVE]"
} else if (video.duration.hours !== 0 && video.duration.minutes !== 0 && video.duration.seconds !== 0) {
if (xH + xM + xS < 60000) {
return message.channel.send(`The video cannot be less than 1 minutes, but you can play live stream!`)
}
duration = `${video.duration.hours}h : ${video.durations.minutes}m`
} else {
if (xH + xM + xS < 60000) {
return message.channel.send(`The video cannot be less than 1 minutes, but you can play live stream!`)
}
duration = `${video.duration.hours}h : ${video.duration.minutes}m`
}
const song = {
id: video.id,
title: Util.escapeMarkdown(video.title),
url: `https://www.youtube.com/watch?v=${video.id}`,
thumbnail: video.thumbnails.medium,
duration,
formatDuration: video.duration,
user: message.author,
guild: message.guild,
message
};
if (!serverQueue) {
const queueConstruct = {
textChannel: message.channel,
voiceChannel: voiceChannel,
connection: null,
songs: [],
volume: 100,
playing: true,
loop: false,
shuffle: false,
autoplay: true,
latestSong: song,
stopped: false,
filters: []
};
music.set(message.guild.id, queueConstruct);
music.get(message.guild.id).songs.push(song);
try {
var connection = await voiceChannel.join()
queueConstruct.connection = connection;
play(message, queueConstruct.songs[0]);
connection.voice.setSelfDeaf(true);
} catch (error) {
console.error(`I cannot join voice channel because do not have permission to join or speak!`);
return music.delete(message.guild.id);
}
} else {
serverQueue.songs.push(song);
if (playlist) return;
else return message.channel.send(
new Discord.MessageEmbed()
.setAuthor("New song added to queue!")
.setColor(config.embed)
.setTitle(`**${song.title}** - **${song.duration}**`)
.setDescription(`${song.url}`)
.setImage(song.thumbnail.url)
);
}
return;
}
async function play(message, song) {
const guild = message.guild;
const serverQueue = music.get(guild.id);
if (!song) {
serverQueue.voiceChannel.leave();
serverQueue.textChannel.send(`Wow! looks like no more song in queue, use me again with **${config.prefix}play** \:D`).then(m => m.delete({
timeout: 5000
}))
return music.delete(message.guild.id)
}
const dispatcher = serverQueue.connection.play(ytdl(song.url), {
quality: "highestaudio",
encoderArgs: ['-af', serverQueue.filters]
}, {filter: "audioonly", type: "opus"})
.on("finish", async () => {
try {
if (serverQueue.stopped) {
serverQueue.songs = [];
serverQueue.voiceChannel.leave();
return music.delete(message.guild.id)
}
const shiffed = serverQueue.songs.shift();
if (serverQueue.loop) {
serverQueue.latestSong = shiffed;
serverQueue.songs.push(shiffed);
return play(message, serverQueue.songs[0]);
};
if (!serverQueue.songs[1]) {
if (serverQueue.autoplay) {
let _related = await ytdl.getInfo(serverQueue.latestSong.id);
let related = _related.response.contents.twoColumnWatchNextResults.autoplay.autoplay.sets[0].autoplayVideo.watchEndpoint.videoId;
let video = await youtube.getVideoByID(related)
let duration
if (video.duration.hours == 0 && video.duration.minutes == 0 && video.duration.seconds == 0) {
duration = "[LIVE]"
} else if (video.duration.hours !== 0 && video.duration.minutes !== 0 && video.duration.seconds !== 0) {
duration = `${video.duration.hours}h : ${video.duration.minutes}m`
} else {
duration = `${video.duration.hours}h : ${video.duration.minutes}m`
}
let songConstructor =
{
id: video.id,
title: Util.escapeMarkdown(video.title),
url: `https://www.youtube.com/watch?v=${video.id}`,
thumbnail: video.thumbnails.medium,
duration,
formatDuration: video.durationSeconds,
user: client.user,
guild: message.guild,
message
}
serverQueue.songs.push(songConstructor)
return play(message, serverQueue.songs[0])
} else if (!serverQueue.autoplay) {
serverQueue.voiceChannel.leave();
serverQueue.textChannel.send(`No more song in queue, so i will leave from voice :D`).then(m => {
m.delete({
timeout: 5000
})
})
return music.delete(message.guild.id)
}
} else {
return play(message, serverQueue.songs[0])
}
} catch (e) {
serverQueue.textChannel.send("Cannot play this music, try another music, im sorry :c\n" + e)
}
})
.on("error", error => message.channel.send(`i have a error while playing this video, try again`));
dispatcher.setVolume(serverQueue.volume / 100);
serverQueue.textChannel.send(new Discord.MessageEmbed()
.setAuthor(`Now playing - ${song.user.username}`)
.setColor(config.embed)
.setDescription(`**${song.title}** - **${song.duration}**\n\nLoop: **${serverQueue.loop ? "on" : "off"}** | Volume: **${serverQueue.volume}** | Autoplay: **${serverQueue.autoplay ? "on" : "off"}** | Requested by: **${song.user.tag} ${song.user.bot ? "[BOT]" : ""}**`)
.setImage(song.thumbnail.url)
.setFooter(`${song.url}`)).then(m => {
m.react("🔁");
m.react("⏭️");
m.react("⏯️");
m.react("🔈");
m.react("🔉");
m.react("🔊");
m.react("🗑️");
const { createReactionMusic } = require("./src/reaction/play.js");
createReactionMusic(m, song, message, client, serverQueue);
})
}
module.exports = {
client,
Discord,
youtube
}