mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-07-21 14:17:11 +08:00
decouple message processing process
This commit is contained in:
@@ -19,19 +19,24 @@ class ChatGPTBot(Bot):
|
|||||||
|
|
||||||
def reply(self, query, context=None):
|
def reply(self, query, context=None):
|
||||||
# acquire reply content
|
# acquire reply content
|
||||||
if not context or not context.get('type') or context.get('type') == 'TEXT':
|
if context['type']=='TEXT':
|
||||||
logger.info("[OPEN_AI] query={}".format(query))
|
logger.info("[OPEN_AI] query={}".format(query))
|
||||||
session_id = context.get('session_id') or context.get('from_user_id')
|
session_id = context['session_id']
|
||||||
|
reply=None
|
||||||
if query == '#清除记忆':
|
if query == '#清除记忆':
|
||||||
self.sessions.clear_session(session_id)
|
self.sessions.clear_session(session_id)
|
||||||
return '记忆已清除'
|
reply={'type':'INFO', 'content':'记忆已清除'}
|
||||||
elif query == '#清除所有':
|
elif query == '#清除所有':
|
||||||
self.sessions.clear_all_session()
|
self.sessions.clear_all_session()
|
||||||
return '所有人记忆已清除'
|
reply={'type':'INFO', 'content':'所有人记忆已清除'}
|
||||||
elif query == '#更新配置':
|
elif query == '#更新配置':
|
||||||
load_config()
|
load_config()
|
||||||
return '配置已更新'
|
reply={'type':'INFO', 'content':'配置已更新'}
|
||||||
|
elif query == '#DEBUG':
|
||||||
|
logger.setLevel('DEBUG')
|
||||||
|
reply={'type':'INFO', 'content':'DEBUG模式已开启'}
|
||||||
|
if reply:
|
||||||
|
return reply
|
||||||
session = self.sessions.build_session_query(query, session_id)
|
session = self.sessions.build_session_query(query, session_id)
|
||||||
logger.debug("[OPEN_AI] session query={}".format(session))
|
logger.debug("[OPEN_AI] session query={}".format(session))
|
||||||
|
|
||||||
@@ -41,12 +46,26 @@ class ChatGPTBot(Bot):
|
|||||||
|
|
||||||
reply_content = self.reply_text(session, session_id, 0)
|
reply_content = self.reply_text(session, session_id, 0)
|
||||||
logger.debug("[OPEN_AI] new_query={}, session_id={}, reply_cont={}".format(session, session_id, reply_content["content"]))
|
logger.debug("[OPEN_AI] new_query={}, session_id={}, reply_cont={}".format(session, session_id, reply_content["content"]))
|
||||||
if reply_content["completion_tokens"] > 0:
|
if reply_content['completion_tokens']==0 and len(reply_content['content'])>0:
|
||||||
|
reply={'type':'ERROR', 'content':reply_content['content']}
|
||||||
|
elif reply_content["completion_tokens"] > 0:
|
||||||
self.sessions.save_session(reply_content["content"], session_id, reply_content["total_tokens"])
|
self.sessions.save_session(reply_content["content"], session_id, reply_content["total_tokens"])
|
||||||
return reply_content["content"]
|
reply={'type':'TEXT', 'content':reply_content["content"]}
|
||||||
|
else:
|
||||||
|
reply={'type':'ERROR', 'content':reply_content['content']}
|
||||||
|
logger.debug("[OPEN_AI] reply {} used 0 tokens.".format(reply_content))
|
||||||
|
return reply
|
||||||
|
|
||||||
elif context.get('type', None) == 'IMAGE_CREATE':
|
elif context['type'] == 'IMAGE_CREATE':
|
||||||
return self.create_img(query, 0)
|
ok, retstring=self.create_img(query, 0)
|
||||||
|
reply=None
|
||||||
|
if ok:
|
||||||
|
reply = {'type':'IMAGE', 'content':retstring}
|
||||||
|
else:
|
||||||
|
reply = {'type':'ERROR', 'content':retstring}
|
||||||
|
return reply
|
||||||
|
else:
|
||||||
|
reply= {'type':'ERROR', 'content':'Bot不支持处理{}类型的消息'.format(context['type'])}
|
||||||
|
|
||||||
def reply_text(self, session, session_id, retry_count=0) ->dict:
|
def reply_text(self, session, session_id, retry_count=0) ->dict:
|
||||||
'''
|
'''
|
||||||
@@ -104,7 +123,7 @@ class ChatGPTBot(Bot):
|
|||||||
)
|
)
|
||||||
image_url = response['data'][0]['url']
|
image_url = response['data'][0]['url']
|
||||||
logger.info("[OPEN_AI] image_url={}".format(image_url))
|
logger.info("[OPEN_AI] image_url={}".format(image_url))
|
||||||
return image_url
|
return True,image_url
|
||||||
except openai.error.RateLimitError as e:
|
except openai.error.RateLimitError as e:
|
||||||
logger.warn(e)
|
logger.warn(e)
|
||||||
if retry_count < 1:
|
if retry_count < 1:
|
||||||
@@ -112,10 +131,10 @@ class ChatGPTBot(Bot):
|
|||||||
logger.warn("[OPEN_AI] ImgCreate RateLimit exceed, 第{}次重试".format(retry_count+1))
|
logger.warn("[OPEN_AI] ImgCreate RateLimit exceed, 第{}次重试".format(retry_count+1))
|
||||||
return self.create_img(query, retry_count+1)
|
return self.create_img(query, retry_count+1)
|
||||||
else:
|
else:
|
||||||
return "提问太快啦,请休息一下再问我吧"
|
return False,"提问太快啦,请休息一下再问我吧"
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.exception(e)
|
logger.exception(e)
|
||||||
return None
|
return False,str(e)
|
||||||
|
|
||||||
class SessionManager(object):
|
class SessionManager(object):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|||||||
@@ -15,6 +15,11 @@ class Bridge(object):
|
|||||||
except ModuleNotFoundError as e:
|
except ModuleNotFoundError as e:
|
||||||
print(e)
|
print(e)
|
||||||
|
|
||||||
|
|
||||||
|
# 以下所有函数需要得到一个reply字典,格式如下:
|
||||||
|
# reply["type"] = "ERROR" / "TEXT" / "VOICE" / ...
|
||||||
|
# reply["content"] = reply的内容
|
||||||
|
|
||||||
def fetch_reply_content(self, query, context):
|
def fetch_reply_content(self, query, context):
|
||||||
return self.bots["chat"].reply(query, context)
|
return self.bots["chat"].reply(query, context)
|
||||||
|
|
||||||
|
|||||||
@@ -46,62 +46,55 @@ class WechatChannel(Channel):
|
|||||||
|
|
||||||
# start message listener
|
# start message listener
|
||||||
itchat.run()
|
itchat.run()
|
||||||
|
|
||||||
|
# handle_* 系列函数处理收到的消息后构造context,然后调用handle函数处理context
|
||||||
|
# context是一个字典,包含了消息的所有信息,包括以下key
|
||||||
|
# type: 消息类型,包括TEXT、VOICE、CMD_IMAGE_CREATE
|
||||||
|
# content: 消息内容,如果是TEXT类型,content就是文本内容,如果是VOICE类型,content就是语音文件名,如果是CMD_IMAGE_CREATE类型,content就是图片生成命令
|
||||||
|
# session_id: 会话id
|
||||||
|
# isgroup: 是否是群聊
|
||||||
|
# msg: 原始消息对象
|
||||||
|
# receiver: 需要回复的对象
|
||||||
|
|
||||||
def handle_voice(self, msg):
|
def handle_voice(self, msg):
|
||||||
if conf().get('speech_recognition') != True :
|
if conf().get('speech_recognition') != True :
|
||||||
return
|
return
|
||||||
logger.debug("[WX]receive voice msg: " + msg['FileName'])
|
logger.debug("[WX]receive voice msg: " + msg['FileName'])
|
||||||
thread_pool.submit(self._do_handle_voice, msg)
|
|
||||||
|
|
||||||
def _do_handle_voice(self, msg):
|
|
||||||
from_user_id = msg['FromUserName']
|
from_user_id = msg['FromUserName']
|
||||||
other_user_id = msg['User']['UserName']
|
other_user_id = msg['User']['UserName']
|
||||||
if from_user_id == other_user_id:
|
if from_user_id == other_user_id:
|
||||||
file_name = TmpDir().path() + msg['FileName']
|
context = { 'isgroup': False, 'msg': msg, 'receiver': other_user_id}
|
||||||
msg.download(file_name)
|
context['type']='VOICE'
|
||||||
query = super().build_voice_to_text(file_name)
|
context['session_id']=other_user_id
|
||||||
if conf().get('voice_reply_voice'):
|
thread_pool.submit(self.handle, context)
|
||||||
self._do_send_voice(query, from_user_id)
|
|
||||||
else:
|
|
||||||
self._do_send_text(query, from_user_id)
|
|
||||||
|
|
||||||
def handle_text(self, msg):
|
def handle_text(self, msg):
|
||||||
logger.debug("[WX]receive text msg: " + json.dumps(msg, ensure_ascii=False))
|
logger.debug("[WX]receive text msg: " + json.dumps(msg, ensure_ascii=False))
|
||||||
content = msg['Text']
|
content = msg['Text']
|
||||||
self._handle_single_msg(msg, content)
|
|
||||||
|
|
||||||
def _handle_single_msg(self, msg, content):
|
|
||||||
from_user_id = msg['FromUserName']
|
from_user_id = msg['FromUserName']
|
||||||
to_user_id = msg['ToUserName'] # 接收人id
|
to_user_id = msg['ToUserName'] # 接收人id
|
||||||
other_user_id = msg['User']['UserName'] # 对手方id
|
other_user_id = msg['User']['UserName'] # 对手方id
|
||||||
match_prefix = self.check_prefix(content, conf().get('single_chat_prefix'))
|
match_prefix = check_prefix(content, conf().get('single_chat_prefix'))
|
||||||
if "」\n- - - - - - - - - - - - - - -" in content:
|
if "」\n- - - - - - - - - - - - - - -" in content:
|
||||||
logger.debug("[WX]reference query skipped")
|
logger.debug("[WX]reference query skipped")
|
||||||
return
|
return
|
||||||
if from_user_id == other_user_id and match_prefix is not None:
|
if match_prefix:
|
||||||
# 好友向自己发送消息
|
content=content.replace(match_prefix,'',1).strip()
|
||||||
if match_prefix != '':
|
else:
|
||||||
str_list = content.split(match_prefix, 1)
|
return
|
||||||
if len(str_list) == 2:
|
context = { 'isgroup': False, 'msg': msg, 'receiver': other_user_id}
|
||||||
content = str_list[1].strip()
|
context['session_id']=other_user_id
|
||||||
|
|
||||||
img_match_prefix = self.check_prefix(content, conf().get('image_create_prefix'))
|
img_match_prefix = check_prefix(content, conf().get('image_create_prefix'))
|
||||||
if img_match_prefix:
|
if img_match_prefix:
|
||||||
content = content.split(img_match_prefix, 1)[1].strip()
|
content=content.replace(img_match_prefix,'',1).strip()
|
||||||
thread_pool.submit(self._do_send_img, content, from_user_id)
|
context['type']='CMD_IMAGE_CREATE'
|
||||||
else :
|
else:
|
||||||
thread_pool.submit(self._do_send_text, content, from_user_id)
|
context['type']='TEXT'
|
||||||
elif to_user_id == other_user_id and match_prefix:
|
|
||||||
# 自己给好友发送消息
|
context['content']=content
|
||||||
str_list = content.split(match_prefix, 1)
|
thread_pool.submit(self.handle, context)
|
||||||
if len(str_list) == 2:
|
|
||||||
content = str_list[1].strip()
|
|
||||||
img_match_prefix = self.check_prefix(content, conf().get('image_create_prefix'))
|
|
||||||
if img_match_prefix:
|
|
||||||
content = content.split(img_match_prefix, 1)[1].strip()
|
|
||||||
thread_pool.submit(self._do_send_img, content, to_user_id)
|
|
||||||
else:
|
|
||||||
thread_pool.submit(self._do_send_text, content, to_user_id)
|
|
||||||
|
|
||||||
|
|
||||||
def handle_group(self, msg):
|
def handle_group(self, msg):
|
||||||
@@ -122,100 +115,114 @@ class WechatChannel(Channel):
|
|||||||
logger.debug("[WX]reference query skipped")
|
logger.debug("[WX]reference query skipped")
|
||||||
return ""
|
return ""
|
||||||
config = conf()
|
config = conf()
|
||||||
match_prefix = (msg['IsAt'] and not config.get("group_at_off", False)) or self.check_prefix(origin_content, config.get('group_chat_prefix')) \
|
match_prefix = (msg['IsAt'] and not config.get("group_at_off", False)) or check_prefix(origin_content, config.get('group_chat_prefix')) \
|
||||||
or self.check_contain(origin_content, config.get('group_chat_keyword'))
|
or check_contain(origin_content, config.get('group_chat_keyword'))
|
||||||
if ('ALL_GROUP' in config.get('group_name_white_list') or group_name in config.get('group_name_white_list') or self.check_contain(group_name, config.get('group_name_keyword_white_list'))) and match_prefix:
|
if ('ALL_GROUP' in config.get('group_name_white_list') or group_name in config.get('group_name_white_list') or check_contain(group_name, config.get('group_name_keyword_white_list'))) and match_prefix:
|
||||||
img_match_prefix = self.check_prefix(content, conf().get('image_create_prefix'))
|
context = { 'isgroup': True, 'msg': msg, 'receiver': group_id}
|
||||||
|
|
||||||
|
img_match_prefix = check_prefix(content, conf().get('image_create_prefix'))
|
||||||
if img_match_prefix:
|
if img_match_prefix:
|
||||||
content = content.split(img_match_prefix, 1)[1].strip()
|
content=content.replace(img_match_prefix,'',1).strip()
|
||||||
thread_pool.submit(self._do_send_img, content, group_id)
|
context['type']='CMD_IMAGE_CREATE'
|
||||||
else:
|
else:
|
||||||
thread_pool.submit(self._do_send_group, content, msg)
|
context['type']='TEXT'
|
||||||
|
context['content']=content
|
||||||
|
|
||||||
def send(self, msg, receiver):
|
group_chat_in_one_session = conf().get('group_chat_in_one_session', [])
|
||||||
itchat.send(msg, toUserName=receiver)
|
if ('ALL_GROUP' in group_chat_in_one_session or \
|
||||||
logger.info('[WX] sendMsg={}, receiver={}'.format(msg, receiver))
|
group_name in group_chat_in_one_session or \
|
||||||
|
check_contain(group_name, group_chat_in_one_session)):
|
||||||
|
context['session_id'] = group_id
|
||||||
|
else:
|
||||||
|
context['session_id'] = msg['ActualUserName']
|
||||||
|
|
||||||
|
thread_pool.submit(self.handle, context)
|
||||||
|
|
||||||
|
# 统一的发送函数,根据reply的type字段发送不同类型的消息
|
||||||
|
|
||||||
def _do_send_voice(self, query, reply_user_id):
|
def send(self, reply, receiver):
|
||||||
try:
|
if reply['type']=='TEXT':
|
||||||
if not query:
|
itchat.send(reply['content'], toUserName=receiver)
|
||||||
return
|
logger.info('[WX] sendMsg={}, receiver={}'.format(reply, receiver))
|
||||||
context = dict()
|
elif reply['type']=='ERROR' or reply['type']=='INFO':
|
||||||
context['from_user_id'] = reply_user_id
|
itchat.send(reply['content'], toUserName=receiver)
|
||||||
reply_text = super().build_reply_content(query, context)
|
logger.info('[WX] sendMsg={}, receiver={}'.format(reply, receiver))
|
||||||
if reply_text:
|
elif reply['type']=='VOICE':
|
||||||
replyFile = super().build_text_to_voice(reply_text)
|
itchat.send_file(reply['content'], toUserName=receiver)
|
||||||
itchat.send_file(replyFile, toUserName=reply_user_id)
|
logger.info('[WX] sendFile={}, receiver={}'.format(reply['content'], receiver))
|
||||||
logger.info('[WX] sendFile={}, receiver={}'.format(replyFile, reply_user_id))
|
elif reply['type']=='IMAGE_URL': # 从网络下载图片
|
||||||
except Exception as e:
|
img_url = reply['content']
|
||||||
logger.exception(e)
|
|
||||||
|
|
||||||
def _do_send_text(self, query, reply_user_id):
|
|
||||||
try:
|
|
||||||
if not query:
|
|
||||||
return
|
|
||||||
context = dict()
|
|
||||||
context['session_id'] = reply_user_id
|
|
||||||
reply_text = super().build_reply_content(query, context)
|
|
||||||
if reply_text:
|
|
||||||
self.send(conf().get("single_chat_reply_prefix") + reply_text, reply_user_id)
|
|
||||||
except Exception as e:
|
|
||||||
logger.exception(e)
|
|
||||||
|
|
||||||
def _do_send_img(self, query, reply_user_id):
|
|
||||||
try:
|
|
||||||
if not query:
|
|
||||||
return
|
|
||||||
context = dict()
|
|
||||||
context['type'] = 'IMAGE_CREATE'
|
|
||||||
img_url = super().build_reply_content(query, context)
|
|
||||||
if not img_url:
|
|
||||||
return
|
|
||||||
|
|
||||||
# 图片下载
|
|
||||||
pic_res = requests.get(img_url, stream=True)
|
pic_res = requests.get(img_url, stream=True)
|
||||||
image_storage = io.BytesIO()
|
image_storage = io.BytesIO()
|
||||||
for block in pic_res.iter_content(1024):
|
for block in pic_res.iter_content(1024):
|
||||||
image_storage.write(block)
|
image_storage.write(block)
|
||||||
image_storage.seek(0)
|
image_storage.seek(0)
|
||||||
|
itchat.send_image(image_storage, toUserName=receiver)
|
||||||
|
logger.info('[WX] sendImage url=, receiver={}'.format(img_url,receiver))
|
||||||
|
elif reply['type']=='IMAGE': # 从文件读取图片
|
||||||
|
image_storage = reply['content']
|
||||||
|
image_storage.seek(0)
|
||||||
|
itchat.send_image(image_storage, toUserName=receiver)
|
||||||
|
logger.info('[WX] sendImage, receiver={}'.format(receiver))
|
||||||
|
|
||||||
|
# 处理消息
|
||||||
|
def handle(self, context):
|
||||||
|
content=context['content']
|
||||||
|
reply=None
|
||||||
|
|
||||||
# 图片发送
|
logger.debug('[WX] ready to handle context: {}'.format(context))
|
||||||
itchat.send_image(image_storage, reply_user_id)
|
# reply的构建步骤
|
||||||
logger.info('[WX] sendImage, receiver={}'.format(reply_user_id))
|
if context['type']=='TEXT' or context['type']=='CMD_IMAGE_CREATE':
|
||||||
except Exception as e:
|
reply = super().build_reply_content(content,context)
|
||||||
logger.exception(e)
|
elif context['type']=='VOICE':
|
||||||
|
msg=context['msg']
|
||||||
def _do_send_group(self, query, msg):
|
file_name = TmpDir().path() + msg['FileName']
|
||||||
if not query:
|
msg.download(file_name)
|
||||||
return
|
reply = super().build_voice_to_text(file_name)
|
||||||
context = dict()
|
if reply['type'] != 'ERROR' and reply['type'] != 'INFO':
|
||||||
group_name = msg['User']['NickName']
|
reply = super().build_reply_content(reply['content'],context)
|
||||||
group_id = msg['User']['UserName']
|
if reply['type']=='TEXT':
|
||||||
group_chat_in_one_session = conf().get('group_chat_in_one_session', [])
|
if conf().get('voice_reply_voice'):
|
||||||
if ('ALL_GROUP' in group_chat_in_one_session or \
|
reply = super().build_text_to_voice(reply['content'])
|
||||||
group_name in group_chat_in_one_session or \
|
|
||||||
self.check_contain(group_name, group_chat_in_one_session)):
|
|
||||||
context['session_id'] = group_id
|
|
||||||
else:
|
else:
|
||||||
context['session_id'] = msg['ActualUserName']
|
logger.error('[WX] unknown context type: {}'.format(context['type']))
|
||||||
reply_text = super().build_reply_content(query, context)
|
return
|
||||||
if reply_text:
|
|
||||||
reply_text = '@' + msg['ActualNickName'] + ' ' + reply_text.strip()
|
logger.debug('[WX] ready to decorate reply: {}'.format(reply))
|
||||||
self.send(conf().get("group_chat_reply_prefix", "") + reply_text, group_id)
|
# reply的包装步骤
|
||||||
|
if reply:
|
||||||
|
if reply['type']=='TEXT':
|
||||||
|
reply_text=reply['content']
|
||||||
|
if context['isgroup']:
|
||||||
|
reply_text = '@' + context['msg']['ActualNickName'] + ' ' + reply_text.strip()
|
||||||
|
reply_text=conf().get("group_chat_reply_prefix","")+reply_text
|
||||||
|
else:
|
||||||
|
reply_text=conf().get("single_chat_reply_prefix","")+reply_text
|
||||||
|
reply['content']=reply_text
|
||||||
|
elif reply['type']=='ERROR' or reply['type']=='INFO':
|
||||||
|
reply['content']=reply['type']+": "+ reply['content']
|
||||||
|
elif reply['type']=='IMAGE_URL' or reply['type']=='VOICE':
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
logger.error('[WX] unknown reply type: {}'.format(reply['type']))
|
||||||
|
return
|
||||||
|
if reply:
|
||||||
|
logger.debug('[WX] ready to send reply: {} to {}'.format(reply,context['receiver']))
|
||||||
|
self.send(reply, context['receiver'])
|
||||||
|
|
||||||
|
|
||||||
|
def check_prefix(content, prefix_list):
|
||||||
|
for prefix in prefix_list:
|
||||||
|
if content.startswith(prefix):
|
||||||
|
return prefix
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
def check_prefix(self, content, prefix_list):
|
def check_contain(content, keyword_list):
|
||||||
for prefix in prefix_list:
|
if not keyword_list:
|
||||||
if content.startswith(prefix):
|
|
||||||
return prefix
|
|
||||||
return None
|
|
||||||
|
|
||||||
|
|
||||||
def check_contain(self, content, keyword_list):
|
|
||||||
if not keyword_list:
|
|
||||||
return None
|
|
||||||
for ky in keyword_list:
|
|
||||||
if content.find(ky) != -1:
|
|
||||||
return True
|
|
||||||
return None
|
return None
|
||||||
|
for ky in keyword_list:
|
||||||
|
if content.find(ky) != -1:
|
||||||
|
return True
|
||||||
|
return None
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user