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.

186 line
7.9KB

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