mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-12-01 01:25:07 +08:00
25 lines
941 B
Markdown
25 lines
941 B
Markdown
|
# 编写过滤器
|
|||
|
|
|||
|
编写过滤器比较简单,只需要调用 `filter.py` 中的 `add_filter` 函数,传入过滤器函数和优先级,即可。
|
|||
|
|
|||
|
比如我们需要做一个消息拦截器,当匹配到消息中有不文明词汇,就发送一条警告,并拦截消息不让后续过滤器和命令处理,代码可能如下:
|
|||
|
|
|||
|
```python
|
|||
|
from filter import add_filter
|
|||
|
from commands import core
|
|||
|
|
|||
|
|
|||
|
def _interceptor(ctx_msg):
|
|||
|
if 'xxx' in ctx_msg.get('content', ''):
|
|||
|
core.echo('请不要说脏话', ctx_msg)
|
|||
|
return False
|
|||
|
return True
|
|||
|
|
|||
|
|
|||
|
add_filter(_interceptor, 100)
|
|||
|
```
|
|||
|
|
|||
|
一般建议优先级设置为 0~100 之间。
|
|||
|
|
|||
|
过滤器函数返回 True 表示让消息继续传递,返回 False 表示拦截消息。由于很多情况下可能不需要拦截,因此为了方便起见,将不返回值的情况(返回 None)作为不拦截处理,因此只要返回结果 is not False 就表示不拦截。
|