forked from sidelux/LootBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlootBotPlus.js
executable file
·12123 lines (10172 loc) · 467 KB
/
lootBotPlus.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
/* eslint-disable eqeqeq */
/* eslint-disable camelcase */
process.env.NTBA_FIX_319 = 1
const TelegramBot = require('node-telegram-bot-api')
const ms = require('ms')
const mysql = require('mysql')
const stringSimilarity = require('string-similarity')
const { create, all } = require('mathjs')
const express = require('express')
const fetch = require('isomorphic-fetch')
const config = require('./config.js')
var tipsController;
var tips_utils;
if (config.tips_enabled == true) {
tipsController = require('./suggestions/tips_message_controller.js')
tips_utils = require('./suggestions/tips_utils.js')
tipsController.initialize()
}
process.on('uncaughtException', function (error) {
console.log('\x1b[31mException: ', error, '\x1b[0m')
console.log(error);
})
process.on('unhandledRejection', function (error, p) {
if ((error.message.indexOf('Too Many Requests') === -1) && (error.message.indexOf('message is not modified') === -1))
console.log('\x1b[31mError: ', error.message, '\x1b[0m')
console.log(error);
})
const math = create(all)
math.import({
ones: _ => { throw new Error('Questa funzione è stata disabilitata') },
zeros: _ => { throw new Error('Questa funzione è stata disabilitata') },
identity: _ => { throw new Error('Questa funzione è stata disabilitata') },
range: _ => { throw new Error('Questa funzione è stata disabilitata') },
matrix: _ => { throw new Error('Questa funzione è stata disabilitata') }
}, { override: true })
const token = config.plustoken
const getChatMemberCount = async chat_id => {
try {
const r = await fetch(`https://api.telegram.org/bot${token}/getChatMemberCount?${new URLSearchParams({ chat_id })}`)
const j = await r.json()
if (j.ok) return j.result
return 0
} catch (e) {
console.error(e)
return 0
}
}
const bot = new TelegramBot(token)
const app = express()
const path = '/plus/bot' + token
const port = 25002
const options = {
allowed_updates: ['inline_query', 'chosen_inline_result', 'callback_query'],
max_connections: 80
}
bot.setWebHook(config.server + path, options)
app.listen(port)
app.use(express.json())
app.post(path, function (req, res) {
bot.processUpdate(req.body)
res.sendStatus(200)
})
let check = []
const timevar = []
const timevarSpam = []
const timevarFlood = []
const rankList = [20, 50, 75, 100, 150, 200, 500, 750, 1000, 1500]
const reg = /^[a-zA-Zàèìòùé0-9.*,\\?!'@() ]{1,}$/
const reItem = new RegExp("^[a-zA-Z0-9\'àèéìòù\*\, ]{1,100}$");
console.log('Avvio bot...')
const maxDurationQuery = 500
const dbConnection = mysql.createPool({
host: config.dbhost,
user: config.dbuser,
password: config.dbpassword,
database: config.dbdatabase,
connectionLimit: 100
})
const connection = {
end: dbConnection.end,
query: function (q, fn) {
const startTime = new Date()
dbConnection.query(q, function (err, res, fields) {
const duration = new Date() - startTime
if (duration > maxDurationQuery) console.log('QUERY', q, 'EXECUTED IN', duration, 'ms')
fn(err, res, fields)
})
},
queryAsync: async (str, values) => new Promise((resolve, reject) => {
const startTime = new Date()
dbConnection.query(str, function (err, res, fields) {
const duration = new Date() - startTime
if (duration > maxDurationQuery) console.log('SYNC QUERY', str, 'EXECUTED IN', duration, 'ms')
if (err) reject(err)
else resolve(res)
})
})
}
process.on('SIGINT', function () {
console.log('Spegnimento bot...')
connection.end()
process.exit()
})
process.on('SIGTERM', function () {
console.log('Spegnimento bot...')
connection.end()
process.exit()
})
bot.on('polling_error', function (error) {
console.log(error)
})
const mergeMessages = []
bot.on('edited_message', function (message) {
connection.query('SELECT always, compact FROM plus_groups WHERE chat_id = ' + message.chat.id, function (err, rows, fields) {
if (err) throw err
if (Object.keys(rows).length > 0) {
if (rows[0].compact === 1) {
if (mergeMessages[message.chat.id] && mergeMessages[message.chat.id] !== '') {
if (mergeMessages[message.chat.id].split(';')[0] === message.from.id) {
const lastIdx = mergeMessages[message.chat.id].lastIndexOf(';')
mergeMessages[message.chat.id] = mergeMessages[message.chat.id].substr(0, lastIdx + 1)
mergeMessages[message.chat.id] += cleanForMerge(message.text)
}
}
}
}
})
})
bot.on('message', function (message, match) {
if (message.text) {
// Suggestions
if ((config.tips_enabled == true) && (message.entities)) {
const entities = message.entities
let isSuggestion
if (typeof entities !== 'undefined' && entities != null && entities.length != null && entities.length > 0) {
const firstString = message.text.substr(entities[0].offset + 1, (entities[0].length) - 2).toLowerCase()
if (firstString.indexOf('suggeriment') >= 0 || firstString === 'sug') { isSuggestion = true }
}
if (isSuggestion) {
return tipsController.suggestionManager(message).then(function (sugg_res){
return tips_utils.bigSend(sugg_res, bot);
});
}
}
// End suggestions
if (message.text.startsWith('/') && !(message.text.startsWith('//'))) {
if (message.text.indexOf('@') === -1) { console.log(getNow('it') + ' - ' + message.from.username + ': ' + message.text) } else if (message.text.toLowerCase().indexOf('@lootplusbot') !== -1) { console.log(getNow('it') + ' -- ' + message.from.username + ': ' + message.text) }
}
if (message.from.id != config.phenix_id && message.chat.id === -1001097316494) {
let banFromGroup = 0
console.log(message);
if (message.text != undefined) {
if (!message.text.startsWith('Negozio di')) {
banFromGroup = 1
} else if (message.text.startsWith('@lootplusbot')) {
bot.deleteMessage(message.chat.id, message.message_id).then(function (result) {
if (result != true) { console.log('Errore cancellazione messaggio ' + message.chat.id + ' ' + message.message_id) }
})
} else {
connection.query('INSERT INTO plus_history (account_id) VALUES (' + message.from.id + ')', function (err, rows, fields) {
if (err) throw err
connection.query('SELECT id FROM plus_history WHERE account_id = ' + message.from.id + ' ORDER BY id DESC LIMIT 2', function (err, rows, fields) {
if (err) throw err
if (Object.keys(rows).length > 1) {
if (rows[0].id - rows[1].id < 3) {
bot.banChatMember(message.chat.id, message.from.id).then(function (result) {
bot.sendMessage(message.chat.id, message.from.username + ", hai postato un negozio troppo vicino all'ultimo, sei stato kickato.")
bot.sendMessage(message.from.id, "Sei stato kickato dal gruppo Loot Negozi perchè hai postato un negozio troppo vicino all'ultimo")
bot.unbanChatMember(message.chat.id, message.from.id)
})
bot.deleteMessage(message.chat.id, message.message_id).then(function (result) {
if (result != true) { console.log('Errore cancellazione messaggio ' + message.chat.id + ' ' + message.message_id) }
})
} else {
connection.query('DELETE FROM plus_history WHERE account_id = ' + message.from.id + ' AND id != ' + rows[0].id, function (err, rows, fields) {
if (err) throw err
})
}
}
})
})
}
} else {
banFromGroup = 1
}
if (banFromGroup == 1) {
const time = Math.round((Date.now() + ms('3 days')) / 1000)
bot.banChatMember(message.chat.id, message.from.id, { until_date: time }).then(function (result) {
bot.sendMessage(message.chat.id, message.from.username + ', non puoi scrivere in questo gruppo, sei stato bannato per 3 giorni.')
bot.sendMessage(message.from.id, 'Sei stato bannato dal gruppo Loot Negozi per 3 giorni perchè non hai postato un negozio')
})
bot.deleteMessage(message.chat.id, message.message_id).then(function (result) {
if (result != true) { console.log('Errore cancellazione messaggio ' + message.chat.id + ' ' + message.message_id) }
})
}
}
if (message.text.toLowerCase().indexOf('errore:') != -1) {
if (message.text.toLowerCase().indexOf('#arena') == -1) { bot.sendMessage('-1001098734700', '#Mtproto ' + message.from.username + ': ' + message.text) }
}
}
if (message.chat.id < 0) {
connection.query('SELECT chat_id FROM plus_groups WHERE chat_id = ' + message.chat.id, async function (err, rows, fields) {
if (err) throw err
const cnt = await getChatMemberCount(message.chat.id)
if (Object.keys(rows).length == 0) {
connection.query('INSERT INTO plus_groups (name, chat_id, members) VALUES ("' + (message.chat.title).replace(/[^\p{L}\p{N}\p{P}\p{Z}]/gu, '').replaceAll("'", "").replaceAll('"', '') + '","' + message.chat.id + '",' + cnt + ')', function (err, rows, fields) {
if (err) throw err
console.log('Gruppo aggiunto: ' + message.chat.title)
})
} else {
const d = new Date()
const long_date = d.getFullYear() + '-' + addZero(d.getMonth() + 1) + '-' + addZero(d.getDate()) + ' ' + addZero(d.getHours()) + ':' + addZero(d.getMinutes()) + ':' + addZero(d.getSeconds())
message.chat.title = message.chat.title.replace(/[^\w\s]/gi, '')
connection.query('UPDATE plus_groups SET name = "' + message.chat.title + '", members = ' + cnt + ', last_update = "' + long_date + '" WHERE chat_id = ' + message.chat.id, function (err, rows, fields) {
if (err) throw err
})
}
})
connection.query('SELECT always, compact FROM plus_groups WHERE chat_id = ' + message.chat.id, function (err, rows, fields) {
if (err) throw err
if (message.new_chat_members != undefined) {
if (message.new_chat_member.is_bot == 0) { checkStatus(message, message.new_chat_member.username, message.new_chat_member.id, 0) }
} else {
if (Object.keys(rows).length > 0) {
if (rows[0].always == 1) {
if (message.from.is_bot == 0) { checkStatus(message, message.from.username, message.from.id, 1) }
}
if (rows[0].compact == 1) {
if ((message.from.is_bot == 0) && (message.text != undefined) && (message.text.indexOf('http') == -1)) {
if ((message.reply_to_message == undefined) && (!message.text.startsWith('/')) && (message.forward_date == undefined)) {
if ((mergeMessages[message.chat.id] != undefined) && (mergeMessages[message.chat.id] != '')) {
if (mergeMessages[message.chat.id].split(';')[0] == message.from.id) {
bot.deleteMessage(message.chat.id, mergeMessages[message.chat.id].split(';')[1])
bot.deleteMessage(message.chat.id, message.message_id)
const newText = mergeMessages[message.chat.id].split(';')[2] + '\n~\n' + cleanForMerge(message.text)
bot.sendMessage(message.chat.id, '@' + message.from.username + ' <i>scrive</i>:\n' + newText, html).then(function (data) {
mergeMessages[message.chat.id] = message.from.id + ';' + data.message_id + ';' + newText
})
} else { mergeMessages[message.chat.id] = message.from.id + ';' + message.message_id + ';' + cleanForMerge(message.text) }
} else { mergeMessages[message.chat.id] = message.from.id + ';' + message.message_id + ';' + cleanForMerge(message.text) }
} else { mergeMessages[message.chat.id] = '' } // ignora le risposte, i comandi e gli inoltri
} else { mergeMessages[message.chat.id] = '' } // ignora i bot
}
}
}
})
}
if (message.from.username != undefined) {
connection.query('SELECT account_id FROM plus_players WHERE account_id = ' + message.from.id, function (err, rows, fields) {
if (err) throw err
if (Object.keys(rows).length == 0) {
connection.query('INSERT INTO plus_players (account_id, nickname) VALUES (' + message.from.id + ',"' + message.from.username + '")', function (err, rows, fields) {
if (err) throw err
console.log(message.from.username + ' aggiunto')
})
} else {
connection.query('SELECT real_name, gender FROM player WHERE account_id = "' + message.from.id + '"', function (err, rows, fields) {
if (err) throw err
if (Object.keys(rows).length > 0) {
if ((rows[0].real_name == null) || (rows[0].gender == null)) {
connection.query('UPDATE plus_players SET nickname = "' + message.from.username + '" WHERE account_id = ' + message.from.id, function (err, rows, fields) {
if (err) throw err
})
} else {
connection.query('UPDATE plus_players SET nickname = "' + message.from.username + '", gender = "' + rows[0].gender + '", real_name = "' + rows[0].real_name + '" WHERE account_id = ' + message.from.id, function (err, rows, fields) {
if (err) throw err
})
}
}
})
}
})
}
})
/* abilitare da botfather in caso
bot.on("chosen_inline_result", function (query) {
console.log(query);
});
*/
bot.on('inline_query', async function (query) {
if (query.query.indexOf('asta') != -1) {
let nick = ''
if (query.query.indexOf(':') != -1) {
const split = query.query.split(':')
if ((split[1] != undefined) && (split[1] != '')) { nick = split[1] }
} else { nick = query.from.username }
connection.query('SELECT id, account_id, market_ban, holiday FROM player WHERE nickname = "' + query.from.username + '"', async function (err, rows, fields) {
if (err) throw err
if (Object.keys(rows).length == 0) { return }
const player_id = rows[0].id
const banReason = await isBanned(rows[0].account_id)
if (banReason != null) { return }
if (rows[0].market_ban == 1) { return }
if (rows[0].holiday == 1) { return }
connection.query('SELECT auction_list.id, last_price, holiday, creator_id, last_player, item_id, time_end, nickname, market_ban FROM auction_list, player WHERE player.id = auction_list.creator_id AND auction_list.creator_id = (SELECT id FROM player WHERE nickname = "' + nick + '")', async function (err, rows, fields) {
if (err) throw err
if (Object.keys(rows).length == 0) { return }
let creator_nickname = ''
let last_player = 0
let last_player_nickname = ''
let last_price = 0
let itemName = ''
let d = new Date()
let long_date = ''
let short_date = ''
var id = 0
if (rows[0].market_ban == 1) {
if (nickname != 'tutte') {
bot.sendMessage(query.from.id, "L'utente è bannato dal mercato", mark)
return
}
}
creator_nickname = rows[0].nickname
last_player = rows[0].last_player
last_player_nickname = ''
last_price = rows[0].last_price
itemName = ''
d = new Date(rows[0].time_end)
long_date = d.getFullYear() + '-' + addZero(d.getMonth() + 1) + '-' + addZero(d.getDate()) + ' ' + addZero(d.getHours()) + ':' + addZero(d.getMinutes()) + ':' + addZero(d.getSeconds())
short_date = addZero(d.getHours()) + ':' + addZero(d.getMinutes()) + ':' + addZero(d.getSeconds())
var id = rows[0].id
item = await connection.queryAsync('SELECT name FROM item WHERE id = ' + rows[0].item_id)
itemName = item[0].name
player = await connection.queryAsync('SELECT nickname FROM player WHERE id = ' + last_player)
if (Object.keys(player).length == 0) { last_player_nickname = '-' } else { last_player_nickname = player[0].nickname }
const iKeys = []
iKeys.push([{
text: '♻️ Aggiorna',
callback_data: 'asta:' + id + ':' + 'update'
}])
iKeys.push([{
text: '+1k',
callback_data: 'asta:' + id + ':' + '1000'
}])
iKeys.push([{
text: '+10k',
callback_data: 'asta:' + id + ':' + '10000'
}])
iKeys.push([{
text: '+100k',
callback_data: 'asta:' + id + ':' + '100000'
}])
const text = '<b>Asta per ' + itemName + '</b>\n\n<b>Creatore</b>: ' + creator_nickname + '\n<b>Offerta</b>: ' + formatNumber(last_price) + ' §\n<b>Offerente:</b> ' + last_player_nickname + '\n<b>Scade alle:</b> ' + short_date
bot.answerInlineQuery(query.id, [{
id: '0',
type: 'article',
title: 'Pubblica Asta di ' + nick,
description: '',
message_text: text,
parse_mode: 'HTML',
reply_markup: {
inline_keyboard: iKeys
}
}], { cache_time: 0 })
})
})
return
}
let code = parseInt(query.query)
let last = 0
if ((code == '') || (isNaN(code))) {
const lastShop = await connection.queryAsync('SELECT P.code FROM public_shop P, player PL WHERE PL.id = P.player_id AND PL.nickname = "' + query.from.username + '" ORDER BY time_creation DESC')
if (Object.keys(lastShop).length == 0) { return }
code = lastShop[0].code
last = 1
}
connection.query('SELECT public_shop.id, quantity, original_quantity, item.name, price, player_id, massive, time_end, item_id, public_shop.description FROM public_shop, item WHERE item.id = item_id AND code = ' + code + ' ORDER BY item.name', async function (err, rows, fields) {
if (err) throw err
if (Object.keys(rows).length == 0) { return }
const iKeys = []
let name = ''
let item_list = ''
let total_qnt = 0
let total_price = 0
let pQnt = 0
let qntTot = 0
let qntTotOrig = 0;
for (let i = 0, len = Object.keys(rows).length; i < len; i++) {
name = cutTextW(rows[i].name)
iKeys.push([{
text: name + ' (' + rows[i].quantity + ') - ' + formatNumberK(rows[i].price) + ' §',
callback_data: rows[i].id.toString()
}])
total_qnt++
pQnt = await getItemCnt(rows[i].player_id, rows[i].item_id)
if (pQnt > rows[i].quantity) { pQnt = rows[i].quantity }
total_price += parseInt(rows[i].price * pQnt)
qntTot += pQnt
qntTotOrig += rows[i].original_quantity;
item_list += name + ', '
}
item_list = item_list.slice(0, -2)
if (rows[0].massive != 0) {
iKeys.push([{
text: '💰 Compra tutto - ' + formatNumberK(total_price) + ' §',
callback_data: 'all:' + code.toString()
}])
}
iKeys.push([{
text: '♻️ Aggiorna',
callback_data: 'update:' + code.toString()
}, {
text: '🗑 Elimina',
callback_data: 'delete:' + code.toString()
}])
var d = new Date()
const short_date = addZero(d.getHours()) + ':' + addZero(d.getMinutes()) + ':' + addZero(d.getSeconds())
var d = new Date(rows[0].time_end)
const long_date = addZero(d.getHours()) + ':' + addZero(d.getMinutes()) + ' del ' + addZero(d.getDate()) + '/' + addZero(d.getMonth() + 1) + '/' + d.getFullYear()
let isProtected = ''
if (rows[0].protected == 1) { isProtected = ' 🚫' }
let description = ''
if (rows[0].description != null) { description = '\n<i>' + rows[0].description + '</i>' }
connection.query('SELECT nickname FROM player WHERE id = ' + rows[0].player_id, function (err, rows, fields) {
if (err) throw err
if (Object.keys(rows).length == 0) { return }
let plur = 'i'
if (qntTot == 1) { plur = 'o' }
const text = '<b>Negozio di ' + rows[0].nickname + '</b>\nAggiornato alle ' + short_date + '\nScadrà alle ' + long_date + '\nContiene ' + formatNumber(qntTot) + ' oggett' + plur + " (" + formatNumber(qntTotOrig) + " alla creazione)" + isProtected + description
let desc
if (last == 0) { desc = total_qnt + ' oggetti in vendita\n' + item_list } else { desc = 'Negozio più recente\n' + item_list }
bot.answerInlineQuery(query.id, [{
id: '0',
type: 'article',
title: 'Pubblica Negozio',
description: desc,
message_text: text,
parse_mode: 'HTML',
reply_markup: {
inline_keyboard: iKeys
}
}], { cache_time: 0 })
})
})
})
var mark = {
parse_mode: 'Markdown'
}
var html = {
parse_mode: 'HTML',
disable_web_page_preview: true
}
const no_preview = {
parse_mode: 'Markdown',
disable_web_page_preview: true
}
callNTimes(60000, function () {
checkLottery()
checkAuction()
checkShop()
checkShopNotification()
checkMarket()
checkMarketDirect()
})
bot.onText(/^\/start$|^\/start@lootplusbot$/, function (message) {
bot.sendMessage(message.chat.id, 'Questo è un bot di supporto a @lootgamebot, è utile nei gruppi. Scrivi / per visualizzare tutti i comandi disponibili!')
})
bot.onText(/^\/comandigiocatore/, function (message) {
bot.sendMessage(message.chat.id, '*Comandi disponibili per il giocatore*\n' +
'/giocatore o /giocatrice - Mostra la scheda giocatore\n' +
"/drago - Mostra la scheda drago (specifica 'nome parziale, tipo' di un drago per spiarlo)\n" +
"/zaino - Mostra gli oggetti contenuti nello zaino (specifica anche rarità separate da virgola o 'consumabili' o 'completo')\n" +
'/zainoc/b - Mostra gli oggetti creati/base contenuti nello zaino (specifica anche la rarità)\n' +
'/zainor - Mostra gli oggetti speciali posseduti (polvere, monete lunari, ecc.)\n' +
'/oggetto - Mostra i dettagli di un oggetto posseduto\n' +
'/oggetti - Mostra i dettagli di più oggetti posseduti\n' +
'/scrigni - Mostra gli scrigni posseduti\n' +
'/valorezaino - Mostra il valore complessivo degli oggetti posseduti (specifica anche la rarità)\n' +
'/valorezainob - Mostra il valore complessivo degli oggetti base posseduti (specifica anche la rarità)\n' +
'/valorezainoc - Mostra il valore complessivo degli oggetti creati posseduti (specifica anche la rarità)\n' +
'/gruzzolo - Mostra le monete possedute\n' +
'/trofei - Mostra i trofei nella stagione in corso delle Mappe\n' +
'/vette - Mostra il monte e le Ð raggiunte nelle Vette in corso\n' +
'/creazioni - Mostra i punti creazione ottenuti\n' +
'/exp - Mostra l\'esperienza ottenuta\n' +
'/spia - Spia un giocatore mostrando la scheda giocatore\n' +
'/ispeziona - Ispeziona un giocatore, puoi anche specificare il nome dello gnomo da inviare\n' +
'/rango - Visualizza informazioni sul rango del giocatore\n' +
'/lega - Visualizza informazioni sulla lega del giocatore\n' +
'/imprese - Visualizza lo stato delle imprese giornaliere\n' +
"/abilità - Visualizza informazioni sull'abilità del giocatore\n" +
'/posizione - Indica la posizione in classifica globale e se si otterrà il relativo punto partecipazione\n' +
'/posizioneteam - Indica la posizione in classifica globale di tutti i membri del team\n' +
'/globaleteam - Indica quali persone nel team hanno raggiunto la soglia per la globale\n' +
'/figurine - Visualizza un riassunto delle figurine possedute raggruppate per rarità\n' +
"/figurinel - Visualizza le figurine possedute (specifica anche la rarità, il nome parziale, 'doppie', rarità o raritàinv e il numero della pagina con p1, p2, ecc.)\n" +
'/figurina - Visualizza i dettagli delle figurine\n' +
'/figurinem - Visualizza le figurine mancanti per la rarità indicata\n' +
'/figurines - Specificando rarità e nickname mostra la lista delle doppie che mancano al giocatore inserito\n' +
'/figurinels - Specificando rarità e nickname mostra la lista delle figurine che mancano al giocatore inserito\n', mark)
})
bot.onText(/^\/comandioggetto/, function (message) {
bot.sendMessage(message.chat.id, '*Comandi disponibili per gestire gli oggetti*\n' +
'/necessari - Mostra gli oggetti necessari alla creazione di un creabile\n' +
'/prezzo - Mostra gli ultimi prezzi di vendita di un oggetto escludendo quelli a prezzo base\n' +
'/totale - Mostra gli ultimi prezzi utilizzando i prezzi degli oggetti utilizzati per crearlo\n' +
"/ricerca - Cerca l'oggetto nei canali di vendita, puoi cercare fino a 3 oggetti separati da virgola", mark)
})
bot.onText(/^\/comandilotteria/, function (message) {
bot.sendMessage(message.chat.id, '*Comandi disponibili per gestire le lotterie*\n' +
'/statolotteria - Mostra lo stato di una lotteria\n' +
'/crealotteria - Permette di creare una lotteria con iscrizione gratuita\n' +
'/crealotteriap - Permette di creare una lotteria con iscrizione a pagamento\n' +
"/lotteria - Iscrive alla lotteria con iscrizione gratuita (usa anche 'tutte' o '+nome oggetto')\n" +
"/lotteriap - Iscrive alla lotteria con iscrizione a pagamento (usa anche 'tutte' o '+nome oggetto')\n" +
"/dlotteria - Disiscrive dalla lotteria con iscrizione gratuita (usa anche 'tutte')\n" +
"/dlotteriap - Disiscrive dalla lotteria con iscrizione a pagamento (usa anche 'tutte')\n" +
'/lotterie - Mostra tutte le lotterie disponibili\n' +
'/iscritti - Mostra gli iscritti alla propria lotteria\n' +
"/estrazione - Forza l'estrazione di una lotteria\n" +
'/cancellalotteria - Elimina una lotteria in corso', mark)
})
bot.onText(/^\/comandiasta/, function (message) {
bot.sendMessage(message.chat.id, '*Comandi disponibili per gestire le aste*\n' +
"/statoasta - Mostra lo stato di un'asta\n" +
"/creaasta - Permette di creare un'asta (specifica solo l'oggetto per inserirlo a prezzo base)\n" +
"/pubblicaasta - Permette di pubblicare l'asta con i relativi pulsanti (usa anche 'tutte')\n" +
"/asta - Iscrive ad un'asta\n" +
'/aste - Mostra tutte le aste disponibili\n' +
"/cancellaasta - Elimina un'asta in corso", mark)
})
bot.onText(/^\/comandinegozio/, function (message) {
bot.sendMessage(message.chat.id, '*Comandi disponibili per gestire i negozi*\n' +
'/negozio - Crea un negozio per la vendita di oggetti\n' +
"/privacy - Modifica la privacy del negozio da pubblico a privato e vice versa (usa anche 'tutti')\n" +
"/massivo - Modifica la possibilità di acquistare in modo massivo dal negozio (usa anche 'tutti')\n" +
"/protetto - Modifica la possibilità di acquistare dal negozio (usa anche 'tutti')\n" +
"/autocancella - Modifica la possibilità di cancellare automaticamente il negozio quando svuotato (usa anche 'tutti')\n" +
"/negoziodesc - Imposta o modifica la descrizione del negozio specificato (usa anche 'tutti')\n" +
'/negozioa - Permette di aggiungere oggetti al negozio\n' +
'/negozior - Permette di rimuovere oggetti dal negozio\n' +
'/negoziom - Permette di modificare oggetti inseriti nel negozio\n' +
'/negoziou - Permette di prolungare la scadenza del negozio\n' +
'/negozioref - Permette di aggiornare le quantità di tutti gli oggetti di un negozio (usa anche +/-/max, tutti/privati/pubblici)\n' +
'/negozi - Mostra tutti i propri negozi disponibili\n' +
'/cancellanegozio - Elimina il negozio', mark)
})
bot.onText(/^\/comandicommercio/, function (message) {
bot.sendMessage(message.chat.id, '*Comandi disponibili per commerciare*\n' +
'/offri - Crea una vendita riservata verso un altro giocatore\n' +
'/accettav - Accetta una vendita riservata\n' +
'/rifiutav - Rifiuta una vendita riservata\n' +
'/scambia - Crea uno scambio riservato verso un altro giocatore\n' +
'/accettas - Accetta lo scambio riservato\n' +
'/rifiutas - Rifiuta lo scambio riservato\n' +
"/paga - Invia monete ad un altro giocatore (usa anche 'tutto')", mark)
})
bot.onText(/^\/comanditeam/, function (message) {
bot.sendMessage(message.chat.id, '*Comandi disponibili per i team*\n' +
'/chiamaparty - Invia un messaggio taggando tutti i membri del proprio party (escluso il chiamante) anche in privato\n' +
'/chiamaparty<numero> - Invia un messaggio taggando tutti i membri del party <numero> anche in privato (solo per amministratori)\n' +
'/votaparty - Invia un messaggio taggando solo i membri del proprio party che devono ancora votare anche in privato\n' +
'/votaparty<numero> - Invia un messaggio taggando tutti i membri del party <numero> che devono ancora votare anche in privato (solo per amministratori)\n' +
"/incremento - Invia un messaggio taggando solo i membri del proprio team che devono ancora attivare l'incremento nell'assalto anche in privato\n" +
'/chiedoaiuto - Invia un messaggio taggando solo i membri non in dungeon disponibili ad uno scambio nel dungeon\n' +
'/serveaiuto - Invia un messaggio taggando solo i membri in dungeon disponibili ad uno scambio nel dungeon\n' +
'/cambialama <colore> - Invia un messaggio taggando solo i membri che vengono invitati a cambiare tipo di lama equipaggiata\n' +
'/chiamateam - Invia un messaggio taggando tutti i membri del proprio team anche in privato\n' +
'/statoincarichi - Mostra un riepilogo di tutti gli incarichi in corso\n' +
'/stanzeteam - Mostra la lista dei compagni di team e la stanza che hanno raggiunto nel dungeon', mark)
})
bot.onText(/^\/comandigenerali/, function (message) {
bot.sendMessage(message.chat.id, '*Comandi generali*\n' +
'/ping - Verifica se il bot è online\n' +
'/statistiche - Mostra le statistiche di Loot Bot\n' +
'/scuola - Mostra un link per accedere al gruppo scuola\n' +
'/gruppi - Mostra tutti i gruppi pubblici\n' +
'/mercatini - Mostra i mercatini degli utenti\n' +
'/comandigruppo - Mostra i comandi per gestire gli utenti nei gruppi\n' +
'/token - Permette di ottenere un token per accedere alle Loot Bot API\n' +
'/notifiche - Permette di disattivare le notifiche di una particolare sezione del bot\n' +
'/calcola - Gestisce calcoli anche avanzati utilizzando funzioni (in inglese)\n' +
'/suggerimento comandi - Visualizza la lista dei comandi disponibili per effettuare suggerimenti\n' +
"/online - Visualzza i giocatori che hanno inviato un comando nell'ultimo minuto", mark)
})
bot.onText(/^\/online/, function (message, match) {
connection.query('SELECT COUNT(*) As active FROM last_command WHERE TIMESTAMPDIFF(SECOND, time, NOW()) <= 60', function (err, rows, fields) {
if (err) throw err
const act_minute = rows[0].active
const d = new Date()
const long_date = addZero(d.getDate()) + '/' + addZero(d.getMonth() + 1) + '/' + d.getFullYear()
bot.sendMessage(message.chat.id, '*👥 Loot players (LIVE)*\nOre ' + addZero(d.getHours()) + ':' + addZero(d.getMinutes()) + ' del ' + long_date + '\n*' + act_minute + '* giocatori online ora', mark)
})
})
bot.onText(/^\/calcola (.+)|^\/calcola/, async function (message, match) {
if (match[1] == undefined) {
bot.sendMessage(message.chat.id, 'Inserisci un operazione da risolvere. Esempio: /calcola 1+2\nGuida: http://mathjs.org/docs/index.html', no_preview)
return
}
/*
bot.sendMessage(message.chat.id, "Funzione momentaneamente non disponibile");
return;
*/
if (match[1].indexOf('gruzzolo')) {
const player = await connection.queryAsync('SELECT id, money FROM player WHERE nickname = "' + message.from.username + '"')
if (Object.keys(player).length == 0) {
bot.sendMessage(message.chat.id, "Puoi usare la variabile 'gruzzolo' solo se sei registrato al gioco")
return
}
match[1] = match[1].replace('gruzzolo', player[0].money)
}
if (match[1].indexOf('scrigni')) {
const chest = await connection.queryAsync('SELECT SUM(IC.quantity) As cnt FROM inventory_chest IC, player P WHERE P.id = IC.player_id AND P.nickname = "' + message.from.username + '"')
if (Object.keys(chest).length == 0) {
bot.sendMessage(message.chat.id, "Puoi usare la variabile 'scrigni' solo se sei registrato al gioco")
return
}
match[1] = match[1].replace('scrigni', chest[0].cnt)
}
if (match[1].indexOf('zaino')) {
const inventory = await connection.queryAsync('SELECT SUM(I.value*IV.quantity) As val FROM item I, inventory IV, player P WHERE P.id = IV.player_id AND I.id = IV.item_id AND P.nickname = "' + message.from.username + '"')
if (Object.keys(inventory).length == 0) {
bot.sendMessage(message.chat.id, "Puoi usare la variabile 'zaino' solo se sei registrato al gioco")
return
}
match[1] = match[1].replace('zaino', inventory[0].val)
}
const evalValue = match[1]
if (evalValue.indexOf(':') != -1) {
bot.sendMessage(message.chat.id, 'Usa / al posto di : per le divisioni')
return
}
try {
const result = math.evaluate(evalValue)
bot.sendMessage(message.chat.id, 'Risultato: <code>' + result + '</code>', html)
} catch (error) {
bot.sendMessage(message.chat.id, 'Errore: ' + error.message)
console.error('Errore calcola: ' + error.message)
}
})
bot.onText(/^\/birra/, function (message) {
connection.query('SELECT id, market_ban, account_id, money, holiday, birth_date FROM player WHERE nickname = "' + message.from.username + '"', async function (err, rows, fields) {
if (err) throw err
if (Object.keys(rows).length == 0) { return }
const player_id = rows[0].id
const money = rows[0].money
const birth_date = rows[0].birth_date
const banReason = await isBanned(rows[0].account_id)
if (banReason != null) {
const text = '...'
bot.sendMessage(message.chat.id, text, mark)
return
}
if (rows[0].market_ban == 1) {
bot.sendMessage(message.chat.id, '...', mark)
return
}
if (rows[0].holiday == 1) {
bot.sendMessage(message.chat.id, '...')
return
}
if (money < 100) {
bot.sendMessage(message.chat.id, 'Non puoi permetterti nemmeno una birra >_>')
} else {
await reduceMoney(player_id, 100);
if (calculateAge(new Date(birth_date)) < 18) { bot.sendMessage(message.chat.id, '🥛') } else { bot.sendMessage(message.chat.id, '🍺') }
connection.query('UPDATE config SET food = food+1', function (err, rows, fields) {
if (err) throw err
})
}
})
})
bot.onText(/^\/pollo/, function (message) {
bot.sendMessage(message.chat.id, '🐓')
})
bot.onText(/^\/facepalm/, function (message) {
bot.sendPhoto(message.chat.id, 'https://scifanatic-wpengine.netdna-ssl.com/wp-content/uploads/2017/03/facepalm-head.jpg')
})
bot.onText(/^\/marketban (.+)/, function (message, match) {
match[1] = match[1].replace('@', '')
if (message.from.id == config.phenix_id) {
connection.query('SELECT id, market_ban, nickname, id, account_id FROM player WHERE nickname = "' + match[1] + '"', function (err, rows, fields) {
if (err) throw err
if (Object.keys(rows).length == 0) {
bot.sendMessage(message.chat.id, 'Non ho trovato nessun utente con quel nickname.')
return
}
if (rows[0].market_ban == 0) {
connection.query('UPDATE player SET market_ban = 1 WHERE id = ' + rows[0].id, function (err, rows, fields) {
if (err) throw err
})
bot.sendMessage(message.chat.id, rows[0].nickname + ' bannato dal mercato.')
} else {
connection.query('UPDATE player SET market_ban = 0 WHERE id = ' + rows[0].id, function (err, rows, fields) {
if (err) throw err
})
bot.sendMessage(message.chat.id, rows[0].nickname + ' sbannato dal mercato.')
}
})
};
})
bot.onText(/^\/([0-9]{1,3})birre$/, function (message, match) {
match[1] = parseInt(match[1])
if (match[1] < 1) { match[1] = 1 }
if (message.from.id != config.phenix_id) {
if (match[1] > 10) {
bot.sendMessage(message.chat.id, 'nope.')
return
}
}
connection.query('SELECT id, market_ban, account_id, money, holiday, birth_date FROM player WHERE nickname = "' + message.from.username + '"', async function (err, rows, fields) {
if (err) throw err
if (Object.keys(rows).length == 0) { return }
const player_id = rows[0].id
const money = rows[0].money
const birth_date = rows[0].birth_date
let t = ''
for (let i = 0; i < match[1]; i++) {
if (calculateAge(new Date(birth_date)) < 18) { t += '🥛' } else { t += '🍺' }
}
const banReason = await isBanned(rows[0].account_id)
if (banReason != null) {
const text = '...'
bot.sendMessage(message.chat.id, text, mark)
return
}
if (rows[0].market_ban == 1) {
bot.sendMessage(message.chat.id, '...', mark)
return
}
if (rows[0].holiday == 1) {
bot.sendMessage(message.chat.id, '...')
return
}
var reg = new RegExp("^[0-9]{1,100}$");
if (reg.test(match[1]) == false) {
bot.sendMessage(message.chat.id, "Quantità non valida, riprova");
return;
}
if (money < (100 * match[1])) {
bot.sendMessage(message.chat.id, 'Non puoi permetterti tutte queste birre >_>')
} else {
await reduceMoney(player_id, (100 * match[1]));
bot.sendMessage(message.chat.id, t)
connection.query('UPDATE config SET food = food+' + match[1], function (err, rows, fields) {
if (err) throw err
})
};
})
})
bot.onText(/^\/duebirre/, function (message) {
connection.query('SELECT id, market_ban, account_id, money, holiday, birth_date FROM player WHERE nickname = "' + message.from.username + '"', async function (err, rows, fields) {
if (err) throw err
if (Object.keys(rows).length == 0) { return }
const player_id = rows[0].id
const money = rows[0].money
const birth_date = rows[0].birth_date
let t = ''
if (calculateAge(new Date(birth_date)) < 18) { t += '🥛🥛' } else { t += '🍻' }
const banReason = await isBanned(rows[0].account_id)
if (banReason != null) {
const text = '...'
bot.sendMessage(message.chat.id, text, mark)
return
}
if (rows[0].market_ban == 1) {
bot.sendMessage(message.chat.id, '...', mark)
return
}
if (rows[0].holiday == 1) {
bot.sendMessage(message.chat.id, '...')
return
}
if (money < 200) {
bot.sendMessage(message.chat.id, 'Non puoi permetterti nemmeno una birra >_>')
} else {
await reduceMoney(player_id, 200);
bot.sendMessage(message.chat.id, '');
connection.query('UPDATE config SET food = food+2', function (err, rows, fields) {
if (err) throw err
})
}
})
})
bot.onText(/^\/popcorn/, function (message) {
connection.query('SELECT id, market_ban, account_id, money, holiday FROM player WHERE nickname = "' + message.from.username + '"', async function (err, rows, fields) {
if (err) throw err
if (Object.keys(rows).length == 0) { return }
const player_id = rows[0].id
const money = rows[0].money
const banReason = await isBanned(rows[0].account_id)
if (banReason != null) {
const text = '...'
bot.sendMessage(message.chat.id, text, mark)
return
}
if (rows[0].market_ban == 1) {
bot.sendMessage(message.chat.id, '...', mark)
return
}
if (rows[0].holiday == 1) {
bot.sendMessage(message.chat.id, '...')
return
}
if (money < 100) {
bot.sendMessage(message.chat.id, "Il flame potrai godertelo un'altra volta...")
} else {
await reduceMoney(player_id, 100);
bot.sendMessage(message.chat.id, '🍿');
connection.query('UPDATE config SET food = food+1', function (err, rows, fields) {
if (err) throw err
})
}
})
})
bot.onText(/\/checkMember (.+) (.+)/i, function (message, match) {
if (message.from.id == config.phenix_id) {
connection.query('SELECT id FROM player WHERE nickname = "' + match[1] + '"', function (err, rows, fields) {
if (err) throw err
const player_id = rows[0].id
connection.query('SELECT team_id FROM team_player WHERE player_id = ' + player_id, async function (err, rows, fields) {
if (err) throw err
await validTeamMember(message, rows[0].team_id, player_id, match[2])
})
})
}
})
async function validTeamMember(message, team_id, player_id, soglia) {
const rows = await connection.queryAsync('SELECT P.id As player_id, T.kill_num, T.name, P.reborn, P.nickname, FLOOR(P.exp/10) As level FROM team T, team_player TP, player P WHERE T.id = TP.team_id AND TP.player_id = P.id AND T.id = ' + team_id + ' ORDER BY P.reborn, P.exp DESC')
let mediaTeam = 0
for (var i = 0, len = Object.keys(rows).length; i < len; i++) { mediaTeam += parseInt(getRealLevel(rows[i].reborn, rows[i].level)) }
mediaTeam = mediaTeam / Object.keys(rows).length
let sum = 0
let lev = 0
let dev = 0
let calc = 0
for (var i = 0, len = Object.keys(rows).length; i < len; i++) {
lev = getRealLevel(rows[i].reborn, rows[i].level)
sum += Math.pow(Math.abs(mediaTeam - lev), 2)
}
dev = Math.sqrt(sum / Object.keys(rows).length)
let res = 0
for (var i = 0, len = Object.keys(rows).length; i < len; i++) {
if (player_id == rows[i].player_id) {
lev = getRealLevel(rows[i].reborn, rows[i].level)
calc = Math.round((lev - mediaTeam) / dev * 100) / 100
if (isNaN(calc) || (calc < 0)) { calc = 0 }
if (calc <= soglia) { res = 1 }
}
}
bot.sendMessage(message.chat.id, 'Media team: ' + mediaTeam + '\nDev: ' + dev + '\nRes: ' + res)
};
bot.onText(/^\/ovetto/, function (message) {
connection.query('SELECT id, market_ban, account_id, money, holiday FROM player WHERE nickname = "' + message.from.username + '"', async function (err, rows, fields) {
if (err) throw err
if (Object.keys(rows).length == 0) { return }
const player_id = rows[0].id
const money = rows[0].money
const banReason = await isBanned(rows[0].account_id)
if (banReason != null) {
const text = '...'
bot.sendMessage(message.chat.id, text, mark)
return
}