aboutsummaryrefslogtreecommitdiff
path: root/bot.js
blob: 9376c2a27730634aa27d98f30e231965f5721de2 (plain) (blame)
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
/**************************************************************************
 *
 *  DLAP Bot: A Discord bot that plays local audio tracks.
 *  (C) Copyright 2022
 *  Programmed by Andrew Lee
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <https://www.gnu.org/licenses/>.
 *
 ***************************************************************************/
import { Client, Events, GatewayIntentBits, EmbedBuilder, Collection, version, InteractionType } from 'discord.js';
import { voiceInit } from './AudioBackend/VoiceInitialization.js';
import { readdirSync, readFileSync } from 'node:fs';
import i18next from './Utilities/i18n.js';
// import config from './config.json' assert { type: 'json' } Not supported by ESLint yet
const { token, statusChannel, voiceChannel, djRole, ownerID, shuffle, repeat, presenceActivity, activityType } = JSON.parse(readFileSync('./config.json', 'utf-8'));
const bot = new Client({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildVoiceStates] });
const t = i18next.t;
bot.login(token);

// Slash Command Handler

bot.commands = new Collection();
const commandFiles = readdirSync('./Commands').filter(file => file.endsWith('.js'));

for (const file of commandFiles) {
  const { default: command } = await import(`./Commands/${file}`);
  bot.commands.set(command.data.name, command);
}

bot.once(Events.ClientReady, async() => {
  console.log(t('botReady'));
  console.log(t('loggedIn', { bot: bot.user.tag }));
  console.log(t('discordVersion', { version }));
  console.log(t('voiceChannel', { voiceChannel }));
  console.log(t('statusChannel', { statusChannel }));
  console.log(t('djRole', { djRole }));
  console.log(t('ownerID', { ownerID }));
  console.log(t('shuffleEnabled', { shuffle }));
  console.log(t('repeatEnabled', { repeat }));

  // Set bots' presence
  bot.user.setPresence({
    activities: [{
      name: presenceActivity,
      type: activityType
    }],
    status: 'online'
  });

  const activity = bot.presence.activities[0];
  console.log(t('presenceSet', { activity: activity.name }));

  // Send bots' status to channel
  const readyEmbed = new EmbedBuilder()
    .setAuthor({ name: bot.user.username, iconURL: bot.user.avatarURL() })
    .setDescription(t('startingBot'))
    .setColor('#0066ff');

  const channel = bot.channels.cache.get(statusChannel);
  if (!channel) return console.error(t('statusChannelError'));
  await channel.send({ embeds: [readyEmbed] });

  return await voiceInit(bot);
});

bot.on(Events.InteractionCreate, async interaction => {
  if (interaction.type === !InteractionType.ApplicationCommand) return;
  if (!interaction.isChatInputCommand()) return;
  const command = bot.commands.get(interaction.commandName);

  if (!command) return;

  try {
    await command.execute(interaction, bot);
  } catch (e) {
    console.error(e);
    await interaction.reply({ content: t('exception', { e }), ephemeral: true });
  }
});