選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

wechat_message.py 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. import re
  2. from bridge.context import ContextType
  3. from channel.chat_message import ChatMessage
  4. from common.log import logger
  5. from common.tmp_dir import TmpDir
  6. from lib import itchat
  7. from lib.itchat.content import *
  8. class WechatMessage(ChatMessage):
  9. def __init__(self, itchat_msg, is_group=False):
  10. super().__init__(itchat_msg)
  11. self.msg_id = itchat_msg["MsgId"]
  12. self.create_time = itchat_msg["CreateTime"]
  13. self.is_group = is_group
  14. if itchat_msg["Type"] == TEXT:
  15. self.ctype = ContextType.TEXT
  16. self.content = itchat_msg["Text"]
  17. elif itchat_msg["Type"] == VOICE:
  18. self.ctype = ContextType.VOICE
  19. self.content = TmpDir().path() + itchat_msg["FileName"] # content直接存临时目录路径
  20. self._prepare_fn = lambda: itchat_msg.download(self.content)
  21. elif itchat_msg["Type"] == PICTURE and itchat_msg["MsgType"] == 3:
  22. self.ctype = ContextType.IMAGE
  23. self.content = TmpDir().path() + itchat_msg["FileName"] # content直接存临时目录路径
  24. self._prepare_fn = lambda: itchat_msg.download(self.content)
  25. elif itchat_msg["Type"] == NOTE and itchat_msg["MsgType"] == 10000:
  26. if is_group and ("加入群聊" in itchat_msg["Content"] or "加入了群聊" in itchat_msg["Content"]):
  27. self.ctype = ContextType.JOIN_GROUP
  28. self.content = itchat_msg["Content"]
  29. # 这里只能得到nickname, actual_user_id还是机器人的id
  30. if "加入了群聊" in itchat_msg["Content"]:
  31. self.actual_user_nickname = re.findall(r"\"(.*?)\"", itchat_msg["Content"])[-1]
  32. elif "加入群聊" in itchat_msg["Content"]:
  33. self.actual_user_nickname = re.findall(r"\"(.*?)\"", itchat_msg["Content"])[0]
  34. elif "拍了拍我" in itchat_msg["Content"]:
  35. self.ctype = ContextType.PATPAT
  36. self.content = itchat_msg["Content"]
  37. if is_group:
  38. self.actual_user_nickname = re.findall(r"\"(.*?)\"", itchat_msg["Content"])[0]
  39. else:
  40. raise NotImplementedError("Unsupported note message: " + itchat_msg["Content"])
  41. else:
  42. raise NotImplementedError("Unsupported message type: Type:{} MsgType:{}".format(itchat_msg["Type"], itchat_msg["MsgType"]))
  43. self.from_user_id = itchat_msg["FromUserName"]
  44. self.to_user_id = itchat_msg["ToUserName"]
  45. user_id = itchat.instance.storageClass.userName
  46. nickname = itchat.instance.storageClass.nickName
  47. # 虽然from_user_id和to_user_id用的少,但是为了保持一致性,还是要填充一下
  48. # 以下很繁琐,一句话总结:能填的都填了。
  49. if self.from_user_id == user_id:
  50. self.from_user_nickname = nickname
  51. if self.to_user_id == user_id:
  52. self.to_user_nickname = nickname
  53. try: # 陌生人时候, 'User'字段可能不存在
  54. self.other_user_id = itchat_msg["User"]["UserName"]
  55. self.other_user_nickname = itchat_msg["User"]["NickName"]
  56. if self.other_user_id == self.from_user_id:
  57. self.from_user_nickname = self.other_user_nickname
  58. if self.other_user_id == self.to_user_id:
  59. self.to_user_nickname = self.other_user_nickname
  60. except KeyError as e: # 处理偶尔没有对方信息的情况
  61. logger.warn("[WX]get other_user_id failed: " + str(e))
  62. if self.from_user_id == user_id:
  63. self.other_user_id = self.to_user_id
  64. else:
  65. self.other_user_id = self.from_user_id
  66. if self.is_group:
  67. self.is_at = itchat_msg["IsAt"]
  68. self.actual_user_id = itchat_msg["ActualUserName"]
  69. if self.ctype not in [ContextType.JOIN_GROUP, ContextType.PATPAT]:
  70. self.actual_user_nickname = itchat_msg["ActualNickName"]