Merge pull request #521 from nonebot/fix-ding

This commit is contained in:
Artin 2021-09-13 01:44:28 +08:00 committed by GitHub
commit b25a0387ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 4 deletions

View File

@ -505,7 +505,7 @@ class Matcher(metaclass=MatcherMeta):
""" """
bot = current_bot.get() bot = current_bot.get()
event = current_event.get() event = current_event.get()
if message: if message is not None:
await bot.send(event=event, message=message, **kwargs) await bot.send(event=event, message=message, **kwargs)
raise FinishedException raise FinishedException
@ -571,6 +571,7 @@ class Matcher(metaclass=MatcherMeta):
while self.handlers: while self.handlers:
handler = self.handlers.pop(0) handler = self.handlers.pop(0)
logger.debug(f"Running handler {handler}")
await handler(self, bot, event, self.state) await handler(self, bot, event, self.state)
except RejectedException: except RejectedException:

View File

@ -114,7 +114,7 @@ class Bot(BaseBot):
api: str, api: str,
event: Optional[MessageEvent] = None, event: Optional[MessageEvent] = None,
**data) -> Any: **data) -> Any:
if self.connection_type != "http": if not isinstance(self.request, HTTPRequest):
log("ERROR", "Only support http connection.") log("ERROR", "Only support http connection.")
return return

View File

@ -17,12 +17,21 @@ class MessageSegment(BaseMessageSegment["Message"]):
@overrides(BaseMessageSegment) @overrides(BaseMessageSegment)
def __str__(self) -> str: def __str__(self) -> str:
"""
该消息段所代表的 str在命令匹配部分使用
钉钉目前只支持匹配 text 命令
"""
if self.type == "text": if self.type == "text":
return str(self.data["content"]) return str(self.data["content"])
elif self.type == "markdown":
return str(self.data["text"])
return "" return ""
def __bool__(self) -> bool:
"""
因为暂时还不支持 text markdown 之外的其他复杂消息段的 `__str__`也不太需要
会导致判断非这两种类型的消息段的布尔值为 true 的时候出错
"""
return self.data is not None
@overrides(BaseMessageSegment) @overrides(BaseMessageSegment)
def is_text(self) -> bool: def is_text(self) -> bool:
return self.type == "text" return self.type == "text"