forked from dempfi/ayu
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathJavaScript.js
46 lines (39 loc) · 1.21 KB
/
JavaScript.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
import { Binder } from './binder';
import { Dialog } from './dialog';
import { Channel } from './channel';
export class Bot {
constructor() {
/** @internal */
this._dialogHandlers = [];
/** @internal */
this._performerHandlers = [];
this.when = Binder.for(this);
this._channels = new Map();
}
/** @internal */
_channelFor(channelId) {
const channel = this._channels.get(channelId) || new Channel();
this._channels.set(channelId, channel);
return channel;
}
dialog(channel, users) {
return new Dialog(this, channel, users);
}
@deprecated
abortDialog(channel, user) {
this._channelFor(channel).abort(user);
}
onMessage(message) {
const performer = this._performerHandlers.find(c => c.match(message));
if (performer) return performer.handler(message, this);
const channel = this._channelFor(message.channel);
const hasActions = channel.hasFor(message.user);
if (hasActions) return channel.processMessage(message);
const dialog = this._dialogHandlers.find(c => c.match(message));
if (dialog) {
const obj = this.dialog(message.channel, [message.user]);
obj._manager.perform(message);
dialog.handler(obj, this);
}
}
}