-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
129 lines (105 loc) · 3.27 KB
/
index.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
require('dotenv').config();
const Discord = require('discord.js');
const db = require('./db');
const { play, handleEntrance, registerMusic } = require('./music');
const bot = new Discord.Client();
const { TOKEN } = process.env;
const prefix = '~';
const helpScreen = {
color: '#fed049',
title: 'BeachBot commands',
author: {
name: '',
url: 'https://github.com/jamesdools/beach-bot',
},
description: 'Everyone deserves entrance music.',
fields: [
{
name: '\u200B',
value: '━━━━',
},
{
name: '`~entrance` \t url \t start \t end',
value: 'Set your entrance music for when you enter a voice channel.',
},
{
name: 'Example usage:',
value: '`~entrance https://www.youtube.com/watch?v=TzaVd6zl2bA 1:20 1:36`'
},
{
name: 'url',
value: 'Must be a valid YouTube link.' +
'\nTip: _add < > around url to stop the video preview from showing in the channel._',
},
{
name: 'start / end',
value: 'Both optional. If given, must be a valid timestamp, eg. 0:25 or 2:21.',
},
{
name: '\u200B',
value: '━━━━',
},
{
name: '`~entrance` \t **on** | **off**',
value: 'Enable or disable entrance music.',
},
],
image: {
url: 'https://media.tenor.com/images/057161e766253130ca174e0b3740c0cd/tenor.gif',
}
};
const updateSettings = async (message, entranceMusicIsOn) => {
const user = message.author.id;
const name = message.author.username;
const userSettings = await db.get(user);
if (!userSettings) {
return message.channel.send('You haven\'t registered any entrance music!');
}
await db.saveSetting(user, entranceMusicIsOn);
const result = entranceMusicIsOn ? 'enabled' : 'disabled';
message.channel.send(`Entrance music for **${name}** ${result}.`);
}
// Establishing connection
bot.login(TOKEN);
bot.once('ready', () => {
console.log('BeachBot is ready! 🤘 👕 🏖');
});
bot.once('reconnecting', () => {
console.log('Reconnecting!');
});
bot.once('disconnect', () => {
console.log('Disconnect!');
});
bot.on('message', async (message) => {
if (message.author.bot) return;
if (!message.content.startsWith(prefix)) return;
if (message.content.startsWith(prefix + 'beach')) {
return message.channel.send('shirt!');
}
if (message.content.startsWith(prefix + 'help')) {
return message.channel.send({ embed: helpScreen });
}
// Entrance commands
if (message.content === prefix + 'entrance on') {
await updateSettings(message, true);
} else if (message.content === prefix + 'entrance off') {
await updateSettings(message, false);
} else if (message.content.startsWith(prefix + 'entrance')) {
await registerMusic(message);
}
});
bot.on('voiceStateUpdate', async (oldState, newState) => {
const oldChannel = oldState.channelID;
const newChannel = newState.channelID;
const name = newState.member.user.username;
const isBot = newState.member.user.bot;
if (isBot) return;
if (!oldChannel && newChannel) {
console.log(`User joined channel: ${name}`);
await handleEntrance(newState);
} else if (oldChannel && !newChannel) {
// TODO: Switching between channels
// TODO: exit music?
console.log(`User left the channel: ${name}`);
}
});