-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot.py
238 lines (192 loc) · 8.44 KB
/
bot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
import datetime
import json
import logging
import traceback
import aiohttp
import sys
from collections import Counter, deque
from discord.ext import commands
import discord
from config import CLIENT_ID, BOT_TOKEN, OWNER_ID
from utils import context
from utils.config import Config
description = """
Qutils bot provides several important utilities for the server.
"""
log = logging.getLogger('root')
initial_extensions = (
'cogs.admin',
'cogs.general',
'cogs.remainder',
'cogs.fun',
'cogs.cameradice',
'cogs.talks',
'cogs.confession',
'cogs.feedback',
'cogs.automation',
'cogs.truthdare'
)
def _prefix_callable(bot, msg):
if msg.guild is None:
return commands.when_mentioned_or(*bot.base_prefixes)(bot, msg)
else:
return commands.when_mentioned_or(*bot.prefixes.get(msg.guild.id, bot.base_prefixes))(bot, msg)
def exception_handler(loop, ctx):
err = f'{ctx.get("message", "-")} | {ctx.get("exception", "-")}\n' \
f'{ctx.get("future", "-")}'
log.exception(err)
class Qutils(commands.AutoShardedBot):
def __init__(self, intents):
super().__init__(command_prefix=_prefix_callable, description=description, case_insensitive=True,
pm_help=None, help_attrs=dict(hidden=True), fetch_offline_members=True,
activity=discord.Game(name=":help for mods"), owner_id=int(OWNER_ID), intents=intents
)
self.client_id = CLIENT_ID
# self.carbon_key = config.carbon_key
# self.bots_key = config.bots_key
# self.challonge_api_key = config.challonge_api_key
self.session = aiohttp.ClientSession(loop=self.loop)
self._prev_events = deque(maxlen=10)
# guild_id: list_role
self.prefixes = Config('prefixes.json')
# base default prefixes
self.base_prefixes = ['?', '!']
# guild_id and user_id mapped to True
# these are users and guilds globally blacklisted
# from using the bot
self.blacklist = Config('blacklist.json')
# in case of even further spam, add a cooldown mapping
# for people who excessively spam commands
self.spam_control = commands.CooldownMapping.from_cooldown(10, 12.0, commands.BucketType.user)
# A counter to auto-ban frequent spammers
# Triggering the rate limit 5 times in a row will auto-ban the user from the bot.
self._auto_spam_count = Counter()
# remove default help command for a custom help
self.remove_command('help')
for extension in initial_extensions:
try:
self.load_extension(extension)
except Exception as e:
log.exception(f'Failed to load extension {extension}.', exc_info=True)
else:
log.info(f'Extension loaded: {extension}')
# Set event loop exception handler
self.loop.set_exception_handler(exception_handler)
async def on_socket_response(self, msg):
self._prev_events.append(msg)
async def on_command_error(self, ctx, error):
if isinstance(error, commands.NoPrivateMessage):
await ctx.author.send('This command cannot be used in private messages.')
elif isinstance(error, commands.DisabledCommand):
await ctx.author.send('Sorry. This command is disabled and cannot be used.')
elif isinstance(error, commands.CommandInvokeError):
original = error.original
if not isinstance(original, discord.HTTPException):
print(f'In {ctx.command.qualified_name}:', file=sys.stderr)
traceback.print_tb(original.__traceback__)
print(f'{original.__class__.__name__}: {original}', file=sys.stderr)
elif isinstance(error, commands.ArgumentParsingError):
await ctx.send(error)
def get_guild_prefixes(self, guild, *, local_inject=_prefix_callable):
proxy_msg = discord.Object(id=0)
proxy_msg.guild = guild
return local_inject(self, proxy_msg)
def get_raw_guild_prefixes(self, guild_id):
return self.prefixes.get(guild_id, ['?', '!'])
async def set_guild_prefixes(self, guild, prefixes):
if len(prefixes) == 0:
await self.prefixes.put(guild.id, [])
elif len(prefixes) > 10:
raise RuntimeError('Cannot have more than 10 custom prefixes.')
else:
await self.prefixes.put(guild.id, sorted(set(prefixes), reverse=True))
async def add_to_blacklist(self, object_id):
await self.blacklist.put(object_id, True)
async def remove_from_blacklist(self, object_id):
try:
await self.blacklist.remove(object_id)
except KeyError:
pass
async def on_ready(self):
if not hasattr(self, 'uptime'):
self.uptime = datetime.datetime.utcnow()
log.info(f'Bot ready, User: {self.user} (ID: {self.user.id})')
async def on_resumed(self):
print('Season has been resumed...')
@property
def stats_webhook(self):
wh_id, wh_token = self.config.stat_webhook
hook = discord.Webhook.partial(id=wh_id, token=wh_token, adapter=discord.AsyncWebhookAdapter(self.session))
return hook
def log_spammer(self, ctx, message, retry_after, *, autoblock=False):
guild_name = getattr(ctx.guild, 'name', 'No Guild (DMs)')
guild_id = getattr(ctx.guild, 'id', None)
fmt = 'User %s (ID %s) in guild %r (ID %s) spamming, retry_after: %.2fs'
log.warning(fmt, message.author, message.author.id, guild_name, guild_id, retry_after)
if not autoblock:
return
wh = self.stats_webhook
embed = discord.Embed(title='Auto-blocked Member', colour=0xDDA453)
embed.add_field(name='Member', value=f'{message.author} (ID: {message.author.id})', inline=False)
embed.add_field(name='Guild Info', value=f'{guild_name} (ID: {guild_id})', inline=False)
embed.add_field(name='Channel Info', value=f'{message.channel} (ID: {message.channel.id}', inline=False)
embed.timestamp = datetime.datetime.utcnow()
return wh.send(embed=embed)
async def process_commands(self, message):
ctx = await self.get_context(message, cls=context.Context)
if ctx.command is None:
return
if ctx.author.id in self.blacklist:
return
if ctx.guild is not None and ctx.guild.id in self.blacklist:
return
bucket = self.spam_control.get_bucket(message)
current = message.created_at.replace(tzinfo=datetime.timezone.utc).timestamp()
retry_after = bucket.update_rate_limit(current)
author_id = message.author.id
if retry_after and author_id != self.owner_id:
self._auto_spam_count[author_id] += 1
if self._auto_spam_count[author_id] >= 5:
await self.add_to_blacklist(author_id)
del self._auto_spam_count[author_id]
await self.log_spammer(ctx, message, retry_after, autoblock=True)
else:
self.log_spammer(ctx, message, retry_after)
return
else:
self._auto_spam_count.pop(author_id, None)
try:
await self.invoke(ctx)
finally:
# Just in case we have any outstanding DB connections
await ctx.release()
async def on_message(self, message):
if message.author.bot:
return
# Send back the prefixes when bot mentioned
if not message.mention_everyone and self.user.mentioned_in(message):
guild = message.guild
prefixes = self.get_guild_prefixes(guild)
await message.channel.send(f'My prefixes are: **{prefixes}**')
await self.process_commands(message)
async def on_guild_join(self, guild):
if guild.id in self.blacklist:
await guild.leave()
async def close(self):
await super().close()
await self.session.close()
def run(self):
try:
super().run(BOT_TOKEN, reconnect=True)
finally:
with open('prev_events.log', 'w', encoding='utf-8') as fp:
for data in self._prev_events:
try:
x = json.dumps(data, ensure_ascii=True, indent=4)
except:
fp.write(f'{data}\n')
else:
fp.write(f'{x}\n')
@property
def config(self):
return __import__('config')