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.

199 line
8.2KB

  1. # encoding:utf-8
  2. """
  3. wechat channel
  4. """
  5. import os
  6. import requests
  7. import io
  8. import time
  9. import json
  10. from channel.chat_channel import ChatChannel
  11. from channel.wechat.wechat_message import *
  12. from common.singleton import singleton
  13. from common.log import logger
  14. from lib import itchat
  15. from lib.itchat.content import *
  16. from bridge.reply import *
  17. from bridge.context import *
  18. from concurrent.futures import ThreadPoolExecutor
  19. from config import conf
  20. from common.time_check import time_checker
  21. from common.expired_dict import ExpiredDict
  22. from plugins import *
  23. thread_pool = ThreadPoolExecutor(max_workers=8)
  24. def thread_pool_callback(worker):
  25. worker_exception = worker.exception()
  26. if worker_exception:
  27. logger.exception("Worker return exception: {}".format(worker_exception))
  28. @itchat.msg_register(TEXT)
  29. def handler_single_msg(msg):
  30. WechatChannel().handle_text(WeChatMessage(msg))
  31. return None
  32. @itchat.msg_register(TEXT, isGroupChat=True)
  33. def handler_group_msg(msg):
  34. WechatChannel().handle_group(WeChatMessage(msg,True))
  35. return None
  36. @itchat.msg_register(VOICE)
  37. def handler_single_voice(msg):
  38. WechatChannel().handle_voice(WeChatMessage(msg))
  39. return None
  40. @itchat.msg_register(VOICE, isGroupChat=True)
  41. def handler_group_voice(msg):
  42. WechatChannel().handle_group_voice(WeChatMessage(msg,True))
  43. return None
  44. def _check(func):
  45. def wrapper(self, cmsg: ChatMessage):
  46. msgId = cmsg.msg_id
  47. if msgId in self.receivedMsgs:
  48. logger.info("Wechat message {} already received, ignore".format(msgId))
  49. return
  50. self.receivedMsgs[msgId] = cmsg
  51. create_time = cmsg.create_time # 消息时间戳
  52. if conf().get('hot_reload') == True and int(create_time) < int(time.time()) - 60: # 跳过1分钟前的历史消息
  53. logger.debug("[WX]history message {} skipped".format(msgId))
  54. return
  55. return func(self, cmsg)
  56. return wrapper
  57. #可用的二维码生成接口
  58. #https://api.qrserver.com/v1/create-qr-code/?size=400×400&data=https://www.abc.com
  59. #https://api.isoyu.com/qr/?m=1&e=L&p=20&url=https://www.abc.com
  60. def qrCallback(uuid,status,qrcode):
  61. # logger.debug("qrCallback: {} {}".format(uuid,status))
  62. if status == '0':
  63. try:
  64. from PIL import Image
  65. img = Image.open(io.BytesIO(qrcode))
  66. thread_pool.submit(img.show,"QRCode")
  67. except Exception as e:
  68. pass
  69. import qrcode
  70. url = f"https://login.weixin.qq.com/l/{uuid}"
  71. qr_api1="https://api.isoyu.com/qr/?m=1&e=L&p=20&url={}".format(url)
  72. qr_api2="https://api.qrserver.com/v1/create-qr-code/?size=400×400&data={}".format(url)
  73. qr_api3="https://api.pwmqr.com/qrcode/create/?url={}".format(url)
  74. qr_api4="https://my.tv.sohu.com/user/a/wvideo/getQRCode.do?text={}".format(url)
  75. print("You can also scan QRCode in any website below:")
  76. print(qr_api3)
  77. print(qr_api4)
  78. print(qr_api2)
  79. print(qr_api1)
  80. qr = qrcode.QRCode(border=1)
  81. qr.add_data(url)
  82. qr.make(fit=True)
  83. qr.print_ascii(invert=True)
  84. @singleton
  85. class WechatChannel(ChatChannel):
  86. def __init__(self):
  87. super().__init__()
  88. self.receivedMsgs = ExpiredDict(60*60*24)
  89. def startup(self):
  90. itchat.instance.receivingRetryCount = 600 # 修改断线超时时间
  91. # login by scan QRCode
  92. hotReload = conf().get('hot_reload', False)
  93. try:
  94. itchat.auto_login(enableCmdQR=2, hotReload=hotReload, qrCallback=qrCallback)
  95. except Exception as e:
  96. if hotReload:
  97. logger.error("Hot reload failed, try to login without hot reload")
  98. itchat.logout()
  99. os.remove("itchat.pkl")
  100. itchat.auto_login(enableCmdQR=2, hotReload=hotReload, qrCallback=qrCallback)
  101. else:
  102. raise e
  103. self.user_id = itchat.instance.storageClass.userName
  104. self.name = itchat.instance.storageClass.nickName
  105. logger.info("Wechat login success, user_id: {}, nickname: {}".format(self.user_id, self.name))
  106. # start message listener
  107. itchat.run()
  108. # handle_* 系列函数处理收到的消息后构造Context,然后传入_handle函数中处理Context和发送回复
  109. # Context包含了消息的所有信息,包括以下属性
  110. # type 消息类型, 包括TEXT、VOICE、IMAGE_CREATE
  111. # content 消息内容,如果是TEXT类型,content就是文本内容,如果是VOICE类型,content就是语音文件名,如果是IMAGE_CREATE类型,content就是图片生成命令
  112. # kwargs 附加参数字典,包含以下的key:
  113. # session_id: 会话id
  114. # isgroup: 是否是群聊
  115. # receiver: 需要回复的对象
  116. # msg: ChatMessage消息对象
  117. # origin_ctype: 原始消息类型,语音转文字后,私聊时如果匹配前缀失败,会根据初始消息是否是语音来放宽触发规则
  118. # desire_rtype: 希望回复类型,默认是文本回复,设置为ReplyType.VOICE是语音回复
  119. @time_checker
  120. @_check
  121. def handle_voice(self, cmsg : ChatMessage):
  122. if conf().get('speech_recognition') != True:
  123. return
  124. logger.debug("[WX]receive voice msg: {}".format(cmsg.content))
  125. context = self._compose_context(ContextType.VOICE, cmsg.content, isgroup=False, msg=cmsg)
  126. if context:
  127. thread_pool.submit(self._handle, context).add_done_callback(thread_pool_callback)
  128. @time_checker
  129. @_check
  130. def handle_text(self, cmsg : ChatMessage):
  131. logger.debug("[WX]receive text msg: {}, cmsg={}".format(json.dumps(cmsg._rawmsg, ensure_ascii=False), cmsg))
  132. context = self._compose_context(ContextType.TEXT, cmsg.content, isgroup=False, msg=cmsg)
  133. if context:
  134. thread_pool.submit(self._handle, context).add_done_callback(thread_pool_callback)
  135. @time_checker
  136. @_check
  137. def handle_group(self, cmsg : ChatMessage):
  138. logger.debug("[WX]receive group msg: {}, cmsg={}".format(json.dumps(cmsg._rawmsg, ensure_ascii=False), cmsg))
  139. context = self._compose_context(ContextType.TEXT, cmsg.content, isgroup=True, msg=cmsg)
  140. if context:
  141. thread_pool.submit(self._handle, context).add_done_callback(thread_pool_callback)
  142. @time_checker
  143. @_check
  144. def handle_group_voice(self, cmsg : ChatMessage):
  145. if conf().get('group_speech_recognition', False) != True:
  146. return
  147. logger.debug("[WX]receive voice for group msg: {}".format(cmsg.content))
  148. context = self._compose_context(ContextType.VOICE, cmsg.content, isgroup=True, msg=cmsg)
  149. if context:
  150. thread_pool.submit(self._handle, context).add_done_callback(thread_pool_callback)
  151. # 统一的发送函数,每个Channel自行实现,根据reply的type字段发送不同类型的消息
  152. def send(self, reply: Reply, context: Context):
  153. receiver = context["receiver"]
  154. if reply.type == ReplyType.TEXT:
  155. itchat.send(reply.content, toUserName=receiver)
  156. logger.info('[WX] sendMsg={}, receiver={}'.format(reply, receiver))
  157. elif reply.type == ReplyType.ERROR or reply.type == ReplyType.INFO:
  158. itchat.send(reply.content, toUserName=receiver)
  159. logger.info('[WX] sendMsg={}, receiver={}'.format(reply, receiver))
  160. elif reply.type == ReplyType.VOICE:
  161. itchat.send_file(reply.content, toUserName=receiver)
  162. logger.info('[WX] sendFile={}, receiver={}'.format(reply.content, receiver))
  163. elif reply.type == ReplyType.IMAGE_URL: # 从网络下载图片
  164. img_url = reply.content
  165. pic_res = requests.get(img_url, stream=True)
  166. image_storage = io.BytesIO()
  167. for block in pic_res.iter_content(1024):
  168. image_storage.write(block)
  169. image_storage.seek(0)
  170. itchat.send_image(image_storage, toUserName=receiver)
  171. logger.info('[WX] sendImage url={}, receiver={}'.format(img_url,receiver))
  172. elif reply.type == ReplyType.IMAGE: # 从文件读取图片
  173. image_storage = reply.content
  174. image_storage.seek(0)
  175. itchat.send_image(image_storage, toUserName=receiver)
  176. logger.info('[WX] sendImage, receiver={}'.format(receiver))