This repository has been archived by the owner on Oct 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
276 lines (231 loc) · 7.1 KB
/
app.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
var util = require('util'),
ack = require('ac-koa'),
hipchat = ack.require('hipchat'),
moment = require('moment-timezone'),
pkg = require('./package.json');
if (process.env.NODE_ENV === 'development') {
pkg.name = 'bourbot-dev';
pkg.displayName = 'Bourbot (Dev)';
}
var app = ack(pkg);
var addon = app
.addon()
.hipchat()
.allowRoom(true)
.scopes(['send_notification', 'view_group']);
function* setLocation(context, location) {
location = (location || '').trim();
var emoticon, color;
if (!location) {
location = pkg.settings.location;
emoticon = yield context.tenantClient.getEmoticon('unknown');
color = 'yellow';
} else {
emoticon = yield context.tenantClient.getEmoticon('successful');
color = 'gray';
}
var match, em;
var parsedLocation = location;
var emoticonExp = /\(([^)]+)\)/g;
while ((match = emoticonExp.exec(location)) !== null) {
try {
em = yield context.tenantClient.getEmoticon(match[1]);
} catch (e) {} finally {
if (em) {
parsedLocation = parsedLocation.replace(
match[0],
util.format('<img src="%s">', em.url)
);
}
em = null;
}
}
context.tenantStore.set('location', parsedLocation);
var message = util.format('You shall imbibe at %s <img src="%s">',
parsedLocation,
emoticon.url
);
yield context.roomClient.sendNotification(message, {
color: color,
format: 'html'
});
}
var dayRegex = [
/^Sun(day)?$/i,
/^Mon(day)?$/i,
/^Tue(sday)?$/i,
/^Wed(nesday)?$/i,
/^Thu(rsday)?$/i,
/^Fri(day)?$/i,
/^Sat(urday)?$/i
];
function* setDay(context, day) {
day = (day || '').trim();
var dayIndex = dayRegex.length - 1;
while (dayIndex >= 0 && !(dayIndex == day || dayRegex[dayIndex].test(day))) {
dayIndex--;
}
var emoticon, color;
if (dayIndex < 0) {
day = pkg.settings.day;
emoticon = yield context.tenantClient.getEmoticon('unknown');
color = 'yellow';
} else {
day = dayIndex;
emoticon = yield context.tenantClient.getEmoticon('successful');
color = 'gray';
}
context.tenantStore.set('day', day);
var target = moment().day(day);
var message = util.format('You shall imbibe on %s <img src="%s">',
target.format('dddd'),
emoticon.url
);
yield context.roomClient.sendNotification(message, {
color: color,
format: 'html'
});
}
function* setTime(context, time) {
time = (time || '').trim();
var target = moment(time, ['H:mm', 'h:mm a', 'h:mma'], true);
var emoticon,
color;
if (!target.isValid()) {
target = moment(pkg.settings.time, ['HH:mm']);
emoticon = yield context.tenantClient.getEmoticon('unknown');
color = 'yellow';
} else {
emoticon = yield context.tenantClient.getEmoticon('successful');
color = 'gray';
}
context.tenantStore.set('time', target.format('HH:mm'));
var message = util.format('You shall imbibe at %s <img src="%s">',
target.format('LT z'),
emoticon.url
);
yield context.roomClient.sendNotification(message, {
color: color,
format: 'html'
});
}
function* setDuration(context, duration) {
duration = (duration || '').trim();
var emoticon, color;
if (!duration || !(/^\d+$/g.test(duration)) || duration < 1 || duration > 24) {
duration = pkg.settings.duration;
emoticon = yield context.tenantClient.getEmoticon('unknown');
color = 'yellow';
} else {
emoticon = yield context.tenantClient.getEmoticon('successful');
color = 'gray';
}
context.tenantStore.set('duration', duration);
var message = util.format('You shall imbibe for %s hours <img src="%s">',
duration,
emoticon.url
);
yield context.roomClient.sendNotification(message, {
color: color,
format: 'html'
});
}
function* setTimezone(context, timezone) {
timezone = (timezone || '').trim();
var emoticon, color;
if (!timezone || !moment.tz.zone(timezone)) {
timezone = pkg.settings.timezone;
emoticon = yield context.tenantClient.getEmoticon('unknown');
color = 'yellow';
} else {
emoticon = yield context.tenantClient.getEmoticon('successful');
color = 'gray';
}
context.tenantStore.set('timezone', timezone);
var message = util.format('You shall imbibe relative to %s <img src="%s">',
timezone,
emoticon.url
);
yield context.roomClient.sendNotification(message, {
color: color,
format: 'html'
});
}
function* help(context) {
var message = 'Command format: /imbibe <i>command</i> <i>value</i><br/><br/>' +
'Available commands:<br/>' +
'<b>location</b> - sets location<br/>' +
'<b>day</b> - sets day of the week (0 - 6)<br/>' +
'<b>time</b> - sets time of day (00:00 - 23:59)<br/>' +
'<b>duration</b> - sets duration in hours (0 - 23)<br/>' +
'<b>timezone</b> - sets <a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones">timezone</a><br/><br/>' +
'Example: /imbibe location My House';
yield context.roomClient.sendNotification(message, {
color: 'green',
format: 'html'
});
}
function* imbibe(context) {
var location = yield context.tenantStore.get('location');
location || (location = pkg.settings.location);
var day = yield context.tenantStore.get('day');
day || (day = pkg.settings.day);
var time = yield context.tenantStore.get('time');
time || (time = pkg.settings.time);
var duration = yield context.tenantStore.get('duration');
duration || (duration = pkg.settings.duration);
var timezone = yield context.tenantStore.get('timezone');
timezone || (timezone = pkg.settings.timezone);
var now = moment().tz(timezone),
start = moment.tz(time, 'HH:mm', timezone).day(day),
end = moment(start).add(duration, 'hours');
var emoticon, message;
if (now.isBetween(start, end)) {
emoticon = yield context.tenantClient.getEmoticon('disapproval');
message = util.format('You should have started imbibing %s %s <img src="%s">',
start.fromNow(),
context.sender.name,
emoticon.url
);
yield context.roomClient.sendNotification(message, {
color: 'red',
format: 'html'
});
} else {
if (now.isAfter(end)) {
start.add(1, 'weeks');
}
emoticon = yield context.tenantClient.getEmoticon('beer');
message = util.format('You shall imbibe %s (%s) at %s <img src="%s">',
start.fromNow(),
start.format('dddd LT z'),
location,
emoticon.url
);
yield context.roomClient.sendNotification(message, {
color: 'green',
format: 'html'
});
}
}
addon.webhook('room_message', /^\/imbibe(?:\s+(.+?)(\s+(.+?))?\s*$)?/i, function*() {
var command = this.match && this.match[1];
if (command) {
if (command === 'location') {
yield setLocation(this, this.match[3]);
} else if (command === 'day') {
yield setDay(this, this.match[3]);
} else if (command === 'time') {
yield setTime(this, this.match[3]);
} else if (command === 'duration') {
yield setDuration(this, this.match[3]);
} else if (command === 'timezone') {
yield setTimezone(this, this.match[3]);
} else if (command === 'help') {
yield help(this);
}
} else if (!this.match[1]) {
yield imbibe(this);
}
});
app.listen();