-
Notifications
You must be signed in to change notification settings - Fork 22
/
run.py
executable file
·487 lines (420 loc) · 24.7 KB
/
run.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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
#!/usr/bin/env python3
import asyncio
import configparser
import random
import sqlite3
from os import environ
from os.path import join
from subprocess import check_output, CalledProcessError
from sys import version_info
from tempfile import TemporaryFile
from typing import TYPE_CHECKING
import disnake
if TYPE_CHECKING:
from typing import List, Optional, Tuple
version = '1.3.13'
is_docker = environ.get('IS_DOCKER', 0)
data_dir = environ.get('MODMAIL_DATA_DIR', '.')
database_file = join(data_dir, 'modmail_data.sqlite')
pyver = '{0[0]}.{0[1]}.{0[2]}'.format(version_info)
if version_info[3] != 'final':
pyver += '{0[3][0]}{0[4]}'.format(version_info)
if is_docker:
commit = environ.get('COMMIT_SHA', '<unknown>')
branch = environ.get('COMMIT_BRANCH', '<unknown>')
else:
try:
commit = check_output(['git', 'rev-parse', 'HEAD']).decode('ascii')[:-1]
except CalledProcessError as e:
print(f'Checking for git commit failed: {type(e).__name__} {e}')
commit = '<unknown>'
except FileNotFoundError as e:
print('git not found, not showing commit')
commit = '<unknown>'
try:
branch = check_output(['git', 'rev-parse', '--abbrev-ref', 'HEAD']).decode()[:-1]
except CalledProcessError as e:
print(f'Checking for git branch failed: {type(e).__name__} {e}')
branch = '<unknown>'
except FileNotFoundError as e:
print('git not found, not showing branch')
branch = '<unknown>'
print(f'Starting discord-mod-mail {version}!')
config = configparser.ConfigParser()
config.read(join(data_dir, 'config.ini'))
post_startup_message = config['Main'].getboolean('post_startup_message', fallback=True)
intents = disnake.Intents(guilds=True, members=True, messages=True, message_content=True, dm_typing=True)
client = disnake.Client(activity=disnake.Game(name=config['Main']['playing']), max_messages=100, intents=intents)
client.channel: disnake.TextChannel
client.already_ready = False
client.last_id = 'uninitialized'
db = sqlite3.connect(database_file)
with db:
if db.execute('PRAGMA user_version').fetchone()[0] == 0:
print('Setting up', database_file)
db.execute('PRAGMA application_id = 0x4D6F644D') # ModM
db.execute('PRAGMA user_version = 1')
with open('schema.sql', 'r', encoding='utf-8') as f:
db.executescript(f.read())
try:
print('Converting ignored.json')
with open('ignored.json', 'r') as f:
# only importing json if needed
import json
ignored = json.load(f)
del json
db.executemany('INSERT INTO ignored VALUES (?, 1, NULL)', ((x,) for x in ignored))
print('Done!')
except FileNotFoundError:
pass
def is_ignored(user_id: int) -> 'Optional[Tuple[int, Optional[str]]]':
with db:
return db.execute('SELECT quiet, reason FROM ignored WHERE user_id = ?', (user_id,)).fetchone()
def add_ignore(user_id: int, reason: str = None, is_quiet: bool = False) -> bool:
try:
with db:
print(user_id)
db.execute('INSERT INTO ignored VALUES (?, ?, ?)', (user_id, is_quiet, reason))
return True
except sqlite3.IntegrityError:
return False
def remove_ignore(user_id: int) -> int:
with db:
return db.execute('DELETE FROM ignored WHERE user_id = ?', (user_id,)).rowcount
@client.event
async def on_ready():
if client.already_ready:
return
client.channel = client.get_channel(int(config['Main']['channel_id']))
if not client.channel:
print(f'Channel with ID {config["Main"]["channel_id"]} not found.')
await client.close()
print('{0.user} is now ready.'.format(client))
startup_message = (f'{client.user} is now ready. Version {version}, branch {branch}, commit {commit[0:7]}, '
f'Python {pyver}')
if post_startup_message:
await client.channel.send(startup_message)
print(startup_message)
client.already_ready = True
def gen_color(user_id):
random.seed(user_id)
c_r = random.randint(0, 255)
c_g = random.randint(0, 255)
c_b = random.randint(0, 255)
return disnake.Color((c_r << 16) + (c_g << 8) + c_b)
anti_spam_check = {}
anti_duplicate_replies = {}
@client.event
async def on_typing(channel, user, when):
if isinstance(channel, disnake.DMChannel):
if not is_ignored(user.id):
await client.channel.trigger_typing()
@client.event
async def on_message(message):
author = message.author
if author == client.user:
return
if not client.already_ready:
return
if type(message.channel) is disnake.DMChannel:
if is_ignored(author.id):
return
if author.id not in anti_spam_check:
anti_spam_check[author.id] = 0
anti_spam_check[author.id] += 1
if anti_spam_check[author.id] >= int(config['AntiSpam']['messages']):
add_ignore(author.id, 'Automatic anti-spam ignore')
await client.channel.send(
f'{author.id} {author.mention} auto-ignored due to spam. '
f'Use `{config["Main"]["command_prefix"]}unignore` to reverse.')
return
# for the purpose of nicknames, if anys
for server in client.guilds:
member = server.get_member(author.id)
if member:
author = member
break
embed = disnake.Embed(color=gen_color(int(author.id)), description=message.content)
if isinstance(author, disnake.Member) and author.nick:
author_name = f'{author.nick} ({author})'
else:
author_name = str(author)
embed.set_author(name=author_name, icon_url=author.avatar.url if author.avatar else author.default_avatar.url)
to_send = f'{author.id}'
if message.attachments:
attachment_urls = []
for attachment in message.attachments:
attachment_urls.append(f'[{attachment.filename}]({attachment.url}) '
f'({attachment.size} bytes)')
attachment_msg = '\N{BULLET} ' + '\n\N{BULLET} '.join(attachment_urls)
embed.add_field(name='Attachments', value=attachment_msg, inline=False)
await client.channel.send(to_send, embed=embed)
await message.add_reaction('\N{WHITE HEAVY CHECK MARK}')
client.last_id = author.id
await asyncio.sleep(int(config['AntiSpam']['seconds']))
anti_spam_check[author.id] -= 1
elif message.channel == client.channel:
if message.content.startswith(config['Main']['command_prefix']):
# this might be the wrong way
command_split = message.content[len(config['Main']['command_prefix']):].strip().split(maxsplit=1)
command_name = command_split[0]
try:
command_contents = command_split[1]
except IndexError:
command_contents = ''
if command_name == 'ignore' or command_name == 'qignore':
if not command_contents:
await client.channel.send('Did you forget to enter an ID?')
else:
try:
command_args = command_contents.split(' ', maxsplit=1)
user_id = int(command_args[0])
try:
reason = command_args[1]
except IndexError:
reason = None
except ValueError:
await client.channel.send('Could not convert to int.')
return
is_quiet = command_name == 'qignore'
if add_ignore(user_id, reason, is_quiet):
if not is_quiet:
to_send = 'Your messages are being ignored by staff.'
if reason:
to_send += ' Reason: ' + reason
for server in client.guilds:
member = server.get_member(user_id)
if member:
try:
await member.send(to_send)
except disnake.errors.Forbidden:
await client.channel.send(f'{member.mention} has disabled DMs or is not in a '
f'shared server, not sending reason.')
break
else:
await client.channel.send('Failed to find user with ID, not sending reason.')
await client.channel.send(
f'{author.mention} {user_id} is now ignored. Messages from this user will not appear. '
f'Use `{config["Main"]["command_prefix"]}unignore` to reverse.')
else:
await client.channel.send(f'{author.mention} {user_id} is already ignored.')
elif command_name == 'unignore':
if not command_contents:
await client.channel.send('Did you forget to enter an ID?')
else:
try:
user_id = int(command_contents.split(' ', maxsplit=1)[0])
except ValueError:
await client.channel.send('Could not convert to int.')
return
ignored = is_ignored(user_id)
if ignored:
is_quiet = ignored[0]
if not is_quiet:
to_send = 'Your messages are no longer being ignored by staff.'
for server in client.guilds:
member = server.get_member(user_id)
if member:
try:
await member.send(to_send)
except disnake.errors.Forbidden:
await client.channel.send(f'{member.mention} has disabled DMs or is not in '
f'a shared server, not sending notification.')
break
else:
await client.channel.send('Failed to find user with ID, not sending notification.')
if remove_ignore(user_id):
await client.channel.send(
f'{author.mention} {user_id} is no longer ignored. Messages from this user will appear '
f'again. Use `{config["Main"]["command_prefix"]}ignore` to reverse.')
else:
await client.channel.send(f'{author.mention} {user_id} is not ignored.')
elif command_name == 'fixgame':
await client.change_presence(activity=None)
await client.change_presence(activity=disnake.Game(name=config['Main']['playing']))
await client.channel.send('Game presence re-set.')
elif command_name == 'm':
await client.channel.send(f'{client.last_id} <@!{client.last_id}>')
elif command_name == 'r':
if command_name not in anti_duplicate_replies:
anti_duplicate_replies[command_name] = False
elif anti_duplicate_replies[command_name]:
await client.channel.send(
f'{author.mention} Your message was not sent to prevent multiple replies '
f'to the same person within 2 seconds.')
return
anti_duplicate_replies[command_name] = True
if not (command_contents or message.attachments):
await client.channel.send('Did you forget to enter a message?')
else:
for server in client.guilds:
member = server.get_member(client.last_id)
if member:
attachments = []
try:
progress_msg = None
if message.attachments:
size_limit = 0x800000
size_diff = 0x800
# first check the size of all attachments
# the 0x800 number is arbitrary, just in case
# in reality, the file size needs to be like 0x200 smaller than the supposed limit
error_messages = []
warning_messages = []
for a in message.attachments:
if a.size > size_limit:
error_messages.append(f'`{disnake.utils.escape_markdown(a.filename)}` '
f'is too large to send in a direct message.')
elif a.size > size_limit - 0x1000:
warning_messages.append(f'`{disnake.utils.escape_markdown(a.filename)}` '
f'is very close to the file size limit of the '
f'destination. It may fail to send.')
if error_messages:
final = '\n'.join(error_messages)
final += f'\nLimit: {size_limit} bytes ({size_limit / (1024 * 1024):.02f} MiB)'
final += f'\nRecommended Maximum: {size_limit - size_diff} bytes ' \
f'({(size_limit - size_diff) / (1024 * 1024):.02f} MiB)'
await client.channel.send(final)
break
if warning_messages:
final = '\n'.join(warning_messages)
final += f'\nLimit: {size_limit} bytes ({size_limit / (1024 * 1024):.02f} MiB)'
final += f'\nRecommended Maximum: {size_limit - size_diff} bytes ' \
f'({(size_limit - size_diff) / (1024 * 1024):.02f} MiB)'
await client.channel.send(final)
count = len(message.attachments)
progress_msg = await client.channel.send(f'Downloading attachments... 0/{count}')
for idx, a in enumerate(message.attachments, 1):
tf = TemporaryFile()
await a.save(tf, seek_begin=True)
attachments.append(disnake.File(tf, a.filename))
await progress_msg.edit(content=f'Downloading attachments... {idx}/{count}')
embed = disnake.Embed(color=gen_color(int(client.last_id)), description=command_contents)
if config['Main'].getboolean('anonymous_staff'):
to_send = 'Staff reply: '
else:
to_send = f'{author.mention}: '
to_send += command_contents
try:
if progress_msg:
await progress_msg.edit(content=f'Sending message with {len(attachments)} '
f'attachments...')
staff_msg = await member.send(to_send, files=attachments)
header_message = f'{author.mention} replying to {member.id} {member.mention}'
if is_ignored(member.id):
header_message += ' (replies ignored)'
# add attachment links to mod-mail message
if staff_msg.attachments:
attachment_urls = []
for attachment in staff_msg.attachments:
attachment_urls.append(f'[{attachment.filename}]({attachment.url}) '
f'({attachment.size} bytes)')
attachment_msg = '\N{BULLET} ' + '\n\N{BULLET} '.join(attachment_urls)
embed.add_field(name='Attachments', value=attachment_msg, inline=False)
await client.channel.send(header_message, embed=embed)
if progress_msg:
await progress_msg.delete()
await message.delete()
except disnake.errors.Forbidden:
await client.channel.send(f'{author.mention} {member.mention} has disabled DMs '
f'or is not in a shared server.')
break
finally:
for attach in attachments:
attach.close()
else:
await client.channel.send(f'Failed to find user with ID {client.last_id}')
await asyncio.sleep(2)
anti_duplicate_replies[command_name] = False
else:
if command_name not in anti_duplicate_replies:
anti_duplicate_replies[command_name] = False
elif anti_duplicate_replies[command_name]:
await client.channel.send(
f'{author.mention} Your message was not sent to prevent multiple replies '
f'to the same person within 2 seconds.')
return
anti_duplicate_replies[command_name] = True
if not (command_contents or message.attachments):
await client.channel.send('Did you forget to enter a message?')
else:
for server in client.guilds:
member = server.get_member(int(command_name))
if member:
attachments = []
try:
progress_msg = None
if message.attachments:
size_limit = 0x800000
size_diff = 0x800
# first check the size of all attachments
# the 0x800 number is arbitrary, just in case
# in reality, the file size needs to be like 0x200 smaller than the supposed limit
error_messages = []
warning_messages = []
for a in message.attachments:
if a.size > size_limit:
error_messages.append(f'`{disnake.utils.escape_markdown(a.filename)}` '
f'is too large to send in a direct message.')
elif a.size > size_limit - 0x1000:
warning_messages.append(f'`{disnake.utils.escape_markdown(a.filename)}` '
f'is very close to the file size limit of the '
f'destination. It may fail to send.')
if error_messages:
final = '\n'.join(error_messages)
final += f'\nLimit: {size_limit} bytes ({size_limit / (1024 * 1024):.02f} MiB)'
final += f'\nRecommended Maximum: {size_limit - size_diff} bytes ' \
f'({(size_limit - size_diff) / (1024 * 1024):.02f} MiB)'
await client.channel.send(final)
break
if warning_messages:
final = '\n'.join(warning_messages)
final += f'\nLimit: {size_limit} bytes ({size_limit / (1024 * 1024):.02f} MiB)'
final += f'\nRecommended Maximum: {size_limit - size_diff} bytes ' \
f'({(size_limit - size_diff) / (1024 * 1024):.02f} MiB)'
await client.channel.send(final)
count = len(message.attachments)
progress_msg = await client.channel.send(f'Downloading attachments... 0/{count}')
for idx, a in enumerate(message.attachments, 1):
tf = TemporaryFile()
await a.save(tf, seek_begin=True)
attachments.append(disnake.File(tf, a.filename))
await progress_msg.edit(content=f'Downloading attachments... {idx}/{count}')
embed = disnake.Embed(color=gen_color(int(command_name)), description=command_contents)
if config['Main'].getboolean('anonymous_staff'):
to_send = 'Staff reply: '
else:
to_send = f'{author.mention}: '
to_send += command_contents
try:
if progress_msg:
await progress_msg.edit(content=f'Sending message with {len(attachments)} '
f'attachments...')
staff_msg = await member.send(to_send, files=attachments)
header_message = f'{author.mention} replying to {member.id} {member.mention}'
if is_ignored(member.id):
header_message += ' (replies ignored)'
# add attachment links to mod-mail message
if staff_msg.attachments:
attachment_urls = []
for attachment in staff_msg.attachments:
attachment_urls.append(f'[{attachment.filename}]({attachment.url}) '
f'({attachment.size} bytes)')
attachment_msg = '\N{BULLET} ' + '\n\N{BULLET} '.join(attachment_urls)
embed.add_field(name='Attachments', value=attachment_msg, inline=False)
await client.channel.send(header_message, embed=embed)
if progress_msg:
await progress_msg.delete()
await message.delete()
except disnake.errors.Forbidden:
await client.channel.send(f'{author.mention} {member.mention} has disabled DMs '
f'or is not in a shared server.')
break
finally:
for attach in attachments:
attach.close()
else:
await client.channel.send(f'Failed to find user with ID {command_name}')
await asyncio.sleep(2)
anti_duplicate_replies[command_name] = False
client.run(config['Main']['token'])