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.

66 lines
2.4KB

  1. from wechaty import MessageType
  2. from bridge.context import ContextType
  3. from channel.chat_message import ChatMessage
  4. from common.tmp_dir import TmpDir
  5. from common.log import logger
  6. from wechaty.user import Message
  7. class aobject(object):
  8. """Inheriting this class allows you to define an async __init__.
  9. So you can create objects by doing something like `await MyClass(params)`
  10. """
  11. async def __new__(cls, *a, **kw):
  12. instance = super().__new__(cls)
  13. await instance.__init__(*a, **kw)
  14. return instance
  15. async def __init__(self):
  16. pass
  17. class WechatyMessage(ChatMessage, aobject):
  18. async def __init__(self, wechaty_msg: Message):
  19. super().__init__(wechaty_msg)
  20. room = wechaty_msg.room()
  21. self.msg_id = wechaty_msg.message_id
  22. self.create_time = wechaty_msg.payload.timestamp
  23. self.is_group = room is not None
  24. if wechaty_msg.type() == MessageType.MESSAGE_TYPE_TEXT:
  25. self.ctype = ContextType.TEXT
  26. self.content = wechaty_msg.text()
  27. elif wechaty_msg.type() == MessageType.MESSAGE_TYPE_AUDIO:
  28. self.ctype = ContextType.VOICE
  29. voice_file = await wechaty_msg.to_file_box()
  30. self.content = TmpDir().path() + voice_file.name # content直接存临时目录路径
  31. self._prepare_fn = lambda: voice_file.to_file(self.content)
  32. else:
  33. raise NotImplementedError("Unsupported message type: {}".format(wechaty_msg.type()))
  34. from_contact = wechaty_msg.talker() # 获取消息的发送者
  35. self.from_user_id = from_contact.contact_id
  36. self.from_user_nickname = from_contact.name
  37. if self.is_group:
  38. self.to_user_id = room.room_id
  39. self.to_user_nickname = await room.topic()
  40. else:
  41. to_contact = wechaty_msg.to()
  42. self.to_user_id = to_contact.contact_id
  43. self.to_user_nickname = to_contact.name
  44. if wechaty_msg.is_self():
  45. self.other_user_id = self.to_user_id
  46. self.other_user_nickname = self.to_user_nickname
  47. else:
  48. self.other_user_id = self.from_user_id
  49. self.other_user_nickname = self.from_user_nickname
  50. if self.is_group:
  51. self.is_at = await wechaty_msg.mention_self()
  52. self.actual_user_id = self.other_user_id
  53. self.actual_user_nickname = self.other_user_nickname