462 lines
19 KiB
Python
462 lines
19 KiB
Python
# -*- coding: utf-8 -*-
|
||
|
||
import logging
|
||
import re
|
||
import time
|
||
import xml.etree.ElementTree as ET
|
||
from queue import Empty
|
||
from threading import Thread
|
||
from datetime import datetime, timedelta
|
||
|
||
from base.func_epic import is_friday, get_free
|
||
from base.func_zhipu import ZhiPu
|
||
|
||
from wcferry import Wcf, WxMsg
|
||
|
||
from base.func_bard import BardAssistant
|
||
from base.func_chatglm import ChatGLM
|
||
from base.func_chatgpt import ChatGPT
|
||
from base.func_chengyu import cy
|
||
from base.func_news import News
|
||
from base.func_tigerbot import TigerBot
|
||
from base.func_xinghuo_web import XinghuoWeb
|
||
from base.func_claude import Claude
|
||
from configuration import Config
|
||
from constants import ChatType
|
||
from robot_cmd.robot_command import GroupBotManager
|
||
from job_mgmt import Job
|
||
from robot_cmd.robot_command import Feature
|
||
from robot_cmd.robot_command import PermissionStatus
|
||
|
||
__version__ = "39.2.4.0"
|
||
|
||
from message_report.process_message import process_message
|
||
from message_report.write_db import write_to_db, generate_and_send_ranking
|
||
from message_storage.message_to_db import archive_message, get_messages
|
||
from message_summary.message_summary_4o import message_summary
|
||
from sehuatang.shehuatang import pdf_file_path
|
||
|
||
|
||
class Robot(Job):
|
||
"""个性化自己的机器人
|
||
"""
|
||
|
||
def __init__(self, config: Config, wcf: Wcf, chat_type: int) -> None:
|
||
self.wcf = wcf
|
||
self.config = config
|
||
self.LOG = logging.getLogger("Robot")
|
||
self.wxid = self.wcf.get_self_wxid()
|
||
self.allContacts = self.getAllContacts()
|
||
self.groups = {} # 存储按group_id分组的消息列表,每个group_id最多保留10条消息
|
||
GroupBotManager.load_local_cache()
|
||
self.gbm = GroupBotManager()
|
||
if ChatType.is_in_chat_types(chat_type):
|
||
if chat_type == ChatType.TIGER_BOT.value and TigerBot.value_check(self.config.TIGERBOT):
|
||
self.chat = TigerBot(self.config.TIGERBOT)
|
||
elif chat_type == ChatType.CHATGPT.value and ChatGPT.value_check(self.config.CHATGPT):
|
||
self.chat = ChatGPT(self.config.CHATGPT)
|
||
elif chat_type == ChatType.XINGHUO_WEB.value and XinghuoWeb.value_check(self.config.XINGHUO_WEB):
|
||
self.chat = XinghuoWeb(self.config.XINGHUO_WEB)
|
||
elif chat_type == ChatType.CHATGLM.value and ChatGLM.value_check(self.config.CHATGLM):
|
||
self.chat = ChatGLM(self.config.CHATGLM)
|
||
elif chat_type == ChatType.BardAssistant.value and BardAssistant.value_check(self.config.BardAssistant):
|
||
self.chat = BardAssistant(self.config.BardAssistant)
|
||
elif chat_type == ChatType.ZhiPu.value and ZhiPu.value_check(self.config.ZhiPu):
|
||
self.chat = ZhiPu(self.config.ZhiPu)
|
||
elif chat_type == ChatType.CLAUDE.value and Claude.value_check(self.config.CLAUDE):
|
||
self.chat = Claude(self.config.CLAUDE)
|
||
else:
|
||
self.LOG.warning("未配置模型")
|
||
self.chat = None
|
||
else:
|
||
if TigerBot.value_check(self.config.TIGERBOT):
|
||
self.chat = TigerBot(self.config.TIGERBOT)
|
||
elif ChatGPT.value_check(self.config.CHATGPT):
|
||
self.chat = ChatGPT(self.config.CHATGPT)
|
||
elif XinghuoWeb.value_check(self.config.XINGHUO_WEB):
|
||
self.chat = XinghuoWeb(self.config.XINGHUO_WEB)
|
||
elif ChatGLM.value_check(self.config.CHATGLM):
|
||
self.chat = ChatGLM(self.config.CHATGLM)
|
||
elif BardAssistant.value_check(self.config.BardAssistant):
|
||
self.chat = BardAssistant(self.config.BardAssistant)
|
||
elif ZhiPu.value_check(self.config.ZhiPu):
|
||
self.chat = ZhiPu(self.config.ZhiPu)
|
||
elif Claude.value_check(self.config.CLAUDE):
|
||
self.chat = Claude(self.config.CLAUDE)
|
||
else:
|
||
self.LOG.warning("未配置模型")
|
||
self.chat = None
|
||
|
||
self.LOG.info(f"已选择: {self.chat}")
|
||
|
||
@staticmethod
|
||
def value_check(args: dict) -> bool:
|
||
if args:
|
||
return all(value is not None for key, value in args.items() if key != 'proxy')
|
||
return False
|
||
|
||
def toAt(self, msg: WxMsg) -> bool:
|
||
"""处理被 @ 消息
|
||
:param msg: 微信消息结构
|
||
:return: 处理状态,`True` 成功,`False` 失败
|
||
"""
|
||
return self.toChitchat(msg)
|
||
|
||
def toChengyu(self, msg: WxMsg) -> bool:
|
||
"""
|
||
处理成语查询/接龙消息
|
||
:param msg: 微信消息结构
|
||
:return: 处理状态,`True` 成功,`False` 失败
|
||
"""
|
||
status = False
|
||
texts = re.findall(r"^([#|?|?])(.*)$", msg.content)
|
||
# [('#', '天天向上')]
|
||
if texts:
|
||
flag = texts[0][0]
|
||
text = texts[0][1]
|
||
if flag == "#": # 接龙
|
||
if cy.isChengyu(text):
|
||
rsp = cy.getNext(text)
|
||
if rsp:
|
||
self.sendTextMsg(rsp, msg.roomid)
|
||
status = True
|
||
elif flag in ["?", "?"]: # 查词
|
||
if cy.isChengyu(text):
|
||
rsp = cy.getMeaning(text)
|
||
if rsp:
|
||
self.sendTextMsg(rsp, msg.roomid)
|
||
status = True
|
||
|
||
return status
|
||
|
||
def toChitchat(self, msg: WxMsg) -> bool:
|
||
"""闲聊,接入 ChatGPT
|
||
"""
|
||
if not self.chat: # 没接 ChatGPT,固定回复
|
||
rsp = "你@我干嘛?"
|
||
else: # 接了 ChatGPT,智能回复
|
||
# 去除@的人和空格等字符
|
||
q = re.sub(r"@.*?[\u2005|\s]", "", msg.content).replace(" ", "")
|
||
# 所有人员都可以要求他撤回刚刚的信息
|
||
if q == '撤回':
|
||
self.revoke_messages(msg.roomid)
|
||
return True
|
||
if q == "今日百度新闻":
|
||
self.newsBaiduReport((msg.roomid if msg.from_group() else msg.sender))
|
||
return True
|
||
elif q in ["nbc", "cnn", "abc", "fox", "bbc"]:
|
||
self.newsEnReport(q, (msg.roomid if msg.from_group() else msg.sender))
|
||
return True
|
||
elif q == '/总结':
|
||
self.message_summary_robot((msg.roomid if msg.from_group() else msg.sender))
|
||
return True
|
||
elif q == '4K':
|
||
try:
|
||
self.LOG.info(f"邀请加入4K群{msg.sender}")
|
||
self.wcf.invite_chatroom_members('45317011307@chatroom', msg.sender)
|
||
except Exception as e:
|
||
self.LOG.error(f"邀请加入4K群出错:{e}")
|
||
return True
|
||
else:
|
||
# 如果是群消息,并且群没开启AI,则不处理该动作
|
||
if msg.from_group() and self.gbm.get_group_permission(msg.roomid,
|
||
Feature.AI_CAPABILITY) == PermissionStatus.DISABLED:
|
||
self.sendTextMsg("群AI功能未开启", msg.roomid, msg.sender)
|
||
return True
|
||
else:
|
||
if msg.type == 1: # 只处理类型为1的消息提供的问题,引用@不予以对话
|
||
rsp = self.chat.get_answer(q, (msg.roomid if msg.from_group() else msg.sender))
|
||
else:
|
||
return True
|
||
if rsp:
|
||
if msg.from_group():
|
||
self.sendTextMsg(rsp, msg.roomid, msg.sender)
|
||
else:
|
||
self.sendTextMsg(rsp, msg.sender)
|
||
|
||
return True
|
||
else:
|
||
self.LOG.error(f"无法从 ChatGPT 获得答案")
|
||
return False
|
||
|
||
def processMsg(self, msg: WxMsg) -> None:
|
||
"""当接收到消息的时候,会调用本方法。如果不实现本方法,则打印原始消息。
|
||
此处可进行自定义发送的内容,如通过 msg.content 关键字自动获取当前天气信息,并发送到对应的群组@发送者
|
||
群号:msg.roomid 微信ID:msg.sender 消息内容:msg.content
|
||
content = "xx天气信息为:"
|
||
receivers = msg.roomid
|
||
self.sendTextMsg(content, receivers, msg.sender)
|
||
"""
|
||
|
||
# 群聊消息
|
||
if msg.from_group():
|
||
# 调用统计逻辑进行聊天数据统计:
|
||
try:
|
||
process_message(msg)
|
||
except Exception as e:
|
||
self.LOG.error(f"process_message error: {e}")
|
||
|
||
# 聊天记录入库动作:
|
||
try:
|
||
now_time = str(datetime.now().strftime("%Y-%m-%d %H:%M:%S"))
|
||
archive_message(msg.roomid, now_time, msg.sender, msg.content, msg.type, msg.extra)
|
||
except Exception as e:
|
||
self.LOG.error(f"archive_message error: {e}")
|
||
|
||
# 记录在群里发的最新消息,可以通过撤回指令撤回
|
||
try:
|
||
if msg.from_self():
|
||
self.revoke_receive_message(msg)
|
||
rsp = self.gbm.handle_command(msg.roomid, msg.content)
|
||
self.sendTextMsg(rsp, msg.roomid, msg.sender)
|
||
return
|
||
except Exception as e:
|
||
self.LOG.error(f"revoke_receive_message error: {e}")
|
||
|
||
if msg.is_at(self.wxid): # 被@
|
||
self.toAt(msg)
|
||
|
||
else: # 其他消息
|
||
self.toChengyu(msg)
|
||
|
||
return # 处理完群聊信息,后面就不需要处理了
|
||
|
||
# 非群聊信息,按消息类型进行处理
|
||
if msg.type == 37: # 好友请求
|
||
self.LOG.info(f"收到好友请求:{msg}")
|
||
self.autoAcceptFriendRequest(msg)
|
||
|
||
elif msg.type == 10000: # 系统信息
|
||
self.sayHiToNewFriend(msg)
|
||
|
||
elif msg.type == 0x01: # 文本消息
|
||
# 让配置加载更灵活,自己可以更新配置。也可以利用定时任务更新。
|
||
if msg.from_self():
|
||
if msg.content == "^更新$":
|
||
self.config.reload()
|
||
self.gbm.load_local_cache()
|
||
self.LOG.info("已更新")
|
||
if msg.content == "今日百度新闻":
|
||
self.newsBaiduReport()
|
||
if msg.content == '聊天排行榜':
|
||
self.generateAndSendRanking()
|
||
if msg.content == '聊天数据入库':
|
||
self.messageCountToDB()
|
||
if msg.content == 'PDF':
|
||
self.generateSehuatangPdf()
|
||
if msg.content == 'GROUP_LIST':
|
||
self.sendTextMsg(self.gbm.get_group_list(), msg.sender)
|
||
self.sendTextMsg(f"指令:{msg.content} 已执行", msg.sender)
|
||
else:
|
||
self.toChitchat(msg) # 闲聊
|
||
|
||
def onMsg(self, msg: WxMsg) -> int:
|
||
try:
|
||
self.LOG.debug(msg) # 打印信息
|
||
self.processMsg(msg)
|
||
except Exception as e:
|
||
self.LOG.error(e)
|
||
|
||
return 0
|
||
|
||
def enableRecvMsg(self) -> None:
|
||
self.wcf.enable_recv_msg(self.onMsg)
|
||
|
||
def enableReceivingMsg(self) -> None:
|
||
def innerProcessMsg(wcf: Wcf):
|
||
while wcf.is_receiving_msg():
|
||
try:
|
||
msg = wcf.get_msg()
|
||
self.LOG.debug(msg)
|
||
self.processMsg(msg)
|
||
except Empty:
|
||
continue # Empty message
|
||
except Exception as e:
|
||
self.LOG.error(f"Receiving message error: {e}")
|
||
|
||
self.wcf.enable_receiving_msg()
|
||
Thread(target=innerProcessMsg, name="GetMessage", args=(self.wcf,), daemon=True).start()
|
||
|
||
def sendTextMsg(self, msg: str, receiver: str, at_list: str = "") -> None:
|
||
""" 发送消息
|
||
:param msg: 消息字符串
|
||
:param receiver: 接收人wxid或者群id
|
||
:param at_list: 要@的wxid, @所有人的wxid为:notify@all
|
||
"""
|
||
# msg 中需要有 @ 名单中一样数量的 @
|
||
ats = ""
|
||
if at_list:
|
||
if at_list == "notify@all": # @所有人
|
||
ats = " @所有人"
|
||
else:
|
||
wxids = at_list.split(",")
|
||
for wxid in wxids:
|
||
# 根据 wxid 查找群昵称
|
||
ats += f" @{self.wcf.get_alias_in_chatroom(wxid, receiver)}"
|
||
|
||
# {msg}{ats} 表示要发送的消息内容后面紧跟@,例如 北京天气情况为:xxx @张三
|
||
if ats == "":
|
||
self.LOG.info(f"To {receiver}: {msg}")
|
||
self.wcf.send_text(f"{msg}", receiver, at_list)
|
||
else:
|
||
self.LOG.info(f"To {receiver}: {ats}\r{msg}")
|
||
self.wcf.send_text(f"{ats}\n\n{msg}", receiver, at_list)
|
||
|
||
def getAllContacts(self) -> dict:
|
||
"""
|
||
获取联系人(包括好友、公众号、服务号、群成员……)
|
||
格式: {"wxid": "NickName"}
|
||
"""
|
||
contacts = self.wcf.query_sql("MicroMsg.db", "SELECT UserName, NickName FROM Contact;")
|
||
return {contact["UserName"]: contact["NickName"] for contact in contacts}
|
||
|
||
def keepRunningAndBlockProcess(self) -> None:
|
||
"""
|
||
保持机器人运行,不让进程退出
|
||
"""
|
||
while True:
|
||
self.runPendingJobs()
|
||
time.sleep(1)
|
||
|
||
def autoAcceptFriendRequest(self, msg: WxMsg) -> None:
|
||
try:
|
||
xml = ET.fromstring(msg.content)
|
||
v3 = xml.attrib["encryptusername"]
|
||
v4 = xml.attrib["ticket"]
|
||
scene = int(xml.attrib["scene"])
|
||
res = self.wcf.accept_new_friend(v3, v4, scene)
|
||
self.LOG.info(f"同意好友请求:{res}")
|
||
except Exception as e:
|
||
self.LOG.error(f"同意好友出错:{e}")
|
||
|
||
def sayHiToNewFriend(self, msg: WxMsg) -> None:
|
||
nickName = re.findall(r"你已添加了(.*),现在可以开始聊天了。", msg.content)
|
||
if nickName:
|
||
# 添加了好友,更新好友列表
|
||
self.allContacts[msg.sender] = nickName[0]
|
||
self.sendTextMsg(f"Hi {nickName[0]},我自动通过了你的好友请求。", msg.sender)
|
||
|
||
def send_group_txt_message(self, msg: str, feature: Feature):
|
||
try:
|
||
receivers = self.gbm.get_group_list()
|
||
if not receivers:
|
||
return
|
||
for r in receivers:
|
||
if self.gbm.get_group_permission(r, feature) == PermissionStatus.ENABLED:
|
||
self.sendTextMsg(msg, r)
|
||
except Exception as e:
|
||
self.LOG.error(f"send_group_txt_message:{feature.description} error:{e}")
|
||
|
||
def send_group_file_message(self, path: str, feature: Feature):
|
||
try:
|
||
receivers = self.gbm.get_group_list()
|
||
if not receivers:
|
||
return
|
||
for r in receivers:
|
||
if self.gbm.get_group_permission(r, feature) == PermissionStatus.ENABLED:
|
||
self.wcf.send_file(path, r)
|
||
except Exception as e:
|
||
self.LOG.error(f"send_group_file_message:{feature.description} error:{e}")
|
||
|
||
# 自动撤回功能块
|
||
def revoke_receive_message(self, msg: WxMsg):
|
||
try:
|
||
group_id = msg.roomid
|
||
# 如果该group_id没有记录过,初始化一个列表
|
||
if group_id not in self.groups:
|
||
self.groups[group_id] = []
|
||
|
||
# 将消息ID添加到对应group_id的消息列表中,最多保留10条消息
|
||
if len(self.groups[group_id]) >= 10:
|
||
self.groups[group_id].pop(0) # 超过10条时,移除最早的消息
|
||
|
||
self.groups[group_id].append(msg.id)
|
||
self.LOG.info(f"Message revoke received for group {group_id}: {msg.id}")
|
||
except Exception as e:
|
||
self.LOG.error(f"Revoke_receive_message error:{e}")
|
||
|
||
def revoke_messages(self, group_id):
|
||
try:
|
||
# 如果没有该group_id,直接返回
|
||
if group_id not in self.groups:
|
||
self.LOG.debug(f"No messages found for group {group_id}.")
|
||
return
|
||
|
||
# 按照逆序撤回该组的消息
|
||
for msg_id in reversed(self.groups[group_id]):
|
||
self.wcf.revoke_msg(msg_id) # 假设调用撤回方法
|
||
self.LOG.info(f"Message {msg_id} recalled from group {group_id}.")
|
||
self.groups[group_id].remove(msg_id) # 撤回后移除该消息ID
|
||
self.LOG.debug(f"Message {msg_id} removed from group {group_id}.")
|
||
|
||
except Exception as e:
|
||
self.LOG.error(f"revoke_messages error:{e}")
|
||
|
||
# ============================================== 业务内容==========================================================
|
||
|
||
def newsBaiduReportAuto(self) -> None:
|
||
try:
|
||
news = News().get_baidu_news()
|
||
self.send_group_txt_message(news, Feature.DAILY_NEWS)
|
||
except Exception as e:
|
||
self.LOG.error(f"newsBaiduReportAuto error:{e}")
|
||
|
||
def newsBaiduReport(self, sender: str = None) -> None:
|
||
try:
|
||
news = News().get_baidu_news()
|
||
self.sendTextMsg(news, sender)
|
||
except Exception as e:
|
||
self.LOG.error(f"newsBaiduReport error:{e}")
|
||
|
||
def newsEnReport(self, website, sender: str = None) -> None:
|
||
try:
|
||
news = News().get_eng_news(website)
|
||
self.sendTextMsg(news, sender)
|
||
except Exception as e:
|
||
self.LOG.error(f"newsEnReport error:{e}")
|
||
|
||
def sendEpicFreeGames(self):
|
||
try:
|
||
if is_friday():
|
||
games = get_free()
|
||
self.send_group_txt_message(games, Feature.EPIC)
|
||
except Exception as e:
|
||
self.LOG.error(f"sendEpicFreeGames error:{e}")
|
||
|
||
def messageCountToDB(self):
|
||
try:
|
||
write_to_db()
|
||
except Exception as e:
|
||
self.LOG.error(f"write_to_db error:{e}")
|
||
|
||
def generateSehuatangPdf(self):
|
||
try:
|
||
path = pdf_file_path()
|
||
# 暂时只发4K群
|
||
self.send_group_file_message(path, Feature.PDF_CAPABILITY)
|
||
except Exception as e:
|
||
self.LOG.error(f"generateSehuatangPdf error:{e}")
|
||
|
||
def generateAndSendRanking(self):
|
||
try:
|
||
receivers = self.gbm.get_group_list()
|
||
if not receivers:
|
||
return
|
||
for r in receivers:
|
||
if self.gbm.get_group_permission(r, Feature.DAILY_SUMMARY) == PermissionStatus.ENABLED:
|
||
self.sendTextMsg(generate_and_send_ranking(r, self.allContacts), r)
|
||
except Exception as e:
|
||
self.LOG.error(f"SendRanking error:{e}")
|
||
|
||
def message_summary_robot(self, sender: str = None):
|
||
try:
|
||
if self.gbm.get_group_permission(sender, Feature.SUMMARY_CAPABILITY) == PermissionStatus.ENABLED:
|
||
self.LOG.info(f"群: {sender} 消息总结开始执行!")
|
||
content = get_messages(sender, self.allContacts)
|
||
summary = message_summary(content)
|
||
self.sendTextMsg(summary, sender)
|
||
else:
|
||
self.sendTextMsg("群发言总结功能未开启", sender)
|
||
except Exception as e:
|
||
self.LOG.error(f"message_summary_robot error:{e}")
|