Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

chat_channel.py 19KB

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