Doing more database checks within settings.py

pull/8/head
sgoudham 4 years ago
parent 83e4f42ab8
commit de15276946

@ -54,7 +54,7 @@ modlogs = {}
# Updating the prefix within the dict and database when the method is called # Updating the prefix within the dict and database when the method is called
async def storage_modlog_for_guild(ctx, channelID): async def storage_modlog_for_guild(ctx, channelID, setup):
modlogs[str(ctx.guild.id)] = channelID modlogs[str(ctx.guild.id)] = channelID
with db.connection() as connection: with db.connection() as connection:
@ -66,10 +66,18 @@ async def storage_modlog_for_guild(ctx, channelID):
with closing(connection.cursor()) as cur: with closing(connection.cursor()) as cur:
# Execute the query # Execute the query
cur.execute(update_query, update_vals) cur.execute(update_query, update_vals)
if setup:
print(cur.rowcount, f"Modlog channel for guild {ctx.guild.name} has been Setup")
else:
print(cur.rowcount, f"Modlog channel for guild {ctx.guild.name} has been updated") print(cur.rowcount, f"Modlog channel for guild {ctx.guild.name} has been updated")
if setup:
# Send confirmation that modmail channel has been setup
await ctx.send("Your **Modlogs Channel** is now successfully set up!" +
f"\nPlease refer to **{ctx.prefix}help** for any information")
else:
# Let the user know that the guild modlogs channel has been updated
channel = ctx.guild.get_channel(channelID) channel = ctx.guild.get_channel(channelID)
# Let the user know that the guild prefix has been updated
await ctx.send(f"**Modlog Channel for **{ctx.guild.name}** has been updated to {channel.mention}**") await ctx.send(f"**Modlog Channel for **{ctx.guild.name}** has been updated to {channel.mention}**")

Loading…
Cancel
Save