-
Notifications
You must be signed in to change notification settings - Fork 73
/
worker.ts
775 lines (684 loc) · 24.6 KB
/
worker.ts
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
// Third party dependencies
const moment = require("moment");
var needle = require("needle");
const { Router, Markup, Extra } = require("telegraf");
// Internal dependencies
let config = require("./classes/config.js");
let postgres = require("./classes/postgres.js");
let telegram = require("./classes/telegram.js");
import { Command, QuestionToAsk } from "./classes/config.js";
let bot = telegram.bot;
// State
var currentlyAskedQuestionObject: QuestionToAsk = null;
var currentlyAskedQuestionMessageId: String = null; // The Telegram message ID reference
let currentlyAskedQuestionQueue: Array<QuestionToAsk> = []; // keep track of all the questions about to be asked
initBot();
function roundNumberExactly(number, decimals) {
return (
Math.round(number * Math.pow(10, decimals)) / Math.pow(10, decimals)
).toFixed(decimals);
}
function getButtonText(number) {
let emojiNumber = {
"0": "0️⃣",
"1": "1️⃣",
"2": "2️⃣",
"3": "3️⃣",
"4": "4️⃣",
"5": "5️⃣"
}[number];
if (currentlyAskedQuestionObject.buttons == null) {
// Assign default values
currentlyAskedQuestionObject.buttons = {
"0": "Terrible",
"1": "Bad",
"2": "Okay",
"3": "Good",
"4": "Great",
"5": "Excellent"
};
}
return emojiNumber + " " + currentlyAskedQuestionObject.buttons[number];
}
function printGraph(
key,
ctx,
numberOfRecentValuesToPrint,
additionalValue,
skipImage
) {
postgres.client.query(
{
text:
"SELECT * FROM raw_data WHERE key = $1 ORDER BY timestamp DESC LIMIT 300",
values: [key]
},
(err, res) => {
if (err) {
console.error(err);
ctx.reply(err);
return;
}
let rows = res.rows;
console.log("Rows: " + rows.length);
let allValues = [];
let allTimes = [];
let rawText = [];
let minimum = 10000;
let maximum = 0;
for (let i = 0; i < rows.length; i++) {
let time = moment(Number(rows[i].timestamp));
let value = Number(rows[i].value);
allValues.unshift(value);
allTimes.unshift(time.format("MM-DD"));
if (i < numberOfRecentValuesToPrint - 1) {
rawText.unshift(time.format("YYYY-MM-DD") + ": " + value.toFixed(2));
}
if (value < minimum) {
minimum = value;
}
if (value > maximum) {
maximum = value;
}
}
if (additionalValue) {
allValues.push(additionalValue);
allTimes.push(moment());
rawText.push(
moment().format("YYYY-MM-DD") +
": " +
Number(additionalValue).toFixed(2)
);
}
// Print the raw values
if (numberOfRecentValuesToPrint > 2) {
ctx.reply(
rawText.join("\n") + "\nMinimum: " + minimum + "\nMaximum: " + maximum
);
}
// Generate the graph
// if (!skipImage) {
// minimum -= 2;
// maximum += 2;
// let url =
// "https://chart.googleapis.com/chart?cht=lc&chd=t:" +
// allValues.join(",") +
// "&chs=800x350&chl=" +
// allTimes.join("%7C") +
// "&chtt=" +
// key +
// "&chf=bg,s,e0e0e0&chco=000000,0000FF&chma=30,30,30,30&chds=" +
// minimum +
// "," +
// maximum;
// console.log(url);
// ctx.replyWithPhoto({
// url: url
// });
// }
if (numberOfRecentValuesToPrint > 0) {
// Now render the week/month/quarter/year average
let queryToUse = "SELECT";
const weekTimestamp =
moment()
.subtract(7, "days")
.unix() * 1000;
const monthTimestamp =
moment()
.subtract(30, "days")
.unix() * 1000;
const quarterTimestamp =
moment()
.subtract(90, "days")
.unix() * 1000;
const yearTimestamp =
moment()
.subtract(365, "days")
.unix() * 1000;
let athTimestamp = moment("2019-04-12").unix() * 1000;
if (key == "mood") {
athTimestamp = moment("2018-02-01").unix() * 1000;
}
// After values
queryToUse += `(SELECT ROUND(AVG(value::numeric), 4) FROM raw_data WHERE timestamp > ${weekTimestamp} AND key='${key}') as ${key}Week,`;
queryToUse += `(SELECT ROUND(AVG(value::numeric), 4) FROM raw_data WHERE timestamp > ${monthTimestamp} AND key='${key}') as ${key}Month,`;
queryToUse += `(SELECT ROUND(AVG(value::numeric), 4) FROM raw_data WHERE timestamp > ${quarterTimestamp} AND key='${key}') as ${key}Quarter,`;
queryToUse += `(SELECT ROUND(AVG(value::numeric), 4) FROM raw_data WHERE timestamp > ${yearTimestamp} AND key='${key}') as ${key}Year,`;
queryToUse += `(SELECT ROUND(AVG(value::numeric), 4) FROM raw_data WHERE timestamp > ${athTimestamp} AND key='${key}') as ${key}AllTime,`;
// Before values
queryToUse += `(SELECT ROUND(AVG(value::numeric), 4) FROM raw_data WHERE id != (SELECT id FROM raw_data WHERE key='${key}' ORDER BY id DESC LIMIT 1) AND timestamp > ${weekTimestamp} AND key='${key}') as ${key}WeekOld,`;
queryToUse += `(SELECT ROUND(AVG(value::numeric), 4) FROM raw_data WHERE id != (SELECT id FROM raw_data WHERE key='${key}' ORDER BY id DESC LIMIT 1) AND timestamp > ${monthTimestamp} AND key='${key}') as ${key}MonthOld,`;
queryToUse += `(SELECT ROUND(AVG(value::numeric), 4) FROM raw_data WHERE id != (SELECT id FROM raw_data WHERE key='${key}' ORDER BY id DESC LIMIT 1) AND timestamp > ${quarterTimestamp} AND key='${key}') as ${key}QuarterOld,`;
queryToUse += `(SELECT ROUND(AVG(value::numeric), 4) FROM raw_data WHERE id != (SELECT id FROM raw_data WHERE key='${key}' ORDER BY id DESC LIMIT 1) AND timestamp > ${yearTimestamp} AND key='${key}') as ${key}YearOld,`;
queryToUse += `(SELECT ROUND(AVG(value::numeric), 4) FROM raw_data WHERE id != (SELECT id FROM raw_data WHERE key='${key}' ORDER BY id DESC LIMIT 1) AND timestamp > ${athTimestamp} AND key='${key}') as ${key}AllTimeOld,`;
// Previous Year values
let previousYearStart =
moment()
.subtract(365 * 2, "days")
.unix() * 1000;
let previousYearEnd =
moment()
.subtract(365, "days")
.unix() * 1000;
queryToUse += `(SELECT ROUND(AVG(value::numeric), 4) FROM raw_data WHERE timestamp > ${previousYearStart} AND timestamp < ${previousYearEnd} AND key='${key}') as ${key}PreviousYear,`;
queryToUse += `(SELECT ROUND(AVG(value::numeric), 4) FROM raw_data WHERE timestamp < ${previousYearEnd} AND key='${key}') as ${key}BeforeLastYear,`;
let previousQuarterStart =
moment()
.subtract(90 * 2, "days")
.unix() * 1000;
let previousQuarterEnd =
moment()
.subtract(90, "days")
.unix() * 1000;
queryToUse += `(SELECT ROUND(AVG(value::numeric), 4) FROM raw_data WHERE timestamp > ${previousQuarterStart} AND timestamp < ${previousQuarterEnd} AND key='${key}') as ${key}PreviousQuarter`;
console.log(queryToUse);
postgres.client.query(
{
text: queryToUse
},
(err, res) => {
const rows = ["week", "month", "quarter", "year", "alltime"];
let c = res.rows[0];
console.log(c);
var finalText = ["Moving averages for " + key];
for (let i = 0; i < rows.length; i++) {
let newValue = c[key.toLowerCase() + rows[i]];
let oldValue = c[key.toLowerCase() + rows[i] + "old"];
var stringToPush =
roundNumberExactly(newValue, 2) +
" - " +
rows[i] +
" (" +
(newValue - oldValue > 0 ? "+" : "") +
roundNumberExactly(newValue - oldValue, 2) +
")";
// quarter
if (rows[i] == "quarter") {
let newQuarterValue = c[key.toLowerCase() + "previousquarter"];
stringToPush +=
"\n " +
roundNumberExactly(newQuarterValue, 2) +
" - Previous Quarter (" +
(newValue - newQuarterValue > 0 ? "+" : "") +
roundNumberExactly(newValue - newQuarterValue, 2) +
")";
}
// year
if (rows[i] == "year") {
let newYearValue = c[key.toLowerCase() + "previousyear"];
stringToPush +=
"\n " +
roundNumberExactly(newYearValue, 2) +
" - Previous Year (" +
(newValue - newYearValue > 0 ? "+" : "") +
roundNumberExactly(newValue - newYearValue, 2) +
")";
let newBeforeLastYearValue =
c[key.toLowerCase() + "beforelastyear"];
stringToPush +=
"\n " +
roundNumberExactly(newBeforeLastYearValue, 2) +
" - Before Last Year (" +
(newValue - newBeforeLastYearValue > 0 ? "+" : "") +
roundNumberExactly(newValue - newBeforeLastYearValue, 2) +
")";
}
finalText.push(stringToPush);
}
ctx.reply(finalText.join("\n"));
}
);
}
}
);
}
function triggerNextQuestionFromQueue(ctx) {
let keyboard = Extra.markup(m => m.removeKeyboard()); // default keyboard
let questionAppendix = "";
currentlyAskedQuestionObject = currentlyAskedQuestionQueue.shift();
if (currentlyAskedQuestionObject == null) {
ctx.reply("All done for now, let's do this 💪", keyboard);
// Finished
return;
}
if (currentlyAskedQuestionObject.question == null) {
console.error("No text defined for");
console.error(currentlyAskedQuestionObject);
}
if (currentlyAskedQuestionObject.type == "header") {
// This is information only, just print and go to the next one
ctx
.reply(currentlyAskedQuestionObject.question, keyboard)
.then(({ message_id }) => {
triggerNextQuestionFromQueue(ctx);
});
return;
}
// Looks like Telegram has some limitations:
// - No way to use `force_reply` together with a custom keyboard (https://github.com/KrauseFx/FxLifeSheet/issues/5)
// - No way to update existing messages together with a custom keyboard https://core.telegram.org/bots/api#updating-messages
if (currentlyAskedQuestionObject.type == "range") {
let allButtons = [
[getButtonText("5")],
[getButtonText("4")],
[getButtonText("3")],
[getButtonText("2")],
[getButtonText("1")],
[getButtonText("0")]
];
shuffleArray(allButtons);
keyboard = Markup.keyboard(allButtons)
.oneTime()
.extra();
} else if (currentlyAskedQuestionObject.type == "boolean") {
keyboard = Markup.keyboard([["1: Yes"], ["0: No"]])
.oneTime()
.extra();
} else if (currentlyAskedQuestionObject.type == "text") {
// use the default keyboard we set here anyway
questionAppendix +=
"You can use a Bear note, and then paste the deep link to the note here";
} else if (currentlyAskedQuestionObject.type == "location") {
keyboard = Extra.markup(markup => {
return markup.keyboard([
markup.locationRequestButton("📡 Send location")
]);
});
}
questionAppendix = currentlyAskedQuestionQueue.length + " more question";
if (currentlyAskedQuestionQueue.length != 1) {
questionAppendix += "s";
}
if (currentlyAskedQuestionQueue.length == 0) {
questionAppendix = "last question";
}
let question =
currentlyAskedQuestionObject.question + " (" + questionAppendix + ")";
ctx.reply(question, keyboard).then(({ message_id }) => {
currentlyAskedQuestionMessageId = message_id;
});
if (
currentlyAskedQuestionObject.type == "number" ||
currentlyAskedQuestionObject.type == "range" ||
currentlyAskedQuestionObject.type == "boolean"
) {
// To show the graph before, as it takes a while to load
printGraph(currentlyAskedQuestionObject.key, ctx, 0, null, false);
}
}
// Taken from https://stackoverflow.com/questions/2450954/how-to-randomize-shuffle-a-javascript-array
function shuffleArray(array) {
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[array[i], array[j]] = [array[j], array[i]];
}
}
function insertNewValue(parsedUserValue, ctx, key, type, fakeDate = null) {
console.log("Inserting value '" + parsedUserValue + "' for key " + key);
let dateToAdd;
if (fakeDate) {
dateToAdd = fakeDate;
} else {
dateToAdd = moment(ctx.update.message.date * 1000);
}
let questionText = null;
if (currentlyAskedQuestionObject) {
questionText = currentlyAskedQuestionObject.question;
}
let row = {
Timestamp: dateToAdd.valueOf(),
YearMonth: dateToAdd.format("YYYYMM"),
YearWeek: dateToAdd.format("YYYYWW"), // TODO: verify Monday/Sunday week start
Year: dateToAdd.year(),
Quarter: dateToAdd.quarter(),
Month: dateToAdd.format("MM"), // to get the leading 0 needed for Google Data Studio
Day: dateToAdd.date(),
Hour: dateToAdd.hours(),
Minute: dateToAdd.minutes(),
Week: dateToAdd.week(),
Key: key,
Question: questionText,
Type: type,
Value: parsedUserValue,
Source: "telegram",
Importedat: moment(ctx.update.message.date * 1000),
Importid: null
};
postgres.client.query(
{
text:
"INSERT INTO raw_data (" +
Object.keys(row).join(",") +
") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17)",
values: Object.values(row)
},
(err, res) => {
if (err) {
ctx.reply("Error saving value: " + err);
console.log(err.stack);
} else {
}
}
);
if (ctx) {
// we don't use this for location sending as we have many values for that, so that's when `ctx` is nil
// Show that we saved the value
// Currently the Telegram API doens't support updating of messages that have a custom keyboard
// for no good reason, as mentioned here https://github.com/TelegramBots/telegram.bot/issues/176
//
// Bad Request: Message can't be edited
//
// Please note, that it is currently only possible to edit messages without reply_markup or with inline keyboards
// ctx.telegram.editMessageText(
// ctx.update.message.chat.id,
// currentlyAskedQuestionMessageId,
// null,
// "✅ " + lastQuestionAskedDupe + " ✅"
// );
}
}
function parseUserInput(ctx, text = null) {
if (ctx.update.message.from.username != process.env.TELEGRAM_USER_ID) {
console.error("Invalid user " + ctx.update.message.from.username);
return;
}
if (currentlyAskedQuestionMessageId == null) {
ctx
.reply(
"Sorry, I forgot the question I asked, this usually means it took too long for you to respond, please trigger the question again by running the `/` command"
)
.then(({ message_id }) => {
sendAvailableCommands(ctx);
});
return;
}
// user replied with a value
let userValue;
if (text != null) {
userValue = text;
} else {
userValue = ctx.match[1];
}
let parsedUserValue = null;
if (currentlyAskedQuestionObject.type != "text") {
// First, see if it starts with emoji number, for which we have to do custom
// parsing instead
if (
currentlyAskedQuestionObject.type == "range" ||
currentlyAskedQuestionObject.type == "boolean"
) {
let tryToParseNumber = parseInt(userValue[0]);
if (!isNaN(tryToParseNumber)) {
parsedUserValue = tryToParseNumber;
} else {
ctx.reply(
"Sorry, looks like your input is invalid, please enter a valid number from the selection",
Extra.inReplyTo(ctx.update.message.message_id)
);
}
}
if (parsedUserValue == null) {
// parse the int/float, support both ints and floats
userValue = userValue.match(/^(\d+(\.\d+)?)$/);
if (userValue == null) {
ctx.reply(
"Sorry, looks like you entered an invalid number, please try again",
Extra.inReplyTo(ctx.update.message.message_id)
);
return;
}
parsedUserValue = userValue[1];
}
} else {
parsedUserValue = userValue; // raw value is fine
}
if (currentlyAskedQuestionObject.type == "range") {
// ensure the input is 0-6
if (parsedUserValue < 0 || parsedUserValue > 6) {
ctx.reply(
"Please enter a value from 0 to 6",
Extra.inReplyTo(ctx.update.message.message_id)
);
return;
}
}
if (
currentlyAskedQuestionObject.type == "number" ||
currentlyAskedQuestionObject.type == "range" ||
currentlyAskedQuestionObject.type == "boolean"
) {
// To show potential streaks and the history
printGraph(currentlyAskedQuestionObject.key, ctx, 2, parsedUserValue, true);
}
console.log(
"Got a new value: " +
parsedUserValue +
" for question " +
currentlyAskedQuestionObject.key
);
if (
currentlyAskedQuestionObject.replies &&
currentlyAskedQuestionObject.replies[parsedUserValue]
) {
// Check if there is a custom reply, and if, use that
ctx.reply(
currentlyAskedQuestionObject.replies[parsedUserValue],
Extra.inReplyTo(ctx.update.message.message_id)
);
}
insertNewValue(
parsedUserValue,
ctx,
currentlyAskedQuestionObject.key,
currentlyAskedQuestionObject.type
);
setTimeout(function() {
triggerNextQuestionFromQueue(ctx);
}, 50); // timeout just to make sure the order is right
}
function sendAvailableCommands(ctx) {
ctx.reply("Available commands:").then(({ message_id }) => {
ctx.reply(
"\n\n/skip\n/report\n\n/" + Object.keys(config.userConfig).join("\n/")
);
});
}
function saveLastRun(command) {
postgres.client.query(
{
text:
"insert into last_run (command, last_run) VALUES ($1, $2) on conflict (command) do update set last_run = $2",
values: [command, moment().valueOf()]
},
(err, res) => {
console.log(res);
if (err) {
console.log(err.stack);
} else {
console.log("Stored timestamp of last run for " + command);
}
}
);
}
function initBot() {
console.log("Launching up Telegram bot...");
// parse numeric/text inputs
// `^([^\/].*)$` matches everything that doens't start with /
// This will enable us to get any user inputs, including longer texts
bot.hears(/^([^\/].*)$/, ctx => {
parseUserInput(ctx);
});
// As we get no benefit of using `bot.command` to add commands, we might as well use
// regexes, which then allows us to let the user's JSON define the available commands
//
// parse one-off commands:
//
// Those have to be above the regex match
bot.hears("/skip", ctx => {
if (ctx.update.message.from.username != process.env.TELEGRAM_USER_ID) {
console.error("Invalid user " + ctx.update.message.from.username);
return;
}
console.log("user is skipping this question");
ctx.reply(
"Okay, skipping question. If you see yourself skipping a question too often, maybe it's time to rephrase or remove it"
);
triggerNextQuestionFromQueue(ctx);
});
bot.hears("/skip_all", ctx => {
if (ctx.update.message.from.username != process.env.TELEGRAM_USER_ID) {
return;
}
currentlyAskedQuestionQueue = [];
triggerNextQuestionFromQueue(ctx);
ctx.reply("Okay, removing all questions that are currently in the queue");
});
bot.hears(/\/track (\w+)/, ctx => {
if (ctx.update.message.from.username != process.env.TELEGRAM_USER_ID) {
console.error("Invalid user " + ctx.update.message.from.username);
return;
}
let toTrack = ctx.match[1];
console.log(
"User wants to track a specific value, without the whole survey: " +
toTrack
);
let questionToAsk: QuestionToAsk = null;
Object.keys(config.userConfig).forEach(function(key) {
var survey = config.userConfig[key];
for (let i = 0; i < survey.questions.length; i++) {
let currentQuestion = survey.questions[i];
if (currentQuestion.key == toTrack) {
questionToAsk = currentQuestion;
return;
}
}
});
if (questionToAsk) {
currentlyAskedQuestionQueue = currentlyAskedQuestionQueue.concat(
questionToAsk
);
triggerNextQuestionFromQueue(ctx);
} else {
ctx.reply(
"Sorry, I couldn't find the key `" +
toTrack +
"`, please make sure it's not mispelled"
);
}
});
bot.hears(/\/graph (\w+)/, ctx => {
if (ctx.update.message.from.username != process.env.TELEGRAM_USER_ID) {
return;
}
let key = ctx.match[1];
console.log("User wants to graph a specific value " + key);
printGraph(key, ctx, 100, null, false);
});
bot.on("location", ctx => {
if (ctx.update.message.from.username != process.env.TELEGRAM_USER_ID) {
return;
}
if (currentlyAskedQuestionMessageId == null) {
ctx
.reply(
"Sorry, I forgot the question I asked, this usually means it took too long for you to respond, please trigger the question again by running the `/` command"
)
.then(({ message_id }) => {
sendAvailableCommands(ctx);
});
return;
}
let location = ctx.update.message.location;
let lat = location.latitude;
let lng = location.longitude;
insertNewValue(lat, ctx, "locationLat", "number");
insertNewValue(lng, ctx, "locationLng", "number");
triggerNextQuestionFromQueue(ctx);
});
// parse commands to start a survey
bot.hears(/\/(\w+)/, ctx => {
if (ctx.update.message.from.username != process.env.TELEGRAM_USER_ID) {
return;
}
// user entered a command to start the survey
let command = ctx.match[1];
let matchingCommandObject = config.userConfig[command];
if (matchingCommandObject && matchingCommandObject.questions) {
console.log("User wants to run: " + command);
saveLastRun(command);
if (
currentlyAskedQuestionQueue.length > 0 &&
currentlyAskedQuestionMessageId
) {
// Happens when the user triggers another survey, without having completed the first one yet
ctx.reply(
"^ Okay, but please answer my previous question also, thanks ^",
Extra.inReplyTo(currentlyAskedQuestionMessageId)
);
}
currentlyAskedQuestionQueue = currentlyAskedQuestionQueue.concat(
matchingCommandObject.questions.slice(0)
); // slice is a poor human's .clone basically
if (currentlyAskedQuestionObject == null) {
triggerNextQuestionFromQueue(ctx);
}
} else {
ctx
.reply("Sorry, I don't know how to run `/" + command)
.then(({ message_id }) => {
sendAvailableCommands(ctx);
});
}
});
bot.start(ctx => ctx.reply("Welcome to FxLifeSheet"));
// bot.on(["voice", "video_note"], ctx => {
// if (ctx.update.message.from.username != process.env.TELEGRAM_USER_ID) {
// return;
// }
// let message = ctx.message || ctx.update.channel_post;
// let voice =
// message.voice || message.document || message.audio || message.video_note;
// let fileId = voice.file_id;
// let transcribingMessageId = null;
// console.log("Received voice with file ID '" + fileId + "'");
// ctx
// .reply(
// "🦄 Received message, transcribing now...",
// Extra.inReplyTo(ctx.message.message_id)
// )
// .then(({ message_id }) => {
// transcribingMessageId = message_id;
// });
// let transcribeURL = "https://bubbles-transcribe.herokuapp.com/transcribe";
// transcribeURL += "?file_id=" + fileId;
// transcribeURL += "&language=en-US";
// transcribeURL += "&telegram_token=" + process.env.TELEGRAM_BOT_TOKEN;
// needle.get(transcribeURL, function(error, response, body) {
// if (error) {
// console.error(error);
// ctx.reply("Error: " + error, Extra.inReplyTo(ctx.message.message_id));
// }
// let text = JSON.parse(body)["text"];
// ctx.telegram.editMessageText(
// ctx.update.message.chat.id,
// transcribingMessageId,
// null,
// text
// );
// if (text != null && text.length > 5) {
// parseUserInput(ctx, text);
// }
// });
// });
bot.help(ctx =>
ctx.reply(
"No in-bot help right now, for now please visit https://github.com/KrauseFx/FxLifeSheet"
)
);
bot.on("sticker", ctx => ctx.reply("Sorry, I don't support stickers"));
bot.hears("hi", ctx => ctx.reply("Hey there"));
// has to be last
bot.launch();
}
export {};