1
0
Fork 0

Update regex and check roles when given

This commit is contained in:
Ethanell 2020-11-04 23:46:11 +01:00
parent dabef58402
commit b3ebfcdfec

View file

@ -9,10 +9,11 @@ from administrator.logger import logger
extension_name = "PCP" extension_name = "PCP"
logger = logger.getChild(extension_name) logger = logger.getChild(extension_name)
group_re = re.compile(r"(G[0-9]S[0-9]|ASPE|LP DEVOPS|LP ESSIR|LP SID)") group_re = re.compile(r"^(G[0-9]S[0-9]|ASPE|LP DEVOPS2?|LP ESSIR|LP SID)$")
msg_url_re = re.compile(r"https://.*discord.*\.com/channels/[0-9]+/([0-9+]+)/([0-9]+)") change_group_role_re = re.compile(r"^(SANS CLASSE|NOUVEAU VENU)$")
role_mention_re = re.compile(r"<@&[0-9]+>") msg_url_re = re.compile(r"^https://.*discord.*\.com/channels/[0-9]+/([0-9+]+)/([0-9]+)$")
user_mention_re = re.compile(r"<@![0-9]+>") role_mention_re = re.compile(r"^<@&[0-9]+>$")
user_mention_re = re.compile(r"^<@![0-9]+>$")
class PCP(commands.Cog): class PCP(commands.Cog):
@ -30,21 +31,24 @@ class PCP(commands.Cog):
await ctx.message.add_reaction("\U000023f3") await ctx.message.add_reaction("\U000023f3")
role = next(filter(lambda r: r.name.upper() == group, ctx.guild.roles), None) role = next(filter(lambda r: r.name.upper() == group, ctx.guild.roles), None)
if not role: def roles() -> list:
return list(filter(
lambda r: group_re.fullmatch(r.name.upper()) or change_group_role_re.fullmatch(r.name.upper()),
ctx.author.roles
))
if not role or role.name in map(lambda r: r.name, roles()):
await ctx.message.remove_reaction("\U000023f3", self.bot.user) await ctx.message.remove_reaction("\U000023f3", self.bot.user)
raise BadArgument() raise BadArgument()
roles = list(filter(lambda r: group_re.fullmatch(r.name.upper()) or r.name == "nouveau venu", while roles():
ctx.author.roles)) await ctx.author.remove_roles(*roles())
if role.name in map(lambda r: r.name, roles):
await ctx.message.remove_reaction("\U000023f3", self.bot.user)
raise BadArgument()
elif roles:
await ctx.author.remove_roles(*roles)
await ctx.author.add_roles(role, atomic=True) while role not in ctx.author.roles:
await ctx.author.add_roles(role)
await ctx.message.remove_reaction("\U000023f3", self.bot.user) await ctx.message.remove_reaction("\U000023f3", self.bot.user)
await ctx.message.add_reaction("\U0001f44d") await ctx.message.add_reaction("\U0001f44d")
elif ctx.invoked_subcommand is None: elif ctx.invoked_subcommand is None:
await ctx.invoke(self.pcp_help) await ctx.invoke(self.pcp_help)