2020-04-20 16:56:23 +00:00
|
|
|
const {
|
|
|
|
Client,
|
2020-06-08 12:39:32 +00:00
|
|
|
Collection,
|
|
|
|
Intents
|
2020-04-20 16:56:23 +00:00
|
|
|
} = require("discord.js");
|
2020-04-19 17:00:16 +00:00
|
|
|
const admin = require("firebase-admin");
|
|
|
|
const serviceAccount = require("./config/serviceAccount.json");
|
|
|
|
const fs = require("fs");
|
|
|
|
const path = require("path");
|
2020-07-12 16:08:53 +00:00
|
|
|
const SpotifyApi = require("spotify-web-api-node");
|
|
|
|
const YouTube = require("simple-youtube-api");
|
|
|
|
const config = require("./config/config");
|
2020-02-05 20:02:53 +00:00
|
|
|
|
2020-06-08 12:39:32 +00:00
|
|
|
const myIntents = new Intents();
|
|
|
|
myIntents.add(
|
|
|
|
1 << 0, // GUILDS
|
|
|
|
1 << 7, // GUILD_VOICE_STATES
|
|
|
|
1 << 9, // GUILD_MESSAGES
|
|
|
|
);
|
|
|
|
|
2020-02-05 20:02:53 +00:00
|
|
|
module.exports = class extends Client {
|
2020-04-19 17:00:16 +00:00
|
|
|
constructor() {
|
|
|
|
super({
|
|
|
|
disableEveryone: true,
|
|
|
|
disabledEvents: ["TYPING_START"],
|
2020-06-08 12:39:32 +00:00
|
|
|
ws: {
|
|
|
|
intents: myIntents
|
|
|
|
}
|
2020-04-19 17:00:16 +00:00
|
|
|
});
|
2020-03-19 14:45:05 +00:00
|
|
|
|
2020-04-19 17:00:16 +00:00
|
|
|
admin.initializeApp({
|
|
|
|
credential: admin.credential.cert(serviceAccount),
|
|
|
|
});
|
|
|
|
this.commands = new Collection();
|
|
|
|
this.settingCmd = new Collection();
|
|
|
|
this.queue = new Map();
|
2020-07-12 16:08:53 +00:00
|
|
|
this.spotify = new SpotifyApi({
|
|
|
|
id: config.spotify_client_id,
|
|
|
|
secret: config.spotify_client_secret,
|
|
|
|
});
|
2020-07-12 16:16:54 +00:00
|
|
|
this.youtube = new YouTube(config.api_keys[(this.shard.ids / 2).toFixed()] || client.config.api_key);
|
2020-07-12 16:08:53 +00:00
|
|
|
this.config = config;
|
2020-04-19 17:00:16 +00:00
|
|
|
this.funcs = {};
|
|
|
|
this.dispatcher = {};
|
2020-04-20 16:56:23 +00:00
|
|
|
this.messages = require("./config/messages.js");
|
2020-04-19 17:00:16 +00:00
|
|
|
this.db = admin.firestore();
|
|
|
|
this.db.FieldValue = require("firebase-admin").firestore.FieldValue;
|
|
|
|
this.global = {
|
|
|
|
db: {
|
|
|
|
guilds: {},
|
|
|
|
},
|
|
|
|
};
|
2020-06-23 18:05:44 +00:00
|
|
|
this.logs = [];
|
2020-02-05 20:02:53 +00:00
|
|
|
|
2020-04-19 17:00:16 +00:00
|
|
|
fs.readdirSync(path.join(__dirname, "funcs")).forEach((filename) => {
|
|
|
|
this.funcs[filename.slice(0, -3)] = require(`./funcs/${filename}`);
|
|
|
|
});
|
2020-02-05 20:02:53 +00:00
|
|
|
|
2020-04-19 17:00:16 +00:00
|
|
|
const commandFiles = fs
|
|
|
|
.readdirSync(path.join(path.dirname(__dirname), "commands"))
|
2020-04-20 16:56:23 +00:00
|
|
|
.filter((f) => f.endsWith(".js"));
|
2020-04-19 17:00:16 +00:00
|
|
|
for (const file of commandFiles) {
|
|
|
|
const command = require(`../commands/${file}`);
|
|
|
|
command.uses = 0;
|
|
|
|
this.commands.set(command.name, command);
|
|
|
|
}
|
|
|
|
const settingFiles = fs
|
|
|
|
.readdirSync(path.join(path.dirname(__dirname), "commands/settings"))
|
2020-04-20 16:56:23 +00:00
|
|
|
.filter((f) => f.endsWith(".js"));
|
2020-04-19 17:00:16 +00:00
|
|
|
for (const file of settingFiles) {
|
|
|
|
const option = require(`../commands/settings/${file}`);
|
|
|
|
this.settingCmd.set(option.name, option);
|
|
|
|
}
|
|
|
|
if (this.config.devMode) {
|
|
|
|
this.config.token = this.config.devToken;
|
|
|
|
}
|
2020-02-05 20:02:53 +00:00
|
|
|
|
2020-06-21 21:41:30 +00:00
|
|
|
require("../events/clientEvents/handler.js")(this);
|
2020-06-09 19:11:12 +00:00
|
|
|
|
2020-04-19 17:00:16 +00:00
|
|
|
this.login(this.config.token).catch((err) =>
|
|
|
|
console.log("Failed to login: " + err)
|
|
|
|
);
|
|
|
|
}
|
2020-04-20 16:56:23 +00:00
|
|
|
};
|