This repository has been archived by the owner on Sep 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
CoreBot.js
executable file
·1317 lines (1079 loc) · 43.3 KB
/
CoreBot.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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* This is a module that makes a bot
* It expects to receive messages via the botkit.receiveMessage function
* These messages are expected to match Slack's message format.
**/
var mustache = require('mustache');
var simple_storage = require(__dirname + '/storage/simple_storage.js');
var ConsoleLogger = require(__dirname + '/console_logger.js');
var LogLevels = ConsoleLogger.LogLevels;
var ware = require('ware');
var clone = require('clone');
var fs = require('fs');
var studio = require('./Studio.js');
var os = require('os');
var async = require('async');
var PKG_VERSION = require('../package.json').version;
function Botkit(configuration) {
var botkit = {
events: {}, // this will hold event handlers
config: {}, // this will hold the configuration
tasks: [],
taskCount: 0,
convoCount: 0,
my_version: null,
my_user_agent: null,
memory_store: {
users: {},
channels: {},
teams: {},
}
};
botkit.utterances = {
yes: new RegExp(/^(yes|yea|yup|yep|ya|sure|ok|y|yeah|yah)/i),
no: new RegExp(/^(no|nah|nope|n)/i),
quit: new RegExp(/^(quit|cancel|end|stop|done|exit|nevermind|never mind)/i)
};
// define some middleware points where custom functions
// can plug into key points of botkits process
botkit.middleware = {
send: ware(),
receive: ware(),
spawn: ware(),
heard: ware(),
capture: ware(),
};
function Conversation(task, message) {
this.messages = [];
this.sent = [];
this.transcript = [];
this.context = {
user: message.user,
channel: message.channel,
bot: task.bot,
};
this.events = {};
this.vars = {};
this.threads = {};
this.thread = null;
this.status = 'new';
this.task = task;
this.source_message = message;
this.handler = null;
this.responses = {};
this.capture_options = {};
this.startTime = new Date();
this.lastActive = new Date();
/** will be pointing to a callback which will be called after timeout,
* conversation will be not be ended and should be taken care by callback
*/
this.timeOutHandler = null;
this.collectResponse = function(key, value) {
this.responses[key] = value;
};
this.capture = function(response, cb) {
var that = this;
var capture_key = this.sent[this.sent.length - 1].text;
botkit.middleware.capture.run(that.task.bot, response, that, function(err, bot, response, convo) {
if (response.text) {
response.text = response.text.trim();
} else {
response.text = '';
}
if (that.capture_options.key != undefined) {
capture_key = that.capture_options.key;
}
// capture the question that was asked
// if text is an array, get 1st
if (typeof(that.sent[that.sent.length - 1].text) == 'string') {
response.question = that.sent[that.sent.length - 1].text;
} else if (Array.isArray(that.sent[that.sent.length - 1].text)) {
response.question = that.sent[that.sent.length - 1].text[0];
} else {
response.question = '';
}
if (that.capture_options.multiple) {
if (!that.responses[capture_key]) {
that.responses[capture_key] = [];
}
that.responses[capture_key].push(response);
} else {
that.responses[capture_key] = response;
}
if (cb) cb(response);
});
};
this.handle = function(message) {
var that = this;
this.lastActive = new Date();
this.transcript.push(message);
botkit.debug('HANDLING MESSAGE IN CONVO', message);
// do other stuff like call custom callbacks
if (this.handler) {
this.capture(message, function(message) {
// if the handler is a normal function, just execute it!
// NOTE: anyone who passes in their own handler has to call
// convo.next() to continue after completing whatever it is they want to do.
if (typeof(that.handler) == 'function') {
that.handler(message, that);
} else {
// handle might be a mapping of keyword to callback.
// lets see if the message matches any of the keywords
var match, patterns = that.handler;
for (var p = 0; p < patterns.length; p++) {
if (patterns[p].pattern && botkit.hears_test([patterns[p].pattern], message)) {
botkit.middleware.heard.run(that.task.bot, message, function(err, bot, message) {
patterns[p].callback(message, that);
});
return;
}
}
// none of the messages matched! What do we do?
// if a default exists, fire it!
for (var p = 0; p < patterns.length; p++) {
if (patterns[p].default) {
botkit.middleware.heard.run(that.task.bot, message, function(err, bot, message) {
patterns[p].callback(message, that);
});
return;
}
}
}
});
} else {
// do nothing
}
};
this.setVar = function(field, value) {
if (!this.vars) {
this.vars = {};
}
this.vars[field] = value;
};
this.activate = function() {
this.task.trigger('conversationStarted', [this]);
this.task.botkit.trigger('conversationStarted', [this.task.bot, this]);
this.status = 'active';
};
/**
* active includes both ACTIVE and ENDING
* in order to allow the timeout end scripts to play out
**/
this.isActive = function() {
return (this.status == 'active' || this.status == 'ending');
};
this.deactivate = function() {
this.status = 'inactive';
};
this.say = function(message) {
this.addMessage(message);
};
this.sayFirst = function(message) {
if (typeof(message) == 'string') {
message = {
text: message,
channel: this.source_message.channel,
};
} else {
message.channel = this.source_message.channel;
}
this.messages.unshift(message);
};
this.on = function(event, cb) {
botkit.debug('Setting up a handler for', event);
var events = event.split(/\,/g);
for (var e in events) {
if (!this.events[events[e]]) {
this.events[events[e]] = [];
}
this.events[events[e]].push(cb);
}
return this;
};
this.trigger = function(event, data) {
if (this.events[event]) {
for (var e = 0; e < this.events[event].length; e++) {
var res = this.events[event][e].apply(this, data);
if (res === false) {
return;
}
}
} else {
}
};
// proceed to the next message after waiting for an answer
this.next = function() {
this.handler = null;
};
this.repeat = function() {
if (this.sent.length) {
this.messages.push(this.sent[this.sent.length - 1]);
} else {
// console.log('TRIED TO REPEAT, NOTHING TO SAY');
}
};
this.silentRepeat = function() {
return;
};
this.addQuestion = function(message, cb, capture_options, thread) {
if (typeof(message) == 'string') {
message = {
text: message,
channel: this.source_message.channel
};
} else {
message.channel = this.source_message.channel;
}
if (capture_options) {
message.capture_options = capture_options;
}
message.handler = cb;
this.addMessage(message, thread);
};
this.ask = function(message, cb, capture_options) {
this.addQuestion(message, cb, capture_options, this.thread || 'default');
};
this.addMessage = function(message, thread) {
if (!thread) {
thread = this.thread;
}
if (typeof(message) == 'string') {
message = {
text: message,
channel: this.source_message.channel,
};
} else {
message.channel = this.source_message.channel;
}
if (!this.threads[thread]) {
this.threads[thread] = [];
}
this.threads[thread].push(message);
// this is the current topic, so add it here as well
if (this.thread == thread) {
this.messages.push(message);
}
};
// how long should the bot wait while a user answers?
this.setTimeout = function(timeout) {
this.task.timeLimit = timeout;
};
// For backwards compatibility, wrap gotoThread in its previous name
this.changeTopic = function(topic) {
this.gotoThread(topic);
};
this.hasThread = function(thread) {
return (this.threads[thread] != undefined);
};
this.transitionTo = function(thread, message) {
// add a new transition thread
// add this new message to it
// set that message action to execute the actual transition
// then change threads to transition thread
var num = 1;
while (this.hasThread('transition_' + num)) {
num++;
}
var threadname = 'transition_' + num;
if (typeof(message) == 'string') {
message = {
text: message,
action: thread
};
} else {
message.action = thread;
}
this.addMessage(message, threadname);
this.gotoThread(threadname);
};
this.beforeThread = function(thread, callback) {
if (!this.before_hooks) {
this.before_hooks = {};
}
if (!this.before_hooks[thread]) {
this.before_hooks[thread] = [];
}
this.before_hooks[thread].push(callback);
};
this.gotoThread = function(thread) {
var that = this;
that.next_thread = thread;
that.processing = true;
var makeChange = function() {
if (!that.hasThread(that.next_thread)) {
if (that.next_thread == 'default') {
that.threads[that.next_thread] = [];
} else {
botkit.debug('WARN: gotoThread() to an invalid thread!', thread);
that.stop('unknown_thread');
return;
}
}
that.thread = that.next_thread;
that.messages = that.threads[that.next_thread].slice();
that.handler = null;
that.processing = false;
};
if (that.before_hooks && that.before_hooks[that.next_thread]) {
// call any beforeThread hooks in sequence
async.eachSeries(this.before_hooks[that.next_thread], function(before_hook, next) {
before_hook(that, next);
}, function(err) {
if (!err) {
makeChange();
}
});
} else {
makeChange();
}
};
this.combineMessages = function(messages) {
if (!messages) {
return '';
}
if (Array.isArray(messages) && !messages.length) {
return '';
}
if (messages.length > 1) {
var txt = [];
var last_user = null;
var multi_users = false;
last_user = messages[0].user;
for (var x = 0; x < messages.length; x++) {
if (messages[x].user != last_user) {
multi_users = true;
}
}
last_user = '';
for (var x = 0; x < messages.length; x++) {
if (multi_users && messages[x].user != last_user) {
last_user = messages[x].user;
if (txt.length) {
txt.push('');
}
txt.push('<@' + messages[x].user + '>:');
}
txt.push(messages[x].text);
}
return txt.join('\n');
} else {
if (messages.length) {
return messages[0].text;
} else {
return messages.text;
}
}
};
this.getResponses = function() {
var res = {};
for (var key in this.responses) {
res[key] = {
question: this.responses[key].length ?
this.responses[key][0].question : this.responses[key].question,
key: key,
answer: this.extractResponse(key),
};
}
return res;
};
this.getResponsesAsArray = function() {
var res = [];
for (var key in this.responses) {
res.push({
question: this.responses[key].length ?
this.responses[key][0].question : this.responses[key].question,
key: key,
answer: this.extractResponse(key),
});
}
return res;
};
this.extractResponses = function() {
var res = {};
for (var key in this.responses) {
res[key] = this.extractResponse(key);
}
return res;
};
this.extractResponse = function(key) {
return this.combineMessages(this.responses[key]);
};
this.replaceAttachmentTokens = function(attachments) {
if (attachments && attachments.length) {
for (var a = 0; a < attachments.length; a++) {
for (var key in attachments[a]) {
if (typeof(attachments[a][key]) == 'string') {
attachments[a][key] = this.replaceTokens(attachments[a][key]);
} else {
attachments[a][key] = this.replaceAttachmentTokens(attachments[a][key]);
}
}
}
} else {
for (var a in attachments) {
if (typeof(attachments[a]) == 'string') {
attachments[a] = this.replaceTokens(attachments[a]);
} else {
attachments[a] = this.replaceAttachmentTokens(attachments[a]);
}
}
}
return attachments;
};
this.replaceTokens = function(text) {
var vars = {
identity: this.task.bot.identity,
responses: this.extractResponses(),
origin: this.task.source_message,
vars: this.vars,
};
var rendered = '';
try {
rendered = mustache.render(text, vars);
} catch (err) {
botkit.log('Error in message template. Mustache failed with error: ', err);
rendered = text;
};
return rendered;
};
this.stop = function(status) {
this.handler = null;
this.messages = [];
this.status = status || 'stopped';
botkit.debug('Conversation is over with status ' + this.status);
this.task.conversationEnded(this);
};
// was this conversation successful?
// return true if it was completed
// otherwise, return false
// false could indicate a variety of failed states:
// manually stopped, timed out, etc
this.successful = function() {
// if the conversation is still going, it can't be successful yet
if (this.isActive()) {
return false;
}
if (this.status == 'completed') {
return true;
} else {
return false;
}
};
this.cloneMessage = function(message) {
// clone this object so as not to modify source
var outbound = clone(message);
if (typeof(message.text) == 'string') {
outbound.text = this.replaceTokens(message.text);
} else if (message.text) {
outbound.text = this.replaceTokens(
message.text[Math.floor(Math.random() * message.text.length)]
);
}
if (outbound.attachments) {
outbound.attachments = this.replaceAttachmentTokens(outbound.attachments);
}
if (outbound.attachment) {
// pick one variation of the message text at random
if (outbound.attachment.payload.text && typeof(outbound.attachment.payload.text) != 'string') {
outbound.attachment.payload.text = this.replaceTokens(
outbound.attachment.payload.text[
Math.floor(Math.random() * outbound.attachment.payload.text.length)
]
);
}
outbound.attachment = this.replaceAttachmentTokens([outbound.attachment])[0];
}
if (this.messages.length && !message.handler) {
outbound.continue_typing = true;
}
if (typeof(message.attachments) == 'function') {
outbound.attachments = message.attachments(this);
}
return outbound;
};
this.onTimeout = function(handler) {
if (typeof(handler) == 'function') {
this.timeOutHandler = handler;
} else {
botkit.debug('Invalid timeout function passed to onTimeout');
}
};
this.tick = function() {
var now = new Date();
if (this.isActive()) {
if (this.processing) {
// do nothing. The bot is waiting for async process to complete.
} else if (this.handler) {
// check timeout!
// how long since task started?
var duration = (now.getTime() - this.task.startTime.getTime());
// how long since last active?
var lastActive = (now.getTime() - this.lastActive.getTime());
if (this.task.timeLimit && // has a timelimit
(duration > this.task.timeLimit) && // timelimit is up
(lastActive > this.task.timeLimit) // nobody has typed for 60 seconds at least
) {
// if timeoutHandler is set then call it, otherwise follow the normal flow
// this will not break others code, after the update
if (this.timeOutHandler) {
this.timeOutHandler(this);
} else if (this.hasThread('on_timeout')) {
this.status = 'ending';
this.gotoThread('on_timeout');
} else {
this.stop('timeout');
}
}
// otherwise do nothing
} else {
if (this.messages.length) {
if (this.sent.length &&
!this.sent[this.sent.length - 1].sent
) {
return;
}
if (this.task.bot.botkit.config.require_delivery &&
this.sent.length &&
!this.sent[this.sent.length - 1].delivered
) {
return;
}
if (typeof(this.messages[0].timestamp) == 'undefined' ||
this.messages[0].timestamp <= now.getTime()) {
var message = this.messages.shift();
//console.log('HANDLING NEW MESSAGE',message);
// make sure next message is delayed appropriately
if (this.messages.length && this.messages[0].delay) {
this.messages[0].timestamp = now.getTime() + this.messages[0].delay;
}
if (message.handler) {
//console.log(">>>>>> SET HANDLER IN TICK");
this.handler = message.handler;
} else {
this.handler = null;
//console.log(">>>>>>> CLEARING HANDLER BECAUSE NO HANDLER NEEDED");
}
if (message.capture_options) {
this.capture_options = message.capture_options;
} else {
this.capture_options = {};
}
this.lastActive = new Date();
// is there any text?
// or an attachment? (facebook)
// or multiple attachments (slack)
if (message.text || message.attachments || message.attachment) {
var outbound = this.cloneMessage(message);
var that = this;
outbound.sent_timestamp = new Date().getTime();
that.sent.push(outbound);
that.transcript.push(outbound);
this.task.bot.reply(this.source_message, outbound, function(err, sent_message) {
if (err) {
botkit.log('An error occurred while sending a message: ', err);
// even though an error occured, set sent to true
// this will allow the conversation to keep going even if one message fails
// TODO: make a message that fails to send _resend_ at least once
that.sent[that.sent.length - 1].sent = true;
that.sent[that.sent.length - 1].api_response = err;
} else {
that.sent[that.sent.length - 1].sent = true;
that.sent[that.sent.length - 1].api_response = sent_message;
// if sending via slack's web api, there is no further confirmation
// so we can mark the message delivered
if (that.task.bot.type == 'slack' && sent_message && sent_message.ts) {
that.sent[that.sent.length - 1].delivered = true;
}
that.trigger('sent', [sent_message]);
}
});
}
if (message.action) {
if (typeof(message.action) == 'function') {
message.action(this);
} else if (message.action == 'repeat') {
this.repeat();
} else if (message.action == 'wait') {
this.silentRepeat();
} else if (message.action == 'stop') {
this.stop();
} else if (message.action == 'timeout') {
this.stop('timeout');
} else if (this.threads[message.action]) {
this.gotoThread(message.action);
}
}
} else {
//console.log('Waiting to send next message...');
}
// end immediately instad of waiting til next tick.
// if it hasn't already been ended by a message action!
if (this.isActive() && !this.messages.length && !this.handler && !this.processing) {
this.stop('completed');
}
} else if (this.sent.length) { // sent at least 1 message
this.stop('completed');
}
}
}
};
botkit.debug('CREATED A CONVO FOR', this.source_message.user, this.source_message.channel);
this.gotoThread('default');
};
function Task(bot, message, botkit) {
this.convos = [];
this.botkit = botkit;
this.bot = bot;
this.events = {};
this.source_message = message;
this.status = 'active';
this.startTime = new Date();
this.isActive = function() {
return this.status == 'active';
};
this.createConversation = function(message) {
var convo = new Conversation(this, message);
convo.id = botkit.convoCount++;
this.convos.push(convo);
return convo;
};
this.startConversation = function(message) {
var convo = this.createConversation(message);
botkit.log('> [Start] ', convo.id, ' Conversation with ', message.user, 'in', message.channel);
convo.activate();
return convo;
};
this.conversationEnded = function(convo) {
botkit.log('> [End] ', convo.id, ' Conversation with ',
convo.source_message.user, 'in', convo.source_message.channel);
this.trigger('conversationEnded', [convo]);
this.botkit.trigger('conversationEnded', [bot, convo]);
convo.trigger('end', [convo]);
var actives = 0;
for (var c = 0; c < this.convos.length; c++) {
if (this.convos[c].isActive()) {
actives++;
}
}
if (actives == 0) {
this.taskEnded();
}
};
this.endImmediately = function(reason) {
for (var c = 0; c < this.convos.length; c++) {
if (this.convos[c].isActive()) {
this.convos[c].stop(reason || 'stopped');
}
}
};
this.taskEnded = function() {
botkit.log('[End] ', this.id, ' Task for ',
this.source_message.user, 'in', this.source_message.channel);
this.status = 'completed';
this.trigger('end', [this]);
};
this.on = function(event, cb) {
botkit.debug('Setting up a handler for', event);
var events = event.split(/\,/g);
for (var e in events) {
if (!this.events[events[e]]) {
this.events[events[e]] = [];
}
this.events[events[e]].push(cb);
}
return this;
};
this.trigger = function(event, data) {
if (this.events[event]) {
for (var e = 0; e < this.events[event].length; e++) {
var res = this.events[event][e].apply(this, data);
if (res === false) {
return;
}
}
}
};
this.getResponsesByUser = function() {
var users = {};
// go through all conversations
// extract normalized answers
for (var c = 0; c < this.convos.length; c++) {
var user = this.convos[c].source_message.user;
users[this.convos[c].source_message.user] = {};
var convo = this.convos[c];
users[user] = convo.extractResponses();
}
return users;
};
this.getResponsesBySubject = function() {
var answers = {};
// go through all conversations
// extract normalized answers
for (var c = 0; c < this.convos.length; c++) {
var convo = this.convos[c];
for (var key in convo.responses) {
if (!answers[key]) {
answers[key] = {};
}
answers[key][convo.source_message.user] = convo.extractResponse(key);
}
}
return answers;
};
this.tick = function() {
for (var c = 0; c < this.convos.length; c++) {
if (this.convos[c].isActive()) {
this.convos[c].tick();
}
}
};
};
botkit.storage = {
teams: {
get: function(team_id, cb) {
cb(null, botkit.memory_store.teams[team_id]);
},
save: function(team, cb) {
botkit.log('Warning: using temporary storage. Data will be lost when process restarts.');
if (team.id) {
botkit.memory_store.teams[team.id] = team;
cb(null, team.id);
} else {
cb('No ID specified');
}
},
all: function(cb) {
cb(null, botkit.memory_store.teams);
}
},
users: {
get: function(user_id, cb) {
cb(null, botkit.memory_store.users[user_id]);
},
save: function(user, cb) {
botkit.log('Warning: using temporary storage. Data will be lost when process restarts.');
if (user.id) {
botkit.memory_store.users[user.id] = user;
cb(null, user.id);
} else {
cb('No ID specified');
}
},
all: function(cb) {
cb(null, botkit.memory_store.users);
}
},
channels: {
get: function(channel_id, cb) {
cb(null, botkit.memory_store.channels[channel_id]);
},
save: function(channel, cb) {
botkit.log('Warning: using temporary storage. Data will be lost when process restarts.');
if (channel.id) {
botkit.memory_store.channels[channel.id] = channel;
cb(null, channel.id);
} else {
cb('No ID specified');
}
},
all: function(cb) {
cb(null, botkit.memory_store.channels);
}
}
};
/**
* hears_regexp - default string matcher uses regular expressions
*
* @param {array} tests patterns to match
* @param {object} message message object with various fields
* @return {boolean} whether or not a pattern was matched
*/
botkit.hears_regexp = function(tests, message) {
for (var t = 0; t < tests.length; t++) {
if (message.text) {
// the pattern might be a string to match (including regular expression syntax)
// or it might be a prebuilt regular expression
var test = null;
if (typeof(tests[t]) == 'string') {
try {
test = new RegExp(tests[t], 'i');
} catch (err) {
botkit.log('Error in regular expression: ' + tests[t] + ': ' + err);
return false;
}
if (!test) {
return false;
}
} else {
test = tests[t];
}
if (match = message.text.match(test)) {
message.match = match;
return true;
}
}
}
return false;
};
/**
* changeEars - change the default matching function
*
* @param {function} new_test a function that accepts (tests, message) and returns a boolean
*/
botkit.changeEars = function(new_test) {
botkit.hears_test = new_test;
};
botkit.hears = function(keywords, events, middleware_or_cb, cb) {
// the third parameter is EITHER a callback handler
// or a middleware function that redefines how the hear works
var test_function = botkit.hears_test;
if (cb) {
test_function = middleware_or_cb;
} else {
cb = middleware_or_cb;
}