nonebot2/none/message.py
2018-07-04 09:28:31 +08:00

33 lines
969 B
Python

from typing import Dict, Any
from aiocqhttp.message import MessageSegment
from . import NoneBot
from .command import handle_command
from .log import logger
from .natural_language import handle_natural_language
async def handle_message(bot: NoneBot, ctx: Dict[str, Any]) -> None:
if ctx['message_type'] != 'private':
# group or discuss
ctx['to_me'] = False
first_message_seg = ctx['message'][0]
if first_message_seg == MessageSegment.at(ctx['self_id']):
ctx['to_me'] = True
del ctx['message'][0]
if not ctx['message']:
ctx['message'].append(MessageSegment.text(''))
else:
ctx['to_me'] = True
handled = await handle_command(bot, ctx)
if handled:
logger.debug('Message is handled as a command')
return
handled = await handle_natural_language(bot, ctx)
if handled:
logger.debug('Message is handled as natural language')
return