You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. # encoding:utf-8
  2. """
  3. wechat channel
  4. """
  5. import os
  6. import requests
  7. import io
  8. import time
  9. from lib import itchat
  10. import json
  11. from lib.itchat.content import *
  12. from bridge.reply import *
  13. from bridge.context import *
  14. from channel.channel import Channel
  15. from concurrent.futures import ThreadPoolExecutor
  16. from common.log import logger
  17. from common.tmp_dir import TmpDir
  18. from config import conf
  19. from common.time_check import time_checker
  20. from common.expired_dict import ExpiredDict
  21. from plugins import *
  22. try:
  23. from voice.audio_convert import mp3_to_wav
  24. except Exception as e:
  25. pass
  26. thread_pool = ThreadPoolExecutor(max_workers=8)
  27. def thread_pool_callback(worker):
  28. worker_exception = worker.exception()
  29. if worker_exception:
  30. logger.exception("Worker return exception: {}".format(worker_exception))
  31. @itchat.msg_register(TEXT)
  32. def handler_single_msg(msg):
  33. WechatChannel().handle_text(msg)
  34. return None
  35. @itchat.msg_register(TEXT, isGroupChat=True)
  36. def handler_group_msg(msg):
  37. WechatChannel().handle_group(msg)
  38. return None
  39. @itchat.msg_register(VOICE)
  40. def handler_single_voice(msg):
  41. WechatChannel().handle_voice(msg)
  42. return None
  43. @itchat.msg_register(VOICE, isGroupChat=True)
  44. def handler_group_voice(msg):
  45. WechatChannel().handle_group_voice(msg)
  46. return None
  47. def _check(func):
  48. def wrapper(self, msg):
  49. msgId = msg['MsgId']
  50. if msgId in self.receivedMsgs:
  51. logger.info("Wechat message {} already received, ignore".format(msgId))
  52. return
  53. self.receivedMsgs[msgId] = msg
  54. create_time = msg['CreateTime'] # 消息时间
  55. if conf().get('hot_reload') == True and int(create_time) < int(time.time()) - 60: # 跳过1分钟前的历史消息
  56. logger.debug("[WX]history message {} skipped".format(msgId))
  57. return
  58. return func(self, msg)
  59. return wrapper
  60. class WechatChannel(Channel):
  61. def __init__(self):
  62. self.userName = None
  63. self.nickName = None
  64. self.receivedMsgs = ExpiredDict(60*60*24)
  65. def startup(self):
  66. itchat.instance.receivingRetryCount = 600 # 修改断线超时时间
  67. # login by scan QRCode
  68. hotReload = conf().get('hot_reload', False)
  69. try:
  70. itchat.auto_login(enableCmdQR=2, hotReload=hotReload)
  71. except Exception as e:
  72. if hotReload:
  73. logger.error("Hot reload failed, try to login without hot reload")
  74. itchat.logout()
  75. os.remove("itchat.pkl")
  76. itchat.auto_login(enableCmdQR=2, hotReload=hotReload)
  77. else:
  78. raise e
  79. self.userName = itchat.instance.storageClass.userName
  80. self.nickName = itchat.instance.storageClass.nickName
  81. logger.info("Wechat login success, username: {}, nickname: {}".format(self.userName, self.nickName))
  82. # start message listener
  83. itchat.run()
  84. # handle_* 系列函数处理收到的消息后构造Context,然后传入handle函数中处理Context和发送回复
  85. # Context包含了消息的所有信息,包括以下属性
  86. # type 消息类型, 包括TEXT、VOICE、IMAGE_CREATE
  87. # content 消息内容,如果是TEXT类型,content就是文本内容,如果是VOICE类型,content就是语音文件名,如果是IMAGE_CREATE类型,content就是图片生成命令
  88. # kwargs 附加参数字典,包含以下的key:
  89. # session_id: 会话id
  90. # isgroup: 是否是群聊
  91. # receiver: 需要回复的对象
  92. # msg: itchat的原始消息对象
  93. # origin_ctype: 原始消息类型,用于私聊语音消息时,避免匹配前缀
  94. # desire_rtype: 希望回复类型,TEXT类型是文本回复,VOICE类型是语音回复
  95. @time_checker
  96. @_check
  97. def handle_voice(self, msg):
  98. if conf().get('speech_recognition') != True:
  99. return
  100. logger.debug("[WX]receive voice msg: " + msg['FileName'])
  101. to_user_id = msg['ToUserName']
  102. from_user_id = msg['FromUserName']
  103. try:
  104. other_user_id = msg['User']['UserName'] # 对手方id
  105. except Exception as e:
  106. logger.warn("[WX]get other_user_id failed: " + str(e))
  107. if from_user_id == self.userName:
  108. other_user_id = to_user_id
  109. else:
  110. other_user_id = from_user_id
  111. if from_user_id == other_user_id:
  112. context = self._compose_context(ContextType.VOICE, msg['FileName'], isgroup=False, msg=msg, receiver=other_user_id, session_id=other_user_id)
  113. if context:
  114. thread_pool.submit(self.handle, context).add_done_callback(thread_pool_callback)
  115. @time_checker
  116. @_check
  117. def handle_text(self, msg):
  118. logger.debug("[WX]receive text msg: " + json.dumps(msg, ensure_ascii=False))
  119. content = msg['Text']
  120. from_user_id = msg['FromUserName']
  121. to_user_id = msg['ToUserName'] # 接收人id
  122. try:
  123. other_user_id = msg['User']['UserName'] # 对手方id
  124. except Exception as e:
  125. logger.warn("[WX]get other_user_id failed: " + str(e))
  126. if from_user_id == self.userName:
  127. other_user_id = to_user_id
  128. else:
  129. other_user_id = from_user_id
  130. if "」\n- - - - - - - - - - - - - - -" in content:
  131. logger.debug("[WX]reference query skipped")
  132. return
  133. context = self._compose_context(ContextType.TEXT, content, isgroup=False, msg=msg, receiver=other_user_id, session_id=other_user_id)
  134. if context:
  135. thread_pool.submit(self.handle, context).add_done_callback(thread_pool_callback)
  136. @time_checker
  137. @_check
  138. def handle_group(self, msg):
  139. logger.debug("[WX]receive group msg: " + json.dumps(msg, ensure_ascii=False))
  140. group_name = msg['User'].get('NickName', None)
  141. group_id = msg['User'].get('UserName', None)
  142. if not group_name:
  143. return ""
  144. origin_content = msg['Content']
  145. content = msg['Content']
  146. content_list = content.split(' ', 1)
  147. context_special_list = content.split('\u2005', 1)
  148. if len(context_special_list) == 2:
  149. content = context_special_list[1]
  150. elif len(content_list) == 2:
  151. content = content_list[1]
  152. if "」\n- - - - - - - - - - - - - - -" in content:
  153. logger.debug("[WX]reference query skipped")
  154. return ""
  155. config = conf()
  156. group_name_white_list = config.get('group_name_white_list', [])
  157. group_name_keyword_white_list = config.get('group_name_keyword_white_list', [])
  158. if any([group_name in group_name_white_list, 'ALL_GROUP' in group_name_white_list, check_contain(group_name, group_name_keyword_white_list)]):
  159. group_chat_in_one_session = conf().get('group_chat_in_one_session', [])
  160. session_id = msg['ActualUserName']
  161. if any([group_name in group_chat_in_one_session, 'ALL_GROUP' in group_chat_in_one_session]):
  162. session_id = group_id
  163. context = self._compose_context(ContextType.TEXT, content, isgroup=True, msg=msg, receiver=group_id, session_id=session_id)
  164. if context:
  165. thread_pool.submit(self.handle, context).add_done_callback(thread_pool_callback)
  166. @time_checker
  167. @_check
  168. def handle_group_voice(self, msg):
  169. if conf().get('group_speech_recognition', False) != True:
  170. return
  171. logger.debug("[WX]receive voice for group msg: " + msg['FileName'])
  172. group_name = msg['User'].get('NickName', None)
  173. group_id = msg['User'].get('UserName', None)
  174. # 验证群名
  175. if not group_name:
  176. return ""
  177. config = conf()
  178. group_name_white_list = config.get('group_name_white_list', [])
  179. group_name_keyword_white_list = config.get('group_name_keyword_white_list', [])
  180. if any([group_name in group_name_white_list, 'ALL_GROUP' in group_name_white_list, check_contain(group_name, group_name_keyword_white_list)]):
  181. group_chat_in_one_session = conf().get('group_chat_in_one_session', [])
  182. session_id =msg['ActualUserName']
  183. if any([group_name in group_chat_in_one_session, 'ALL_GROUP' in group_chat_in_one_session]):
  184. session_id = group_id
  185. context = self._compose_context(ContextType.VOICE, msg['FileName'], isgroup=True, msg=msg, receiver=group_id, session_id=session_id)
  186. if context:
  187. thread_pool.submit(self.handle, context).add_done_callback(thread_pool_callback)
  188. def _compose_context(self, ctype: ContextType, content, **kwargs):
  189. context = Context(ctype, content)
  190. context.kwargs = kwargs
  191. if 'origin_ctype' not in context:
  192. context['origin_ctype'] = ctype
  193. if ctype == ContextType.TEXT:
  194. if context["isgroup"]: # 群聊
  195. # 校验关键字
  196. match_prefix = check_prefix(content, conf().get('group_chat_prefix'))
  197. match_contain = check_contain(content, conf().get('group_chat_keyword'))
  198. if match_prefix is not None or match_contain is not None:
  199. # 判断如果匹配到自定义前缀,则返回过滤掉前缀+空格后的内容,用于实现类似自定义+前缀触发生成AI图片的功能
  200. if match_prefix:
  201. content = content.replace(match_prefix, '', 1).strip()
  202. elif context['msg']['IsAt'] and not conf().get("group_at_off", False):
  203. logger.info("[WX]receive group at, continue")
  204. elif context["origin_ctype"] == ContextType.VOICE:
  205. logger.info("[WX]receive group voice, checkprefix didn't match")
  206. return None
  207. else:
  208. return None
  209. else: # 单聊
  210. match_prefix = check_prefix(content, conf().get('single_chat_prefix'))
  211. if match_prefix: # 判断如果匹配到自定义前缀,则返回过滤掉前缀+空格后的内容
  212. content = content.replace(match_prefix, '', 1).strip()
  213. elif context["origin_ctype"] == ContextType.VOICE: # 如果源消息是私聊的语音消息,不匹配前缀,直接返回
  214. pass
  215. else:
  216. return None
  217. img_match_prefix = check_prefix(content, conf().get('image_create_prefix'))
  218. if img_match_prefix:
  219. content = content.replace(img_match_prefix, '', 1).strip()
  220. context.type = ContextType.IMAGE_CREATE
  221. else:
  222. context.type = ContextType.TEXT
  223. context.content = content
  224. elif context.type == ContextType.VOICE:
  225. if 'desire_rtype' not in context and conf().get('voice_reply_voice'):
  226. context['desire_rtype'] = ReplyType.VOICE
  227. return context
  228. # 统一的发送函数,每个Channel自行实现,根据reply的type字段发送不同类型的消息
  229. def send(self, reply: Reply, receiver, retry_cnt = 0):
  230. try:
  231. if reply.type == ReplyType.TEXT:
  232. itchat.send(reply.content, toUserName=receiver)
  233. logger.info('[WX] sendMsg={}, receiver={}'.format(reply, receiver))
  234. elif reply.type == ReplyType.ERROR or reply.type == ReplyType.INFO:
  235. itchat.send(reply.content, toUserName=receiver)
  236. logger.info('[WX] sendMsg={}, receiver={}'.format(reply, receiver))
  237. elif reply.type == ReplyType.VOICE:
  238. itchat.send_file(reply.content, toUserName=receiver)
  239. logger.info('[WX] sendFile={}, receiver={}'.format(reply.content, receiver))
  240. elif reply.type == ReplyType.IMAGE_URL: # 从网络下载图片
  241. img_url = reply.content
  242. pic_res = requests.get(img_url, stream=True)
  243. image_storage = io.BytesIO()
  244. for block in pic_res.iter_content(1024):
  245. image_storage.write(block)
  246. image_storage.seek(0)
  247. itchat.send_image(image_storage, toUserName=receiver)
  248. logger.info('[WX] sendImage url={}, receiver={}'.format(img_url,receiver))
  249. elif reply.type == ReplyType.IMAGE: # 从文件读取图片
  250. image_storage = reply.content
  251. image_storage.seek(0)
  252. itchat.send_image(image_storage, toUserName=receiver)
  253. logger.info('[WX] sendImage, receiver={}'.format(receiver))
  254. except Exception as e:
  255. logger.error('[WX] sendMsg error: {}, receiver={}'.format(e, receiver))
  256. if retry_cnt < 2:
  257. time.sleep(3+3*retry_cnt)
  258. self.send(reply, receiver, retry_cnt + 1)
  259. # 处理消息 TODO: 如果wechaty解耦,此处逻辑可以放置到父类
  260. def handle(self, context: Context):
  261. if context is None or not context.content:
  262. return
  263. logger.debug('[WX] ready to handle context: {}'.format(context))
  264. # reply的构建步骤
  265. reply = self._generate_reply(context)
  266. logger.debug('[WX] ready to decorate reply: {}'.format(reply))
  267. # reply的包装步骤
  268. reply = self._decorate_reply(context, reply)
  269. # reply的发送步骤
  270. self._send_reply(context, reply)
  271. def _generate_reply(self, context: Context, reply: Reply = Reply()) -> Reply:
  272. e_context = PluginManager().emit_event(EventContext(Event.ON_HANDLE_CONTEXT, {
  273. 'channel': self, 'context': context, 'reply': reply}))
  274. reply = e_context['reply']
  275. if not e_context.is_pass():
  276. logger.debug('[WX] ready to handle context: type={}, content={}'.format(context.type, context.content))
  277. if context.type == ContextType.TEXT or context.type == ContextType.IMAGE_CREATE: # 文字和图片消息
  278. reply = super().build_reply_content(context.content, context)
  279. elif context.type == ContextType.VOICE: # 语音消息
  280. msg = context['msg']
  281. mp3_path = TmpDir().path() + context.content
  282. msg.download(mp3_path)
  283. # mp3转wav
  284. wav_path = os.path.splitext(mp3_path)[0] + '.wav'
  285. try:
  286. mp3_to_wav(mp3_path=mp3_path, wav_path=wav_path)
  287. except Exception as e: # 转换失败,直接使用mp3,对于某些api,mp3也可以识别
  288. logger.warning("[WX]mp3 to wav error, use mp3 path. " + str(e))
  289. wav_path = mp3_path
  290. # 语音识别
  291. reply = super().build_voice_to_text(wav_path)
  292. # 删除临时文件
  293. try:
  294. os.remove(wav_path)
  295. os.remove(mp3_path)
  296. except Exception as e:
  297. logger.warning("[WX]delete temp file error: " + str(e))
  298. if reply.type == ReplyType.TEXT:
  299. new_context = self._compose_context(
  300. ContextType.TEXT, reply.content, **context.kwargs)
  301. if new_context:
  302. reply = self._generate_reply(new_context)
  303. else:
  304. return
  305. else:
  306. logger.error('[WX] unknown context type: {}'.format(context.type))
  307. return
  308. return reply
  309. def _decorate_reply(self, context: Context, reply: Reply) -> Reply:
  310. if reply and reply.type:
  311. e_context = PluginManager().emit_event(EventContext(Event.ON_DECORATE_REPLY, {
  312. 'channel': self, 'context': context, 'reply': reply}))
  313. reply = e_context['reply']
  314. desire_rtype = context.get('desire_rtype')
  315. if not e_context.is_pass() and reply and reply.type:
  316. if reply.type == ReplyType.TEXT:
  317. reply_text = reply.content
  318. if desire_rtype == ReplyType.VOICE:
  319. reply = super().build_text_to_voice(reply.content)
  320. return self._decorate_reply(context, reply)
  321. if context['isgroup']:
  322. reply_text = '@' + context['msg']['ActualNickName'] + ' ' + reply_text.strip()
  323. reply_text = conf().get("group_chat_reply_prefix", "")+reply_text
  324. else:
  325. reply_text = conf().get("single_chat_reply_prefix", "")+reply_text
  326. reply.content = reply_text
  327. elif reply.type == ReplyType.ERROR or reply.type == ReplyType.INFO:
  328. reply.content = str(reply.type)+":\n" + reply.content
  329. elif reply.type == ReplyType.IMAGE_URL or reply.type == ReplyType.VOICE or reply.type == ReplyType.IMAGE:
  330. pass
  331. else:
  332. logger.error('[WX] unknown reply type: {}'.format(reply.type))
  333. return
  334. if desire_rtype and desire_rtype != reply.type and reply.type not in [ReplyType.ERROR, ReplyType.INFO]:
  335. logger.warning('[WX] desire_rtype: {}, but reply type: {}'.format(context.get('desire_rtype'), reply.type))
  336. return reply
  337. def _send_reply(self, context: Context, reply: Reply):
  338. if reply and reply.type:
  339. e_context = PluginManager().emit_event(EventContext(Event.ON_SEND_REPLY, {
  340. 'channel': self, 'context': context, 'reply': reply}))
  341. reply = e_context['reply']
  342. if not e_context.is_pass() and reply and reply.type:
  343. logger.debug('[WX] ready to send reply: {} to {}'.format(reply, context['receiver']))
  344. self.send(reply, context['receiver'])
  345. def check_prefix(content, prefix_list):
  346. for prefix in prefix_list:
  347. if content.startswith(prefix):
  348. return prefix
  349. return None
  350. def check_contain(content, keyword_list):
  351. if not keyword_list:
  352. return None
  353. for ky in keyword_list:
  354. if content.find(ky) != -1:
  355. return True
  356. return None