2018-07-01 17:51:01 +08:00
|
|
|
import asyncio
|
2018-10-16 01:03:50 +08:00
|
|
|
from typing import Iterable, Optional, Callable, Union, NamedTuple
|
2018-07-01 11:01:24 +08:00
|
|
|
|
2018-07-04 09:28:31 +08:00
|
|
|
from . import NoneBot, permission as perm
|
2018-07-01 17:51:01 +08:00
|
|
|
from .command import call_command
|
|
|
|
from .log import logger
|
2018-10-14 22:52:37 +08:00
|
|
|
from .message import Message
|
2018-07-02 16:54:29 +08:00
|
|
|
from .session import BaseSession
|
2018-10-16 01:03:50 +08:00
|
|
|
from .typing import Context_T, CommandName_T, CommandArgs_T
|
2018-07-01 11:01:24 +08:00
|
|
|
|
|
|
|
_nl_processors = set()
|
|
|
|
|
|
|
|
|
|
|
|
class NLProcessor:
|
2018-07-27 22:53:38 +08:00
|
|
|
__slots__ = ('func', 'keywords', 'permission',
|
2018-12-15 23:41:03 +08:00
|
|
|
'only_to_me', 'only_short_message',
|
|
|
|
'allow_empty_message')
|
2018-07-01 17:51:01 +08:00
|
|
|
|
|
|
|
def __init__(self, *, func: Callable, keywords: Optional[Iterable],
|
2018-12-15 23:41:03 +08:00
|
|
|
permission: int, only_to_me: bool, only_short_message: bool,
|
|
|
|
allow_empty_message: bool):
|
2018-07-01 17:51:01 +08:00
|
|
|
self.func = func
|
|
|
|
self.keywords = keywords
|
|
|
|
self.permission = permission
|
|
|
|
self.only_to_me = only_to_me
|
2018-07-27 22:53:38 +08:00
|
|
|
self.only_short_message = only_short_message
|
2018-12-15 23:41:03 +08:00
|
|
|
self.allow_empty_message = allow_empty_message
|
2018-07-01 17:51:01 +08:00
|
|
|
|
|
|
|
|
2019-07-01 09:59:49 +08:00
|
|
|
def on_natural_language(keywords: Union[Optional[Iterable], str, Callable] = None,
|
2018-07-03 10:36:05 +08:00
|
|
|
*, permission: int = perm.EVERYBODY,
|
2018-07-27 22:53:38 +08:00
|
|
|
only_to_me: bool = True,
|
2018-12-15 23:41:03 +08:00
|
|
|
only_short_message: bool = True,
|
|
|
|
allow_empty_message: bool = False) -> Callable:
|
2018-07-01 20:01:05 +08:00
|
|
|
"""
|
|
|
|
Decorator to register a function as a natural language processor.
|
|
|
|
|
2018-12-15 23:50:34 +08:00
|
|
|
:param keywords: keywords to respond to, if None, respond to all messages
|
2018-07-01 20:01:05 +08:00
|
|
|
:param permission: permission required by the processor
|
|
|
|
:param only_to_me: only handle messages to me
|
2018-12-15 23:41:03 +08:00
|
|
|
:param only_short_message: only handle short messages
|
|
|
|
:param allow_empty_message: handle empty messages
|
2018-07-01 20:01:05 +08:00
|
|
|
"""
|
|
|
|
|
2018-07-01 17:51:01 +08:00
|
|
|
def deco(func: Callable) -> Callable:
|
|
|
|
nl_processor = NLProcessor(func=func, keywords=keywords,
|
2018-07-03 10:36:05 +08:00
|
|
|
permission=permission,
|
2018-07-27 22:53:38 +08:00
|
|
|
only_to_me=only_to_me,
|
2018-12-15 23:41:03 +08:00
|
|
|
only_short_message=only_short_message,
|
|
|
|
allow_empty_message=allow_empty_message)
|
2018-07-01 17:51:01 +08:00
|
|
|
_nl_processors.add(nl_processor)
|
|
|
|
return func
|
|
|
|
|
|
|
|
if isinstance(keywords, Callable):
|
|
|
|
# here "keywords" is the function to be decorated
|
|
|
|
return on_natural_language()(keywords)
|
|
|
|
else:
|
2019-07-01 09:59:49 +08:00
|
|
|
if isinstance(keywords, str):
|
|
|
|
keywords = (keywords,)
|
2018-07-01 17:51:01 +08:00
|
|
|
return deco
|
|
|
|
|
|
|
|
|
|
|
|
class NLPSession(BaseSession):
|
|
|
|
__slots__ = ('msg', 'msg_text', 'msg_images')
|
|
|
|
|
2018-10-16 01:03:50 +08:00
|
|
|
def __init__(self, bot: NoneBot, ctx: Context_T, msg: str):
|
2018-07-01 17:51:01 +08:00
|
|
|
super().__init__(bot, ctx)
|
|
|
|
self.msg = msg
|
|
|
|
tmp_msg = Message(msg)
|
|
|
|
self.msg_text = tmp_msg.extract_plain_text()
|
|
|
|
self.msg_images = [s.data['url'] for s in tmp_msg
|
|
|
|
if s.type == 'image' and 'url' in s.data]
|
2018-07-01 11:01:24 +08:00
|
|
|
|
|
|
|
|
2018-10-16 01:03:50 +08:00
|
|
|
class NLPResult(NamedTuple):
|
2019-01-21 21:31:26 +08:00
|
|
|
"""
|
|
|
|
Deprecated.
|
|
|
|
Use class IntentCommand instead.
|
|
|
|
"""
|
2018-10-16 01:03:50 +08:00
|
|
|
confidence: float
|
|
|
|
cmd_name: Union[str, CommandName_T]
|
|
|
|
cmd_args: Optional[CommandArgs_T] = None
|
2018-07-01 11:01:24 +08:00
|
|
|
|
2019-01-21 21:31:26 +08:00
|
|
|
def to_intent_command(self):
|
|
|
|
return IntentCommand(confidence=self.confidence,
|
|
|
|
name=self.cmd_name,
|
2019-02-01 19:38:50 +08:00
|
|
|
args=self.cmd_args)
|
2019-01-21 21:31:26 +08:00
|
|
|
|
|
|
|
|
|
|
|
class IntentCommand(NamedTuple):
|
|
|
|
"""
|
|
|
|
To represent a command that we think the user may be intended to call.
|
|
|
|
"""
|
|
|
|
confidence: float
|
|
|
|
name: Union[str, CommandName_T]
|
|
|
|
args: Optional[CommandArgs_T] = None
|
2019-02-01 19:38:50 +08:00
|
|
|
current_arg: str = ''
|
2019-01-21 21:31:26 +08:00
|
|
|
|
2018-07-01 11:01:24 +08:00
|
|
|
|
2018-10-16 01:03:50 +08:00
|
|
|
async def handle_natural_language(bot: NoneBot, ctx: Context_T) -> bool:
|
2018-07-01 20:01:05 +08:00
|
|
|
"""
|
|
|
|
Handle a message as natural language.
|
|
|
|
|
|
|
|
This function is typically called by "handle_message".
|
|
|
|
|
2018-07-04 09:28:31 +08:00
|
|
|
:param bot: NoneBot instance
|
2018-07-01 20:01:05 +08:00
|
|
|
:param ctx: message context
|
|
|
|
:return: the message is handled as natural language
|
|
|
|
"""
|
2019-02-21 21:41:17 +08:00
|
|
|
session = NLPSession(bot, ctx, str(ctx['message']))
|
2018-07-01 17:51:01 +08:00
|
|
|
|
2018-07-27 22:53:38 +08:00
|
|
|
# use msg_text here because CQ code "share" may be very long,
|
|
|
|
# at the same time some plugins may want to handle it
|
|
|
|
msg_text_length = len(session.msg_text)
|
|
|
|
|
2018-12-25 20:40:36 +08:00
|
|
|
futures = []
|
2018-07-01 17:51:01 +08:00
|
|
|
for p in _nl_processors:
|
2018-12-15 23:41:03 +08:00
|
|
|
if not p.allow_empty_message and not session.msg:
|
|
|
|
# don't allow empty msg, but it is one, so skip to next
|
|
|
|
continue
|
|
|
|
|
2018-07-27 22:53:38 +08:00
|
|
|
if p.only_short_message and \
|
|
|
|
msg_text_length > bot.config.SHORT_MESSAGE_MAX_LENGTH:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if p.only_to_me and not ctx['to_me']:
|
|
|
|
continue
|
|
|
|
|
2018-07-01 17:51:01 +08:00
|
|
|
should_run = await perm.check_permission(bot, ctx, p.permission)
|
|
|
|
if should_run and p.keywords:
|
|
|
|
for kw in p.keywords:
|
|
|
|
if kw in session.msg_text:
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
# no keyword matches
|
|
|
|
should_run = False
|
|
|
|
|
|
|
|
if should_run:
|
2018-12-25 20:40:36 +08:00
|
|
|
futures.append(asyncio.ensure_future(p.func(session)))
|
2018-07-01 17:51:01 +08:00
|
|
|
|
2018-12-25 20:40:36 +08:00
|
|
|
if futures:
|
2019-01-21 21:31:26 +08:00
|
|
|
# wait for intent commands, and sort them by confidence
|
|
|
|
intent_commands = []
|
2018-12-25 20:40:36 +08:00
|
|
|
for fut in futures:
|
|
|
|
try:
|
2019-01-21 21:31:26 +08:00
|
|
|
res = await fut
|
|
|
|
if isinstance(res, NLPResult):
|
|
|
|
intent_commands.append(res.to_intent_command())
|
|
|
|
elif isinstance(res, IntentCommand):
|
|
|
|
intent_commands.append(res)
|
2018-12-25 20:40:36 +08:00
|
|
|
except Exception as e:
|
|
|
|
logger.error('An exception occurred while running '
|
|
|
|
'some natural language processor:')
|
|
|
|
logger.exception(e)
|
2019-01-21 21:31:26 +08:00
|
|
|
|
|
|
|
intent_commands.sort(key=lambda ic: ic.confidence, reverse=True)
|
|
|
|
logger.debug(f'Intent commands: {intent_commands}')
|
|
|
|
|
|
|
|
if intent_commands and intent_commands[0].confidence >= 60.0:
|
|
|
|
# choose the intent command with highest confidence
|
|
|
|
chosen_cmd = intent_commands[0]
|
|
|
|
logger.debug(
|
|
|
|
f'Intent command with highest confidence: {chosen_cmd}')
|
|
|
|
return await call_command(
|
|
|
|
bot, ctx, chosen_cmd.name,
|
|
|
|
args=chosen_cmd.args,
|
|
|
|
current_arg=chosen_cmd.current_arg,
|
|
|
|
check_perm=False
|
|
|
|
)
|
2018-07-21 00:46:34 +08:00
|
|
|
else:
|
2019-01-21 21:31:26 +08:00
|
|
|
logger.debug('No intent command has enough confidence')
|
2018-07-01 17:51:01 +08:00
|
|
|
return False
|