-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.js
170 lines (149 loc) · 4.82 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
const { unloadNodeModule } = require("./util");
var logger = require("./logger");
const _version = "0.0.1";
class Bot {
constructor(config, modules) {
const CommandManager = require("./commandManager");
const Connection = require("./connection");
const DBManager = require("./dbmanager");
const EventManager = require("./eventManager");
const ModuleManager = require("./modules/moduleManager");
this.version = _version;
this.name = config.name;
this.server = config.server;
this.modulesCfg = modules;
this.users = {};
this.channels = {};
this.ModuleManager = new ModuleManager(this);
this.CommandManager = new CommandManager(this);
this.DBManager = new DBManager();
this.EventManager = new EventManager();
this.installEventHandlers();
this._connection = new Connection(this.server, this.EventManager);
}
installEventHandlers() {
this.EventManager.on("connection.ready", ({ channels, users }) => {
this.channels = channels;
this.addUsers(Object.keys(users))
.then(users => {
this.users = users;
})
.catch(e => console.error(e));
});
this.EventManager.on("connection.message", args => {
this.parseMessage(args).catch(e => console.log(e));
});
}
addUsers(activeUsers) {
return new Promise((resolve, reject) => {
resolve();
this.DBManager.query("user", { id: { $in: activeUsers } }).then(users => {
Promise.all(
activeUsers.map(user =>
this.DBManager.insert("user", {
name: user,
level: 1,
banned: false
}).catch(e => null)
)
).then(added => {
added = added.filter(v => v !== null);
users = users.reduce((acc, user) => {
acc[user.name] = user;
return acc;
}, {});
added = added.reduce((acc, user) => {
acc[user.name] = user;
return acc;
}, users);
resolve(users);
});
});
});
}
whisper(message, user) {
return new Promise((resolve, reject) => {
if (this._connection === null) {
throw new Error("No active connection to send message");
} else if (message.length >= 1 && message.length <= 500) {
return this._connection.whisper(message, user);
}
});
}
say(message, channel) {
console.log(`[BOT][self][${channel}] ${message}`);
if (this._connection === null) {
throw new Error("No active connection to send message");
} else if (message.length >= 1 && message.length <= 500) {
return this._connection
.broadcast(message, channel || this.channels[0])
.catch(e => console.error(e));
}
}
start() {
return new Promise((resolve, reject) => {
console.log(`Starting boot sequence`);
let connection = this._connection
.connect()
.then(this.DBManager.loadSchemas.bind(this.DBManager))
.then(
this.CommandManager.loadDatabaseCommands.bind(this.CommandManager)
)
.then(
this.ModuleManager.registerBulk.bind(this.ModuleManager)(
this,
this.modulesCfg
)
);
});
}
stop() {
this.EventManager.fire("bot.shutdown.start");
process.stdout.write(` Closing connection ... `);
this._connection.close();
this._connection = null;
process.stdout.write(`OK\n`);
process.stdout.write(` Closing database connection\n`);
this.DBManager.close();
process.stdout.write(` Unregistering modules \n`);
this.ModuleManager.unregisterAll().catch(e => console.log(e));
process.stdout.write(`OK\n`);
process.stdout.write(` Removing commands ... `);
this.commandManager = null;
process.stdout.write(`OK\n`);
unloadNodeModule("./commandManager");
unloadNodeModule("./connection");
unloadNodeModule("./dbmanager");
unloadNodeModule("./eventManager");
unloadNodeModule("./modules/moduleManager");
this.EventManager.fire("bot.shutdown.end");
}
restart() {
this.EventManager.fire("bot.reboot.shutdown.start");
process.stdout.write(`Started reboot process\n`);
this.stop();
this.EventManager.fire("bot.reboot.shutdown.end");
}
parseMessage(args) {
return new Promise((resolve, reject) => {
let { from, to, message } = args;
if (message[0] == "!") {
var tokens = message.substring(1).split(/\s+/);
var command = {
from,
to,
name: tokens[0],
args: tokens.slice(1) || []
};
return this.CommandManager.parseCommand(command);
} else {
args.bot = this;
var evt_type =
from == this.name ? "bot.self.message" : "bot.chat.message";
this.EventManager.fire(evt_type, args);
resolve();
}
});
}
}
module.exports = Bot;