Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

115 lines
6.9KB

  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. notes_join_group = ["加入群聊","加入了群聊","invited","joined"] # 可通过添加对应语言的加入群聊通知中的关键词适配更多
  15. notes_exit_group = ["移出了群聊","removed"] # 可通过添加对应语言的踢出群聊通知中的关键词适配更多
  16. notes_patpat = ["拍了拍我","tickled my","tickled me"] # 可通过添加对应语言的拍一拍通知中的关键词适配更多
  17. if itchat_msg["Type"] == TEXT:
  18. self.ctype = ContextType.TEXT
  19. self.content = itchat_msg["Text"]
  20. elif itchat_msg["Type"] == VOICE:
  21. self.ctype = ContextType.VOICE
  22. self.content = TmpDir().path() + itchat_msg["FileName"] # content直接存临时目录路径
  23. self._prepare_fn = lambda: itchat_msg.download(self.content)
  24. elif itchat_msg["Type"] == PICTURE and itchat_msg["MsgType"] == 3:
  25. self.ctype = ContextType.IMAGE
  26. self.content = TmpDir().path() + itchat_msg["FileName"] # content直接存临时目录路径
  27. self._prepare_fn = lambda: itchat_msg.download(self.content)
  28. elif itchat_msg["Type"] == NOTE and itchat_msg["MsgType"] == 10000:
  29. if is_group and (any(note_join_group in itchat_msg["Content"] for note_join_group in notes_join_group)): # 若有任何在notes_join_group列表中的字符串出现在NOTE中
  30. # 这里只能得到nickname, actual_user_id还是机器人的id
  31. if "加入群聊" not in itchat_msg["Content"]:
  32. self.ctype = ContextType.JOIN_GROUP
  33. self.content = itchat_msg["Content"]
  34. if "invited" in itchat_msg["Content"]: # 匹配英文信息
  35. self.actual_user_nickname = re.findall(r'invited\s+(.+?)\s+to\s+the\s+group\s+chat', itchat_msg["Content"])[0]
  36. elif "joined" in itchat_msg["Content"]: # 匹配通过二维码加入的英文信息
  37. self.actual_user_nickname = re.findall(r'"(.*?)" joined the group chat via the QR Code shared by', itchat_msg["Content"])[0]
  38. elif "加入了群聊" in itchat_msg["Content"]:
  39. self.actual_user_nickname = re.findall(r"\"(.*?)\"", itchat_msg["Content"])[-1]
  40. elif "加入群聊" in itchat_msg["Content"]:
  41. self.ctype = ContextType.JOIN_GROUP
  42. self.content = itchat_msg["Content"]
  43. self.actual_user_nickname = re.findall(r"\"(.*?)\"", itchat_msg["Content"])[0]
  44. elif is_group and (any(note_exit_group in itchat_msg["Content"] for note_exit_group in notes_exit_group)): # 若有任何在notes_exit_group列表中的字符串出现在NOTE中
  45. self.ctype = ContextType.EXIT_GROUP
  46. self.content = itchat_msg["Content"]
  47. self.actual_user_nickname = re.findall(r"\"(.*?)\"", itchat_msg["Content"])[0]
  48. elif "你已添加了" in itchat_msg["Content"]: #通过好友请求
  49. self.ctype = ContextType.ACCEPT_FRIEND
  50. self.content = itchat_msg["Content"]
  51. elif any(note_patpat in itchat_msg["Content"] for note_patpat in notes_patpat): # 若有任何在notes_patpat列表中的字符串出现在NOTE中:
  52. self.ctype = ContextType.PATPAT
  53. self.content = itchat_msg["Content"]
  54. if is_group:
  55. if "拍了拍我" in itchat_msg["Content"]: # 识别中文
  56. self.actual_user_nickname = re.findall(r"\"(.*?)\"", itchat_msg["Content"])[0]
  57. elif ("tickled my" in itchat_msg["Content"] or "tickled me" in itchat_msg["Content"]):
  58. self.actual_user_nickname = re.findall(r'^(.*?)(?:tickled my|tickled me)', itchat_msg["Content"])[0]
  59. else:
  60. raise NotImplementedError("Unsupported note message: " + itchat_msg["Content"])
  61. elif itchat_msg["Type"] == ATTACHMENT:
  62. self.ctype = ContextType.FILE
  63. self.content = TmpDir().path() + itchat_msg["FileName"] # content直接存临时目录路径
  64. self._prepare_fn = lambda: itchat_msg.download(self.content)
  65. elif itchat_msg["Type"] == SHARING:
  66. self.ctype = ContextType.SHARING
  67. self.content = itchat_msg.get("Url")
  68. else:
  69. raise NotImplementedError("Unsupported message type: Type:{} MsgType:{}".format(itchat_msg["Type"], itchat_msg["MsgType"]))
  70. self.from_user_id = itchat_msg["FromUserName"]
  71. self.to_user_id = itchat_msg["ToUserName"]
  72. user_id = itchat.instance.storageClass.userName
  73. nickname = itchat.instance.storageClass.nickName
  74. # 虽然from_user_id和to_user_id用的少,但是为了保持一致性,还是要填充一下
  75. # 以下很繁琐,一句话总结:能填的都填了。
  76. if self.from_user_id == user_id:
  77. self.from_user_nickname = nickname
  78. if self.to_user_id == user_id:
  79. self.to_user_nickname = nickname
  80. try: # 陌生人时候, User字段可能不存在
  81. # my_msg 为True是表示是自己发送的消息
  82. self.my_msg = itchat_msg["ToUserName"] == itchat_msg["User"]["UserName"] and \
  83. itchat_msg["ToUserName"] != itchat_msg["FromUserName"]
  84. self.other_user_id = itchat_msg["User"]["UserName"]
  85. self.other_user_nickname = itchat_msg["User"]["NickName"]
  86. if self.other_user_id == self.from_user_id:
  87. self.from_user_nickname = self.other_user_nickname
  88. if self.other_user_id == self.to_user_id:
  89. self.to_user_nickname = self.other_user_nickname
  90. if itchat_msg["User"].get("Self"):
  91. # 自身的展示名,当设置了群昵称时,该字段表示群昵称
  92. self.self_display_name = itchat_msg["User"].get("Self").get("DisplayName")
  93. except KeyError as e: # 处理偶尔没有对方信息的情况
  94. logger.warn("[WX]get other_user_id failed: " + str(e))
  95. if self.from_user_id == user_id:
  96. self.other_user_id = self.to_user_id
  97. else:
  98. self.other_user_id = self.from_user_id
  99. if self.is_group:
  100. self.is_at = itchat_msg["IsAt"]
  101. self.actual_user_id = itchat_msg["ActualUserName"]
  102. if self.ctype not in [ContextType.JOIN_GROUP, ContextType.PATPAT, ContextType.EXIT_GROUP]:
  103. self.actual_user_nickname = itchat_msg["ActualNickName"]