選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

387 行
19KB

  1. import os
  2. import re
  3. import threading
  4. import time
  5. from asyncio import CancelledError
  6. from concurrent.futures import Future, ThreadPoolExecutor
  7. from bridge.context import *
  8. from bridge.reply import *
  9. from channel.channel import Channel
  10. from common.dequeue import Dequeue
  11. from common import memory
  12. from plugins import *
  13. try:
  14. from voice.audio_convert import any_to_wav
  15. except Exception as e:
  16. pass
  17. # 抽象类, 它包含了与消息通道无关的通用处理逻辑
  18. class ChatChannel(Channel):
  19. name = None # 登录的用户名
  20. user_id = None # 登录的用户id
  21. futures = {} # 记录每个session_id提交到线程池的future对象, 用于重置会话时把没执行的future取消掉,正在执行的不会被取消
  22. sessions = {} # 用于控制并发,每个session_id同时只能有一个context在处理
  23. lock = threading.Lock() # 用于控制对sessions的访问
  24. handler_pool = ThreadPoolExecutor(max_workers=8) # 处理消息的线程池
  25. def __init__(self):
  26. _thread = threading.Thread(target=self.consume)
  27. _thread.setDaemon(True)
  28. _thread.start()
  29. # 根据消息构造context,消息内容相关的触发项写在这里
  30. def _compose_context(self, ctype: ContextType, content, **kwargs):
  31. context = Context(ctype, content)
  32. context.kwargs = kwargs
  33. # context首次传入时,origin_ctype是None,
  34. # 引入的起因是:当输入语音时,会嵌套生成两个context,第一步语音转文本,第二步通过文本生成文字回复。
  35. # origin_ctype用于第二步文本回复时,判断是否需要匹配前缀,如果是私聊的语音,就不需要匹配前缀
  36. if "origin_ctype" not in context:
  37. context["origin_ctype"] = ctype
  38. # context首次传入时,receiver是None,根据类型设置receiver
  39. first_in = "receiver" not in context
  40. # 群名匹配过程,设置session_id和receiver
  41. if first_in: # context首次传入时,receiver是None,根据类型设置receiver
  42. config = conf()
  43. cmsg = context["msg"]
  44. user_data = conf().get_user_data(cmsg.from_user_id)
  45. context["openai_api_key"] = user_data.get("openai_api_key")
  46. context["gpt_model"] = user_data.get("gpt_model")
  47. if context.get("isgroup", False):
  48. group_name = cmsg.other_user_nickname
  49. group_id = cmsg.other_user_id
  50. group_name_white_list = config.get("group_name_white_list", [])
  51. group_name_keyword_white_list = config.get("group_name_keyword_white_list", [])
  52. if any(
  53. [
  54. group_name in group_name_white_list,
  55. "ALL_GROUP" in group_name_white_list,
  56. check_contain(group_name, group_name_keyword_white_list),
  57. ]
  58. ):
  59. group_chat_in_one_session = conf().get("group_chat_in_one_session", [])
  60. session_id = cmsg.actual_user_id
  61. if any(
  62. [
  63. group_name in group_chat_in_one_session,
  64. "ALL_GROUP" in group_chat_in_one_session,
  65. ]
  66. ):
  67. session_id = group_id
  68. else:
  69. return None
  70. context["session_id"] = session_id
  71. context["receiver"] = group_id
  72. else:
  73. context["session_id"] = cmsg.other_user_id
  74. context["receiver"] = cmsg.other_user_id
  75. e_context = PluginManager().emit_event(EventContext(Event.ON_RECEIVE_MESSAGE, {"channel": self, "context": context}))
  76. context = e_context["context"]
  77. if e_context.is_pass() or context is None:
  78. return context
  79. if cmsg.from_user_id == self.user_id and not config.get("trigger_by_self", True):
  80. logger.debug("[WX]self message skipped")
  81. return None
  82. # 消息内容匹配过程,并处理content
  83. if ctype == ContextType.TEXT:
  84. if first_in and "」\n- - - - - - -" in content: # 初次匹配 过滤引用消息
  85. logger.debug(content)
  86. logger.debug("[WX]reference query skipped")
  87. return None
  88. if context.get("isgroup", False): # 群聊
  89. # 校验关键字
  90. match_prefix = check_prefix(content, conf().get("group_chat_prefix"))
  91. match_contain = check_contain(content, conf().get("group_chat_keyword"))
  92. nick_name_black_list = conf().get("nick_name_black_list", [])
  93. flag = False
  94. if context["msg"].to_user_id != context["msg"].actual_user_id:
  95. if match_prefix is not None or match_contain is not None:
  96. flag = True
  97. if match_prefix:
  98. content = content.replace(match_prefix, "", 1).strip()
  99. if context["msg"].is_at:
  100. logger.info("[WX]receive group at")
  101. nick_name = context["msg"].actual_user_nickname
  102. if nick_name and nick_name in nick_name_black_list:
  103. logger.info(f"[WX] Nickname {nick_name} in In BlackList, ignore")
  104. return None
  105. if not conf().get("group_at_off", False):
  106. flag = True
  107. pattern = f"@{re.escape(self.name)}(\u2005|\u0020)"
  108. subtract_res = re.sub(pattern, r"", content)
  109. if isinstance(context["msg"].at_list, list):
  110. for at in context["msg"].at_list:
  111. pattern = f"@{re.escape(at)}(\u2005|\u0020)"
  112. subtract_res = re.sub(pattern, r"", subtract_res)
  113. if subtract_res == content and context["msg"].self_display_name:
  114. # 前缀移除后没有变化,使用群昵称再次移除
  115. pattern = f"@{re.escape(context['msg'].self_display_name)}(\u2005|\u0020)"
  116. subtract_res = re.sub(pattern, r"", content)
  117. content = subtract_res
  118. if not flag:
  119. if context["origin_ctype"] == ContextType.VOICE:
  120. logger.info("[WX]receive group voice, but checkprefix didn't match")
  121. return None
  122. else: # 单聊
  123. match_prefix = check_prefix(content, conf().get("single_chat_prefix", [""]))
  124. if match_prefix is not None: # 判断如果匹配到自定义前缀,则返回过滤掉前缀+空格后的内容
  125. content = content.replace(match_prefix, "", 1).strip()
  126. elif context["origin_ctype"] == ContextType.VOICE: # 如果源消息是私聊的语音消息,允许不匹配前缀,放宽条件
  127. pass
  128. else:
  129. return None
  130. content = content.strip()
  131. img_match_prefix = check_prefix(content, conf().get("image_create_prefix"))
  132. if img_match_prefix:
  133. content = content.replace(img_match_prefix, "", 1)
  134. context.type = ContextType.IMAGE_CREATE
  135. else:
  136. context.type = ContextType.TEXT
  137. context.content = content.strip()
  138. if "desire_rtype" not in context and conf().get("always_reply_voice") and ReplyType.VOICE not in self.NOT_SUPPORT_REPLYTYPE:
  139. context["desire_rtype"] = ReplyType.VOICE
  140. elif context.type == ContextType.VOICE:
  141. if "desire_rtype" not in context and conf().get("voice_reply_voice") and ReplyType.VOICE not in self.NOT_SUPPORT_REPLYTYPE:
  142. context["desire_rtype"] = ReplyType.VOICE
  143. return context
  144. def _handle(self, context: Context):
  145. if context is None or not context.content:
  146. return
  147. logger.debug("[WX] ready to handle context: {}".format(context))
  148. # reply的构建步骤
  149. reply = self._generate_reply(context)
  150. logger.debug("[WX] ready to decorate reply: {}".format(reply))
  151. # reply的包装步骤
  152. reply = self._decorate_reply(context, reply)
  153. # reply的发送步骤
  154. self._send_reply(context, reply)
  155. def _generate_reply(self, context: Context, reply: Reply = Reply()) -> Reply:
  156. e_context = PluginManager().emit_event(
  157. EventContext(
  158. Event.ON_HANDLE_CONTEXT,
  159. {"channel": self, "context": context, "reply": reply},
  160. )
  161. )
  162. reply = e_context["reply"]
  163. if not e_context.is_pass():
  164. logger.debug("[WX] ready to handle context: type={}, content={}".format(context.type, context.content))
  165. if e_context.is_break():
  166. context["generate_breaked_by"] = e_context["breaked_by"]
  167. if context.type == ContextType.TEXT or context.type == ContextType.IMAGE_CREATE: # 文字和图片消息
  168. context["channel"] = e_context["channel"]
  169. reply = super().build_reply_content(context.content, context)
  170. elif context.type == ContextType.VOICE: # 语音消息
  171. cmsg = context["msg"]
  172. cmsg.prepare()
  173. file_path = context.content
  174. wav_path = os.path.splitext(file_path)[0] + ".wav"
  175. try:
  176. any_to_wav(file_path, wav_path)
  177. except Exception as e: # 转换失败,直接使用mp3,对于某些api,mp3也可以识别
  178. logger.warning("[WX]any to wav error, use raw path. " + str(e))
  179. wav_path = file_path
  180. # 语音识别
  181. reply = super().build_voice_to_text(wav_path)
  182. # 删除临时文件
  183. try:
  184. os.remove(file_path)
  185. if wav_path != file_path:
  186. os.remove(wav_path)
  187. except Exception as e:
  188. pass
  189. # logger.warning("[WX]delete temp file error: " + str(e))
  190. if reply.type == ReplyType.TEXT:
  191. new_context = self._compose_context(ContextType.TEXT, reply.content, **context.kwargs)
  192. if new_context:
  193. reply = self._generate_reply(new_context)
  194. else:
  195. return
  196. elif context.type == ContextType.IMAGE: # 图片消息,当前仅做下载保存到本地的逻辑
  197. memory.USER_IMAGE_CACHE[context["session_id"]] = {
  198. "path": context.content,
  199. "msg": context.get("msg")
  200. }
  201. elif context.type == ContextType.SHARING: # 分享信息,当前无默认逻辑
  202. pass
  203. elif context.type == ContextType.FUNCTION or context.type == ContextType.FILE: # 文件消息及函数调用等,当前无默认逻辑
  204. pass
  205. else:
  206. logger.warning("[WX] unknown context type: {}".format(context.type))
  207. return
  208. return reply
  209. def _decorate_reply(self, context: Context, reply: Reply) -> Reply:
  210. if reply and reply.type:
  211. e_context = PluginManager().emit_event(
  212. EventContext(
  213. Event.ON_DECORATE_REPLY,
  214. {"channel": self, "context": context, "reply": reply},
  215. )
  216. )
  217. reply = e_context["reply"]
  218. desire_rtype = context.get("desire_rtype")
  219. if not e_context.is_pass() and reply and reply.type:
  220. if reply.type in self.NOT_SUPPORT_REPLYTYPE:
  221. logger.error("[WX]reply type not support: " + str(reply.type))
  222. reply.type = ReplyType.ERROR
  223. reply.content = "不支持发送的消息类型: " + str(reply.type)
  224. if reply.type == ReplyType.TEXT:
  225. reply_text = reply.content
  226. if desire_rtype == ReplyType.VOICE and ReplyType.VOICE not in self.NOT_SUPPORT_REPLYTYPE:
  227. reply = super().build_text_to_voice(reply.content)
  228. return self._decorate_reply(context, reply)
  229. if context.get("isgroup", False):
  230. if not context.get("no_need_at", False):
  231. reply_text = "@" + context["msg"].actual_user_nickname + "\n" + reply_text.strip()
  232. reply_text = conf().get("group_chat_reply_prefix", "") + reply_text + conf().get("group_chat_reply_suffix", "")
  233. else:
  234. reply_text = conf().get("single_chat_reply_prefix", "") + reply_text + conf().get("single_chat_reply_suffix", "")
  235. reply.content = reply_text
  236. elif reply.type == ReplyType.ERROR or reply.type == ReplyType.INFO:
  237. reply.content = "[" + str(reply.type) + "]\n" + reply.content
  238. elif reply.type == ReplyType.IMAGE_URL or reply.type == ReplyType.VOICE or reply.type == ReplyType.IMAGE or reply.type == ReplyType.FILE or reply.type == ReplyType.VIDEO or reply.type == ReplyType.VIDEO_URL:
  239. pass
  240. else:
  241. logger.error("[WX] unknown reply type: {}".format(reply.type))
  242. return
  243. if desire_rtype and desire_rtype != reply.type and reply.type not in [ReplyType.ERROR, ReplyType.INFO]:
  244. logger.warning("[WX] desire_rtype: {}, but reply type: {}".format(context.get("desire_rtype"), reply.type))
  245. return reply
  246. def _send_reply(self, context: Context, reply: Reply):
  247. if reply and reply.type:
  248. e_context = PluginManager().emit_event(
  249. EventContext(
  250. Event.ON_SEND_REPLY,
  251. {"channel": self, "context": context, "reply": reply},
  252. )
  253. )
  254. reply = e_context["reply"]
  255. if not e_context.is_pass() and reply and reply.type:
  256. logger.debug("[WX] ready to send reply: {}, context: {}".format(reply, context))
  257. self._send(reply, context)
  258. def _send(self, reply: Reply, context: Context, retry_cnt=0):
  259. try:
  260. self.send(reply, context)
  261. except Exception as e:
  262. logger.error("[WX] sendMsg error: {}".format(str(e)))
  263. if isinstance(e, NotImplementedError):
  264. return
  265. logger.exception(e)
  266. if retry_cnt < 2:
  267. time.sleep(3 + 3 * retry_cnt)
  268. self._send(reply, context, retry_cnt + 1)
  269. def _success_callback(self, session_id, **kwargs): # 线程正常结束时的回调函数
  270. logger.debug("Worker return success, session_id = {}".format(session_id))
  271. def _fail_callback(self, session_id, exception, **kwargs): # 线程异常结束时的回调函数
  272. logger.exception("Worker return exception: {}".format(exception))
  273. def _thread_pool_callback(self, session_id, **kwargs):
  274. def func(worker: Future):
  275. try:
  276. worker_exception = worker.exception()
  277. if worker_exception:
  278. self._fail_callback(session_id, exception=worker_exception, **kwargs)
  279. else:
  280. self._success_callback(session_id, **kwargs)
  281. except CancelledError as e:
  282. logger.info("Worker cancelled, session_id = {}".format(session_id))
  283. except Exception as e:
  284. logger.exception("Worker raise exception: {}".format(e))
  285. with self.lock:
  286. self.sessions[session_id][1].release()
  287. return func
  288. def produce(self, context: Context):
  289. session_id = context["session_id"]
  290. with self.lock:
  291. if session_id not in self.sessions:
  292. self.sessions[session_id] = [
  293. Dequeue(),
  294. threading.BoundedSemaphore(conf().get("concurrency_in_session", 4)),
  295. ]
  296. if context.type == ContextType.TEXT and context.content.startswith("#"):
  297. self.sessions[session_id][0].putleft(context) # 优先处理管理命令
  298. else:
  299. self.sessions[session_id][0].put(context)
  300. # 消费者函数,单独线程,用于从消息队列中取出消息并处理
  301. def consume(self):
  302. while True:
  303. with self.lock:
  304. session_ids = list(self.sessions.keys())
  305. for session_id in session_ids:
  306. context_queue, semaphore = self.sessions[session_id]
  307. if semaphore.acquire(blocking=False): # 等线程处理完毕才能删除
  308. if not context_queue.empty():
  309. context = context_queue.get()
  310. logger.debug("[WX] consume context: {}".format(context))
  311. future: Future = self.handler_pool.submit(self._handle, context)
  312. future.add_done_callback(self._thread_pool_callback(session_id, context=context))
  313. if session_id not in self.futures:
  314. self.futures[session_id] = []
  315. self.futures[session_id].append(future)
  316. elif semaphore._initial_value == semaphore._value + 1: # 除了当前,没有任务再申请到信号量,说明所有任务都处理完毕
  317. self.futures[session_id] = [t for t in self.futures[session_id] if not t.done()]
  318. assert len(self.futures[session_id]) == 0, "thread pool error"
  319. del self.sessions[session_id]
  320. else:
  321. semaphore.release()
  322. time.sleep(0.1)
  323. # 取消session_id对应的所有任务,只能取消排队的消息和已提交线程池但未执行的任务
  324. def cancel_session(self, session_id):
  325. with self.lock:
  326. if session_id in self.sessions:
  327. for future in self.futures[session_id]:
  328. future.cancel()
  329. cnt = self.sessions[session_id][0].qsize()
  330. if cnt > 0:
  331. logger.info("Cancel {} messages in session {}".format(cnt, session_id))
  332. self.sessions[session_id][0] = Dequeue()
  333. def cancel_all_session(self):
  334. with self.lock:
  335. for session_id in self.sessions:
  336. for future in self.futures[session_id]:
  337. future.cancel()
  338. cnt = self.sessions[session_id][0].qsize()
  339. if cnt > 0:
  340. logger.info("Cancel {} messages in session {}".format(cnt, session_id))
  341. self.sessions[session_id][0] = Dequeue()
  342. def check_prefix(content, prefix_list):
  343. if not prefix_list:
  344. return None
  345. for prefix in prefix_list:
  346. if content.startswith(prefix):
  347. return prefix
  348. return None
  349. def check_contain(content, keyword_list):
  350. if not keyword_list:
  351. return None
  352. for ky in keyword_list:
  353. if content.find(ky) != -1:
  354. return True
  355. return None