Skip to content

Commit 72fc70f

Browse files
committed
Add simple moderation honeypot channel feature to the 'pgc' extension
1 parent 3df413d commit 72fc70f

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

pcbot/exts/pgc_activity.py pcbot/exts/pgc.py

+22-3
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,15 @@
9292

9393

9494
class PGCActivityCog(BaseExtensionCog, name="pgc-activity"):
95-
def __init__(self, bot: BotT, theme_color: int | discord.Color = 0) -> None:
95+
def __init__(
96+
self,
97+
bot: BotT,
98+
theme_color: int | discord.Color = 0,
99+
honeypot_channel_id: int | None = None,
100+
) -> None:
96101
super().__init__(bot, theme_color)
102+
self.honeypot_channel_id = honeypot_channel_id
103+
self.honeypot_victims = set()
97104

98105
@commands.Cog.listener()
99106
async def on_ready(self):
@@ -120,6 +127,7 @@ async def on_message(self, message: discord.Message):
120127
if not (
121128
message.guild
122129
and message.guild.id == PGC_GUILD_ID
130+
and isinstance(message.author, discord.Member)
123131
and (
124132
message.type
125133
in (
@@ -136,6 +144,17 @@ async def on_message(self, message: discord.Message):
136144
):
137145
return
138146

147+
if message.channel.id == self.honeypot_channel_id:
148+
await message.author.ban(
149+
reason="Fell into snake pit", delete_message_days=1
150+
)
151+
152+
if message.author.id not in self.honeypot_victims:
153+
self.honeypot_victims.add(message.author.id)
154+
await message.author.unban(reason="Second chance")
155+
else:
156+
self.honeypot_victims.remove(message.author.id)
157+
139158
if message.type == discord.MessageType.premium_guild_tier_1:
140159
await message.channel.send(
141160
"LETS GO 🎉 ! Thanks for boosting us to **LEVEL 1** "
@@ -191,5 +210,5 @@ async def on_member_join(self, member: discord.Member):
191210

192211

193212
@snakecore.commands.decorators.with_config_kwargs
194-
async def setup(bot: BotT):
195-
await bot.add_cog(PGCActivityCog(bot))
213+
async def setup(bot: BotT, honeypot_channel_id: int | None = None) -> None:
214+
await bot.add_cog(PGCActivityCog(bot, honeypot_channel_id=honeypot_channel_id))

0 commit comments

Comments
 (0)