This repository has been archived by the owner on May 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
93 lines (78 loc) · 3.51 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
// This will check if the node version you are running is the required
// Node version, if it isn't it will throw the following error to inform
// you.
if (process.version.slice(1).split(".")[0] < 8) throw new Error("Node 8.0.0 or higher is required. Update Node on your system.");
// Load up the discord.js library
const Discord = require("discord.js");
// We also load the rest of the things we need in this file:
const { promisify } = require("util");
const readdir = promisify(require("fs").readdir);
const Enmap = require("enmap");
const klaw = require("klaw");
const path = require("path");
// This is your client. Some people call it `bot`, some people call it `self`,
// some might call it `cootchie`. Either way, when you see `client.something`,
// or `bot.something`, this is what we're refering to. Your client.
const client = new Discord.Client();
// Here we load the config file that contains our token and our prefix values.
client.config = require("./config.js");
// client.config.token contains the bot's token
// client.config.prefix contains the message prefix
// Let's start by getting some useful functions that we'll use throughout
// the bot, like logs and elevation features.
require("./util/functions")(client);
// Aliases and commands are put in collections where they can be read from,
// catalogued, listed, etc.
client.commands = new Discord.Collection();
client.aliases = new Discord.Collection();
// Now we integrate the use of Evie's awesome Enhanced Map module, which
// essentially saves a collection to disk. This is great for per-server configs,
// and makes things extremely easy for this purpose.
client.settings = new Enmap({
name: "settings",
autoFetch: true,
fetchAll: false,
cloneLevel: 'deep',
ensureProps: true
});
// Basically just an async shortcut to using a setTimeout. Nothing fancy!
client.wait = promisify(setTimeout);
// We're doing real fancy node 8 async/await stuff here, and to do that
// we need to wrap stuff in an anonymous function. It's annoying but it works.
const init = async () => {
//init database
const admin = require('firebase-admin');
const serviceAccount = require('./serviceAccount.json')
admin.initializeApp({
credential: admin.credential.cert(serviceAccount),
databaseURL: "https://azooid-discordbot.firebaseio.com"
})
// Here we load **commands** into memory, as a collection, so they're accessible
// here and everywhere else.
const cmdFiles = await readdir("./commands/");
client.log("log", `Loading a total of ${cmdFiles.length} commands.`);
klaw("./commands").on("data", (item) => {
const cmdFile = path.parse(item.path);
if (!cmdFile.ext || cmdFile.ext !== ".js") return;
const response = client.loadCommand(`${cmdFile.name}${cmdFile.ext}`);
//if (response) console.log(response);
});
const evtFiles = await readdir("./events/");
client.log("log", `Loading a ${evtFiles.length} events.`);
klaw("./events").on("data", (item) => {
const evtFile = path.parse(item.path);
if (!evtFile.ext || evtFile.ext !== ".js") return;
const event = require(`./events/${evtFile.name}${evtFile.ext}`);
client.on(evtFile.name, event.bind(null, client));
});
// Generate a cache of client permissions for pretty perms
client.levelCache = {};
for (let i = 0; i < client.config.permLevels.length; i++) {
const thisLevel = client.config.permLevels[i];
client.levelCache[thisLevel.name] = thisLevel.level;
}
// Here we login the client.
client.login(client.config.token);
// End top-level async/await function.
};
init();