2023-02-05 04:32:26 -06:00
|
|
|
import discord
|
2023-02-22 22:14:17 -06:00
|
|
|
import logging
|
2023-02-05 04:32:26 -06:00
|
|
|
from autowl import config
|
|
|
|
from autowl.bot import Bot
|
|
|
|
from discord.ext import commands
|
|
|
|
from discord import app_commands
|
|
|
|
|
|
|
|
|
2023-02-22 22:14:17 -06:00
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2023-02-05 04:32:26 -06:00
|
|
|
class Whitelist(commands.Cog):
|
|
|
|
def __init__(self, client: Bot):
|
|
|
|
self.client = client
|
|
|
|
|
|
|
|
@app_commands.command()
|
|
|
|
async def register(self, interaction: discord.Interaction, steam64: int):
|
2023-02-22 22:14:17 -06:00
|
|
|
if not interaction.guild:
|
|
|
|
await interaction.response.send_message(
|
|
|
|
"This command must be ran within a discord server!"
|
|
|
|
)
|
|
|
|
return
|
|
|
|
|
2023-03-04 18:32:59 -06:00
|
|
|
if not len(self.client.whitelistGrps.keys()):
|
2023-02-22 22:14:17 -06:00
|
|
|
await interaction.response.send_message(
|
|
|
|
"There are no Whitelist roles defined, unable to continue!"
|
|
|
|
)
|
2023-02-05 04:32:26 -06:00
|
|
|
return
|
|
|
|
|
|
|
|
steam64_updated = False
|
2023-02-22 22:14:17 -06:00
|
|
|
for role in interaction.user.roles:
|
2023-03-04 18:32:59 -06:00
|
|
|
for group in self.client.whitelistGrps:
|
|
|
|
if role.id == self.client.whitelistGrps[group].discord_role_id:
|
2023-02-05 04:32:26 -06:00
|
|
|
steam64_updated = True
|
2023-03-04 18:32:59 -06:00
|
|
|
memb = config.WhitelistMember(interaction.user.id, interaction.user.name, steam64)
|
|
|
|
self.client.whitelistGrps[group].addMember(memb)
|
2023-02-05 04:32:26 -06:00
|
|
|
|
|
|
|
if steam64_updated:
|
2023-02-22 22:14:17 -06:00
|
|
|
log.info(
|
|
|
|
f"Updated {interaction.user.name}'s ({interaction.user.id}) whitelist steam64 to {steam64}"
|
|
|
|
)
|
|
|
|
await interaction.response.send_message(
|
|
|
|
f"Updated `{interaction.user.name}`'s whitelist steam64 to `{steam64}`!"
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
await interaction.response.send_message(f"Unable to update `{interaction.user.name}`'s whitelist steam64 as they are not in a valid Whitelisted group")
|