forked from maragunde/BOFH_discordbot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.py
901 lines (752 loc) · 44.3 KB
/
main.py
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
# IMPORT DE LIBRERIAS PRINCIPALES
import discord
from discord import Intents, Client, Message, app_commands, Interaction, Embed, message, reaction
from discord.ext import commands
import random, sqlite3
from datetime import datetime
from db.dbops import agregarusuario, sincronizarUsuarios
import os
from dotenv import load_dotenv # <-- Solo para las keys storeadas en venv
import re
# IMPORT DE COMANDOS TREE (NATIVOS DISCORD)
from src.londonUnderground import Lines
from src.subteBA import SubteBA
from src.fulbo import futbolimport
from src.Clima import climafun
from src.cripto import criptofun
from src.dolar import dolarfun
from src.euro import eurofun
from src.pesos import pesosfunc
from src.feriadoAR import feriadoARfun
from src.feriadoCL import feriadoCLfun
from src.feriadoES import feriadoESfun
from src.feriadoMX import feriadoMXfun
from src.feriadoUY import feriadoUYfun
from src.birras import birrasfunc
from src.karma import karmagiversfunc, karmarankfunc, karmauserfunc
from src.help import helpfunc
from src.quote import quotefunc, qsearchfunc
from src.nerdearla import nerdearlacharlasfunc
# IMPORT DE COMANDOS VERSION SIMPLE (FUNCIONAN POR TEXTO USANDO FUNCION CTX.SEND)
from src.ctxcommands.ctxclima import climafunctx
from src.ctxcommands.ctxcripto import criptofunctx
from src.ctxcommands.ctxdolar import dolarfunctx
from src.ctxcommands.ctxeuro import eurofunctx
from src.ctxcommands.ctxpesos import pesosfunctx
from src.ctxcommands.ctxferiadoar import feriadoarfunctx
from src.ctxcommands.ctxferiadocl import feriadoclfunctx
from src.ctxcommands.ctxferiadomx import feriadomxfunctx
from src.ctxcommands.ctxferiadouy import feriadouyfunctx
from src.ctxcommands.ctxferiadoes import feriadoesfunctx
from src.ctxcommands.ctxbirras import birrasfunctx
from src.ctxcommands.ctxfulbo import fulbofunctx
from src.ctxcommands.ctxhelp import helpfunctx
from src.ctxcommands.ctxkarma import karmarankfunctx, karmawordfunctx, karmagiversfunctx, karmagiversuserfunctx
from src.ctxcommands.ctxquote import quotefunctx, qsearchfunctx, quoteaddfunctx
from src.ctxcommands.ctxsubte import subtefunctx
from src.ctxcommands.ctxunderground import undergroundfunctx
from src.ctxcommands.ctxnerdearla import nerdearlafunctx
# @@@@@@@@@@@@@ =@@@* @@@@ +@@@@@@@@@@@@@
# @@@@@@@@@@@@@@ @@@@ @@@@. @@@@@@@@@@@@@.
# @@@@ =@@@- @@@@ +@@@.
# @@@@@@@@@@@@@% @@@@@@@@@@@@@. @@@@@@@@@@@@@
# @@@@@@@@@@@@@ :@@@@@@@@@@@@@ =@@@@@@@@@@@@@
# @@@% +@@@: *@@@
# @@@@@@@@@@@@@ :@@@@@@@@@@@@@ =@@@@@@@@@@@@@
# :------------- -------------. -------------.
#
#
# @@@@@@@@@@@@@ .@@@@@@@@@@@@@ :@@@@@@@@@@@@@
# @@@@@@@@@@@@@@ @@@@@@@@@@@@@= @@@@@@@@@@@@@-
# @@@@ @@@@ :@@@ @@@@ :@@@@@@@@@@@@@
# @@@@@@@@@@@@@@ @@@# @@@@@@@@= @@@@@@@@@@@@@-
# @@@@@@@@@@@@@ :@@@ @@@ :@@@@@@@@@@@@@
# @@@@. @@@@ @@@@ @@@@@@@@= @@@@@@@@@@@@@-
# @@@@ @@@@ .@@@ @@@@@@@@ :@@@@@@@@@@@@@
# :------------- -------------. -------------.
#
#
# @@@@@@@@@@@@@ @@@@@@@@@@@@@ .@@@% @@@@
# %@@@@@@@@@@@@@ @@@+-@@@%-@@@# @@@@ #@@@=
# @@@@@@@@@@@@@ @@@ .@@@ @@@ @@@@@@@@@@@@@
# %@@@@@@@@@@@@@ @@@- @@@* @@@# @@@@@@@@@@@@@+
# @@@@@@@@@@@@@ @@@ @@@ @@@ @@@@
# #@@@@@@@@@@@@@ @@@= @@@% @@@# @@@@@@@@@@@@@*
# @@@@@@@@@@@@@ .@@@ @@@ @@@ @@@@@@@@@@@@@
# :------------- -------------. -------------.
# BOFH - Discord community bot for Sysarmy
# Version 1.0 - April / May 2024
# by @Qwuor01 and @aragunde
# License GPL v2 - Ver LICENSE en repositorio
###########################################################################################################
########################### BOT INITIAL SETUP BEGINS ######################################################
# Definimos a bot
load_dotenv()
intents = discord.Intents.default()
intents.members = True
intents.message_content = True
BOT_token = os.getenv('BOT_token')
#Definicion de prefix, para buscarlo en cualquier parte del mensaje
def get_prefix(bot, message):
prefixes = ['!']
for prefix in prefixes:
if prefix in message.content:
return prefix
# Default prefix
return '!'
bot = commands.Bot(command_prefix=get_prefix, intents=intents, help_command=None)
def main() -> None:
bot.run(f'{BOT_token}')
################## FETCHING DE USUARIOS A LA DB CUANDO SE UNEN AL SERVER
@bot.event
async def on_member_join(member):
# Traemos el nombre y ID del usuario
username = member.name
user_id = str(member.id)
# Mensaje de Bienvenida privado al usuario
await member.send("Welcome to Sysarmy. Por favor recorda pasar por la seccion de Welcome para familiarizarte con el codigo de conducta y comandos de nuestro bot. Have fun :)")
# Mandamos la data a la funcion de DB Ops que la agrega a la base
await agregarusuario(username, user_id)
@bot.event
async def on_ready():
# Trae todos los usuarios presentes en el server y lost agrega a la DB - Corre por unica vez cuando se inicia el bot
# Esto lo hacemos para poder sincronizar el karma ranking y karmagiven de Discord desde nuestra DB
guild_id = os.getenv('guild_id')
guild = bot.get_guild(int(guild_id))
all_members = guild.members
await sincronizarUsuarios(all_members)
# BOFH starts
FechaActual = datetime.now()
print("Current time:", FechaActual)
print("""
........... .. ... .. ............
@@@@@@@@@@@@ @@@ @@@@ @@@@@@@@@@@@
@@@@ @@@@ .@@@ %@@@
@@@@@@@@@@@@ @@@@@@@@@@@@ @@@@@@@@@@@@
@@@@@@@@@@@@ @@@@@@@@@@@@ #@@@@@@@@@@@.
%%%%%%%%@@@@ %%%%%%%%@@@@ %%%%%%%%@@@@
@@@@@@@@@@@@. @@@@@@@@@@@@ %@@@@@@@@@@@:
@@@@@@@@@@@@ @@@@@@@@@@@@ @@@@@@@@@@@@
@@@@@@@@@@@@. @@@@@@@@@@@@ #@@@@@@@@@@@:
@@@: @@@@ @@@ .@@@ @@@@@@@@@@@@
@@@@@@@@@@@@. @@@: @@@@@@@. %@@@@@@@@@@@:
@@@@@@@@@@@@ @@@ +@@# @@@@@@@@@@@@
%@@@ @@@. @@@: @@@@@@@ #@@@@@@@@@@@:
@@@+ @@@@ @@@ +@@@@@@@ @@@@@@@@@@@@
#@@@@@@@@@@@. @@@@@@@@@@@@ *@@@ @@@:
@@@@@@@@@@@@ @@@@@@@@@@@@ @@@+ @@@@
@@@@@@@@@@@@: @@@ @@@ %@@. #@@@@@@@@@@@=
@@@@@@@@@@@@ @@@ @@@. @@@ @@@@@@@@@@@@
#@@@@@@@@@@@. @@@ @@@ #@@ @@@:
@@@@@@@@@@@@ @@@ %@@. @@@ @@@@@@@@@@@@
........... .. ... .. ............
BOFH bot is ready to pwn!""")
try:
synced = await bot.tree.sync()
print(f"Se sincronizaron {len(synced)} comandos slash")
except Exception as e:
print(e)
########################### BOT INITIAL SETUP ENDS ######################################################
#########################################################################################################
##################################################################################################################
############################# FUNCION DE ON_REACTION PARA KARMA Y QUOTES #########################################
##################################################################################################################
# Operaciones para cuando una reaccion de Discord se agrega (Para Karma y quote)
@bot.event
async def on_reaction_add(reaction, user):
FechaActual = datetime.now()
# Conectamos a la base
database = sqlite3.connect('db/discordusrs.db')
databasequotes = sqlite3.connect('db/quotes.db')
cursor = database.cursor()
cursorquotes = databasequotes.cursor()
# Esto hace que el usuario no pueda autoquotearse o darse/quitarse karma a si mismo
if user != reaction.message.author:
# Reaccion de Karma Up
if "kup" in str(reaction):
print(FechaActual)
print("Karma +1")
SQLkarma = ("UPDATE usuarios SET karma = karma + 1 WHERE user_id = ?")
cursor.execute(SQLkarma, (reaction.message.author.id,))
# Operaciones de DB
SQLkarmagiven = ("UPDATE usuarios SET karmagiven = karmagiven + 1 WHERE user_id = ?")
cursor.execute(SQLkarmagiven, (user.id,))
await reaction.message.channel.send(f"+1 karma para {str(reaction.message.author)}")
# Reaccion de Karma Down
elif "kdown" in str(reaction):
print("Karma -1")
SQLkarma = ("UPDATE usuarios SET karma = karma - 1 WHERE user_id = ?")
cursor.execute(SQLkarma, (reaction.message.author.id,))
# Operaciones de DB
SQLkarmagiven = ("UPDATE usuarios SET karmagiven = karmagiven + 1 WHERE user_id = ?")
cursor.execute(SQLkarmagiven, (user.id,))
await reaction.message.channel.send(f"-1 karma para {str(reaction.message.author)}")
# Reaccion de Quote y agrega quote a la DB
if "qadd" in str(reaction):
SQLbuscar = ("SELECT quote FROM quotes WHERE quote = ? AND username = ?")
cursorquotes.execute(SQLbuscar, (str(reaction.message.content), str(reaction.message.author)))
quotesencontradas = cursorquotes.fetchall()
if len(quotesencontradas) == 0:
print(len(quotesencontradas))
print("Mensaje quoteado")
print(f"Message: {reaction.message.content}")
print(f"Author: {reaction.message.author}")
print(f"Date: {reaction.message.created_at}")
SQLquote = ("INSERT INTO quotes (quote, username, date) VALUES (?, ?, ?)")
cursorquotes.execute(SQLquote, (str(reaction.message.content), str(reaction.message.author), str(reaction.message.created_at)))
await reaction.message.channel.send(f"Quote de {str(reaction.message.author)} agregado: {str(reaction.message.content)} - cortesia de: {str(user)}")
else:
await user.send("Error de capa 8. Este quote ya fue agregado anteriormente")
database.commit()
database.close()
databasequotes.commit()
databasequotes.close()
# Operaciones para cuando una reaccion de Discord se remueve (Para Karma y quote)
@bot.event
async def on_reaction_remove(reaction, user):
FechaActual = datetime.now()
# Conectamos a la base
database = sqlite3.connect('db/discordusrs.db')
databasequotes = sqlite3.connect('db/quotes.db')
cursor = database.cursor()
cursorquotes = databasequotes.cursor()
# Esto hace que el usuario no pueda autoquotearse o darse/quitarse karma a si mismo
if user != reaction.message.author:
# Reaccion de Karma Up
if "kup" in str(reaction):
print(FechaActual)
print("Karma -1")
SQLkarma = ("UPDATE usuarios SET karma = karma - 1 WHERE user_id = ?")
# Operaciones de DB
cursor.execute(SQLkarma, (reaction.message.author.id,))
SQLkarmagiven = ("UPDATE usuarios SET karmagiven = karmagiven - 1 WHERE user_id = ?")
cursor.execute(SQLkarmagiven, (user.id,))
await reaction.message.channel.send(f"karma++ removido para {str(reaction.message.author)}")
# Reaccion de Karma Down
elif "kdown" in str(reaction):
print(FechaActual)
print("Karma +1")
SQLkarma = ("UPDATE usuarios SET karma = karma + 1 WHERE user_id = ?")
# Operaciones de DB
cursor.execute(SQLkarma, (reaction.message.author.id,))
SQLkarmagiven = ("UPDATE usuarios SET karmagiven = karmagiven - 1 WHERE user_id = ?")
cursor.execute(SQLkarmagiven, (user.id,))
await reaction.message.channel.send(f"karma-- removido para {str(reaction.message.author)}")
# Reaccion de Quote y remueve quote de la DB
elif "qadd" in str(reaction):
print("Quote removido")
print(f"Message: {reaction.message.content}")
print(f"Author: {reaction.message.author}")
print(f"Date: {reaction.message.created_at}")
SQLquote = ("DELETE FROM quotes WHERE quote = ? AND username = ?")
cursorquotes.execute(SQLquote, (str(reaction.message.content), str(reaction.message.author)))
await reaction.message.channel.send(f"Quote de {str(reaction.message.author)} removido")
database.commit()
database.close()
databasequotes.commit()
databasequotes.close()
################### MANEJO DE ERRORES Y SETUP DE ON_MESSAGE ###################
# Funcion de manejo de error cuando el argumento es None
# (usuario manda el comando sin parametros requeridos, como por ejemplo en !clima o !fulbo)
# Excepto para !help que tiene su propio mensaje si el comando va vacio
@bot.event
async def on_command_error(ctx, error):
FechaActual = datetime.now()
mensajeayuda_general = """Informacion general sobre los comandos del bot de Sysarmy
!dolar !cripto !euro !pesos !fulbo !clima !subte !underground !feriadoAR !feriadoCL !feriadoES !feriadoMX !feriadoUY !q !qsearch !qadd !rank !kgivers !kgiven !karma
Mas detalles en el canal #help-bot-commands de Discord, dentro de la seccion de Welcome! - o ejecutando /help desde Discord"""
# Custom error handling - si !help se manda vacio sin especificar comando, manda un mensaje de ayuda general
if isinstance(error, commands.MissingRequiredArgument):
if ctx.command.name == "help":
await ctx.send(mensajeayuda_general)
# Log
print(FechaActual)
print ("Se ha ejecutado el comando !help")
elif ctx.command.name == "dolar":
await dolarfunctx(ctx, None)
# Log
print(FechaActual)
print ("Se ha ejecutado el comando !dolar")
else:
await ctx.send("Error en el comando. No pasaste argumentos.")
elif isinstance(error, commands.CommandNotFound):
await ctx.send("Comando inexistente")
else:
await ctx.send("Error en el comando. No pasaste argumentos.")
##################################################################################################################
############################# FUNCION DE ON_MESSAGE PARA KARMA ++ y -- ###########################################
##################################################################################################################
@bot.event
async def on_message(message):
FechaActual = datetime.now()
# Conectamos a la base de karma
databasekarma = sqlite3.connect('db/karma.db')
cursorkarma = databasekarma.cursor()
databaseusers = sqlite3.connect('db/discordusrs.db')
cursorusers = databaseusers.cursor()
palabra_base = None
BridgeBotID = os.getenv('bridgebotID') # <--- Aca va el usr ID del Bridge bot de Discord
if message.author.bot and not str(message.author.id) == BridgeBotID:
return
else:
##################################################################################################################
# Todo esto se ejecuta cuando el usuario es el bot de bridge (o sea, el mensaje viene bridgeado de IRC, Slack, Telegram, etc.)
if str(message.author.id) == BridgeBotID:
# Funcion para encontrar el prefijo del comando en cualquier parte del mensaje (para cuando lo manda el bridge bot)
if '> !' in message.content:
# Extraemos el mensaje que viene despues del prefijo y cambiamos el mensaje original para pasarselo al bot y que ejecute el comando
command_start = message.content.index('!')
new_content = message.content[command_start:]
message.content = new_content
# de https://github.com/Rapptz/discord.py/issues/2238#issuecomment-504252776
# esto es necesario para invocar los comandos directamente porque si sigue el codigo y entra por el process_comand
# tira return sin hacer nada porque bot=true esto es menos cerdo que sobreescribir el metodo.
ctx = await bot.get_context(message)
await bot.invoke(ctx)
# Traemos el texto del mensaje y lo buscamos en la base
textokarma = message.content.split()
for texto in textokarma:
if texto.endswith("++") or texto.endswith("--"):
palabra_base = texto[:-2]
# Buscamos y traemos el username externo <--- Esto es asi porque el bot siempre empieza los mensajes con el usuario
# en este formato = "<usuarioexterno> Mensaje publicado al canal."
start_index = message.content.find('<')
end_index = message.content.find('>')
IRCusername = message.content[start_index + 1:end_index]
# Ejecuta query para verificar si la palabra existe en la DB
cursorkarma.execute("SELECT * FROM karma WHERE LOWER(palabra) = ?", (palabra_base.lower(),))
print(palabra_base.lower())
existing_word = cursorkarma.fetchone()
# Ejecuta query para verificar si el usuario existe en la DB
cursorkarma.execute("SELECT * FROM karma WHERE LOWER(palabra) = ? AND isuser = 'YES'", (IRCusername.lower(),))
existing_user = cursorkarma.fetchone()
# Si la palabra existe, procede con las funciones de UPDATE
if existing_word:
# Update word en la DB para karma++ y se imprime confirmacion
if texto.endswith("++"):
print("This is a ++ word!")
cursorkarma.execute("UPDATE karma SET karmavalue = karmavalue + 1 WHERE LOWER(palabra) = ?", (palabra_base.lower(),))
databasekarma.commit()
cursorkarma.execute("SELECT karmavalue FROM karma WHERE LOWER(palabra) = ?", (palabra_base.lower(),))
updated_karma = cursorkarma.fetchone()[0]
print(FechaActual)
print(f"Karma++ para {palabra_base}!")
mensaje = f"+1 karma para {palabra_base.lower()}. Current karma is: {updated_karma} \n"
# Ahora Chequeamos el autor del mensaje
if existing_user:
# Se le da karmagiven al usuario y se imprime confirmacion
cursorkarma.execute("UPDATE karma SET karmagiven = karmagiven + 1 WHERE LOWER(palabra) = ? AND isuser = 'YES'", (IRCusername.lower(),))
databasekarma.commit()
print(f"+1 Karmagiven para {IRCusername}")
mensaje += f"+1 karmagiven para <{IRCusername}>"
await message.channel.send(mensaje)
elif existing_user is None:
# Se agrega al nuevo usuario a la DB con karmagiven inicial y se imprime confirmacion
cursorkarma.execute("INSERT INTO karma (palabra, karmavalue, isuser, karmagiven) VALUES (?, 1, 'YES', 0)", (IRCusername.lower(),))
cursorkarma.execute("UPDATE karma SET karmagiven = karmagiven + 1 WHERE palabra = ? AND isuser = 'YES'", (IRCusername.lower(),))
databasekarma.commit()
cursorkarma.execute("SELECT palabra FROM karma WHERE LOWER(palabra) = ? AND isuser = 'YES'", (IRCusername.lower(),))
print(f"Nuevo usuario externo [{IRCusername}] agregado a la DB!.")
mensaje += f"+1 karmagiven para <{IRCusername}>. Welcome to the karma user list! "
await message.channel.send(mensaje)
# Update word en la DB para karma-- y se imprime confirmacion
elif texto.endswith("--"):
cursorkarma.execute("UPDATE karma SET karmavalue = karmavalue - 1 WHERE LOWER(palabra) = ?", (palabra_base.lower(),))
databasekarma.commit()
cursorkarma.execute("SELECT karmavalue FROM karma WHERE LOWER(palabra) = ?", (palabra_base.lower(),))
updated_karma = cursorkarma.fetchone()[0]
print(FechaActual)
print(f"Karma-- para {palabra_base}!")
await message.channel.send(f"-1 karma para {palabra_base.lower()}. Current karma = {updated_karma}")
# Si la palabra no existe, procede con las funciones de INSERT
else:
# Insert word en la DB para karma++ y se imprime confirmacion
if texto.endswith("++"):
initial_karma = 1 # <-- Como es una nueva palabra y es ++, el karma inicial siempe es de 1
cursorkarma.execute("INSERT INTO karma (palabra, karmavalue, isuser, karmagiven) VALUES (?, ?, 'NO', ?)", (palabra_base.lower(), initial_karma, 0))
databasekarma.commit()
cursorkarma.execute("SELECT karmavalue FROM karma WHERE palabra = ?", (palabra_base.lower(),))
updated_karma = cursorkarma.fetchone()[0]
print(f"Nueva palabra agregada a la DB. Karma++ para {palabra_base}")
mensaje = f"+1 karma para {palabra_base}. Current karma is: {updated_karma.lower()} \n"
# Chequeamos el autor del mensaje
if existing_user:
# Se le da karmagiven al usuario y se imprime confirmacion
cursorkarma.execute("UPDATE karma SET karmagiven = karmagiven + 1 WHERE LOWER(palabra) = ? AND isuser = 'YES'", (IRCusername.lower(),))
databasekarma.commit()
print(FechaActual)
print(f"Se ha dado karmagiven +1 a {IRCusername}.")
mensaje += f"+1 karmagiven para <{IRCusername}>."
await message.channel.send(mensaje)
elif existing_user is None:
# Se agrega al nuevo usuario a la DB con karmagiven inicial y se imprime confirmacion
cursorkarma.execute("INSERT INTO karma (palabra, karmavalue, isuser, karmagiven) VALUES (?, 1, 'YES', 0)", (IRCusername.lower(),))
cursorkarma.execute("UPDATE karma SET karmagiven = karmagiven + 1 WHERE palabra = ? AND isuser = 'YES'", (IRCusername.lower(),))
databasekarma.commit()
cursorkarma.execute("SELECT palabra FROM karma WHERE palabra = ? AND isuser = 'YES'", (IRCusername,))
print(f"Nuevo usuario externo [{IRCusername}] agregado a la DB!.")
mensaje += f"+1 karmagiven para <{IRCusername}>. Welcome to the karma user list!"
await message.channel.send(mensaje)
# Insert palabra en la DB para karma-- y se imprime confirmacion
elif texto.endswith("--"):
initial_karma = -1 ## <-- Como es una nueva palabra y es --, el karma inicial siempe es de -1
cursorkarma.execute("INSERT INTO karma (palabra, karmavalue, isuser, karmagiven) VALUES (?, ?, 'NO', ?)", (palabra_base.lower(), initial_karma, 0))
databasekarma.commit()
cursorkarma.execute("SELECT karmavalue FROM karma WHERE palabra = ?", (palabra_base.lower(),))
updated_karma = cursorkarma.fetchone()[0]
print(FechaActual)
print(f"Nueva palabra agregada a la DB. Karma-- para {palabra_base}")
await message.channel.send(f"-1 karma para {palabra_base}. Current karma = {updated_karma}")
##################################################################################################################
# Todo esto se ejecuta cuando el usuario NO es el bot (o sea, un usuario normal nativo de Discord)
else:
# Traemos el texto del mensaje y lo buscamos en la base
textokarma = message.content.split()
for texto in textokarma:
#if texto.endswith("++") or texto.endswith("--"):
if re.match(r'^[a-zA-Z0-9]+(\+\+|\-\-)$', texto):
palabra_base = texto[:-2]
# Ejecuta query para verificar si la palabra y el usuario existen en la DB
cursorusers.execute("SELECT * FROM usuarios WHERE username = ?", (message.author.name,))
cursorkarma.execute("SELECT * FROM karma WHERE LOWER(palabra) = ?", (palabra_base.lower(),))
existing_word = cursorkarma.fetchone()
# Si la palabra existe, procede con las funciones de UPDATE
if existing_word:
print(f"encontre la palabra en la base de datos {palabra_base}")
# Update word en la DB para karma++
if texto.endswith("++"):
cursorkarma.execute("UPDATE karma SET karmavalue = karmavalue + 1 WHERE LOWER(palabra) = ?", (palabra_base.lower(),))
databasekarma.commit()
cursorkarma.execute("SELECT karmavalue FROM karma WHERE LOWER(palabra) = ?", (palabra_base.lower(),))
updated_karma = cursorkarma.fetchone()[0]
print(FechaActual)
print(f"Karma ++ para {palabra_base}")
mensaje = f"+1 karma para {palabra_base.lower()}. Current karma is: {updated_karma} \n"
# Se le da karmagiven al usuario y se imprime mensaje
cursorusers.execute("UPDATE usuarios SET karmagiven = karmagiven + 1 WHERE username = ?", (message.author.name,))
databaseusers.commit()
cursorusers.execute("SELECT karmagiven FROM usuarios WHERE username = ?", (message.author.name,))
updated_karmagivenusr = cursorusers.fetchone()[0]
print(f"Se ha dado karmagiven +1 a {message.author.name}.")
mensaje += f"+1 karmagiven para {message.author}. Current karmagiven is: {updated_karmagivenusr}"
await message.channel.send(mensaje)
# Update palabra en la DB para karma--
elif texto.endswith("--"):
cursorkarma.execute("UPDATE karma SET karmavalue = karmavalue - 1 WHERE LOWER(palabra) = ?", (palabra_base.lower(),))
databasekarma.commit()
cursorkarma.execute("SELECT karmavalue FROM karma WHERE LOWER(palabra) = ?", (palabra_base.lower(),))
updated_karma = cursorkarma.fetchone()[0]
print(FechaActual)
print(f"Karma -- para {palabra_base}")
await message.channel.send(f"-1 karma para {palabra_base.lower()}. Current karma is: {updated_karma}")
# Si la palabra no existe, procede con las funciones de INSERT
else:
# Insert palabra en la DB para karma++
if texto.endswith("++"):
initial_karma = 1
cursorkarma.execute("INSERT INTO karma (palabra, karmavalue, isuser, karmagiven) VALUES (?, ?, 'NO', ?)", (palabra_base.lower(), initial_karma, 0))
databasekarma.commit()
cursorkarma.execute("SELECT karmavalue FROM karma WHERE LOWER(palabra) = ?", (palabra_base.lower(),))
updated_karma = cursorkarma.fetchone()[0]
print(FechaActual)
print(f"Nueva palabra agregada a la DB. Karma ++ para {palabra_base}")
mensaje = f"+1 karma para {palabra_base.lower()}. Current karma is: {updated_karma} \n"
# Se le da karmagiven al usuario y se imprime mensaje
cursorusers.execute("UPDATE usuarios SET karmagiven = karmagiven + 1 WHERE username = ?", (message.author.name,))
databaseusers.commit()
cursorusers.execute("SELECT karmagiven FROM usuarios WHERE username = ?", (message.author.name,))
updated_karmagivenusr = cursorusers.fetchone()[0]
print(f"Se ha dado karmagiven +1 a {message.author.name}.")
mensaje += f"+1 karmagiven para {message.author}. Current karmagiven is: {updated_karmagivenusr}"
await message.channel.send(mensaje)
# Insert palabra en la DB para karma--
elif texto.endswith("--"):
initial_karma = -1
cursorkarma.execute("INSERT INTO karma (palabra, karmavalue, isuser, karmagiven) VALUES (?, ?, 'NO', ?)", (palabra_base.lower(), initial_karma, 0))
databasekarma.commit()
cursorkarma.execute("SELECT karmavalue FROM karma WHERE LOWER(palabra) = ?", (palabra_base.lower(),))
updated_karma = cursorkarma.fetchone()[0]
print(FechaActual)
print(f"Nueva palabra agregada a la DB. Karma -- para {palabra_base}")
await message.channel.send(f"-1 karma para {palabra_base.lower()}. Current karma is: {updated_karma}")
databasekarma.commit()
databasekarma.close()
databaseusers.commit()
databaseusers.close()
################### FUNCION DE ON_MESSAGE PARA YELLING ###################
#Lee el canal de Yelling
if message.channel.id == 758773471315492925:
# Regex to match URLs and emojis
url_and_emoji_pattern = re.compile(r'http[s]?://\S+|:[^:]+:')
# Regex to match lowercase words
lowercase_pattern = re.compile(r'\b[a-z]+\b')
# Replace URLs and emojis with a placeholder to ignore them in lowercase detection
text_without_urls_and_emojis = url_and_emoji_pattern.sub('__IGNORED__', message.content)
# Check for any lowercase words
has_lowercase = lowercase_pattern.search(text_without_urls_and_emojis) is not None
#Chequeea por lowercase. Putea solo con haber un solo caracter en lowercase. No jodan.
if has_lowercase:
print(FechaActual)
print("Mensaje en lower case detectado en canal. Se ejecutara funcion de Yelling")
#Agarra frases random de un txt y las manda en respuesta al mensaje (para mas humillacion)
with open("src/rtasyelling.txt", "r", encoding="utf8") as file:
lines = file.readlines()
await message.reply(random.choice(lines).strip())
# Fin de todo, se va el mensaje a ser procesado por los comandos.
# print(message,message.content)
await bot.process_commands(message) # <-- No tocar esto jamas o rompe los comandos on_message. Siempre dejar al final de la funcion on_message
#########################################################################################
################### LLAMADAS DE COMANDOS TEXT BASED (USA FUNCION CTX) ###################
# Comandos indivuduales estan en .src/ctxcommands
# COMANDO HELP
@bot.command()
async def help(ctx, texto):
await helpfunctx(ctx, texto)
# COMANDO CLIMA
@bot.command()
async def clima(ctx, ciudad):
await climafunctx(ctx, ciudad)
# COMANDO CRIPTO
@bot.command()
async def cripto(ctx):
await criptofunctx(ctx)
# COMANDO FULBO
@bot.command()
async def fulbo(ctx, liga):
await fulbofunctx(ctx, liga)
# COMANDO DOLAR
@bot.command()
async def dolar(ctx, inputpesos):
await dolarfunctx(ctx, inputpesos)
# COMANDO PESOS
@bot.command()
async def pesos(ctx, monto:int):
await pesosfunctx(ctx, monto)
# COMANDO FERIADOS
@bot.command()
async def feriadoar(ctx):
await feriadoarfunctx(ctx)
@bot.command()
async def feriadoes(ctx):
await feriadoesfunctx(ctx)
@bot.command()
async def feriadocl(ctx):
await feriadoclfunctx(ctx)
@bot.command()
async def feriadouy(ctx):
await feriadouyfunctx(ctx)
@bot.command()
async def feriadomx(ctx):
await feriadomxfunctx(ctx)
# COMANDO SUBTE
@bot.command()
async def subte(ctx):
await subtefunctx(ctx)
# COMANDO UNDERGROUND
@bot.command()
async def underground(ctx):
await undergroundfunctx(ctx)
# COMANDO EURO
@bot.command()
async def euro(ctx):
await eurofunctx(ctx)
# COMANDO KARMA RANK
@bot.command()
async def rank(ctx):
await karmarankfunctx(ctx)
# COMANDO KARMA PALABRA
@bot.command()
async def karma(ctx, text):
await karmawordfunctx(ctx, text)
# COMANDO RANK GIVERS
@bot.command()
async def kgivers(ctx):
await karmagiversfunctx(ctx)
# COMANDO KARMA GIVERS POR USUARIO
@bot.command()
async def kgiven(ctx, text):
await karmagiversuserfunctx(ctx, text)
# COMANDO QUOTE ADD
@bot.command()
async def qadd(ctx, *, quote: str):
await quoteaddfunctx(ctx, quote)
# COMANDO QUOTE RANDOM
@bot.command()
async def q(ctx):
await quotefunctx(ctx)
# COMANDO QUOTE SEARCH
@bot.command()
async def qsearch(ctx, texto):
await qsearchfunctx(ctx, texto)
# COMANDO BIRRAS
@bot.command()
async def birras(ctx):
await birrasfunctx(ctx)
# COMANDO PING
@bot.command()
async def ping(ctx):
print(f"Se ha ejecutado el comando !ping")
await ctx.send("Pong!")
# COMANDO FLIP
@bot.command()
async def flip(ctx):
print(f"Se ha ejecutado el comando !flip")
await ctx.send("(╯°□°)╯︵ ┻━┻")
# COMANDO SHRUG
@bot.command()
async def shrug(ctx):
print(f"Se ha ejecutado el comando !flip")
await ctx.send("¯\_(ツ)_/¯")
# COMANDO NERDEARLA
@bot.command()
async def nerdearla(ctx, texto):
await nerdearlafunctx(ctx, texto)
#########################################################################################
################### LLAMADAS DE COMANDOS SLASH NATIVOS DISCORD (TREE) ###################
# Comandos individuales estan en .src
# COMANDO DOLAR
@bot.tree.command(name="preciodolar", description="Cotizacion del dolar")
async def preciodolar(interaction: Interaction):
try:
await interaction.response.send_message(embed= await dolarfun(interaction))
except:
print(f"Limite de API calls excedido. Ultimo call hecho por {interaction.user}")
await interaction.response.send_message("Comando /dolar: Limite de API calls excedido. Sori el CTO no nos dio budget.")
# COMANDO EURO
@bot.tree.command(name="precioeuro", description="Cotizacion del Euro")
async def precioeuro(interaction: Interaction):
try:
await interaction.response.send_message(embed= await eurofun(interaction))
except:
print(f"Limite de API calls excedido. Ultimo call hecho por {interaction.user}")
await interaction.response.send_message("Comando /euro: Limite de API calls excedido. Sori el CTO no nos dio budget.")
# COMANDO PESOS
@bot.tree.command(name="pesos", description="Calcula pesos a dolares")
async def pesosausd(interaction: Interaction, monto:int):
try:
await interaction.response.send_message(embed= await pesosfunc(interaction, monto))
except:
print(f"Limite de API calls excedido. Ultimo call hecho por {interaction.user}")
await interaction.response.send_message("Comando /euro: Limite de API calls excedido. Sori el CTO no nos dio budget.")
# COMANDO CLIMA
@bot.tree.command(name="clima", description="Información del clima")
async def Clima(interaction: Interaction, city:str):
try:
await interaction.response.send_message(embed=await climafun(interaction, city))
except:
print(f"Limite de API calls excedido. Ultimo call hecho por {interaction.user}")
await interaction.response.send_message("Comando /clima: Limite de API calls excedido. Sori el CTO no nos dio budget.")
# COMANDO LONDON UNDERGROUND
@bot.tree.command(name="underground", description="Información del London Underground")
async def londonunderground(interaction: Interaction):
try:
await interaction.response.send_message(embed=Lines())
except:
print(f"Limite de API calls excedido. Ultimo call hecho por {interaction.user}")
await interaction.response.send_message("Comando /underground: Limite de API calls excedido. Sori el CTO no nos dio budget.")
# COMANDO HELP
@bot.tree.command(name="help", description="Como usar el bot")
async def ayudatree(interaction: Interaction):
try:
await interaction.response.send_message(embed= await helpfunc(interaction), ephemeral=True)
except:
pass
# COMANDO SUBTE
@bot.tree.command(name="subtebsas", description="Información de los Subtes")
async def subtebsas(interaction: Interaction):
try:
await interaction.response.send_message(embed=await SubteBA(interaction))
except:
print(f"Limite de API calls excedido. Ultimo call hecho por {interaction.user}")
await interaction.response.send_message("Comando /subte: Limite de API calls excedido. Sori el CTO no nos dio budget.")
# COMANDO FULBO
@bot.tree.command(name="fulbo", description="Ultimos resultados de ligas de futbol")
async def futlbol(interaction: Interaction):
try:
await interaction.response.send_message(embed=await futbolimport(interaction))
except:
pass
# COMANDO CRIPTO
@bot.tree.command(name="cripto", description="Precio de criptomonedas")
async def preciocripto(interaction: Interaction):
try:
await interaction.response.send_message(embed= await criptofun(interaction))
except:
print(f"Limite de API calls excedido. Ultimo call hecho por {interaction.user}")
await interaction.response.send_message("Comando /cripto: Limite de API calls excedido. Sori el CTO no nos dio budget.")
# COMANDO FERIADO ARGENTINA
@bot.tree.command(name="feriadoar", description="Proximos feriados en Argentina")
async def feriadosar(interaction: Interaction):
try:
await interaction.response.send_message(embed= await feriadoARfun(interaction))
except:
print(f"Limite de API calls excedido. Ultimo call hecho por {interaction.user}")
await interaction.response.send_message("Comando /feriadoar: Limite de API calls excedido. Sori el CTO no nos dio budget.")
# COMANDO FERIADO URUGUAY
@bot.tree.command(name="feriadouy", description="Proximos feriados en Uruguay")
async def feriadosuy(interaction: Interaction):
try:
await interaction.response.send_message(embed= await feriadoUYfun(interaction))
except:
print(f"Limite de API calls excedido. Ultimo call hecho por {interaction.user}")
await interaction.response.send_message("Comando /feriadoar: Limite de API calls excedido. Sori el CTO no nos dio budget.")
# COMANDO FERIADO CHILE
@bot.tree.command(name="feriadocl", description="Proximos feriados en Chile")
async def feriadoscl(interaction: Interaction):
try:
await interaction.response.send_message(embed= await feriadoCLfun(interaction))
except:
print(f"Limite de API calls excedido. Ultimo call hecho por {interaction.user}")
await interaction.response.send_message("Comando /feriadoar: Limite de API calls excedido. Sori el CTO no nos dio budget.")
# COMANDO FERIADO ESPAÑA
@bot.tree.command(name="feriadoes", description="Proximos feriados en España")
async def feriadoses(interaction: Interaction):
try:
await interaction.response.send_message(embed= await feriadoESfun(interaction))
except:
print(f"Limite de API calls excedido. Ultimo call hecho por {interaction.user}")
await interaction.response.send_message("Comando /feriadoar: Limite de API calls excedido. Sori el CTO no nos dio budget.")
# COMANDO FERIADO MEXICO
@bot.tree.command(name="feriadomx", description="Proximos feriados en Mexico")
async def feriadosmx(interaction: Interaction):
try:
await interaction.response.send_message(embed= await feriadoMXfun(interaction))
except:
print(f"Limite de API calls excedido. Ultimo call hecho por {interaction.user}")
await interaction.response.send_message("Comando /feriadoar: Limite de API calls excedido. Sori el CTO no nos dio budget.")
# COMANDO KARMA RANK
@bot.tree.command(name="karmarank", description="Ranking top 10 usuarios")
async def karmarank(interaction: Interaction):
await interaction.response.send_message(embed = await karmarankfunc(interaction))
# COMANDO KARMA GIVERS
@bot.tree.command(name="karmagivers", description="Ranking top 5 dadores de karma")
async def karmagivers(interaction: Interaction):
# Manda el primer embed con givers de discord
embed_discord, embed_karma = await karmagiversfunc(interaction)
await interaction.response.send_message(embed=embed_discord)
# Manda el segundo embed con givers externos
await interaction.followup.send(embed=embed_karma)
# COMANDO KARMA USER
@bot.tree.command(name="karmauser", description="Ver Karma de un usuario")
async def karmauser(interaction: Interaction, member: discord.Member):
await interaction.response.send_message(embed= await karmauserfunc(interaction, member))
# COMANDO QUOTE RANDOM
@bot.tree.command(name="quote", description="Devuelve un quote random del hisotrial")
async def quoterandom(interaction: Interaction):
await interaction.response.send_message(embed= await quotefunc(interaction))
# COMANDO QUOTE SEARCH
@bot.tree.command(name="qsearch", description="Busca un Quote en base a texto")
async def quotesearch(interaction: Interaction, texto:str):
await interaction.response.send_message(embed= await qsearchfunc(interaction, texto))
# COMANDO BIRRAS
@bot.tree.command(name="birrassysarmy", description="Proximas birras / eventos de Sysarmy")
async def birras(interaction: Interaction):
await interaction.response.send_message(embed= await birrasfunc(interaction))
# COMANDO NERDEARLA
@bot.tree.command(name="nerdearlacharlas", description="Busca charlas de Nerdearla en YouTube y agenda de evento")
async def nerdearlacharlas(interaction: Interaction, texto:str):
await nerdearlacharlasfunc(interaction, texto)
if __name__ == '__main__':
main()
#########################################################################################
##################################### END OF CODE #######################################