mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-06-02 00:57:41 +08:00
Merge branch 'master' into wechatmp
This commit is contained in:
@@ -16,19 +16,20 @@ pip3 install web.py
|
||||
|
||||
然后在[微信公众平台](https://mp.weixin.qq.com)注册一个自己的公众号,类型选择订阅号,主体为个人即可。
|
||||
|
||||
然后根据[接入指南](https://developers.weixin.qq.com/doc/offiaccount/Basic_Information/Access_Overview.html)的说明,在[微信公众平台](https://mp.weixin.qq.com)的“设置与开发”-“基本配置”-“服务器配置”中填写服务器地址`URL`和令牌`Token`。这里的`URL`是`example.com/wx`的形式,不可以使用IP,`Token`是你自己编的一个特定的令牌。消息加解密方式目前选择的是明文模式。
|
||||
然后根据[接入指南](https://developers.weixin.qq.com/doc/offiaccount/Basic_Information/Access_Overview.html)的说明,在[微信公众平台](https://mp.weixin.qq.com)的“设置与开发”-“基本配置”-“服务器配置”中填写服务器地址`URL`和令牌`Token`。这里的`URL`是`example.com/wx`的形式,不可以使用IP,`Token`是你自己编的一个特定的令牌。消息加解密方式目前选择的是明文模式。
|
||||
|
||||
相关的服务器验证代码已经写好,你不需要再添加任何代码。你只需要在本项目根目录的`config.json`中添加
|
||||
```
|
||||
"channel_type": "wechatmp",
|
||||
"wechatmp_token": "your Token",
|
||||
"wechatmp_port": 8080,
|
||||
```
|
||||
然后运行`python3 app.py`启动web服务器。这里会默认监听8080端口,但是微信公众号的服务器配置只支持80/443端口,有两种方法来解决这个问题。第一个是推荐的方法,使用端口转发命令将80端口转发到8080端口(443同理,注意需要支持SSL,也就是https的访问,在`wechatmp_channel.py`需要修改相应的证书路径):
|
||||
```
|
||||
sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080
|
||||
sudo iptables-save > /etc/iptables/rules.v4
|
||||
```
|
||||
第二个方法是让python程序直接监听80端口,可以直接使用命令`python3 app.py 80`。这样可能会导致权限问题,在linux上需要使用`sudu`。然而这会导致后续缓存文件的权限问题,因此不是推荐的方法。
|
||||
第二个方法是让python程序直接监听80端口。这样可能会导致权限问题,在linux上需要使用`sudo`。然而这会导致后续缓存文件的权限问题,因此不是推荐的方法。
|
||||
最后在刚才的“服务器配置”中点击`提交`即可验证你的服务器。
|
||||
|
||||
随后在[微信公众平台](https://mp.weixin.qq.com)启用服务器,关闭手动填写规则的自动回复,即可实现ChatGPT的自动回复。
|
||||
|
||||
@@ -16,11 +16,11 @@ class Query():
|
||||
|
||||
def POST(self):
|
||||
# Make sure to return the instance that first created, @singleton will do that.
|
||||
channel_instance = WechatMPChannel()
|
||||
channel = WechatMPChannel()
|
||||
try:
|
||||
query_time = time.time()
|
||||
webData = web.data()
|
||||
# logger.debug("[wechatmp] Receive request:\n" + webData.decode("utf-8"))
|
||||
logger.debug("[wechatmp] Receive request:\n" + webData.decode("utf-8"))
|
||||
wechatmp_msg = receive.parse_xml(webData)
|
||||
if wechatmp_msg.msg_type == 'text':
|
||||
from_user = wechatmp_msg.from_user_id
|
||||
@@ -29,86 +29,103 @@ class Query():
|
||||
message_id = wechatmp_msg.msg_id
|
||||
|
||||
logger.info("[wechatmp] {}:{} Receive post query {} {}: {}".format(web.ctx.env.get('REMOTE_ADDR'), web.ctx.env.get('REMOTE_PORT'), from_user, message_id, message))
|
||||
|
||||
supported = True
|
||||
if "【收到不支持的消息类型,暂无法显示】" in message:
|
||||
supported = False # not supported, used to refresh
|
||||
cache_key = from_user
|
||||
cache = channel_instance.cache_dict.get(cache_key)
|
||||
|
||||
reply_text = ""
|
||||
# New request
|
||||
if cache == None:
|
||||
if cache_key not in channel.cache_dict and cache_key not in channel.running:
|
||||
# The first query begin, reset the cache
|
||||
channel_instance.cache_dict[cache_key] = (0, "")
|
||||
|
||||
context = channel_instance._compose_context(ContextType.TEXT, message, isgroup=False, msg=wechatmp_msg)
|
||||
if context:
|
||||
context = channel._compose_context(ContextType.TEXT, message, isgroup=False, msg=wechatmp_msg)
|
||||
logger.debug("[wechatmp] context: {} {}".format(context, wechatmp_msg))
|
||||
if message_id in channel.received_msgs: # received and finished
|
||||
return
|
||||
if supported and context:
|
||||
# set private openai_api_key
|
||||
# if from_user is not changed in itchat, this can be placed at chat_channel
|
||||
user_data = conf().get_user_data(from_user)
|
||||
context['openai_api_key'] = user_data.get('openai_api_key') # None or user openai_api_key
|
||||
channel_instance.produce(context)
|
||||
|
||||
|
||||
channel_instance.query1[cache_key] = False
|
||||
channel_instance.query2[cache_key] = False
|
||||
channel_instance.query3[cache_key] = False
|
||||
channel.received_msgs[message_id] = wechatmp_msg
|
||||
channel.running.add(cache_key)
|
||||
channel.produce(context)
|
||||
else:
|
||||
trigger_prefix = conf().get('single_chat_prefix',[''])[0]
|
||||
if trigger_prefix or not supported:
|
||||
if trigger_prefix:
|
||||
content = textwrap.dedent(f"""\
|
||||
请输入'{trigger_prefix}'接你想说的话跟我说话。
|
||||
例如:
|
||||
{trigger_prefix}你好,很高兴见到你。""")
|
||||
else:
|
||||
content = textwrap.dedent("""\
|
||||
你好,很高兴见到你。
|
||||
请跟我说话吧。""")
|
||||
else:
|
||||
logger.error(f"[wechatmp] unknown error")
|
||||
content = textwrap.dedent("""\
|
||||
未知错误,请稍后再试""")
|
||||
replyMsg = reply.TextMsg(wechatmp_msg.from_user_id, wechatmp_msg.to_user_id, content)
|
||||
return replyMsg.send()
|
||||
channel.query1[cache_key] = False
|
||||
channel.query2[cache_key] = False
|
||||
channel.query3[cache_key] = False
|
||||
# Request again
|
||||
elif cache[0] == 0 and channel_instance.query1.get(cache_key) == True and channel_instance.query2.get(cache_key) == True and channel_instance.query3.get(cache_key) == True:
|
||||
channel_instance.query1[cache_key] = False #To improve waiting experience, this can be set to True.
|
||||
channel_instance.query2[cache_key] = False #To improve waiting experience, this can be set to True.
|
||||
channel_instance.query3[cache_key] = False
|
||||
elif cache[0] >= 1:
|
||||
elif cache_key in channel.running:
|
||||
channel.query1[cache_key] = False #To improve waiting experience, this can be set to True.
|
||||
channel.query2[cache_key] = False #To improve waiting experience, this can be set to True.
|
||||
channel.query3[cache_key] = False
|
||||
elif cache_key in channel.cache_dict:
|
||||
# Skip the waiting phase
|
||||
channel_instance.query1[cache_key] = True
|
||||
channel_instance.query2[cache_key] = True
|
||||
channel_instance.query3[cache_key] = True
|
||||
channel.query1[cache_key] = True
|
||||
channel.query2[cache_key] = True
|
||||
channel.query3[cache_key] = True
|
||||
|
||||
assert not (cache_key in channel.cache_dict and cache_key in channel.running)
|
||||
|
||||
cache = channel_instance.cache_dict.get(cache_key)
|
||||
if channel_instance.query1.get(cache_key) == False:
|
||||
if channel.query1.get(cache_key) == False:
|
||||
# The first query from wechat official server
|
||||
logger.debug("[wechatmp] query1 {}".format(cache_key))
|
||||
channel_instance.query1[cache_key] = True
|
||||
channel.query1[cache_key] = True
|
||||
cnt = 0
|
||||
while cache[0] == 0 and cnt < 45:
|
||||
while cache_key not in channel.cache_dict and cnt < 45:
|
||||
cnt = cnt + 1
|
||||
time.sleep(0.1)
|
||||
cache = channel_instance.cache_dict.get(cache_key)
|
||||
if cnt == 45:
|
||||
# waiting for timeout (the POST query will be closed by wechat official server)
|
||||
time.sleep(5)
|
||||
time.sleep(1)
|
||||
# and do nothing
|
||||
return
|
||||
else:
|
||||
pass
|
||||
elif channel_instance.query2.get(cache_key) == False:
|
||||
elif channel.query2.get(cache_key) == False:
|
||||
# The second query from wechat official server
|
||||
logger.debug("[wechatmp] query2 {}".format(cache_key))
|
||||
channel_instance.query2[cache_key] = True
|
||||
channel.query2[cache_key] = True
|
||||
cnt = 0
|
||||
while cache[0] == 0 and cnt < 45:
|
||||
while cache_key not in channel.cache_dict and cnt < 45:
|
||||
cnt = cnt + 1
|
||||
time.sleep(0.1)
|
||||
cache = channel_instance.cache_dict.get(cache_key)
|
||||
if cnt == 45:
|
||||
# waiting for timeout (the POST query will be closed by wechat official server)
|
||||
time.sleep(5)
|
||||
time.sleep(1)
|
||||
# and do nothing
|
||||
return
|
||||
else:
|
||||
pass
|
||||
elif channel_instance.query3.get(cache_key) == False:
|
||||
elif channel.query3.get(cache_key) == False:
|
||||
# The third query from wechat official server
|
||||
logger.debug("[wechatmp] query3 {}".format(cache_key))
|
||||
channel_instance.query3[cache_key] = True
|
||||
channel.query3[cache_key] = True
|
||||
cnt = 0
|
||||
while cache[0] == 0 and cnt < 45:
|
||||
while cache_key not in channel.cache_dict and cnt < 40:
|
||||
cnt = cnt + 1
|
||||
time.sleep(0.1)
|
||||
cache = channel_instance.cache_dict.get(cache_key)
|
||||
if cnt == 45:
|
||||
if cnt == 40:
|
||||
# Have waiting for 3x5 seconds
|
||||
# return timeout message
|
||||
reply_text = "【正在响应中,回复任意文字尝试获取回复】"
|
||||
reply_text = "【正在思考中,回复任意文字尝试获取回复】"
|
||||
logger.info("[wechatmp] Three queries has finished For {}: {}".format(from_user, message_id))
|
||||
replyPost = reply.TextMsg(from_user, to_user, reply_text).send()
|
||||
return replyPost
|
||||
@@ -116,16 +133,21 @@ class Query():
|
||||
pass
|
||||
|
||||
if float(time.time()) - float(query_time) > 4.8:
|
||||
logger.info("[wechatmp] Timeout for {} {}".format(from_user, message_id))
|
||||
return
|
||||
|
||||
|
||||
if cache[0] > 1:
|
||||
reply_text = cache[1][:600] + "\n【未完待续,回复任意文字以继续】" #wechatmp auto_reply length limit
|
||||
channel_instance.cache_dict[cache_key] = (cache[0] - 1, cache[1][600:])
|
||||
elif cache[0] == 1:
|
||||
reply_text = cache[1]
|
||||
channel_instance.cache_dict.pop(cache_key)
|
||||
reply_text = "【正在思考中,回复任意文字尝试获取回复】"
|
||||
logger.info("[wechatmp] Timeout for {} {}, return".format(from_user, message_id))
|
||||
replyPost = reply.TextMsg(from_user, to_user, reply_text).send()
|
||||
return replyPost
|
||||
|
||||
if cache_key in channel.cache_dict:
|
||||
content = channel.cache_dict[cache_key]
|
||||
if len(content.encode('utf8'))<=MAX_UTF8_LEN:
|
||||
reply_text = channel.cache_dict[cache_key]
|
||||
channel.cache_dict.pop(cache_key)
|
||||
else:
|
||||
continue_text = "\n【未完待续,回复任意文字以继续】"
|
||||
splits = split_string_by_utf8_length(content, MAX_UTF8_LEN - len(continue_text.encode('utf-8')), max_split= 1)
|
||||
reply_text = splits[0] + continue_text
|
||||
channel.cache_dict[cache_key] = splits[1]
|
||||
logger.info("[wechatmp] {}:{} Do send {}".format(web.ctx.env.get('REMOTE_ADDR'), web.ctx.env.get('REMOTE_PORT'), reply_text))
|
||||
replyPost = reply.TextMsg(from_user, to_user, reply_text).send()
|
||||
return replyPost
|
||||
@@ -141,4 +163,3 @@ class Query():
|
||||
except Exception as exc:
|
||||
logger.exception(exc)
|
||||
return exc
|
||||
|
||||
|
||||
@@ -2,10 +2,12 @@ from config import conf
|
||||
import hashlib
|
||||
import textwrap
|
||||
|
||||
MAX_UTF8_LEN = 2048
|
||||
|
||||
class WeChatAPIException(Exception):
|
||||
pass
|
||||
|
||||
|
||||
def verify_server(data):
|
||||
try:
|
||||
if len(data) == 0:
|
||||
@@ -31,13 +33,31 @@ def verify_server(data):
|
||||
return Argument
|
||||
|
||||
def subscribe_msg():
|
||||
msg = textwrap.dedent("""\
|
||||
trigger_prefix = conf().get('single_chat_prefix',[''])[0]
|
||||
msg = textwrap.dedent(f"""\
|
||||
感谢您的关注!
|
||||
这里是ChatGPT,可以自由对话。
|
||||
资源有限,回复较慢,请勿着急。
|
||||
支持通用表情输入。
|
||||
暂时不支持图片输入。
|
||||
支持图片输出,画字开头的问题将回复图片或链接。
|
||||
支持图片输出,画字开头的问题将回复图片链接。
|
||||
支持角色扮演和文字冒险两种定制模式对话。
|
||||
输入'#帮助' 查看详细指令。""")
|
||||
return msg
|
||||
输入'{trigger_prefix}#帮助' 查看详细指令。""")
|
||||
return msg
|
||||
|
||||
|
||||
def split_string_by_utf8_length(string, max_length, max_split=0):
|
||||
encoded = string.encode('utf-8')
|
||||
start, end = 0, 0
|
||||
result = []
|
||||
while end < len(encoded):
|
||||
if max_split > 0 and len(result) >= max_split:
|
||||
result.append(encoded[start:].decode('utf-8'))
|
||||
break
|
||||
end = start + max_length
|
||||
# 如果当前字节不是 UTF-8 编码的开始字节,则向前查找直到找到开始字节为止
|
||||
while end < len(encoded) and (encoded[end] & 0b11000000) == 0b10000000:
|
||||
end -= 1
|
||||
result.append(encoded[start:end].decode('utf-8'))
|
||||
start = end
|
||||
return result
|
||||
@@ -3,7 +3,6 @@
|
||||
import xml.etree.ElementTree as ET
|
||||
from bridge.context import ContextType
|
||||
from channel.chat_message import ChatMessage
|
||||
from common.tmp_dir import TmpDir
|
||||
from common.log import logger
|
||||
|
||||
|
||||
@@ -20,7 +19,10 @@ class WeChatMPMessage(ChatMessage):
|
||||
self.from_user_id = xmlData.find('FromUserName').text
|
||||
self.create_time = xmlData.find('CreateTime').text
|
||||
self.msg_type = xmlData.find('MsgType').text
|
||||
self.msg_id = xmlData.find('MsgId').text
|
||||
if self.msg_type != 'event':
|
||||
self.msg_id = xmlData.find('MsgId').text
|
||||
else:
|
||||
self.msg_id = self.create_time
|
||||
self.is_group = False
|
||||
|
||||
# reply to other_user_id
|
||||
|
||||
@@ -8,6 +8,7 @@ import requests
|
||||
import threading
|
||||
from common.singleton import singleton
|
||||
from common.log import logger
|
||||
from common.expired_dict import ExpiredDict
|
||||
from config import conf
|
||||
from bridge.reply import *
|
||||
from bridge.context import *
|
||||
@@ -26,12 +27,17 @@ class WechatMPChannel(ChatChannel):
|
||||
def __init__(self, passive_reply = True):
|
||||
super().__init__()
|
||||
self.passive_reply = passive_reply
|
||||
self.running = set()
|
||||
self.received_msgs = ExpiredDict(60*60*24)
|
||||
if self.passive_reply:
|
||||
self.NOT_SUPPORT_REPLYTYPE = [ReplyType.IMAGE, ReplyType.VOICE]
|
||||
self.cache_dict = dict()
|
||||
self.query1 = dict()
|
||||
self.query2 = dict()
|
||||
self.query3 = dict()
|
||||
else:
|
||||
# TODO support image
|
||||
self.NOT_SUPPORT_REPLYTYPE = [ReplyType.IMAGE, ReplyType.VOICE]
|
||||
self.app_id = conf().get('wechatmp_app_id')
|
||||
self.app_secret = conf().get('wechatmp_app_secret')
|
||||
self.access_token = None
|
||||
@@ -45,7 +51,9 @@ class WechatMPChannel(ChatChannel):
|
||||
else:
|
||||
urls = ('/wx', 'channel.wechatmp.ServiceAccount.Query')
|
||||
app = web.application(urls, globals())
|
||||
app.run()
|
||||
# app.run()
|
||||
port = conf().get('wechatmp_port', 8080)
|
||||
web.httpserver.runsimple(app.wsgifunc(), ('0.0.0.0', port))
|
||||
|
||||
|
||||
def wechatmp_request(self, method, url, **kwargs):
|
||||
@@ -94,6 +102,7 @@ class WechatMPChannel(ChatChannel):
|
||||
reply_text = reply.content
|
||||
reply_cnt = math.ceil(len(reply_text) / 600)
|
||||
self.cache_dict[receiver] = (reply_cnt, reply_text)
|
||||
self.running.remove(receiver)
|
||||
logger.debug("[send] reply to {} saved to cache: {}".format(receiver, reply_text))
|
||||
else:
|
||||
receiver = context["receiver"]
|
||||
@@ -111,6 +120,13 @@ class WechatMPChannel(ChatChannel):
|
||||
logger.info("[send] Do send to {}: {}".format(receiver, reply_text))
|
||||
return
|
||||
|
||||
|
||||
def _fail_callback(self, session_id, exception, context, **kwargs):
|
||||
logger.exception("[wechatmp] Fail to generation message to user, msgId={}, exception={}".format(context['msg'].msg_id, exception))
|
||||
assert session_id not in self.cache_dict
|
||||
self.running.remove(session_id)
|
||||
|
||||
|
||||
# Last import to avoid circular import
|
||||
import channel.wechatmp.SubscribeAccount
|
||||
import channel.wechatmp.ServiceAccount
|
||||
|
||||
Reference in New Issue
Block a user