Skip to content
Snippets Groups Projects
Commit 6949313e authored by dnns01's avatar dnns01
Browse files

Fix issues in text commands and made an enhancement to appointments. When...

Fix issues in text commands and made an enhancement to appointments. When sending notifications for appointments, the embed is sent again.
parent f881d59b
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,10 @@ async def send_notification(appointment, channel):
message += f"\n"
message += " ".join([f"<@!{str(attendee.member_id)}>" for attendee in appointment.attendees])
await channel.send(message)
if appointment.reminder_sent:
return await channel.send(message, embed=appointment.get_embed())
return await channel.send(message, embed=appointment.get_embed(), view=AppointmentView())
@app_commands.guild_only()
......@@ -41,11 +44,11 @@ class Appointments(commands.GroupCog, name="appointments", description="Handle A
try:
channel = await self.bot.fetch_channel(appointment.channel)
message = await channel.fetch_message(appointment.message)
await send_notification(appointment, channel)
new_message = await send_notification(appointment, channel)
Appointment.update(message=new_message.id).where(Appointment.id == appointment.id).execute()
await message.delete()
if appointment.reminder_sent:
await message.delete()
if appointment.recurring == 0:
appointment.delete_instance(recursive=True)
else:
......
......@@ -56,8 +56,9 @@ class TextCommands(commands.GroupCog, name="commands", description="Text Command
text="Text, der bei Benutzung des Commands ausgegeben werden soll.")
async def cmd_add(self, interaction: Interaction, cmd: str, text: str):
if not re.match(r"^[a-z0-9]+(-[a-z0-9]+)*$", cmd):
await interaction.edit_original_response(
content="Ein Command darf nur aus Kleinbuchstaben und Zahlen bestehen, die durch Bindestriche getrennt werden können.")
await interaction.response.send_message(
"Ein Command darf nur aus Kleinbuchstaben und Zahlen bestehen, die durch Bindestriche getrennt werden können.",
ephemeral=True)
return
command = Command.get_or_none(Command.command == cmd)
......@@ -127,7 +128,7 @@ class TextCommands(commands.GroupCog, name="commands", description="Text Command
else:
if self.exists(cmd):
return False
command = Command.create(command=cmd, description=description)
command = Command.create(command=cmd, description=description, guild_id=guild_id)
CommandText.create(text=text, command=command.id)
await self.register_command(command)
......
......@@ -120,10 +120,13 @@ class Appointment(BaseModel):
def get_embed(self):
attendees = self.attendees
description = "" if self.reminder_sent else (f"Wenn du eine Benachrichtigung zum Beginn des Termins "
f"{f', sowie {self.reminder} Minuten vorher, ' if self.reminder > 0 else f''}"
f" erhalten möchtest, verwende den \"Zusagen\" Button unter dieser Nachricht."
f" Hast du bereits zugesagt und möchtest keine Benachrichtigung erhalten, "
f"kannst du den \"Absagen\" Button benutzen.")
embed = discord.Embed(title=self.title,
description=f"Wenn du eine Benachrichtigung zum Beginn des Termins"
f"{f', sowie {self.reminder} Minuten vorher, ' if self.reminder > 0 else f''}"
f" erhalten möchtest, reagiere mit :thumbsup: auf diese Nachricht.",
description=description,
color=19607)
if len(self.description) > 0:
......
aiohttp==3.9.5
beautifulsoup4==4.12.3
discord.py==2.3.2
emoji==2.11.1
peewee==3.17.3
emoji==2.12.1
peewee==3.17.5
PyNaCl==1.5.0
python-dotenv==1.0.1
requests==2.31.0
requests==2.32.0
aiosignal==1.3.1
attrs==23.2.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment