Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

205 lines
8.2KB

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