-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.py
141 lines (121 loc) · 5.17 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
import aiohttp
import discord, logging
from discord.ext import commands
from dotenv import load_dotenv
from APIs.GeminiAPI import GeminiAPI
from APIs.SweccAPI import SweccAPI
import slash_commands.misc as misc
import slash_commands.auth as auth
import slash_commands.admin as admin
import slash_commands.reading as reading
from settings.context import BotContext
import asyncio
from tasks.index import start_daily_tasks
import admin.filter as filter
import mq
import mq.producers
from mq.events import DiscordEventType, MessageEvent, ReactionEvent
load_dotenv()
swecc = SweccAPI()
gemini = GeminiAPI()
bot_context = BotContext()
intents = discord.Intents.all()
intents.message_content = True
do_not_timeout = set()
client = commands.Bot(command_prefix=bot_context.prefix, intents=intents)
logging.basicConfig(level=logging.INFO, format='[%(asctime)s] [%(levelname)s] %(name)s: %(message)s')
@client.event
async def on_ready():
logging.info(f'{client.user} has connected to Discord!')
try:
synced = await client.tree.sync()
logging.info(f"Synced {synced} commands")
except Exception as e:
logging.info(f"Failed to sync commands: {e}")
logging.info("Bot is ready")
@client.event
async def on_member_remove(member: discord.Member):
if member.guild.id == bot_context.swecc_server:
await bot_context.log(member, f"{member.display_name} ({member.id}) has left the server.")
@client.event
async def on_member_join(member: discord.Member):
if member.guild.id == bot_context.swecc_server:
await bot_context.log(member, f"{member.display_name} ({member.id}) has joined the server.")
await member.send(
f"Welcome to the Software Engineering Career Club Discord server, {member.mention}!"
" In order to become a member, please register"
" using the `/register` command, or by signing up on https://engagement.swecc.org."
)
@client.event
async def on_message(message):
member = message.author
if member == client.user:
return
await mq.producers.publish_message_event(MessageEvent(
discord_id=member.id,
channel_id=message.channel.id,
content=message.content
))
await filter.filter_message(message, bot_context)
await swecc.process_message_event(message)
await gemini.process_message_event(message)
@client.event
async def on_thread_create(thread):
if thread.guild.id == bot_context.swecc_server:
if thread.parent_id == bot_context.resume_channel:
await asyncio.sleep(5)
message = await thread.fetch_message(thread.id)
if not message.attachments or not message.attachments[0].content_type.startswith("image"):
try:
channelName = thread.parent.mention
except:
channelName = thread.parent.name
await message.thread.delete()
if not message.attachments:
await message.author.send(f"Hello {message.author.mention}, your resume post in {channelName} was deleted because it didn't contain a screenshot of your resume. Please try again.")
else:
await message.author.send(f"Hello {message.author.mention}, your resume post in {channelName} was deleted because it didn't contain a screenshot of your resume. Please try again with a screenshot instead of {message.attachments[0].content_type}.")
await bot_context.log(message, f"{message.author.mention}'s resume post in {channelName} was deleted. File type: {message.attachments[0].content_type if message.attachments else 'none'}")
@client.event
async def on_raw_reaction_add(payload):
await swecc.process_reaction_event(payload, "REACTION_ADD")
await mq.producers.publish_reaction_add_event(ReactionEvent(
discord_id=payload.user_id,
channel_id=payload.channel_id,
message_id=payload.message_id,
emoji=payload.emoji.name,
event_type=DiscordEventType.REACTION_ADD
))
@client.event
async def on_raw_reaction_remove(payload):
await swecc.process_reaction_event(payload, "REACTION_REMOVE")
await mq.producers.publish_reaction_remove_event(
ReactionEvent(
discord_id=payload.user_id,
channel_id=payload.channel_id,
message_id=payload.message_id,
emoji=payload.emoji.name,
event_type=DiscordEventType.REACTION_REMOVE,
)
)
misc.setup(client, bot_context)
auth.setup(client, bot_context)
admin.setup(client, bot_context)
reading.setup(client, bot_context)
async def main():
async with aiohttp.ClientSession() as session, client:
client.session = session
swecc.set_session(session)
try:
start_daily_tasks(client, bot_context).start_tasks()
logging.info("Started daily tasks successfully!!!")
except Exception as e:
logging.info(f"Failed to start daily tasks: {e}")
try:
await client.start(bot_context.token)
except Exception as e:
logging.info(f"Failed to start client: {e}")
finally:
await mq.shutdown_rabbitmq()
mq.setup(client, bot_context)
asyncio.run(main())