fix: 匹配规则的内容检查

This commit is contained in:
Rock Chin
2022-12-19 17:15:17 +08:00
parent 42a85ddbb1
commit 0227ff0329
+6 -1
View File
@@ -30,14 +30,19 @@ def go(func, args=()):
# 检查消息是否符合泛响应匹配机制 # 检查消息是否符合泛响应匹配机制
def check_response_rule(text: str) -> (bool, str): def check_response_rule(text: str) -> (bool, str):
if not hasattr(config, 'response_rules'):
return False, ''
rules = config.response_rules rules = config.response_rules
# 检查前缀匹配 # 检查前缀匹配
if 'prefix' in rules:
for rule in rules['prefix']: for rule in rules['prefix']:
if text.startswith(rule): if text.startswith(rule):
return True, text.replace(rule, "", 1) return True, text.replace(rule, "", 1)
# 检查正则表达式匹配 # 检查正则表达式匹配
for rule in rules['regex']: if 'regexp' in rules:
for rule in rules['regexp']:
import re import re
match = re.match(rule, text) match = re.match(rule, text)
if match: if match: