-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeekbot.js
102 lines (92 loc) · 3.4 KB
/
geekbot.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
"use strict";
const Bot = require('./bot'),
gsEvent = require('./gs-schedule'),
bot = new Bot({
token: process.env.SLACK_TOKEN,
autoReconnect: true,
autoMark: true
}),
TS_FORMAT = { // Format: 2016-10-24T17:30:00-07:00
timeZoneName: 'short',
timeZone: 'America/Los_Angeles',
hour12: true,
weekday: 'long',
hour: 'numeric',
minute: 'numeric'
},
MAX_RAND = 1000000;
let storiesChannel;
bot.respondTo(/^hello/i, (message, channel, user) => {
bot.send(`Hello to you too, ${user.name}!`, channel);
});
// Roll D&D-style
bot.respondTo(/roll (\d*)d(\d+)/i, (message, channel, user, numDice, maxVal) => {
let result = 0;
numDice = (numDice || 1) >> 0;
maxVal >>= 0;
if (maxVal > MAX_RAND || numDice > MAX_RAND) {
bot.send(`C'mon, ${user.name}! Ain't nobody got time for that!`, channel);
return;
}
for (let i = 0; i < numDice; ++i) {
result += Math.ceil(Math.random() * maxVal);
}
bot.send(`${user.name} rolls ${result}`, channel);
});
// Pick a number between x and y
bot.respondTo(/random (\d+)-(\d+)/i, (message, channel, user, min, max) => {
let tmp = min|0;
min = Math.min(tmp,max|0);
max = Math.max(tmp,max|0);
let diff = max - min;
if (min < -MAX_RAND || max > MAX_RAND) {
throw { message: "Values are too large" };
}
bot.send(`${user.name} gets ${Math.floor(Math.random() * diff) + min}`, channel);
});
// Show who's coming to the show
bot.respondTo(/^who(?:'s| (?:all )?is) coming/i,
(message, channel, user) => {
gsEvent().then(event => {
if (event == null) {
bot.send("Wups! Can't see the Google calendar!", channel);
return;
}
let time = (new Date(event.originalStartTime.dateTime)).toLocaleString("en-US", TS_FORMAT),
confirmed = event.attendees.filter(e => e.responseStatus === "accepted")
.map(e => (e.displayName || e.email).match(/^\w+/)[0]),
lagging = event.attendees.filter(e => e.responseStatus === "needsAction"
|| e.responseStatus === "tentative")
.map(e => (e.displayName || e.email).match(/^\w+/)[0]);
bot.send(`For the recording at ${event.location} on ${time}:`, channel);
bot.send(confirmed.join(', ') + " so far.", channel);
bot.send("Haven't heard back yet from " + lagging.join(', '), channel);
});
});
// Show where we're recording next
bot.respondTo(/^(?:where|when)(?:'re| are) we recording/i,
(message, channel, user) => {
gsEvent().then(event => {
if (event == null) {
bot.send("Wups! Can't see the Google calendar!", channel);
return;
}
let time = (new Date(event.originalStartTime.dateTime)).toLocaleString("en-US", TS_FORMAT);
bot.send(`We're recording at ${event.location} on ${time}`, channel);
});
});
bot.respondTo(/\b(https?:\/\/.+)$/, (message, channel, user, url) => {
let stories = storiesChannel || (storiesChannel = bot.getChannel("stories"));
// if (channel === stories) {
console.log("Loading " + url);
// bot.sendDirect("Loading " + url, bot.getUser("miles"));
// Get URL info
// }
});
bot.respondTo(/^debug(?: (\S+))?/i, (message, channel, user, propPath) => {
bot.debug(propPath, channel);
});
// Someone asked a question
// Trigger natural language processing
//bot.respondTo(/\?$/, (message, channel, user) => {
//});