-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.py
56 lines (37 loc) · 1.13 KB
/
client.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
from typing import Callable
import discord
from utils import Context, get_logger, log_resource_usage, log_uptime
client = discord.Bot(intents=discord.Intents.all())
l = get_logger(__name__)
@client.event
async def on_ready():
l.info(f'logged on as {client.user}')
await log_resource_usage()
log_uptime()
message_handlers = []
message_filters = []
def message_handler(func: Callable):
message_handlers.append(func)
return func
def message_filter(func: Callable):
message_filters.append(func)
return func
async def handle_message(ctx: Context):
for handler in message_handlers:
stop = True
def next(): nonlocal stop; stop = False
await handler(ctx, next)
if stop:
return
await ctx.reply(f"Sorry, I don't understand.")
@client.event
async def on_message(message: discord.Message):
ctx = Context(client, message)
for filter in message_filters:
stop = True
def next(): nonlocal stop; stop = False
await filter(ctx, next)
if stop:
return
async with message.channel.typing():
await handle_message(ctx)