This repository has been archived by the owner on Jul 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
430 lines (409 loc) · 16.1 KB
/
index.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
//disattiva messaggi errore
console.error = function() {}
//id conversazioni e token di @BotFather
const admin = ########;
const gruppo = ########;
const userforn = new Array("########");
const token = '########';
// aggiungo le api
const TelegramBot = require('node-telegram-bot-api');
const googleTTS = require('google-tts-api');
const http = require('https');
const fs = require('fs');
const exec = require('child_process').execFile;
// avvio il bot in polling
const bot = new TelegramBot(token, {polling: true});
//creo il file di log
var logfile, data;
function nomefile() {
logfile= new Date();
if ((logfile.getMonth()+1)>9)
logfile = (logfile.getMonth()+1) + "_" + (logfile.getFullYear()-2000);
else logfile = "log\\0" +(logfile.getMonth()+1) + "_" + (logfile.getFullYear()-2000)+".txt";
if (!(fs.existsSync(logfile))) {
fs.writeFileSync(logfile, "I messaggi sono riportati di seguito nel seguente formato: ID Chat, Gruppo, Nome, Congnome, Username, Data, Testo del messagio");
}
};
nomefile();
data= new Date();
data = "Bot avviato il " + data.getDate() + "/" + (data.getMonth()+1) + "/" + data.getFullYear() + " alle " + data.getHours() + ":" + data.getMinutes() + ":" + data.getSeconds();
console.log(data);
fs.appendFile(logfile,"\n" + data);
// leggo tutti i messaggi
var timermessaggi;
bot.on("message", (msg) => {
//stampo cose su file
data = new Date(msg.date*1000);
var testo = new Array();
testo.push(msg.chat.id);
if (msg.chat.title == undefined) testo.push("/");
else testo.push(msg.chat.title);
testo.push(msg.from.first_name);
testo.push(msg.from.last_name);
testo.push("@"+msg.from.username);
testo.push(data.getDate() + "/" + (data.getMonth()+1) + "/" + data.getFullYear() + " " + data.getHours() + ":" + data.getMinutes() + ":" + data.getSeconds());
testo.push(msg.text);
nomefile()
fs.appendFile(logfile,"\n" + testo.join("\t"));
//sfotto la gente
if (msg.text.toString().toLowerCase().includes("pesto")) {
bot.sendMessage(msg.chat.id, "Mia mamma lo fa meglio!");
}
if (msg.text.toString().toLowerCase().includes("sug")) {
bot.sendMessage(msg.chat.id, "Che schifo il sugo, " + msg.from.first_name + "!");
}
if (msg.text.toString().toLowerCase().includes("sesamo")) {
bot.sendMessage(msg.chat.id, "Eja! Il mal di testta venirre fa.");
}
if (msg.text.toString().toLowerCase().includes("autostrad")) {
bot.sendMessage(msg.chat.id, msg.from.first_name + ", quantte voltte te lo devvo dire che in Sardegna autosradde non ci sonno.");
}
if (msg.text.toString().toLowerCase().includes("bruci")) {
bot.sendMessage(msg.chat.id, "È stata Clarissa!");
}
if (msg.text.toString().toLowerCase().includes("riso")) {
bot.sendSticker(msg.chat.id, "CAADBAADmwADHeI6AmqjvRWGfY8BAg");
}
if (msg.text.toString().toLowerCase().includes("lecc")) {
bot.sendSticker(msg.chat.id, "CAADBAADnAADHeI6Aqwc0Ytdr_JPAg");
}
if (msg.text.toString().toLowerCase().includes("pomodor")) {
bot.sendMessage(msg.chat.id, "Bhhh bololi");
}
if (msg.text.toString().toLowerCase().includes("lezione")) {
bot.sendMessage(msg.chat.id, "Non c'ho voglia di andare a lezione.");
}
if (msg.text.toString().toLowerCase().includes("esplo")) {
bot.sendDocument(msg.chat.id, 'http://www.daidegasforum.com/images/386/esplosione-atomica-atomic-bomb.gif');
}
if (msg.text.toString().toLowerCase().includes("latte")) {
bot.sendSticker(msg.chat.id, "CAADBAADngADHeI6Aia53Y__sLfvAg");
}
if (msg.text.toString().toLowerCase().includes("friarielli")) {
bot.sendMessage(msg.chat.id, "Volevi dire cime di rapa?");
}
if (msg.text.toString().toLowerCase().includes("rapa")) {
bot.sendMessage(msg.chat.id, "Volevi dire friarielli?");
}
if (msg.text.toString().toLowerCase().includes("uov")) {
bot.sendMessage(msg.chat.id, "Ma è nato prima l'uovo o la gallina?");
}
if (msg.text.toString().toLowerCase().includes("addio")) {
bot.sendChatAction(msg.chat.id, "record_audio");
bot.sendVoice(msg.chat.id, "data\\arrive.ogg");
}
if (msg.text.toString().toLowerCase().includes("aggiusta")) {
bot.sendChatAction(msg.chat.id, "record_audio");
bot.sendVoice(msg.chat.id, "data\\bob.ogg");
}
//se gruppo, manda un messaggio ogni 24 ore
if (msg.chat.title != undefined){
clearInterval(timermessaggi);
timermessaggi = setInterval(function() {
switch (Math.floor((Math.random() * 11) + 1)){
case 1:
bot.sendMessage(msg.chat.id, "Ma è nato prima l'uovo o la gallina?", {disable_notification:1});
break;
case 2:
bot.sendMessage(msg.chat.id, "Qualcuno ha detto friarielli?", {disable_notification:1});
break;
case 3:
bot.sendMessage(msg.chat.id, "Qualcuno ha detto cime di rapa?", {disable_notification:1});
break;
case 4:
bot.sendSticker(msg.chat.id, "CAADBAADngADHeI6Aia53Y__sLfvAg", {disable_notification:1});
break;
case 5:
bot.sendMessage(msg.chat.id, "Non c'ho voglia di andare a lezione.", {disable_notification:1});
break;
case 6:
bot.sendMessage(msg.chat.id, "Bhhh bololi", {disable_notification:1});
break;
case 7:
bot.sendSticker(msg.chat.id, "CAADBAADnAADHeI6Aqwc0Ytdr_JPAg", {disable_notification:1});
break;
case 8:
bot.sendSticker(msg.chat.id, "CAADBAADmwADHeI6AmqjvRWGfY8BAg", {disable_notification:1});
break;
case 9:
bot.sendMessage(msg.chat.id, "Che schifo il sugo!", {disable_notification:1});
break;
case 10:
bot.sendMessage(msg.chat.id, "Mia mamma lo fa meglio!", {disable_notification:1});
break;
case 11:
bot.sendMessage(msg.chat.id, "Clariiiiiiiiiiii", {disable_notification:1});
break;
}
}, 86400000);
}
});
// comando di aiuto e di start
bot.onText(/\/aiuto/, (msg) => {
bot.sendMessage(msg.chat.id, "mmmmm, stavo dormendo o giocando al computer");
bot.sendMessage(msg.chat.id, "Sono il bot del Buon Matteo. I miei compiti sono quelli di sfottere la gente e di prendere le ordinazini delle pizze. Per scegliere una pizza scrivi /pizza seguito dalla pizza che vuoi ordinare (es. /pizza margherita). È possibile scegliere per un altro con /sceglixaltro seguito dal'username della persona e che pizza vuole (es. /sceglixaltro @Pippo margherita). Non è possibile cambiare la scelta di qualcun altro. Per vedere tutte le ordinazioni già prese puoi scivere /ordine; invece per cancellare la tua pizza /cancella e per ricominciare puoi scrivere /reset.Per prenotare il fornetto per il pasto più vicino manda /prenota e se cambi idea /sprenota. Se hai bisogno di un messaggio vocale manda /dimmi seguito da quello che vuoi ascoltare.\n\nCredits by @mannarella.");
});
bot.onText(/\/start/, (msg) => {
bot.sendMessage(msg.chat.id, "Non c'ho voglia.");
});
//comando per parlare
var file, flag1 = 0, aspetta=null;
bot.onText(/\/dimmi (.+)/, (msg, match) => {
if(aspetta==null){
if (match[1][200] == null) {
aspetta = setTimeout(function() {aspetta = null;}, 5000);
bot.sendChatAction(msg.chat.id, "record_audio");
googleTTS(match[1], 'it', 0.30).then(function (url) {
file = fs.createWriteStream("data\\prova.mp3");
var request = http.get(url, function(response) {
response.pipe(file);
exec('encode.bat', function() {
bot.sendVoice(msg.chat.id, "audio.ogg");
fs.unlink('audio.ogg');
});
});
});
} else bot.sendMessage(msg.chat.id, "mmmmm, mi stanco a parlare così tanto.");
} else bot.sendMessage(msg.chat.id, "Oooooooo, uno alla volta!");
sicuro = 0;
flag1 = 1;
});
//comando per scrivere
bot.onText(/\/scrivi (.+)/, (msg, match) => {
if (msg.chat.id==admin)
bot.sendMessage(gruppo, match[1]);
else {
bot.sendChatAction(msg.chat.id, "record_audio");
bot.sendVoice(msg.chat.id, "data\\dipre.ogg");
}
});
//comando per richiedere log
var nomechiesto;
bot.onText(/\/log (.+)/, (msg, match) => {
if (msg.chat.id==admin){
bot.sendChatAction(msg.chat.id, "upload_document");
nomechiesto= "log\\" + match[1] + ".txt";
if (fs.existsSync(nomechiesto))
setTimeout(function() {bot.sendDocument(msg.chat.id, nomechiesto);}, 2000);
else bot.sendMessage(msg.chat.id, "Non ho quello che cerchi.");
}
else {
bot.sendChatAction(msg.chat.id, "record_audio");
bot.sendVoice(msg.chat.id, "data\\dipre.ogg");
}
});
//comando errato per parlare
bot.onText(/\/dimmi/, (msg) => {
if (flag1 == 0) bot.sendMessage(msg.chat.id, msg.from.first_name + " devi scrivere /dimmi seguito da quello che vuoi sentire!");
else flag1 = 0;
sicuro = 0;
});
//comando prenotazione fornetto
var orario, fine, timerforno = null, personapren, scherzo = 0;
bot.onText(/\/prenota/, (frn) => {
if (-1 != userforn.indexOf(frn.from.username)){
if (scherzo < 3){
orario = new Date();
if (timerforno == null) {
personapren = frn.from.username;
if ((orario.getHours()<14) || (orario.getHours()>21)){
if ((orario.getHours()>21) && (orario.getHours()<24)){
fine = 14*3600000 + (24 - orario.getHours()) * 3600000 - orario.getMinutes() * 60000 - orario.getSeconds() * 1000;
bot.sendMessage(frn.chat.id, "Bene, " + frn.from.first_name + " ha prenotato il fornetto per domani a pranzo.");
}
else{
fine = (14 - orario.getHours()) * 3600000 - orario.getMinutes() * 60000 - orario.getSeconds() * 1000;
bot.sendMessage(frn.chat.id, "Bene, " + frn.from.first_name + " ha prenotato il fornetto per oggi a pranzo.");
}
} else {
fine = (22 - orario.getHours()) * 3600000 - orario.getMinutes() * 60000 - orario.getSeconds() * 1000;
bot.sendMessage(frn.chat.id, "Bene, " + frn.from.first_name + " ha prenotato il fornetto per stasera a cena.");
}
timerforno = setTimeout(function() {bot.sendMessage(frn.chat.id, "Il fornetto ora è libero", {disable_notification:1}); timerforno=null;}, fine);
} else bot.sendMessage(frn.chat.id, "Il fornetto è gia stato prenotato da @" + personapren);
} else {
bot.sendMessage(frn.chat.id, "Siccome mi stai antipatico, non puoi prenotare il fornetto oggi.");
setTimeout(function() {
orario = new Date();
if (timerforno == null) {
if ((orario.getHours()<14) || (orario.getHours()>21)){
if ((orario.getHours()>21) && (orario.getHours()<24)){
fine = 14*3600000 + (24 - orario.getHours()) * 3600000 - orario.getMinutes() * 60000 - orario.getSeconds() * 1000;
bot.sendMessage(frn.chat.id, "Bene, " + frn.from.first_name + " ha prenotato il fornetto per domani a pranzo.");
}
else{
fine = (14 - orario.getHours()) * 3600000 - orario.getMinutes() * 60000 - orario.getSeconds() * 1000;
bot.sendMessage(frn.chat.id, "Bene, " + frn.from.first_name + " ha prenotato il fornetto per oggi a pranzo.");
}
} else {
fine = (22 - orario.getHours()) * 3600000 - orario.getMinutes() * 60000 - orario.getSeconds() * 1000;
bot.sendMessage(frn.chat.id, "Bene, " + frn.from.first_name + " ha prenotato il fornetto per stasera a cena.");
}
timerforno = setTimeout(function() {bot.sendMessage(frn.chat.id, "Il fornetto ora è libero", {disable_notification:1}); timerforno=null;}, fine);
} else bot.sendMessage(frn.chat.id, "Non è vero, il fornetto è già stato prenotato da @" + personapren);
}, 6000);
}
scherzo ++;
if (scherzo == 4) scherzo = 0;
} else {
bot.sendSticker(frn.chat.id, "CAADBAAD2QADEzLMAdbI38mV8YYsAg");
bot.sendMessage(frn.chat.id, "Tu non puoi prenotare il fornetto.");
}
sicuro = 0;
});
//comando sprenotazione fornetto
bot.onText(/\/sprenota/, (frn) => {
if (timerforno != null){
if (frn.from.username == personapren){
clearTimeout(timerforno);
bot.sendMessage(frn.chat.id, frn.from.first_name + ", la tua prenotazione è annullata.");
timerforno=null;
} else {
bot.sendSticker(frn.chat.id, "CAADAgADuQADEmARAzMSCb-uZBAHAg");
}
} else {
bot.sendMessage(frn.chat.id, "Il fonetto non è prenotato.");
}
sicuro = 0;
});
// comando aggiungi pizza
var persone = new Array();
var pizza = new Array();
var flag = 0;
var trovato;
bot.onText(/\/pizza (.+)/, (pzz, match) => {
trovato = persone.indexOf(pzz.from.username);
if (trovato == -1){
persone.unshift(pzz.from.username);
pizza.unshift(match[1].toLowerCase());
trovato = 0;
bot.sendMessage(pzz.chat.id, "Bene, " + pzz.from.first_name + " per te " + pizza[trovato] + ".");
} else{
pizza[trovato] = match[1].toLowerCase();
bot.sendMessage(pzz.chat.id, pzz.from.first_name + ", ho cambiato la tua in " + pizza[trovato] + ".");
}
flag = 1;
sicuro = 0;
});
//comando errato aggiungii pizza
bot.onText(/\/pizza/, (pzz) => {
if (flag == 0) bot.sendMessage(pzz.chat.id, pzz.from.first_name + " devi scrivere /pizza e la pizza che hai scelto!");
else flag = 0;
sicuro = 0;
});
//comando scegli per altro
bot.onText(/\/sceglixaltro (.+)/, (pzz, match) => {
var spazio = match[1].indexOf(" ");
if (spazio == -1) bot.sendMessage(pzz.chat.id, pzz.from.first_name + " devi scrivere /sceglixaltro seguito dall'username della persona e la pizza che ha scelto!");
else if (match[1].indexOf("@") == -1) bot.sendMessage(pzz.chat.id, pzz.from.first_name + " l'username inizia per @!");
else {
var qualepizza = match[1].slice(spazio + 1, match[1].length).toLowerCase();
var nomepersona = match[1].slice(1, spazio);
trovato = persone.indexOf(nomepersona);
if (trovato == -1){
persone.unshift(nomepersona);
pizza.unshift(qualepizza);
trovato = 0;
bot.sendMessage(pzz.chat.id, "Bene, " + qualepizza + " per " + nomepersona + ".");
} else{
bot.sendSticker(pzz.chat.id, "CAADBAAD8QADEzLMAetg5uanapKwAg");
}
}
flag = 1;
sicuro = 0;
});
//comando errato scegli per altro
bot.onText(/\/sceglixaltro/, (pzz) => {
if (flag == 0) bot.sendMessage(pzz.chat.id, pzz.from.first_name + " devi scrivere /sceglixaltro e il nome della persona e la pizza che ha scelto!");
else flag = 0;
sicuro = 0;
});
//comando per cancellare
var sicuro = 0;
bot.onText(/\/reset/, (pzz) => {
if (sicuro == 0) {
bot.sendMessage(pzz.chat.id, "Sei sicuro? Per cancellare tutto manda ancora /reset");
sicuro = 1;
} else{
persone = [];
pizza = [];
bot.sendMessage(pzz.chat.id, "Ho cancellato tutto.");
sicuro = 0;
}
});
//comando per vedere chi ha scelto
bot.onText(/\/lista/, (pzz) => {
var testo = new Array();
var i=0;
while (persone[i] != undefined){
testo[i] = "@" + persone[i] + " - " + pizza [i];
i++;
}
if (i==0) bot.sendMessage(pzz.chat.id, "Nessuno ha scelto.");
else {
testo.unshift("Ecco chi ha scelto:\n");
bot.sendMessage(pzz.chat.id, testo.join("\n"));
}
sicuro = 0;
});
//comando cancella
bot.onText(/\/cancella/, (pzz) => {
trovato = persone.indexOf(pzz.from.username);
if (trovato == -1){
bot.sendMessage(pzz.chat.id, pzz.from.first_name + ", non possso cancellare la tua pizza se non me l'hai ancora detta.");
} else{
persone.splice(trovato,1);
pizza.splice(trovato,1);
bot.sendMessage(pzz.chat.id, pzz.from.first_name + ", ho cancellato la tua pizza.");
}
var i=0;
while (persone[i] != undefined){
console.log(persone[i]);
i++;
}
sicuro = 0;
});
//comando per l'ordinazione
bot.onText(/\/ordine/, (pzz) => {
//conto le pizze
nomepizze = new Array();
quantepizze = new Array();
controllato = new Array();
var i=0;
while (pizza[i] != undefined){
controllato [i] = 0;
i++;
}
i=0;
while (pizza[i] != undefined){
var j=0;
while (pizza[j] != undefined){
if ((pizza[i] == pizza[j]) && (controllato [j] == 0)){
controllato [j] = 1;
var trovato = nomepizze.indexOf(pizza[j]);
if(trovato == -1){
nomepizze.unshift(pizza[j]);
quantepizze.unshift(0);
trovato = 0;
}
quantepizze[trovato]++;
}
j++;
}
i++;
}
//stampo il risultato
var testo = new Array();
i=0;
while (nomepizze[i] != undefined){
testo[i] = quantepizze[i] + "\t" + nomepizze [i];
i++;
}
if (i==0) bot.sendMessage(pzz.chat.id, "Nessuno ha scelto.");
else {
testo.unshift("Ecco gli ordini delle pizze:\n");
testo.push("\nTotale: " + controllato.length);
bot.sendMessage(pzz.chat.id, testo.join("\n"));
}
sicuro = 0;
});