mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-07-20 21:57:14 +08:00
适配一次请求多条回复
This commit is contained in:
@@ -49,7 +49,7 @@ class Query:
|
|||||||
|
|
||||||
# New request
|
# New request
|
||||||
if (
|
if (
|
||||||
from_user not in channel.cache_dict
|
channel.cache_dict.get(from_user) is None
|
||||||
and from_user not in channel.running
|
and from_user not in channel.running
|
||||||
or content.startswith("#")
|
or content.startswith("#")
|
||||||
and message_id not in channel.request_cnt # insert the godcmd
|
and message_id not in channel.request_cnt # insert the godcmd
|
||||||
@@ -131,8 +131,10 @@ class Query:
|
|||||||
|
|
||||||
# Only one request can access to the cached data
|
# Only one request can access to the cached data
|
||||||
try:
|
try:
|
||||||
(reply_type, reply_content) = channel.cache_dict.pop(from_user)
|
(reply_type, reply_content) = channel.cache_dict[from_user].pop(0)
|
||||||
except KeyError:
|
if not channel.cache_dict[from_user]: # If popping the message makes the list empty, delete the user entry from cache
|
||||||
|
del channel.cache_dict[from_user]
|
||||||
|
except IndexError:
|
||||||
return "success"
|
return "success"
|
||||||
|
|
||||||
if reply_type == "text":
|
if reply_type == "text":
|
||||||
@@ -146,7 +148,7 @@ class Query:
|
|||||||
max_split=1,
|
max_split=1,
|
||||||
)
|
)
|
||||||
reply_text = splits[0] + continue_text
|
reply_text = splits[0] + continue_text
|
||||||
channel.cache_dict[from_user] = ("text", splits[1])
|
channel.cache_dict[from_user].append(("text", splits[1]))
|
||||||
|
|
||||||
logger.info(
|
logger.info(
|
||||||
"[wechatmp] Request {} do send to {} {}: {}\n{}".format(
|
"[wechatmp] Request {} do send to {} {}: {}\n{}".format(
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import requests
|
|||||||
import web
|
import web
|
||||||
from wechatpy.crypto import WeChatCrypto
|
from wechatpy.crypto import WeChatCrypto
|
||||||
from wechatpy.exceptions import WeChatClientException
|
from wechatpy.exceptions import WeChatClientException
|
||||||
|
from collections import defaultdict
|
||||||
|
|
||||||
from bridge.context import *
|
from bridge.context import *
|
||||||
from bridge.reply import *
|
from bridge.reply import *
|
||||||
@@ -46,7 +47,7 @@ class WechatMPChannel(ChatChannel):
|
|||||||
self.crypto = WeChatCrypto(token, aes_key, appid)
|
self.crypto = WeChatCrypto(token, aes_key, appid)
|
||||||
if self.passive_reply:
|
if self.passive_reply:
|
||||||
# Cache the reply to the user's first message
|
# Cache the reply to the user's first message
|
||||||
self.cache_dict = dict()
|
self.cache_dict = defaultdict(list)
|
||||||
# Record whether the current message is being processed
|
# Record whether the current message is being processed
|
||||||
self.running = set()
|
self.running = set()
|
||||||
# Count the request from wechat official server by message_id
|
# Count the request from wechat official server by message_id
|
||||||
@@ -82,7 +83,7 @@ class WechatMPChannel(ChatChannel):
|
|||||||
if reply.type == ReplyType.TEXT or reply.type == ReplyType.INFO or reply.type == ReplyType.ERROR:
|
if reply.type == ReplyType.TEXT or reply.type == ReplyType.INFO or reply.type == ReplyType.ERROR:
|
||||||
reply_text = reply.content
|
reply_text = reply.content
|
||||||
logger.info("[wechatmp] text cached, receiver {}\n{}".format(receiver, reply_text))
|
logger.info("[wechatmp] text cached, receiver {}\n{}".format(receiver, reply_text))
|
||||||
self.cache_dict[receiver] = ("text", reply_text)
|
self.cache_dict[receiver].append(("text", reply_text))
|
||||||
elif reply.type == ReplyType.VOICE:
|
elif reply.type == ReplyType.VOICE:
|
||||||
try:
|
try:
|
||||||
voice_file_path = reply.content
|
voice_file_path = reply.content
|
||||||
@@ -99,7 +100,7 @@ class WechatMPChannel(ChatChannel):
|
|||||||
return
|
return
|
||||||
media_id = response["media_id"]
|
media_id = response["media_id"]
|
||||||
logger.info("[wechatmp] voice uploaded, receiver {}, media_id {}".format(receiver, media_id))
|
logger.info("[wechatmp] voice uploaded, receiver {}, media_id {}".format(receiver, media_id))
|
||||||
self.cache_dict[receiver] = ("voice", media_id)
|
self.cache_dict[receiver].append(("voice", media_id))
|
||||||
|
|
||||||
elif reply.type == ReplyType.IMAGE_URL: # 从网络下载图片
|
elif reply.type == ReplyType.IMAGE_URL: # 从网络下载图片
|
||||||
img_url = reply.content
|
img_url = reply.content
|
||||||
@@ -119,7 +120,7 @@ class WechatMPChannel(ChatChannel):
|
|||||||
return
|
return
|
||||||
media_id = response["media_id"]
|
media_id = response["media_id"]
|
||||||
logger.info("[wechatmp] image uploaded, receiver {}, media_id {}".format(receiver, media_id))
|
logger.info("[wechatmp] image uploaded, receiver {}, media_id {}".format(receiver, media_id))
|
||||||
self.cache_dict[receiver] = ("image", media_id)
|
self.cache_dict[receiver].append(("image", media_id))
|
||||||
elif reply.type == ReplyType.IMAGE: # 从文件读取图片
|
elif reply.type == ReplyType.IMAGE: # 从文件读取图片
|
||||||
image_storage = reply.content
|
image_storage = reply.content
|
||||||
image_storage.seek(0)
|
image_storage.seek(0)
|
||||||
@@ -134,7 +135,7 @@ class WechatMPChannel(ChatChannel):
|
|||||||
return
|
return
|
||||||
media_id = response["media_id"]
|
media_id = response["media_id"]
|
||||||
logger.info("[wechatmp] image uploaded, receiver {}, media_id {}".format(receiver, media_id))
|
logger.info("[wechatmp] image uploaded, receiver {}, media_id {}".format(receiver, media_id))
|
||||||
self.cache_dict[receiver] = ("image", media_id)
|
self.cache_dict[receiver].append(("image", media_id))
|
||||||
else:
|
else:
|
||||||
if reply.type == ReplyType.TEXT or reply.type == ReplyType.INFO or reply.type == ReplyType.ERROR:
|
if reply.type == ReplyType.TEXT or reply.type == ReplyType.INFO or reply.type == ReplyType.ERROR:
|
||||||
reply_text = reply.content
|
reply_text = reply.content
|
||||||
|
|||||||
Reference in New Issue
Block a user