forked from sdwilsh/tree-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot.js
82 lines (68 loc) · 1.86 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
var irc = require("irc");
var channels = require("./channels");
var updater = require("./updater");
var session = require("./sessionrestore");
// Connect to IRC
var kNick = 'afrosdwilsh';
var kAuthorizedUsers = [
'sdwilsh', 'robarnold'
];
function isAuthorizedUser(user) {
return kAuthorizedUsers.indexOf(user) !== -1;
}
var client = new irc.Client("irc.mozilla.org", kNick, {
userName: kNick,
realName: "Permasheriff Extraordinaire",
channels: [],
secure: true,
port: 6697
});
updater.restart = function () {
client.disconnect("Updating...hopefully don't need metaafrosdwilsh");
require("child_process").spawn('node', [__filename], { customFds: [0, 1, 2] });
process.exit();
};
function makeBackend(channel)
{
return {
say: client.say.bind(client, channel),
pm: client.say.bind(client),
isAuthorizedUser: isAuthorizedUser,
channelStateChanged: session.updateChannelState.bind(session, channel),
};
}
function joinChannel(name, cb) {
// Only try to join things that look like irc channels
// i.e. not the special console channel
if (/^#/.test(name)) {
client.join(name, function () {
cb(makeBackend(name));
});
}
}
client.on("registered", session.restore.bind(session, joinChannel));
client.on("invite", function (channel, from) {
if (isAuthorizedUser(from)) {
// TODO: solve race condition here
joinChannel(channel, function (backend) {
session.onNewChannel(channel);
channels.add(channel, backend);
});
}
});
client.addListener("error", function(m) {
console.error(m);
});
client.addListener("message", function(from, to, message) {
var channel = channels.get(to);
if (channel === undefined)
return;
var match = /(.+): (.*)/.exec(message);
if (match) {
target = match[1];
text = match[2];
if (target === kNick) {
channel.handleCommand(from, text);
}
}
});