Browse Source

如启用hot_reload,不处理1分钟前的历史消息避免重复提交

master
lichengzhe 1 year ago
parent
commit
3d264207a8
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      channel/wechat/wechat_channel.py

+ 9
- 0
channel/wechat/wechat_channel.py View File

@@ -14,6 +14,7 @@ from common.tmp_dir import TmpDir
from config import conf
import requests
import io
import time

thread_pool = ThreadPoolExecutor(max_workers=8)

@@ -74,7 +75,11 @@ class WechatChannel(Channel):
from_user_id = msg['FromUserName']
to_user_id = msg['ToUserName'] # 接收人id
other_user_id = msg['User']['UserName'] # 对手方id
create_time = msg['CreateTime'] # 消息时间
match_prefix = self.check_prefix(content, conf().get('single_chat_prefix'))
if conf().get('hot_reload') == True and int(create_time) < int(time.time()) - 60: #跳过1分钟前的历史消息
logger.debug("[WX]history message skipped")
return
if "」\n- - - - - - - - - - - - - - -" in content:
logger.debug("[WX]reference query skipped")
return
@@ -108,6 +113,10 @@ class WechatChannel(Channel):
logger.debug("[WX]receive group msg: " + json.dumps(msg, ensure_ascii=False))
group_name = msg['User'].get('NickName', None)
group_id = msg['User'].get('UserName', None)
create_time = msg['CreateTime'] # 消息时间
if conf().get('hot_reload') == True and int(create_time) < int(time.time()) - 60: #跳过1分钟前的历史消息
logger.debug("[WX]history group message skipped")
return
if not group_name:
return ""
origin_content = msg['Content']


Loading…
Cancel
Save