DiscordWhitelist/autowl/Cogs/Whitelist.py

44 lines
1.7 KiB
Python
Raw Normal View History

import discord
import logging
import mysql.connector
from autowl import config
from autowl.bot import Bot
from discord.ext import commands
from discord import app_commands
log = logging.getLogger(__name__)
class Whitelist(commands.Cog):
def __init__(self, client: Bot):
self.client = client
@app_commands.command()
async def link(self, interaction: discord.Interaction, steam64: str):
if not interaction.guild:
await interaction.response.send_message(
"This command must be ran within a discord server!"
)
return
updatecur = self.client.squadjs.cursor(buffered=True)
try:
2023-04-17 22:11:05 -05:00
updatecur.execute(self.client.squadjs_updateDiscordID, (interaction.user.id, steam64))
rowsaffected = updatecur.rowcount
2023-04-17 21:40:13 -05:00
if rowsaffected <= 0:
2023-04-17 22:11:05 -05:00
await interaction.response.send_message("Cound not find SteamID or already linked!")
2023-04-17 21:36:32 -05:00
self.client.squadjs.commit()
return
except mysql.connector.Error as err:
log.error("MYSQL error!")
2023-04-17 21:36:32 -05:00
await interaction.response.send_message("There was an internal server error, pls contact skillet")
2023-04-17 21:24:22 -05:00
return
for urole in interaction.user.roles:
if urole.id in self.client.whitelistGrps.keys():
2023-04-17 21:18:38 -05:00
disusername = interaction.user.nick if interaction.user.nick is not None else interaction.user.name
self.client.whitelistGrps[urole.id].addMember(config.WhitelistMember(interaction.user.id, disusername, steam64))
self.client.squadjs.commit()
2023-04-17 21:36:32 -05:00
await interaction.response.send_message(f"discord is linked to steamID {steam64}, roles updated.")